/* ===========================================================
   A HAIR SALON  —  "EDITORIAL FOLIO, AFTER HOURS"  (shared sheet)
   Linked from every page so the whole site reads as one issue.
   =========================================================== */

/* ===========================================================
   1. TOKENS — "Editorial Folio, After Hours" palette
   =========================================================== */
:root{
  --plum:         #2A1F31;    /* PRIMARY GROUND — deep warm aubergine */
  --plum-deep:    #1A1124;    /* footer, deepest */
  --plum-soft:    #382641;    /* card / alt-section ground */
  --plum-rule:    #4E3858;    /* fine rule on plum (lifted for AA) */

  --ivory:        #F4EFE3;    /* primary text — warm paper on plum */
  --ivory-bright: #FBF6EB;    /* brightest text, hero */
  --ivory-page:   #ECE3D2;    /* the inverted "lighted page" */

  --gold:         #D6AD63;    /* brushed gold — rules, leaders, accents (lifted for AA on plum) */
  --gold-soft:    #B08C4A;    /* faint gold hairlines */
  --rose:         #E0AA9B;    /* dusty rose — italic emphasis, links (lifted for AA) */
  --rose-deep:    #B68474;    /* rose hover, used on the light page */
  --muted:        #D0C4D8;    /* desaturated lavender — secondary text (raised for sub-14px AA ~5.8:1 on --plum) */

  --dusk:         #7E8BB0;    /* THE COUNTER-NOTE — cool slate-blue, used only in hero wash + status */
  --dusk-deep:    #4A5475;

  --display:  'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  --body:     'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:     'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --shell:    1140px;
  --gutter:   clamp(1.25rem, 5vw, 3.5rem);
  --nav-h:    66px;
  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ===========================================================
   2. RESET / BASE
   =========================================================== */
*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--plum); }

/* reveal scaffold (matches the flagship reference) */
html.js [data-reveal]{ opacity:0; transform:translateY(18px); transition:opacity .5s var(--ease-out), transform .5s var(--ease-out); will-change:opacity,transform; }
html.js [data-reveal].is-in{ opacity:1; transform:none; }
html.js [data-reveal="2"]{ transition-delay:.07s; }
html.js [data-reveal="3"]{ transition-delay:.14s; }
html.js [data-reveal="4"]{ transition-delay:.21s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  html.js [data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}
body{
  margin: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    var(--plum);
  color: var(--ivory);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.01rem;
  line-height: 1.62;
  letter-spacing: 0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ display: block; max-width: 100%; }
a{ color: inherit; }
/* Bodoni Moda is a high-contrast fashion serif: let the optical-size
   axis track the type size so headlines show dramatic hairlines and
   small serif text stays legible. */
h1,h2,h3,h4{ font-family: var(--display); margin: 0; font-weight: 700; color: var(--ivory-bright); font-optical-sizing: auto; letter-spacing: -0.012em; }
p{ margin: 0 0 1.12em; }
::selection{ background: var(--gold); color: var(--plum-deep); }
:focus-visible{ outline: 3px solid var(--gold); outline-offset: 3px; }

.shell{ max-width: var(--shell); margin: 0 auto; padding-inline: var(--gutter); }
.section{ padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--soft{ background: var(--plum-soft); }
.section--page{ background: var(--ivory-page); color: var(--plum); }
.section--page h2, .section--page h3, .section--page h4{ color: var(--plum); }
[id]{ scroll-margin-top: calc(var(--nav-h) + 14px); }

.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{ position:absolute; left:12px; top:-60px; z-index:200; background:var(--plum-deep); color:var(--ivory-bright); font-family:var(--mono); font-size:13px; padding:12px 18px; border-radius:8px; text-decoration:none; transition:top .2s var(--ease); }
.skip:focus{ top:12px; }

/* ===========================================================
   PAGE HEADER — interior pages get a short editorial masthead
   instead of the full hero cover.
   =========================================================== */
.page-head{ padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; }
.page-head__issue{
  font-family: var(--mono); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 11px; margin-bottom: 1.4rem;
}
.page-head__issue::before{ content:""; width:26px; height:1.5px; background: currentColor; }
.page-head h1{
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 5rem); line-height: 0.96; letter-spacing: -0.026em;
  color: var(--ivory-bright); margin-bottom: 1.3rem; max-width: 16ch;
}
.page-head h1 em{ font-style: italic; font-weight: 500; color: var(--rose); letter-spacing: -0.01em; }
.page-head__deck{
  max-width: 46ch; font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 1.28rem; line-height: 1.46; letter-spacing: 0.002em; color: var(--ivory); margin: 0;
}

/* ===========================================================
   3. FOLIO SECTION LABEL (the structural signature — NUMBER-FREE)
   The leader dots DRAW across on section enter.
   =========================================================== */
.folio{
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 4.5vw, 3rem);
  font-family: var(--mono);
}
.folio__mark{ flex: 0 0 auto; display:inline-flex; }
.folio__title{
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  flex: 0 0 auto;
}
.folio__title b{ color: var(--ivory); font-weight: 600; }
.folio__dots{
  flex: 1 1 auto;
  height: 0;
  min-width: 24px;
  border-bottom: 1.5px dotted var(--gold-soft);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .55s var(--ease-out) .1s;
}
.folio.is-in .folio__dots, html:not(.js) .folio__dots{ transform: scaleX(1); }
.folio__edge{
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 0 0 auto;
}
/* mobile: drop the tertiary edge label — its nowrap text overflowed the row right edge */
@media (max-width:600px){ .folio__edge{ display:none; } }
.section--page .folio__title b{ color: var(--plum); }
.section--page .folio__dots{ border-bottom-color: var(--gold-soft); }
.section--page .folio__edge{ color: var(--gold-soft); }

/* ===========================================================
   4. MASTHEAD STRIP (number-free)
   =========================================================== */
.masthead{
  background: var(--plum-deep);
  border-bottom: 1px solid var(--plum-rule);
  padding-block: 0.5rem;
}
.masthead__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.masthead__inner em{ font-family: var(--display); font-style: italic; font-weight: 500; color: var(--gold); margin: 0 0.35rem; text-transform: none; letter-spacing: 0; font-size: 1.08em; }
.masthead__inner span:last-child{ text-align: right; }
@media (max-width: 600px){ .masthead__inner .mh-hide{ display: none; } }

/* ===========================================================
   5. NAV  (real hamburger below 880px)
   =========================================================== */
.nav{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(42,31,49,.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--gold-soft);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1.25rem;
}
.brand{ display:inline-flex; align-items:center; gap:12px; text-decoration:none; color:var(--ivory-bright); }
.brand .word{ display:flex; flex-direction:column; line-height:1; }
.brand .word b{
  font-family: var(--display); font-weight: 700; font-size: 1.62rem; letter-spacing: -0.01em; line-height: 0.96; white-space: nowrap;
}
.brand .word b em{ font-style: italic; font-weight: 500; color: var(--gold); letter-spacing: 0; }
.brand .word small{
  font-family: var(--mono); font-weight: 500; font-size: 8px; letter-spacing: 0.24em;
  text-transform: uppercase; margin-top: 5px; color: var(--muted);
}

.nav-desk{ display:flex; align-items:center; gap:2rem; }
.nav__links{ display:flex; gap:1.7rem; list-style:none; margin:0; padding:0; }
.nav__links a{
  font-family: var(--mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ivory); text-decoration: none;
  position: relative; padding: 6px 0; transition: color .2s var(--ease);
}
.nav__links a::after{ content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--gold); transition:width .25s var(--ease); }
.nav__links a:hover::after, .nav__links a:focus-visible::after{ width:100%; }
.nav__links a:focus-visible{ outline:none; }
/* current page marker */
.nav__links a[aria-current="page"]{ color: var(--gold); }
.nav__links a[aria-current="page"]::after{ width:100%; }

/* hamburger toggle */
.nav-toggle{
  display: none;
  align-items: center; justify-content: center; flex: 0 0 auto;
  width: 46px; height: 46px; padding: 0; border-radius: 10px;
  background: rgba(212,173,99,.08); border: 1px solid var(--gold-soft);
  color: var(--ivory); cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.nav-toggle:hover{ border-color: var(--gold); }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--ivory); position:relative; }
.nav-toggle span::before, .nav-toggle span::after{ content:""; position:absolute; left:0; width:22px; height:2px; background:var(--ivory); transition:transform .3s var(--ease), top .3s var(--ease); }
.nav-toggle span::before{ top:-7px; } .nav-toggle span::after{ top:7px; }
.nav-toggle[aria-expanded="true"] span{ background:transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); }

/* mobile overlay — folio "table of contents" */
.mobile-menu{
  position: fixed; inset: 0; z-index: 70;
  background: linear-gradient(168deg, var(--plum) 0%, var(--plum-deep) 100%);
  transform: translateY(-100%); transition: transform .42s var(--ease);
  visibility: hidden;
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 30px) var(--gutter) 2rem;
  overflow-y: auto;
}
.mobile-menu.open{ transform: translateY(0); visibility: visible; }
.mobile-menu .m-toc{
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); display:flex; align-items:center; gap:11px; margin-bottom: 1.4rem;
}
.mobile-menu .m-toc::before{ content:""; width:26px; height:1.5px; background: currentColor; }
.mobile-menu a.m-link{
  font-family: var(--display); font-size: clamp(2.05rem, 8.4vw, 2.95rem); font-weight: 600;
  letter-spacing: -0.018em; line-height: 1.02;
  color: var(--ivory-bright); text-decoration: none;
  padding: 0.7rem 0; border-bottom: 1px solid var(--plum-rule);
  display: flex; align-items: baseline; gap: 0.9rem;
}
.mobile-menu a.m-link[aria-current="page"]{ color: var(--gold); }
.mobile-menu a.m-link .m-dots{ flex:1; border-bottom:1.5px dotted var(--gold-soft); height:0.6rem; min-width:20px; }
.mobile-menu a.m-link .m-pg{ font-family: var(--mono); font-style: normal; font-size: 0.62rem; letter-spacing:0.14em; text-transform:uppercase; color: var(--muted); }
.mobile-menu a.m-link em{ font-style: italic; font-weight:500; color: var(--gold); letter-spacing: 0; }
.mobile-menu .m-foot{ margin-top: auto; padding-top: 2rem; display:flex; flex-direction:column; gap:1.1rem; }
.mobile-menu .m-tel{ font-family: var(--mono); font-size: 0.8rem; letter-spacing:0.04em; color: var(--gold); text-decoration:none; }
body.menu-open{ overflow: hidden; }

/* ===========================================================
   6. BUTTONS
   =========================================================== */
.btn{
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--mono); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.95rem 1.5rem; border: 1.5px solid transparent; border-radius: 999px;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn:active{ transform: translateY(1px); }
.btn .arr{ transition: transform .2s var(--ease); }
.btn:hover .arr{ transform: translateX(4px); }
.btn-gold{ background: var(--gold); color: var(--plum-deep); }
.btn-gold:hover{ background: var(--rose); color: var(--plum-deep); box-shadow: 0 16px 34px -20px rgba(214,173,99,.8); }
.btn-ghost{ background: transparent; color: var(--ivory); border-color: var(--gold); }
.btn-ghost:hover{ background: var(--gold); color: var(--plum-deep); }
/* light-page variants */
.section--page .btn-gold{ background: var(--plum); color: var(--ivory-bright); }
.section--page .btn-gold:hover{ background: var(--rose-deep); color: var(--ivory-bright); box-shadow: 0 16px 34px -22px rgba(42,31,49,.7); }
.section--page .btn-ghost{ color: var(--plum); border-color: var(--plum); }
.section--page .btn-ghost:hover{ background: var(--plum); color: var(--ivory-bright); }

/* ===========================================================
   7. HERO — editorial cover (headline lockup fixed)
   =========================================================== */
.hero{ padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; }
.hero__inner{ display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: end; }
@media (min-width: 900px){ .hero__inner{ grid-template-columns: 1.02fr 0.98fr; gap: clamp(2.5rem, 5vw, 4rem); } }

.hero__copy{ position: relative; }
.hero__issue{
  font-family: var(--mono); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 11px;
  margin-bottom: 1.5rem;
}
.hero__issue::before{ content:""; width:26px; height:1.5px; background: currentColor; }

/* HERO COVER LINE — Bodoni run BIG so its hairline-to-stem contrast
   reads like a fashion masthead. Tighter leading + negative tracking
   keep the two lines locked as one mass; the high size pushes the
   optical-size axis toward its display end. */
.hero h1{
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.5rem, 8.4vw, 6.4rem); line-height: 0.92; letter-spacing: -0.028em;
  color: var(--ivory-bright); margin-bottom: 1.6rem;
}
.hero h1 .l1{ display: block; }
.hero h1 .l2{ display: block; text-indent: -0.02em; }
.hero h1 em{ font-style: italic; font-weight: 500; color: var(--rose); letter-spacing: -0.01em; }
/* deck stays in Bodoni italic but at a refined, smaller display size
   so it reads as a caption line under the masthead, not a headline */
.hero__deck{
  max-width: 38ch; font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 1.3rem; line-height: 1.46; letter-spacing: 0.002em; color: var(--ivory); margin-bottom: 2rem;
}
.hero__cta{ display: flex; flex-wrap: wrap; gap: 0.9rem 1.2rem; align-items: center; }
.hero__meta{
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; margin-top: 2rem;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.hero__meta span{ display:inline-flex; align-items:center; gap:9px; }
.hero__meta .dot{ width:6px; height:6px; border-radius:50%; background: var(--gold); flex:none; }

.hero__img{ position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--plum-deep); border: 1px solid var(--gold-soft); }
.hero__img img{ width:100%; height:100%; object-fit: cover; filter: saturate(0.94) brightness(0.96); }
/* the cool counter-note: a faint dusk wash in the hero image corner */
.hero__img::after{ content:""; position:absolute; inset:0; background: radial-gradient(80% 60% at 88% 6%, rgba(126,139,176,.32), transparent 60%); pointer-events:none; }
.hero__caption{
  position: absolute; left: 0; bottom: 0; background: var(--plum); color: var(--ivory);
  padding: 0.55rem 1rem; font-family: var(--mono); font-weight: 500; font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase; border-top: 2px solid var(--gold); z-index: 2;
}
.hero__caption em{ font-family: var(--display); font-style: italic; font-weight: 500; color: var(--rose); letter-spacing: 0.01em; text-transform: none; font-size: 1.1em; }

/* perforation rule between bands */
.perf{ height:0; border:0; border-top:1.5px dashed var(--plum-rule); margin:0; position:relative; }
.section--page + .perf, .perf.on-page::after{ }

/* registration ticks at section corners (number-free flavor) */
.regmark{ position:absolute; width:15px; height:15px; pointer-events:none; color: var(--plum-rule); z-index:3; }
.regmark::before, .regmark::after{ content:""; position:absolute; background: currentColor; }
.regmark::before{ left:50%; top:0; bottom:0; width:1px; transform:translateX(-.5px); }
.regmark::after{ top:50%; left:0; right:0; height:1px; transform:translateY(-.5px); }
.regmark.tl{ left:clamp(12px,4vw,28px); top:24px; } .regmark.tr{ right:clamp(12px,4vw,28px); top:24px; }
.section--page .regmark{ color: rgba(42,31,49,.3); }

/* ===========================================================
   HOME HIGHLIGHTS — short cards that link out to the real pages
   =========================================================== */
.highlights{ display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px){ .highlights{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .highlights{ grid-template-columns: repeat(4, 1fr); } }
.highlight{
  display: flex; flex-direction: column; gap: 0.9rem;
  background: var(--plum-soft); border: 1px solid var(--gold-soft);
  padding: 1.7rem 1.6rem; text-decoration: none; color: var(--ivory);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.highlight:hover{ border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 22px 44px -30px rgba(0,0,0,.7); }
.highlight .h-kick{ font-family: var(--mono); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.highlight h3{ font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.014em; color: var(--ivory-bright); margin: 0; }
.highlight h3 em{ font-style: italic; font-weight: 500; color: var(--rose); letter-spacing: 0; }
.highlight p{ margin: 0; font-size: 0.93rem; color: var(--ivory); opacity: 0.9; }
.highlight .h-go{ margin-top: auto; font-family: var(--mono); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.highlight:hover .h-go .arr{ transform: translateX(4px); }
.highlight .h-go .arr{ transition: transform .2s var(--ease); }

/* ===========================================================
   8. SERVICES MENU
   =========================================================== */
.menu-intro{
  max-width: 50ch; font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.28rem, 2.2vw, 1.6rem); line-height: 1.42; letter-spacing: 0.002em; color: var(--ivory);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.menu-intro em{ font-style: normal; font-weight: 600; color: var(--rose); letter-spacing: 0; }
.menu{ display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 760px){ .menu{ grid-template-columns: 1fr 1fr; gap: 2.5rem 4rem; } }
/* Group titles set bigger in Bodoni so the serif contrast carries the
   "menu of an issue" feel; tracking tightened for the heavier face. */
.menu__group h3{
  font-family: var(--display); font-weight: 600; font-size: 1.85rem; letter-spacing: -0.018em;
  color: var(--ivory-bright); margin: 0 0 1.1rem; padding-bottom: 0.7rem; border-bottom: 1.5px solid var(--gold);
}
.menu__row{ display: flex; align-items: baseline; gap: 0.7rem; padding: 0.62rem 0; border-bottom: 1px solid var(--plum-rule); }
.menu__row:last-child{ border-bottom: 0; }
.menu__name{ font-family: var(--body); font-weight: 500; font-size: 1.01rem; letter-spacing: 0.002em; color: var(--ivory); flex: 0 0 auto; }
.menu__name small{ display: block; margin-top: 0.18rem; font-family: var(--display); font-style: italic; font-weight: 400; font-size: 0.96rem; letter-spacing: 0.004em; color: var(--muted); }
.menu__dots{ flex: 1 1 auto; border-bottom: 1px dotted var(--gold-soft); height: 0.55rem; min-width: 24px; transform: translateY(-3px); }
.menu__price{ font-family: var(--mono); font-weight: 600; font-size: 0.98rem; color: var(--gold); flex: 0 0 auto; }
.menu__price em{ font-family: var(--body); font-style: normal; font-weight: 400; font-size: 0.8rem; color: var(--muted); }

/* ===========================================================
   9. STYLISTS (equal-baseline cards, CTA pinned bottom)
   =========================================================== */
.stylist-intro{ max-width: 52ch; margin-bottom: 2.5rem; }
.stylist-intro p{ font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.32rem; line-height: 1.46; letter-spacing: 0.002em; color: var(--ivory); margin:0; }
.stylists{ display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 720px){ .stylists{ grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.stylist{ display: flex; flex-direction: column; height: 100%; }
.stylist__img{ aspect-ratio: 3/4; overflow: hidden; background: var(--plum-deep); margin-bottom: 1.1rem; position: relative; border: 1px solid var(--gold-soft); }
.stylist__img img{ width:100%; height:100%; object-fit: cover; filter: saturate(0.94); transition: transform .6s var(--ease); }
.stylist:hover .stylist__img img{ transform: scale(1.04); }
.stylist__name{ font-family: var(--display); font-weight: 600; font-size: 1.62rem; letter-spacing: -0.015em; color: var(--ivory-bright); margin: 0 0 0.2rem; }
.stylist__role{ font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.06rem; letter-spacing: 0.004em; color: var(--rose); margin: 0 0 0.8rem; }
.stylist__bio{ font-size: 0.94rem; color: var(--ivory); opacity: 0.92; margin-bottom: 0.9rem; max-width: 34ch; }
.stylist__skills{ font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ivory); display: flex; flex-wrap: wrap; gap: 0.4rem 0.5rem; margin-bottom: 1rem; }
.stylist__skills span{ background: var(--plum-soft); padding: 0.3rem 0.65rem; border: 1px solid var(--gold-soft); border-radius: 999px; }
.stylist__book{ margin-top: auto; align-self: flex-start; }

/* ===========================================================
   10. FEATURED SPREAD (editorial pull-quote)
   =========================================================== */
.feature{ padding-block: clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.feature__inner{ display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; }
@media (min-width: 860px){ .feature__inner{ grid-template-columns: 1.05fr 0.95fr; } }
.feature__img{ position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--plum-deep); }
@media (min-width: 860px){ .feature__img{ aspect-ratio: auto; min-height: 520px; } }
.feature__img img{ width:100%; height:100%; object-fit: cover; filter: saturate(0.94); }
.feature__img::after{ content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(42,31,49,0) 50%, rgba(42,31,49,0.55) 100%); }
.feature__copy{ background: var(--plum-soft); padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; gap: 1.6rem; position: relative; }
.feature__tag{ font-family: var(--mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display:inline-flex; align-items:center; gap:11px; padding-bottom: 1.2rem; border-bottom: 1px solid var(--gold); }
.feature__tag::before{ content:""; width:24px; height:1.5px; background: currentColor; }
/* The pull-quote is the big Bodoni moment: larger, lighter-weight so
   the hairlines stay delicate at scale, with the italic carrying the
   emphasis. */
.feature__quote{ font-family: var(--display); font-weight: 500; font-size: clamp(1.75rem, 3.7vw, 2.7rem); line-height: 1.26; letter-spacing: -0.016em; color: var(--ivory-bright); margin: 0; max-width: 23ch; }
.feature__quote em{ font-style: italic; font-weight: 500; color: var(--rose); letter-spacing: -0.005em; }
.feature__quote::before{ content: "\201C"; display: block; font-family: var(--display); font-weight: 700; font-size: 4.4rem; line-height: 0.42; color: var(--gold); margin-bottom: 0.5rem; margin-left: -0.06em; }
.feature__by{ font-family: var(--mono); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); padding-top: 1.2rem; border-top: 1px solid var(--gold); }
.feature__by em{ font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1rem; color: var(--rose); letter-spacing: 0.01em; text-transform: none; display: block; margin-top: 0.3rem; }

/* ===========================================================
   11. INSTAGRAM STRIP
   =========================================================== */
.ig{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
@media (min-width: 540px){ .ig{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px){ .ig{ grid-template-columns: repeat(6, 1fr); } }
.ig__tile{ aspect-ratio: 1/1; overflow: hidden; background: var(--plum-deep); border: 1px solid var(--plum-rule); display:block; }
.ig__tile img{ width:100%; height:100%; object-fit: cover; transition: transform .4s var(--ease), filter .4s var(--ease); filter: saturate(0.94) brightness(0.97); }
.ig__tile:hover img, .ig__tile:focus-visible img{ transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.ig-foot{ margin-top: 2rem; text-align: center; font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.18rem; letter-spacing: 0.004em; color: var(--ivory); }
.ig-foot a{ color: var(--rose); text-decoration: none; border-bottom: 1px solid var(--rose); }

/* gallery page — a larger, varied grid that reuses the same tiles */
.gallery{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
@media (min-width: 700px){ .gallery{ grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.gallery .ig__tile{ aspect-ratio: 4/5; }

/* ===========================================================
   12. WORD OF MOUTH
   =========================================================== */
.testimonial-set{ display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 800px){ .testimonial-set{ grid-template-columns: repeat(3, 1fr); } }
.testimony{ border-left: 2px solid var(--gold); padding: 0.4rem 0 0.4rem 1.4rem; margin: 0; }
.testimony__body{ font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.2rem; line-height: 1.5; letter-spacing: 0.003em; color: var(--ivory); margin: 0 0 1rem; }
.testimony__by{ font-family: var(--mono); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.testimony__by em{ font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1rem; letter-spacing: 0.01em; color: var(--rose); text-transform: none; }
.testimony__stylist{ display: block; margin-top: 0.35rem; font-family: var(--display); font-style: italic; font-weight: 400; font-size: 0.96rem; color: var(--muted); letter-spacing: 0.01em; }

/* ===========================================================
   13. VISIT — the inverted "lighted page" (the one ivory band)
   The density break: full-bleed grade swap + the page lifts on entry.
   =========================================================== */
.visit{ display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 900px){ .visit{ grid-template-columns: 1.05fr 0.95fr; } }
.visit__copy h3{ font-family: var(--display); font-weight: 600; font-size: clamp(1.95rem, 3.7vw, 2.75rem); letter-spacing: -0.02em; line-height: 1.04; margin: 0 0 1.2rem; color: var(--plum); }
.visit__copy h3 em{ font-style: italic; color: var(--rose-deep); font-weight: 500; letter-spacing: -0.008em; }
.visit__copy p{ max-width: 50ch; color: var(--plum); opacity: 0.88; }
.visit__details{ background: var(--plum); color: var(--ivory); padding: 1.6rem 1.8rem; border: 2px solid var(--gold); }
.visit__details dl{ margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 1.4rem; }
.visit__details dt{ font-family: var(--mono); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.visit__details dd{ margin: 0; font-family: var(--display); font-weight: 500; font-size: 1.1rem; letter-spacing: 0.002em; color: var(--ivory-bright); }
.visit__details dd .hrs{ font-family: var(--body); font-weight: 400; font-size: 0.96rem; line-height: 1.85; color: var(--ivory); }
.visit__details dd .hrs .row{ display:flex; justify-content:space-between; gap:1rem; }
.visit__details dd .hrs .row.is-today{ color: var(--gold); }
.visit__details dd .hrs b{ font-weight: 600; }
/* the cool counter-note again: status pill */
.open-now{ margin-top: 1.4rem; display:inline-flex; align-items:center; gap:10px; padding:0.6rem 1rem; border-radius:999px; background: rgba(126,139,176,.16); border:1px solid rgba(126,139,176,.5); font-family: var(--mono); font-size:0.66rem; letter-spacing:0.08em; text-transform:uppercase; color: var(--ivory-bright); }
.open-now .pulse{ width:9px; height:9px; border-radius:50%; background:#8FE0A0; box-shadow:0 0 0 0 rgba(143,224,160,.6); animation: pulse 2.2s infinite; flex:none; }
.open-now.closed{ background: rgba(126,139,176,.14); border-color: rgba(126,139,176,.45); }
.open-now.closed .pulse{ background: var(--dusk); animation:none; box-shadow:0 0 8px rgba(126,139,176,.5); }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(143,224,160,.5);} 70%{ box-shadow:0 0 0 9px rgba(143,224,160,0);} 100%{ box-shadow:0 0 0 0 rgba(143,224,160,0);} }

/* ===========================================================
   14. CTA CARDS (in the lighted-page band)
   =========================================================== */
.cta-row{ display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 720px){ .cta-row{ grid-template-columns: 1fr 1fr; } }
.cta-card{ padding: 2rem 1.8rem; border: 1.5px solid var(--plum); background: var(--ivory-page); color: var(--plum); display: flex; flex-direction: column; gap: 1rem; }
.cta-card h4{ font-family: var(--display); font-weight: 600; font-size: 1.62rem; letter-spacing: -0.015em; margin: 0; color: var(--plum); }
.cta-card h4 em{ font-style: italic; color: var(--rose-deep); font-weight: 500; letter-spacing: 0; }
.cta-card p{ margin: 0; font-size: 0.95rem; color: var(--plum); opacity: 0.88; }
.cta-card .btn{ align-self: flex-start; margin-top: auto; }

/* ===========================================================
   15. FRAMING LINE (intentional-demo note)
   =========================================================== */
.framing-line{ background: var(--plum-deep); border-top: 1px solid var(--plum-rule); border-bottom: 1px solid var(--plum-rule); }
.framing-line .shell{ display:flex; flex-wrap:wrap; align-items:center; gap:14px 22px; padding-block: 1.4rem; }
.framing-line .fl-mark{ flex:none; }
.framing-line p{ font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.01em; line-height: 1.7; color: var(--muted); flex:1; min-width:260px; margin:0; }
.framing-line p b{ color: var(--ivory-bright); font-weight: 600; }
.framing-line p a{ color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; font-weight: 600; }

/* ===========================================================
   16. FOOTER
   =========================================================== */
.footer{ background: var(--plum-deep); color: var(--ivory); padding-block: clamp(3rem, 6vw, 5rem); }
.footer__mark{ display:inline-flex; align-items:center; gap:14px; margin-bottom: 1.6rem; text-decoration:none; color: var(--ivory-bright); }
.footer__mark .word b{ font-family: var(--display); font-weight: 600; font-size: clamp(1.85rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.footer__mark .word b em{ font-style: italic; font-weight: 500; color: var(--gold); letter-spacing: 0; }
.footer__cols{ display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 700px){ .footer__cols{ grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 3rem; } }
.footer h4{ font-family: var(--mono); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 1rem; }
.footer__cols p, .footer__cols li{ font-size: 0.94rem; line-height: 1.65; color: var(--ivory); opacity: 0.9; }
.footer__cols ul{ list-style: none; margin: 0; padding: 0; }
.footer__cols li{ margin-bottom: 0.4rem; }
.footer__cols a{ color: var(--ivory); text-decoration: none; transition: color .18s ease; opacity: 0.9; }
.footer__cols a:hover{ color: var(--gold); opacity: 1; }
.colophon{ margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--plum-rule); display:flex; flex-wrap:wrap; gap:1rem 1.5rem; justify-content:space-between; align-items:center; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.03em; color: var(--muted); }
.colophon p{ margin: 0; }
.colophon .gwc-chip{ background: var(--ivory-bright); border-radius: 8px; padding: 7px 12px; display:inline-flex; }
.colophon .gwc-chip a{ display:inline-flex; align-items:center; gap:8px; font:600 11px/1 var(--mono); text-transform:uppercase; letter-spacing:.08em; text-decoration:none; color:#1B1A17; }

/* ===========================================================
   17. MOCK BOOKING DIALOG
   =========================================================== */
.dialog-scrim{ position: fixed; inset: 0; z-index: 90; background: rgba(20,12,8,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; display: flex; align-items: center; justify-content: center; padding: clamp(14px,4vw,28px); }
.dialog-scrim.open{ opacity: 1; visibility: visible; }
.dialog{ display: flex; flex-direction: column; width: min(100%, 460px); max-height: min(90vh, 740px); background: var(--ivory-page); color: var(--plum); border-radius: 18px; box-shadow: 0 40px 90px -30px rgba(20,12,8,.7); transform: translateY(16px) scale(.98); transition: transform .35s var(--ease-out); border: 1px solid var(--gold); overflow: hidden; }
.dialog-scrim.open .dialog{ transform: none; }
.dialog h3{ color: var(--plum); }
.dialog-head{ flex: none; padding: 22px 26px 18px; border-bottom: 1px solid rgba(42,31,49,.18); display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.dialog-head .dh-kick{ font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-deep); }
.dialog-head h3{ font-family: var(--display); font-weight: 600; font-size: 1.62rem; letter-spacing: -0.015em; margin-top: 8px; }
.dialog-head h3 em{ font-style: italic; font-weight: 500; color: var(--rose-deep); letter-spacing: 0; }
.dialog-close{ flex: none; width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(42,31,49,.3); background: transparent; cursor: pointer; color: var(--plum); display: flex; align-items: center; justify-content: center; transition: background-color .2s var(--ease); }
.dialog-close:hover{ background: rgba(42,31,49,.07); }
.dialog-body{ flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 22px 26px 8px; }
.fieldlabel{ font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-deep); display: block; margin-bottom: 12px; }
.pick-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pick-grid.svc{ grid-template-columns: 1fr; }
.pick-grid label{ position: relative; cursor: pointer; }
.pick-grid input{ position: absolute; opacity: 0; width: 0; height: 0; }
.pick-grid .opt{ border: 1.5px solid rgba(42,31,49,.3); border-radius: 12px; padding: 12px 14px; transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease); display:flex; justify-content:space-between; align-items:center; gap:10px; }
.pick-grid .opt b{ display: block; font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.08rem; letter-spacing: 0.004em; color: var(--plum); }
.pick-grid .opt span{ font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--rose-deep); }
.pick-grid input:checked + .opt{ border-color: var(--rose-deep); background: rgba(182,132,116,.12); box-shadow: inset 0 0 0 1px var(--rose-deep); }
.pick-grid input:focus-visible + .opt{ outline: 3px solid var(--gold); outline-offset: 2px; }
.dialog-when{ display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.dialog-when label{ flex: 1; min-width: 130px; cursor: pointer; position:relative; }
.dialog-when input{ position: absolute; opacity: 0; }
.dialog-when .opt{ text-align: center; border: 1.5px solid rgba(42,31,49,.3); border-radius: 10px; padding: 11px 10px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--plum); transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease); }
.dialog-when input:checked + .opt{ border-color: var(--plum); background: var(--plum); color: var(--ivory-bright); }
.dialog-when input:focus-visible + .opt{ outline: 3px solid var(--gold); outline-offset: 2px; }
.dialog-summary{ margin-top: 22px; border-top: 1px solid rgba(42,31,49,.18); padding-top: 18px; display: flex; justify-content: space-between; align-items: baseline; font-family: var(--mono); }
.dialog-summary .lab{ font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); max-width: 22ch; }
.dialog-summary .amt{ font-family: var(--display); font-size: 1.82rem; font-weight: 600; letter-spacing: -0.01em; color: var(--plum); }
.dialog-foot{ flex: none; padding: 16px 26px 24px; border-top: 1px solid rgba(42,31,49,.18); }
.dialog-foot .btn{ width: 100%; justify-content: center; }
.dialog-trust{ margin-top: 14px; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.03em; color: var(--rose-deep); text-align: center; display: flex; align-items: center; gap: 8px; justify-content: center; line-height: 1.5; }
.dialog-trust svg{ flex: none; }
/* confirmation state */
.dialog-done{ display: none; padding: 40px 26px 36px; text-align: center; overflow-y: auto; }
.dialog.is-done .dialog-body, .dialog.is-done .dialog-foot{ display: none; }
.dialog.is-done .dialog-done{ display: block; }
.dialog-done .stamp{ width: 80px; height: 80px; margin: 0 auto 22px; }
.dialog-done h3{ font-family: var(--display); font-weight: 600; font-size: 1.82rem; letter-spacing: -0.015em; }
.dialog-done h3 em{ font-style: italic; font-weight: 500; color: var(--rose-deep); letter-spacing: 0; }
.dialog-done p{ margin-top: 14px; color: var(--plum); opacity: 0.88; font-size: 1.02rem; max-width: 32ch; margin-left: auto; margin-right: auto; }
.dialog-done .ref{ margin-top: 18px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); }

/* ===========================================================
   18. RESPONSIVE
   =========================================================== */
@media (max-width: 879.98px){
  .nav-desk{ display: none; }
  .nav-toggle{ display: inline-flex; }
}
@media (max-width: 540px){
  .pick-grid{ grid-template-columns: 1fr; }
}

/* ---------- Demo attribution chip (Built by Good Website Co.) — NUMBER-FREE ---------- */
.specimen{position:fixed;left:16px;bottom:16px;z-index:50;display:inline-flex;align-items:center;gap:11px;padding:9px 13px 9px 11px;border-radius:14px;background:rgba(26,17,36,.86);backdrop-filter:saturate(150%) blur(10px);-webkit-backdrop-filter:saturate(150%) blur(10px);border:1px solid rgba(214,173,99,.36);color:var(--ivory-bright);text-decoration:none;box-shadow:0 18px 40px -26px rgba(0,0,0,.7);transition:transform .22s var(--ease),border-color .22s var(--ease);}
.specimen:hover{transform:translateY(-2px);border-color:var(--gold);}
.specimen .seal{flex:none;}
.specimen .stxt{display:flex;flex-direction:column;line-height:1.25;font-family:var(--mono);}
.specimen .stxt b{font-weight:600;font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);}
.specimen .stxt small{font-size:9.5px;letter-spacing:.04em;color:var(--muted);margin-top:2px;}
@media (max-width:540px){.specimen{left:10px;bottom:10px;padding:8px 11px;}.specimen .stxt small{display:none;}}
@media print{.specimen{display:none;}}

/* seal settle (one-time, gated) */
@keyframes sealsettle{0%{transform:rotate(-8deg) scale(.92);opacity:0;}60%{transform:rotate(2deg) scale(1.02);}100%{transform:rotate(0) scale(1);opacity:1;}}
html.js .seal-anim{animation:sealsettle .9s var(--ease-out) .3s both;}
@media (prefers-reduced-motion:reduce){ html.js .seal-anim{animation:none;} .open-now .pulse{animation:none;} }
