:root {
  --ink: #211a20;
  --muted: #6f6269;
  --paper: #fffaf7;
  --paper-2: #f6eee8;
  --rose: #9a4f63;
  --rose-dark: #71384a;
  --plum: #2f1d29;
  --gold: #caa66b;
  --line: rgba(47, 29, 41, .13);
  --shadow: 0 24px 60px rgba(48, 28, 39, .12);
  --radius: 26px;
  --container: min(92vw, 1380px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: 'Lato', sans-serif; font-size: 17px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(900px, 92vw); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 1rem; top: 1rem; transform: translateY(-150%); background: #fff; color: #000; padding: .7rem 1rem; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

h1,h2,h3 { font-family: 'Marcellus', serif; font-weight: 400; line-height: 1.08; margin: 0 0 .55em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.15rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1rem; }
.eyebrow { display: inline-block; margin-bottom: 1rem; color: #f8d9e2; font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.eyebrow.dark { color: var(--rose-dark); }
.section { padding: clamp(4.3rem, 8vw, 7.5rem) 0; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2.2rem, 6vw, 6rem); align-items: center; }
.lead-copy { font-size: 1.12rem; color: var(--muted); max-width: 680px; }

.topbar { background: var(--plum); color: #fff7f9; font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.site-header { position: relative; z-index: 50; background: rgba(255,250,247,.97); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .9rem; text-decoration: none; min-width: 0; }
.brand-mark { width: 46px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,var(--rose),var(--plum)); color: #fff; font-family: 'Marcellus',serif; font-size: 1.45rem; }
.brand strong { display: block; font-family: 'Marcellus',serif; font-size: 1.22rem; font-weight: 400; }
.brand small { display: block; color: var(--muted); font-size: .72rem; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: .25rem; }
.primary-nav > a, .dropdown-toggle { border: 0; background: transparent; text-decoration: none; color: var(--ink); padding: .75rem .85rem; border-radius: 999px; font-weight: 700; cursor: pointer; }
.primary-nav > a:hover, .primary-nav > a:focus-visible, .dropdown-toggle:hover, .dropdown-toggle:focus-visible, .primary-nav [aria-current="page"] { background: var(--paper-2); outline: none; }
.primary-nav .nav-book { background: var(--rose); color: #fff; padding-inline: 1.2rem; }
.primary-nav .nav-book:hover, .primary-nav .nav-book:focus-visible { background: var(--rose-dark); }
.nav-dropdown { position: relative; padding-bottom: 2px; }
.dropdown-menu { position: absolute; top: calc(100% - 1px); left: 0; width: 260px; padding: .6rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s; }
.nav-dropdown.is-open .dropdown-menu, .nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: .75rem .85rem; border-radius: 10px; color: var(--ink); text-decoration: none; }
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { background: var(--paper-2); outline: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 10px; }
.menu-toggle span:not(.sr-only) { display:block; height:2px; background:var(--ink); margin:5px 0; }

.hero { position: relative; min-height: min(790px, 82vh); display: flex; align-items: center; overflow: hidden; background: var(--plum); color: #fff; }
.hero-media { position: absolute; inset: 0; background-image: url('/images/hero-eyebrow.jpg'); background-size: cover; background-position: center 42%; transform: scale(1.01); }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(90deg, rgba(35,20,31,.88) 0%, rgba(43,21,34,.68) 42%, rgba(43,21,34,.17) 75%), linear-gradient(180deg, rgba(0,0,0,.05), rgba(20,10,17,.34)); }
.hero-content { position: relative; z-index: 2; padding-block: 5rem 8rem; }
.hero-content h1 { max-width: 780px; }
.hero-content > p:not(.eyebrow) { max-width: 660px; font-size: 1.2rem; color: #f6eaf0; }
.hero-actions { display:flex; gap:.8rem; flex-wrap:wrap; margin-top:2rem; }
.hero-card { position:absolute; z-index:3; right:max(4vw, calc((100vw - 1380px)/2)); bottom:0; width:min(440px, 42vw); padding:1.4rem 1.7rem; background:rgba(255,250,247,.96); color:var(--ink); border-radius:22px 22px 0 0; box-shadow:var(--shadow); }
.hero-card span, .hero-card small { display:block; color:var(--muted); }
.hero-card a { display:inline-block; margin:.25rem 0; font-family:'Marcellus',serif; font-size:clamp(1.45rem,3vw,2rem); text-decoration:none; }

.btn { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:.78rem 1.25rem; border:1px solid transparent; border-radius:999px; text-decoration:none; font-weight:900; transition: transform .18s ease, background .18s ease, color .18s ease; }
.btn:hover { transform:translateY(-2px); }
.btn:focus-visible, .service-card:focus-visible, .text-link:focus-visible { outline:3px solid var(--gold); outline-offset:3px; }
.btn-primary { background:var(--rose); color:#fff; }
.btn-primary:hover { background:var(--rose-dark); }
.btn-ghost { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.5); color:#fff; }
.btn-light { background:#fff; color:var(--plum); }
.btn-outline-light { color:#fff; border-color:rgba(255,255,255,.55); }
.btn-secondary { background:var(--paper-2); border-color:var(--line); color:var(--ink); }
.text-link { color:var(--rose-dark); font-weight:900; text-decoration:none; }

.intro-section { background: linear-gradient(135deg,#fffaf7,#f7ece8); }
.services-section { background:#fff; }
.section-heading { max-width:780px; margin-bottom:2.6rem; }
.section-heading > p:last-child { color:var(--muted); }
.service-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.service-card { min-height:270px; display:flex; flex-direction:column; padding:1.7rem; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(160deg,#fff,#fff7f4); text-decoration:none; box-shadow:0 10px 30px rgba(48,28,39,.05); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:rgba(154,79,99,.35); }
.service-number { color:var(--rose); font-weight:900; font-size:.8rem; margin-bottom:2.3rem; }
.service-card h3 { font-size:1.7rem; }
.service-card p { color:var(--muted); }
.card-link { margin-top:auto; color:var(--rose-dark); font-weight:900; }

.salon-feature { background:var(--plum); color:#fff; }
.visual-split { align-items:stretch; }
.salon-photo { min-height:510px; border-radius:var(--radius); background-size:cover; background-position:center; box-shadow:var(--shadow); }
.photo-interior { background-image:url('/images/salon-interior.webp'); }
.about-main-photo, .location-photo { margin:0; overflow:hidden; border-radius:var(--radius); box-shadow:var(--shadow); background:var(--paper-2); }
.about-main-photo { width:min(100%, 610px); justify-self:center; }
.about-main-photo img { width:100%; height:auto; max-height:680px; object-fit:cover; object-position:center 55%; }
.location-photo { min-height:0; aspect-ratio:1000/505; }
.location-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.feature-copy { display:flex; flex-direction:column; justify-content:center; }
.feature-copy p:not(.eyebrow) { color:#e7dfe3; }
.light-copy { color:var(--ink); }
.light-copy p:not(.eyebrow) { color:var(--muted); }
.salon-feature .text-link { color:#f7dbe3; }

.cta-section { background:var(--paper); }
.cta-box { padding:clamp(2rem,5vw,4rem); border-radius:32px; background:linear-gradient(135deg,var(--rose-dark),var(--plum)); color:#fff; display:flex; justify-content:space-between; align-items:center; gap:2rem; }
.cta-box > div:first-child { max-width:720px; }
.cta-box p { color:#f0dde5; }
.cta-actions { display:flex; gap:.7rem; flex-wrap:wrap; justify-content:flex-end; }

.page-hero { min-height:410px; display:flex; align-items:center; color:#fff; background:linear-gradient(120deg,var(--plum),var(--rose-dark)); position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; width:420px; height:420px; border-radius:50%; right:-80px; top:-150px; background:radial-gradient(circle,rgba(255,255,255,.14),rgba(255,255,255,0) 68%); }
.page-hero .container { position:relative; z-index:1; padding-block:4rem; }
.page-hero p:not(.eyebrow) { max-width:720px; color:#f1e3e9; font-size:1.15rem; }
.thread-section { background:var(--plum); color:#fff; text-align:center; }
.thread-section p:not(.eyebrow) { color:#e8dfe4; font-size:1.1rem; }
.team-section { background:#fff; }
.team-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.team-grid-compact { grid-template-columns:repeat(6,minmax(0,1fr)); gap:1.15rem; align-items:start; }
.team-card { overflow:hidden; border:1px solid var(--line); border-radius:22px; background:#fff; }
.team-card img { width:100%; aspect-ratio:1/1; object-fit:cover; background:var(--paper-2); }
.team-card-compact { border:0; background:transparent; text-align:center; overflow:visible; }
.team-card-compact img { width:120px; height:120px; aspect-ratio:1/1; margin:0 auto; border-radius:18px; box-shadow:0 10px 24px rgba(48,28,39,.10); }
.team-card div { padding:1.1rem 1.2rem 1.3rem; }
.team-card-compact div { padding:.8rem .2rem 0; }
.team-card h3 { margin-bottom:.2rem; font-size:1.45rem; }
.team-card-compact h3 { font-size:1.2rem; }
.team-card p { margin:0; color:var(--muted); }
.team-card-compact p { font-size:.9rem; line-height:1.45; }

.price-intro { padding-bottom:2rem; }
.price-section { padding-top:2rem; background:linear-gradient(180deg,var(--paper),#fff); }
.price-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; align-items:start; }
.price-card { scroll-margin-top:30px; padding:1.5rem; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 10px 24px rgba(48,28,39,.04); }
.price-card h2 { font-size:1.7rem; padding-bottom:.9rem; border-bottom:1px solid var(--line); }
.price-card dl { margin:0; }
.price-card dl > div { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:1rem; align-items:start; padding:.72rem 0; border-bottom:1px dashed var(--line); }
.price-card dl > div:last-child { border-bottom:0; }
.price-card dt { color:#473b42; overflow-wrap:anywhere; }
.price-card dd { margin:0; font-weight:900; color:var(--rose-dark); white-space:nowrap; }

.contact-section { background:#fff; }
.contact-grid { display:grid; grid-template-columns:1.15fr .85fr .85fr; gap:1rem; align-items:stretch; }
.contact-card { padding:1.7rem; border-radius:var(--radius); background:var(--paper-2); border:1px solid var(--line); }
.contact-card h2 { font-size:1.75rem; }
.primary-contact { background:linear-gradient(145deg,var(--plum),var(--rose-dark)); color:#fff; }
.primary-contact p { color:#eadfe4; }
.primary-contact .eyebrow { color:#f7d9e3; }
.primary-contact .btn-primary { background:#fff; color:var(--plum); }
.big-phone { display:block; margin:1rem 0 1.4rem; color:#fff; font-family:'Marcellus',serif; font-size:clamp(1.65rem,3.5vw,2.3rem); text-decoration:none; overflow-wrap:anywhere; }
.hours { margin:0; }
.hours div { display:flex; justify-content:space-between; gap:1rem; padding:.65rem 0; border-bottom:1px solid var(--line); }
.hours dd { margin:0; font-weight:900; }
.location-section { background:var(--plum); }
.location-grid { gap:1rem; }
.location-photo { min-height:430px; }
.social-section { text-align:center; }
.social-buttons { display:flex; gap:.7rem; justify-content:center; flex-wrap:wrap; }

.site-footer { background:#171116; color:#efe8ec; padding:4rem 0 1.5rem; }
.footer-grid { display:grid; grid-template-columns:1.3fr repeat(3,1fr); gap:2rem; }
.footer-brand { font-family:'Marcellus',serif; font-size:2rem; margin-bottom:.8rem; }
.site-footer h2 { font-family:'Lato',sans-serif; text-transform:uppercase; font-size:.82rem; font-weight:900; color:#d9b7c1; }
.site-footer p { color:#cfc5cb; }
.site-footer a { color:#fff; }
.footer-links { display:flex; flex-direction:column; gap:.4rem; }
.footer-bottom { margin-top:3rem; padding-top:1.3rem; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:1rem; color:#a99ca4; font-size:.88rem; }
.not-found { min-height:62vh; display:grid; place-items:center; text-align:center; background:linear-gradient(145deg,var(--paper),var(--paper-2)); }
.not-found .eyebrow { color:var(--rose-dark); }

@media (max-width: 1020px) {
  .service-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .contact-grid { grid-template-columns:1fr 1fr; }
  .primary-contact { grid-column:1/-1; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 820px) {
  .topbar-inner span { display:none; }
  .topbar-inner { justify-content:flex-end; }
  .nav-wrap { min-height:74px; }
  .brand small { display:none; }
  .menu-toggle { display:block; }
  .primary-nav { position:fixed; inset:112px 0 0; display:none; flex-direction:column; align-items:stretch; gap:.2rem; padding:1.2rem 4vw 3rem; background:#fffaf7; overflow:auto; }
  .primary-nav.is-open { display:flex; }
  .primary-nav > a, .dropdown-toggle { width:100%; text-align:left; padding:1rem; border-radius:12px; }
  .nav-book { text-align:center !important; }
  .nav-dropdown { width:100%; }
  .dropdown-menu { position:static; width:100%; display:none; opacity:1; visibility:visible; transform:none; box-shadow:none; margin:.25rem 0 .5rem; }
  .nav-dropdown.is-open .dropdown-menu { display:block; }
  .split { grid-template-columns:1fr; }
  .reverse-mobile .salon-photo { order:-1; }
  .hero { min-height:720px; align-items:flex-start; }
  .hero-content { padding-top:5rem; padding-bottom:10rem; }
  .hero-overlay { background:linear-gradient(90deg,rgba(35,20,31,.88),rgba(43,21,34,.54)); }
  .hero-card { left:4vw; right:4vw; width:auto; }
  .salon-photo { min-height:390px; }
  .team-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .team-grid-compact { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .price-grid { grid-template-columns:1fr; }
  .cta-box { flex-direction:column; align-items:flex-start; }
  .cta-actions { justify-content:flex-start; }
}
@media (max-width: 560px) {
  body { font-size:16px; }
  h1 { font-size:clamp(2.35rem,12vw,3.4rem); overflow-wrap:anywhere; }
  h2 { font-size:clamp(1.85rem,9vw,2.55rem); overflow-wrap:anywhere; }
  .section { padding:4rem 0; }
  .brand strong { font-size:1.02rem; }
  .brand-mark { width:40px; }
  .service-grid, .team-grid, .contact-grid, .footer-grid { grid-template-columns:1fr; }
  .team-grid-compact { grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.25rem .9rem; }
  .team-card-compact img { width:min(100%, 150px); }
  .service-card { min-height:235px; }
  .primary-contact { grid-column:auto; }
  .location-photo { min-height:330px; }
  .price-card { padding:1.2rem; }
  .price-card dl > div { grid-template-columns:minmax(0,1fr) auto; gap:.7rem; }
  .footer-bottom { flex-direction:column; }
  .hero-content > p:not(.eyebrow) { font-size:1.05rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}
