/*
 * Hair Life Salon — shared stylesheet
 * Extracted from index.html for use across
 * index.html · services.html · portfolio.html · interview.html
 */

  /* ═══════════════════════════════════════════════════════════
     HAIR LIFE SALON · BY CHARLES MAY
     Palette: Refined editorial architecture.
     Cool cream · muted bronze · pure ink · cool stone
     ═══════════════════════════════════════════════════════════ */
  :root{
    --pearl:    #F6F4EE;
    --cream:    #FAF8F2;
    --bone:     #E8E2D2;
    --ink:      #2A2018;
    --char:     #3A2E20;
    --gold:     #A08455;
    --gold-lt:  #C9AE7C;
    --gold-dk:  #735B38;
    --stone:    #7E7668;
    --stone-lt: #A89E89;
    --line:     rgba(42,32,24,.12);
    --line-hv:  rgba(42,32,24,.32);
    --gold-line:rgba(160,132,85,.38);

    --display: "Fraunces", ui-serif, Georgia, serif;
    --italic:  "Instrument Serif", Georgia, serif;
    --sans:    "Archivo", ui-sans-serif, system-ui, -apple-system, sans-serif;

    --pad-x: clamp(20px, 5vw, 80px);
    --maxw:  1440px;

    --ease:       cubic-bezier(.22,.61,.36,1);
    --ease-sharp: cubic-bezier(.77,0,.175,1);
    --ease-spring:cubic-bezier(.34,1.56,.64,1);
  }

  /* ─── Dark mode ───
     Flips the core palette tokens. Sections using --pearl as
     background become dark; sections using --ink as background
     (Studio, Book CTA, voice--cta) invert to cream — creating
     intentional contrast rhythm in both modes. */
  [data-theme="dark"]{
    --pearl:    #0A0806;
    --cream:    #141109;
    --bone:     #22180E;
    --ink:      #F0E8D6;
    --char:     #C2B190;
    --stone:    #94886F;
    --stone-lt: #837564;
    --line:     rgba(240,232,214,.10);
    --line-hv:  rgba(240,232,214,.28);
    --gold-line:rgba(201,174,124,.42);
    --gold:     #D2B684;
    --gold-lt:  #E0C79A;
    --gold-dk:  #C9AE7C;
    color-scheme: dark;
  }
  /* ─── Dark mode — fix accent sections that would otherwise invert to cream.
       Sections using background:var(--ink) flip to cream in dark mode because
       --ink becomes the light token. In dark mode we pin them to a slightly
       warmer dark (#14100A) so they stay dark but maintain subtle rhythm. */
  [data-theme="dark"] .marquee,
  [data-theme="dark"] .studio,
  [data-theme="dark"] .book,
  [data-theme="dark"] .credentials-strip{
    background: #14100A !important;
    color: #F0E8D6;
  }
  [data-theme="dark"] .studio .h2,
  [data-theme="dark"] .studio__detail a,
  [data-theme="dark"] .book h2,
  [data-theme="dark"] .book p{
    color: #F0E8D6;
  }

  html{ transition: color .4s var(--ease); }
  body{ transition: background-color .45s var(--ease), color .45s var(--ease); }

  /* ─── Reset ─── */
  *,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
  html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
  body{
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--pearl);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img, svg{ display:block; max-width:100%; height:auto; }
  button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
  a{ color:inherit; text-decoration:none; }
  ::selection{ background: var(--gold); color: var(--ink); }

  /* Paper grain */
  body::before{
    content:"";
    position: fixed; inset:0;
    pointer-events:none;
    z-index: 1000;
    opacity: .045;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }

  /* Crown glyph */
  .crown-mark{
    display: inline-block;
    width: 14px; height: 10px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'><path d='M2 14 L4 4 L8 8 L12 2 L16 8 L20 4 L22 14 Z M2 14 L22 14'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'><path d='M2 14 L4 4 L8 8 L12 2 L16 8 L20 4 L22 14 Z M2 14 L22 14'/></svg>") no-repeat center / contain;
    vertical-align: -1px;
    color: var(--gold);
  }

  /* Small tick / separator dot */
  .dot{
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
  }

  /* ═══════════════════════════════════════════════════
     NAVIGATION
     ═══════════════════════════════════════════════════ */
  .nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px var(--pad-x);
    display: flex; align-items: center; justify-content: space-between;
    background: transparent;
    color: var(--ink);
    transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
    border-bottom: 1px solid transparent;
  }
  .nav.is-stuck{
    background: color-mix(in srgb, var(--pearl) 90%, transparent);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    border-bottom-color: var(--line);
    padding-top: 12px; padding-bottom: 12px;
  }
  .nav__brand{
    font-family: var(--display);
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.005em;
    display: flex; align-items: baseline; gap: 9px;
    white-space: nowrap;
  }
  .nav__brand em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
  }
  .nav__brand small{
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--stone);
  }
  @media (max-width: 520px){
    .nav__brand small{ display: none; }
  }
  .nav__menu{
    display: none;
    gap: 18px;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
  }
  @media (min-width: 1200px){
    .nav__menu{ gap: 22px; font-size: 10.5px; letter-spacing: .22em; }
  }
  .nav__menu a{
    position: relative;
    padding-bottom: 4px;
  }
  .nav__menu a::after{
    content:"";
    position: absolute; left:0; right:0; bottom:0;
    height:1px; background: currentColor;
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--ease);
  }
  .nav__menu a:hover::after{ transform: scaleX(1); }
  .nav__cta{
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 10px 18px;
    border: 1px solid currentColor;
    border-radius: 999px;
    transition: all .35s var(--ease);
    font-weight: 500;
  }
  .nav__cta:hover{
    background: var(--ink);
    color: var(--pearl);
    border-color: var(--ink);
  }
  @media (min-width: 1050px){
    .nav__menu{ display: flex; }
  }

  /* ─── Nav right group (theme toggle + menu toggle + CTA) ─── */
  .nav__right{
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Theme toggle */
  .theme-toggle{
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line-hv);
    color: currentColor;
    transition: all .35s var(--ease), transform .6s var(--ease-spring);
    position: relative;
    overflow: hidden;
  }
  .theme-toggle:hover{
    background: var(--ink);
    color: var(--pearl);
    border-color: var(--ink);
    transform: rotate(30deg);
  }
  .theme-toggle svg{
    width: 15px; height: 15px;
    position: absolute;
    transition: opacity .4s var(--ease), transform .5s var(--ease-spring);
  }
  .theme-toggle .sun{ opacity: 1; transform: rotate(0) scale(1); }
  .theme-toggle .moon{ opacity: 0; transform: rotate(-90deg) scale(.6); }
  [data-theme="dark"] .theme-toggle .sun{ opacity: 0; transform: rotate(90deg) scale(.6); }
  [data-theme="dark"] .theme-toggle .moon{ opacity: 1; transform: rotate(0) scale(1); }

  /* Mobile hamburger */
  .menu-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px; height: 38px;
    gap: 5px;
    border: 1px solid var(--line-hv);
    border-radius: 50%;
    transition: border-color .3s var(--ease), background .3s var(--ease);
    color: currentColor;
  }
  .menu-toggle span{
    display: block;
    width: 16px; height: 1.5px;
    background: currentColor;
    transition: transform .35s var(--ease-sharp), opacity .2s var(--ease);
    transform-origin: center;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
  @media (max-width: 899px){
    .menu-toggle{ display: flex; }
  }

  /* Mobile menu overlay */
  .mobile-menu{
    position: fixed;
    inset: 0;
    z-index: 95;
    background: var(--pearl);
    padding: 110px clamp(24px, 7vw, 60px) 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(-4%);
    opacity: 0;
    pointer-events: none;
    transition: transform .55s var(--ease-sharp), opacity .45s var(--ease);
    overflow-y: auto;
  }
  .mobile-menu.is-open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu::before{
    content: "";
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--gold) 24%, transparent) 0%, transparent 60%);
    top: -300px; right: -400px;
    filter: blur(30px);
    pointer-events: none;
    opacity: .5;
  }
  .mobile-menu__eyebrow{
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
    position: relative;
  }
  .mobile-menu__eyebrow::before{
    content:""; width: 26px; height: 1px; background: var(--gold);
  }
  .mobile-menu__items{
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
  }
  .mobile-menu__items a{
    font-family: var(--display);
    font-size: clamp(42px, 11vw, 72px);
    font-weight: 330;
    font-variation-settings: "opsz" 144, "wght" 330;
    letter-spacing: -0.035em;
    color: var(--ink);
    display: flex; align-items: baseline; gap: 16px;
    line-height: 1;
    padding: 10px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease);
  }
  .mobile-menu__items a em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
  }
  .mobile-menu__items a .num{
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    color: var(--stone);
    align-self: flex-start;
    margin-top: 16px;
  }
  .mobile-menu__items a:hover,
  .mobile-menu__items a:focus-visible{
    color: var(--gold-dk);
  }
  .mobile-menu.is-open .mobile-menu__items a{
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu.is-open .mobile-menu__items a:nth-child(1){ transition-delay: .18s; }
  .mobile-menu.is-open .mobile-menu__items a:nth-child(2){ transition-delay: .24s; }
  .mobile-menu.is-open .mobile-menu__items a:nth-child(3){ transition-delay: .30s; }
  .mobile-menu.is-open .mobile-menu__items a:nth-child(4){ transition-delay: .36s; }
  .mobile-menu.is-open .mobile-menu__items a:nth-child(5){ transition-delay: .42s; }

  .mobile-menu__foot{
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--stone);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s var(--ease) .5s, transform .5s var(--ease) .5s;
    position: relative;
  }
  .mobile-menu.is-open .mobile-menu__foot{ opacity: 1; transform: translateY(0); }
  .mobile-menu__foot a{
    color: var(--ink);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.005em;
    text-transform: none;
    transition: color .3s var(--ease);
  }
  .mobile-menu__foot a:hover{ color: var(--gold-dk); }
  .mobile-menu__foot a em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
  }
  .mobile-menu__foot .foot-row{
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px;
  }
  .mobile-menu__foot small{
    font-size: 9.5px;
    letter-spacing: .22em;
    color: var(--stone);
    font-family: var(--sans);
    text-transform: uppercase;
    font-weight: 500;
  }

  body.is-menu-open{
    overflow: hidden;
  }

  /* Scroll progress bar — subtle gold line at the very top */
  .scroll-progress{
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold) 100%);
    z-index: 101;
    transition: width .15s linear;
    pointer-events: none;
  }

  /* ═══════════════════════════════════════════════════
     HERO — Split: typography + editorial portrait
     ═══════════════════════════════════════════════════ */
  .hero{
    position: relative;
    padding: 130px var(--pad-x) 40px;
    min-height: 100vh;
    min-height: 100svh;
    display: flex; flex-direction: column;
    overflow: hidden;
    background: var(--pearl);
  }

  /* Decorative sweeping gold arc behind the headline */
  .hero::before{
    content:"";
    position: absolute;
    top: -200px; right: -280px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--gold) 26%, transparent) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(30px);
    opacity: .55;
  }

  .hero__meta{
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
    font-size: 10.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--char);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(30px, 6vw, 60px);
    position: relative; z-index: 3;
  }
  .hero__meta span{ display: inline-flex; align-items: center; gap: 8px; }
  .hero__meta .tx{ color: var(--gold-dk); letter-spacing: .18em; }
  .hero__meta > span:nth-child(2){ display: none; }
  @media (min-width: 900px){
    .hero__meta > span:nth-child(2){ display: inline-flex; }
  }

  .hero__grid{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
    position: relative; z-index: 2;
  }
  @media (min-width: 900px){
    .hero__grid{
      grid-template-columns: 1.15fr 1fr;
      align-items: end;
    }
  }

  .hero__left{
    display: flex; flex-direction: column;
    gap: clamp(22px, 3vw, 34px);
  }

  .hero__headline{
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "wght" 330, "SOFT" 100;
    font-weight: 330;
    line-height: 0.86;
    letter-spacing: -0.04em;
    font-size: clamp(72px, 16vw, 220px);
    color: var(--ink);
  }
  .hero__headline .line{ display: block; overflow: hidden; }
  .hero__headline .line span{
    display: inline-block;
    transform: translateY(110%);
    animation: rise 1.1s var(--ease-sharp) forwards;
  }
  .hero__headline .line:nth-child(2) span{ animation-delay: .08s; }
  .hero__headline em{
    font-family: var(--italic);
    font-style: italic;
    font-weight: 400;
    font-variation-settings: normal;
    color: var(--gold-dk);
  }
  @keyframes rise{ to { transform: translateY(0); } }

  .hero__underline{
    width: 140px;
    height: 1px;
    background: var(--gold);
    margin-top: 4px;
    transform-origin: left;
    transform: scaleX(0);
    animation: lineGrow 1s var(--ease) .8s forwards;
  }
  @keyframes lineGrow{ to { transform: scaleX(1); } }

  .hero__salon{
    font-family: var(--italic);
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 32px);
    color: var(--char);
    letter-spacing: -0.005em;
    line-height: 1.25;
    opacity: 0;
    animation: fade .9s var(--ease) .9s forwards;
  }
  .hero__salon strong{
    font-family: var(--display);
    font-style: normal;
    font-weight: 500;
    color: var(--gold-dk);
    font-variation-settings: "opsz" 72, "wght" 500;
  }
  .hero__salon .sep{
    color: var(--gold);
    font-style: normal;
    margin: 0 8px;
    font-family: var(--sans);
  }
  @keyframes fade{ to { opacity: 1; } }

  .hero__tag{
    font-size: 14px;
    line-height: 1.65;
    color: var(--char);
    max-width: 42ch;
    opacity: 0;
    animation: fade .9s var(--ease) 1s forwards;
  }

  .hero__actions{
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 6px;
    opacity: 0;
    animation: fade .9s var(--ease) 1.15s forwards;
  }

  /* Buttons */
  .btn{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 26px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all .4s var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
  }
  .btn--primary{
    background: var(--ink);
    color: var(--pearl);
  }
  .btn--primary:hover{
    background: var(--gold-dk);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--gold-dk) 55%, transparent);
  }
  .btn--ghost{
    border: 1px solid var(--ink);
    color: var(--ink);
  }
  .btn--ghost:hover{ background: var(--ink); color: var(--pearl); }
  .btn svg{ width:14px; height:14px; transition: transform .3s var(--ease); }
  .btn:hover svg{ transform: translateX(4px); }

  /* Portrait frame on right side of hero */
  .hero__portrait{
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
    max-height: 72vh;
    align-self: end;
    box-shadow: 0 40px 80px -40px rgba(10,10,10,.35);
    opacity: 0;
    animation: fade 1.2s var(--ease) .6s forwards;
  }
  .hero__portrait img{
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
    filter: saturate(.95) contrast(1.02);
    transform: scale(1.04);
    animation: portraitZoom 2.4s var(--ease) forwards;
  }
  @keyframes portraitZoom{ to { transform: scale(1); } }
  .hero__portrait::after{
    content:"";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.25) 100%);
    pointer-events: none;
  }
  .hero__portrait-cap{
    position: absolute;
    left: 16px; bottom: 14px;
    right: 16px;
    z-index: 2;
    display: flex; justify-content: space-between; align-items: end;
    gap: 10px;
    color: var(--pearl);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
  }
  .hero__portrait-cap strong{
    font-weight: 500;
    color: var(--gold-lt);
  }
  .hero__portrait-cap::before{
    content: "";
    position: absolute; left:0; bottom:-10px;
    width: 28px; height: 1px; background: var(--gold-lt);
    display: none;
  }

  /* ═══════════════════════════════════════════════════
     MARQUEE
     ═══════════════════════════════════════════════════ */
  .marquee{
    background: var(--ink);
    color: var(--pearl);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid var(--gold-dk);
    border-bottom: 1px solid var(--gold-dk);
  }
  .marquee__track{
    display: flex; gap: 50px;
    white-space: nowrap;
    animation: scroll 42s linear infinite;
    font-family: var(--display);
    font-size: clamp(28px, 5vw, 58px);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
    letter-spacing: -0.02em;
  }
  .marquee__track em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-lt);
  }
  .marquee__track .sep{
    color: var(--gold);
    font-family: var(--sans);
    transform: translateY(-0.15em);
  }
  @keyframes scroll{
    from{ transform: translateX(0); }
    to  { transform: translateX(-50%); }
  }

  /* ═══════════════════════════════════════════════════
     SECTION PRIMITIVES
     ═══════════════════════════════════════════════════ */
  .section{
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .eyebrow{
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--stone);
    margin-bottom: 24px;
  }
  .eyebrow::before{
    content:""; width: 32px; height: 1px; background: var(--gold);
  }
  .eyebrow--center{ justify-content: center; }

  .h2{
    font-family: var(--display);
    font-weight: 330;
    font-variation-settings: "opsz" 144, "wght" 330;
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-size: clamp(44px, 7vw, 96px);
    color: var(--ink);
  }
  .h2 em{
    font-family: var(--italic);
    font-style: italic;
    font-weight: 400;
    font-variation-settings: normal;
    color: var(--gold-dk);
  }

  /* ═══════════════════════════════════════════════════
     THE CRAFT
     ═══════════════════════════════════════════════════ */
  .craft{
    background: var(--cream);
    position: relative;
  }
  .craft__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 100px);
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    align-items: start;
  }
  @media (min-width: 900px){
    .craft__grid{ grid-template-columns: 1fr 1.1fr; }
  }
  .craft__lead{
    font-family: var(--display);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 300;
    line-height: 1.32;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-top: 24px;
  }
  .craft__lead em{ font-family: var(--italic); font-style: italic; color: var(--gold-dk); font-variation-settings: normal; }

  .craft__image{
    margin-top: 40px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 30px 60px -30px rgba(10,10,10,.3);
    position: relative;
  }
  .craft__image img{
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(.96);
    transition: transform 2s var(--ease);
  }
  .craft__image:hover img{ transform: scale(1.04); }

  .craft__body{
    font-size: 15px;
    line-height: 1.75;
    color: var(--char);
    max-width: 48ch;
  }
  .craft__body p + p{ margin-top: 16px; }
  .craft__body p:first-child::first-letter{
    font-family: var(--display);
    font-size: 3.5em;
    float: left;
    line-height: .85;
    padding: 8px 10px 0 0;
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
  }
  .craft__sig{
    margin-top: 32px;
    font-family: var(--italic);
    font-style: italic;
    font-size: 24px;
    color: var(--gold-dk);
    display: flex; align-items: center; gap: 12px;
  }
  .craft__sig i.crown-mark{ color: var(--gold-dk); }

  .craft__specs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 50px;
  }
  .spec{
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }
  .spec:nth-child(odd){ padding-right: 16px; }
  .spec:nth-child(even){ padding-left: 16px; border-left: 1px solid var(--line); }
  .spec__label{
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 10px;
  }
  .spec__value{
    font-family: var(--display);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .spec__value em{ font-family: var(--italic); font-style: italic; color: var(--gold-dk); }
  .spec__note{
    font-size: 12px;
    color: var(--stone);
    margin-top: 6px;
  }

  /* ═══════════════════════════════════════════════════
     WORK / PORTFOLIO
     ═══════════════════════════════════════════════════ */
  .work{
    background: var(--cream);
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
  }
  .work__head{
    max-width: var(--maxw);
    margin: 0 auto clamp(40px, 6vw, 64px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: end;
  }
  @media (min-width: 860px){
    .work__head{ grid-template-columns: 1.2fr .9fr; gap: 60px; }
  }
  .work__head p{
    color: var(--stone);
    max-width: 54ch;
    font-size: 15px;
    line-height: 1.75;
  }
  .work__head p a{
    color: var(--gold-dk);
    border-bottom: 1px solid var(--gold-line);
    transition: color .3s var(--ease);
    padding-bottom: 2px;
  }
  .work__head p a:hover{ color: var(--ink); }

  .portfolio-grid{
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px){
    .portfolio-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  }
  @media (min-width: 900px){
    .portfolio-grid{
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 380px;
      gap: 18px;
    }
  }

  .portfolio-item{
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--char);
    cursor: pointer;
    aspect-ratio: 3/4;
  }
  @media (min-width: 900px){
    .portfolio-item{ aspect-ratio: unset; }
    .portfolio-item--feature{
      grid-column: span 2;
      grid-row: span 2;
    }
  }
  .portfolio-item img{
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.8s var(--ease);
    filter: saturate(1.02);
  }
  .portfolio-item:hover img{ transform: scale(1.06); }
  .portfolio-item::after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.78) 100%);
    opacity: .55;
    pointer-events: none;
    transition: opacity .5s var(--ease);
  }
  .portfolio-item:hover::after{ opacity: .88; }
  .portfolio-item__cap{
    position: absolute;
    left: clamp(16px, 2vw, 24px); right: clamp(16px, 2vw, 24px); bottom: clamp(14px, 2vw, 20px);
    z-index: 2;
    color: var(--pearl);
    transform: translateY(4px);
    transition: transform .5s var(--ease);
  }
  .portfolio-item:hover .portfolio-item__cap{ transform: translateY(0); }
  .portfolio-item__tag{
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 4px;
    display: inline-block;
    font-weight: 500;
  }
  .portfolio-item__title{
    font-family: var(--display);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--pearl);
  }
  .portfolio-item__title em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-lt);
    font-variation-settings: normal;
  }
  .portfolio-item--feature .portfolio-item__title{
    font-size: clamp(22px, 2.6vw, 30px);
    font-variation-settings: "opsz" 144, "wght" 400;
  }

  .work__foot{
    max-width: var(--maxw);
    margin: clamp(30px, 5vw, 50px) auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .work__foot p{
    color: var(--stone);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .work__foot p em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    text-transform: none;
    letter-spacing: -0.005em;
    font-size: 15px;
  }
  .work__foot a.work__insta{
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-dk);
    border: 1px solid var(--gold-line);
    padding: 10px 16px;
    border-radius: 999px;
    transition: all .35s var(--ease);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .work__foot a.work__insta:hover{
    background: var(--ink);
    color: var(--gold-lt);
    border-color: var(--ink);
  }
  .work__foot a.work__insta svg{ width: 14px; height: 14px; }

    /* ═══════════════════════════════════════════════════
     SERVICES — Full menu with category filter
     ═══════════════════════════════════════════════════ */
  .services{ background: var(--pearl); }
  .services__head{
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: clamp(40px, 6vw, 64px);
    max-width: 720px;
  }
  .services__head p{
    color: var(--stone);
    max-width: 50ch;
    font-size: 15px;
    line-height: 1.7;
  }

  /* Consultation callout — always visible */
  .svc-consult{
    margin-bottom: 50px;
    padding: clamp(24px, 3vw, 36px);
    background: var(--cream);
    border: 1px dashed var(--gold-line);
    border-radius: 2px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .4s var(--ease);
  }
  .svc-consult:hover{
    border-color: var(--gold-dk);
    transform: translateY(-2px);
  }
  .svc-consult::before{
    content:"";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dk));
  }
  .svc-consult__eyebrow{
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-dk);
    font-weight: 500;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
  }
  .svc-consult__eyebrow::before{
    content:""; width: 20px; height: 1px; background: var(--gold);
  }
  .svc-consult__title{
    font-family: var(--display);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
    letter-spacing: -0.015em;
    margin-bottom: 6px;
    line-height: 1.15;
  }
  .svc-consult__title em{ font-family: var(--italic); font-style: italic; color: var(--gold-dk); font-variation-settings: normal; }
  .svc-consult__body p{
    font-size: 13.5px;
    color: var(--char);
    line-height: 1.55;
    max-width: 52ch;
  }
  .svc-consult__price{
    text-align: right;
    font-family: var(--italic);
    font-style: italic;
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--gold-dk);
    line-height: 1;
    white-space: nowrap;
  }
  .svc-consult__price small{
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 10px;
    color: var(--stone);
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
  }
  @media (max-width: 640px){
    .svc-consult{ grid-template-columns: 1fr; }
    .svc-consult__price{ text-align: left; }
  }

  /* Filter pills */
  .svc-filters{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 40px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--cream);
    justify-content: center;
  }
  .svc-filter{
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 10.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--stone);
    transition: all .35s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .svc-filter:hover{ color: var(--ink); }
  .svc-filter.is-active{
    background: var(--ink);
    color: var(--pearl);
    border-color: var(--ink);
  }
  @media (max-width: 700px){
    .svc-filters{ border-radius: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 5px; -webkit-overflow-scrolling: touch; }
    .svc-filter{ padding: 8px 14px; flex-shrink: 0; }
  }

  /* Categories */
  .svc-menu .svc-cat{
    margin-bottom: 56px;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }
  .svc-menu:not([data-filter="all"]) .svc-cat{ display: none; }
  .svc-menu[data-filter="all"] .svc-cat,
  .svc-menu[data-filter="haircuts"] .svc-cat[data-cat="haircuts"],
  .svc-menu[data-filter="color"] .svc-cat[data-cat="color"],
  .svc-menu[data-filter="highlights"] .svc-cat[data-cat="highlights"],
  .svc-menu[data-filter="blowouts"] .svc-cat[data-cat="blowouts"],
  .svc-menu[data-filter="treatments"] .svc-cat[data-cat="treatments"],
  .svc-menu[data-filter="styling"] .svc-cat[data-cat="styling"]{
    display: block;
    animation: fadeUp .5s var(--ease);
  }
  @keyframes fadeUp{
    from{ opacity: 0; transform: translateY(10px); }
    to  { opacity: 1; transform: translateY(0); }
  }

  .svc-cat__head{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--gold-line);
    flex-wrap: wrap;
  }
  .svc-cat__title{
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--ink);
  }
  .svc-cat__title em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__count{
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    white-space: nowrap;
  }

  /* Service rows */
  .svc-row{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px 32px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
    transition: padding .35s var(--ease), background .35s var(--ease);
  }
  .svc-row:hover{
    padding-left: 14px; padding-right: 14px;
    background: var(--cream);
  }
  .svc-row__body{
    display: flex; flex-direction: column; gap: 5px;
  }
  .svc-row__name{
    font-family: var(--display);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    line-height: 1.2;
    letter-spacing: -0.012em;
    color: var(--ink);
  }
  .svc-row__name em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
  }
  .svc-row__desc{
    font-size: 12.5px;
    color: var(--stone);
    line-height: 1.5;
    max-width: 58ch;
  }
  .svc-row__meta{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    white-space: nowrap;
  }
  .svc-row__price{
    font-family: var(--display);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 500;
    font-variation-settings: "opsz" 72, "wght" 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  }
  .svc-row__price .plus{
    color: var(--gold-dk);
    font-family: var(--italic);
    font-style: italic;
    font-weight: 400;
    margin-left: 1px;
  }
  .svc-row__free{
    color: var(--gold-dk);
    font-family: var(--italic);
    font-style: italic;
    font-weight: 400;
  }
  .svc-row__dur{
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--stone);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
  }
  @media (max-width: 640px){
    .svc-row{ grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
    .svc-row__meta{ flex-direction: row; align-items: baseline; justify-content: space-between; gap: 14px; }
    .svc-row:hover{ padding-left: 0; padding-right: 0; background: transparent; }
  }

  /* Menu foot: Book CTA + BNPL */
  .svc-foot{
    margin-top: 70px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .svc-foot p{
    color: var(--stone);
    font-size: 13.5px;
    max-width: 54ch;
    line-height: 1.65;
  }
  .svc-foot__actions{ display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

    /* ═══════════════════════════════════════════════════
     STUDIO
     ═══════════════════════════════════════════════════ */
  .studio{
    background: var(--ink);
    color: var(--pearl);
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    position: relative;
    overflow: hidden;
  }
  .studio .eyebrow{ color: var(--gold-lt); }
  .studio .eyebrow::before{ background: var(--gold); }
  .studio .h2{ color: var(--pearl); }
  .studio .h2 em{ color: var(--gold-lt); }

  .studio__head{
    max-width: var(--maxw);
    margin: 0 auto clamp(48px, 8vw, 80px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: end;
  }
  @media (min-width: 860px){
    .studio__head{ grid-template-columns: 1.2fr .9fr; gap: 60px; }
  }
  .studio__head p{
    color: var(--stone-lt);
    max-width: 52ch;
    font-size: 15px;
    line-height: 1.75;
  }

  .gallery{
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .g-item{
    position: relative;
    overflow: hidden;
    background: var(--char);
    border-radius: 2px;
    aspect-ratio: 4/3;
    cursor: pointer;
  }
  .g-item img{
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.8s var(--ease);
  }
  .g-item:hover img{ transform: scale(1.05); }
  .g-item::after{
    content:"";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.72) 100%);
    opacity: .62;
    pointer-events: none;
    transition: opacity .5s var(--ease);
  }
  .g-item:hover::after{ opacity: .85; }
  .g-item__cap{
    position: absolute;
    left: 20px; right: 20px; bottom: 18px;
    z-index: 2;
    display: flex; justify-content: space-between; align-items: end;
    gap: 12px;
    color: var(--pearl);
  }
  .g-item__title{
    font-family: var(--display);
    font-size: clamp(18px, 1.9vw, 22px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    letter-spacing: -0.015em;
    line-height: 1.15;
  }
  .g-item__title em{ font-family: var(--italic); font-style: italic; color: var(--gold-lt); }
  .g-item__tag{
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    border: 1px solid var(--gold);
    padding: 4px 9px;
    border-radius: 999px;
    white-space: nowrap;
  }

  @media (min-width: 820px){
    .gallery{
      grid-template-columns: repeat(6, 1fr);
      grid-auto-flow: dense;
      gap: 18px;
    }
    .g-item{ aspect-ratio: auto; }
    .g-item--hero     { grid-column: span 4; grid-row: span 2; min-height: 460px; }
    .g-item--stations { grid-column: span 2; grid-row: span 3; min-height: 700px; }
    .g-item--floor    { grid-column: span 4; grid-row: span 1; min-height: 230px; }
    .g-item--wash     { grid-column: span 3; grid-row: span 1; min-height: 280px; }
    .g-item--reception{ grid-column: span 3; grid-row: span 1; min-height: 280px; }
  }

  /* Studio info strip */
  .studio__foot{
    max-width: var(--maxw);
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid color-mix(in srgb, var(--pearl) 14%, transparent);
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 50px;
  }
  @media (min-width: 820px){
    .studio__foot{ grid-template-columns: 1fr 1fr 1.3fr; align-items: start; }
  }
  .studio__detail{ display: flex; flex-direction: column; gap: 18px; }
  .studio__detail h4{
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 500;
  }
  .studio__detail p{
    font-family: var(--display);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    line-height: 1.35;
    color: var(--pearl);
  }
  .studio__detail p small{
    display: block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    color: var(--stone-lt);
    margin-top: 4px;
  }
  .studio__detail a{
    border-bottom: 1px solid color-mix(in srgb, var(--pearl) 30%, transparent);
    transition: all .3s var(--ease);
    padding-bottom: 2px;
  }
  .studio__detail a:hover{ color: var(--gold-lt); border-bottom-color: var(--gold); }

  .studio__map{
    position: relative;
    aspect-ratio: 16/11;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--pearl) 14%, transparent);
    background: var(--char);
  }
  .studio__map iframe{
    position: absolute; inset:0;
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(.35) contrast(.96);
  }
  .studio__mapcap{
    position: absolute;
    left: 14px; bottom: 14px;
    z-index: 2;
    padding: 10px 14px;
    background: var(--pearl);
    color: var(--ink);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 500;
    box-shadow: 0 8px 18px -8px rgba(10,10,10,.5);
  }
  .studio__mapcap span.pulse{
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold-dk);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 38%, transparent);
    animation: pulse 2s var(--ease) infinite;
  }
  @keyframes pulse{
    0%,100%{ box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 38%, transparent); }
    50%    { box-shadow: 0 0 0 9px color-mix(in srgb, var(--gold) 6%, transparent); }
  }
  .studio__mapopen{
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    padding: 9px 14px;
    background: color-mix(in srgb, var(--pearl) 94%, transparent);
    color: var(--ink);
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .3s var(--ease);
  }
  .studio__mapopen:hover{ background: var(--pearl); transform: translateY(-2px); }

  /* ═══════════════════════════════════════════════════
     VOICES
     ═══════════════════════════════════════════════════ */
  .voices{
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    max-width: var(--maxw);
    margin: 0 auto;
    background: var(--pearl);
  }
  .voices__head{
    text-align: center;
    margin-bottom: clamp(48px, 8vw, 80px);
  }
  .voices__head p{
    max-width: 46ch;
    margin: 24px auto 0;
    color: var(--stone);
    font-size: 15px;
    line-height: 1.7;
  }
  .voices__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  @media (min-width: 760px){
    .voices__grid{ grid-template-columns: repeat(2, 1fr); gap: 26px; }
  }
  @media (min-width: 1080px){
    .voices__grid{ grid-template-columns: repeat(3, 1fr); }
  }
  .voice{
    padding: 30px 28px 26px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 2px;
    position: relative;
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
    align-self: start;
  }
  .voice:hover{
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -30px rgba(10,10,10,.22);
    border-color: var(--gold-line);
  }

  /* Top row of card: stars + date */
  .voice__meta-row{
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px;
  }
  .voice__stars{
    display: flex; gap: 3px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .voice__date{
    font-size: 9.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--stone);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
  }

  /* Service line — what was booked */
  .voice__service{
    font-family: var(--italic);
    font-style: italic;
    font-size: 13.5px;
    color: var(--gold-dk);
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: .005em;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gold-line);
  }

  .voice__text{
    font-family: var(--display);
    font-size: 15.5px;
    font-weight: 350;
    line-height: 1.55;
    font-variation-settings: "opsz" 144, "wght" 350;
    letter-spacing: -0.006em;
    color: var(--ink);
    flex: 1;
  }
  .voice__text em{ font-family: var(--italic); font-style: italic; color: var(--gold-dk); font-variation-settings: normal; }
  .voice__text .hl{ font-weight: 600; color: var(--gold-dk); font-style: normal; }

  .voice__attr{
    display: flex; align-items: center; gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .voice__avatar{
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-lt);
    display: grid; place-items: center;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    flex-shrink: 0;
  }
  .voice__who{ display: flex; flex-direction: column; }
  .voice__name{
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: .01em;
  }
  .voice__meta{
    font-size: 10px;
    color: var(--stone);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* CTA card variant */
  .voice--cta{
    background: var(--ink);
    border-color: var(--gold-dk);
    color: var(--pearl);
  }
  .voice--cta .voice__text{ color: var(--pearl); }
  .voice--cta .voice__text em{ color: var(--gold-lt); }
  .voice--cta .voice__service{ color: var(--gold-lt); border-bottom-color: color-mix(in srgb, var(--gold) 35%, transparent); }
  .voice--cta .voice__date{ color: var(--stone-lt); }
  .voice--cta .voice__stars{ color: var(--gold-lt); }
  .voice--cta .voice__attr{ border-top-color: color-mix(in srgb, var(--pearl) 18%, transparent); }
  .voice--cta .btn{
    border: 1px solid var(--gold-lt);
    color: var(--gold-lt);
    padding: 10px 18px;
    font-size: 10px;
  }
  .voice--cta .btn:hover{ background: var(--gold-lt); color: var(--ink); border-color: var(--gold-lt); }

  /* Stats bar at top of Voices section */
  .voices__stats{
    display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 8px 16px;
    margin: 14px auto 26px;
    padding: 11px 22px;
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--stone);
    background: var(--cream);
  }
  .voices__stats strong{
    font-family: var(--italic);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-dk);
    letter-spacing: -0.005em;
    text-transform: none;
    font-size: 16px;
    margin-right: 2px;
  }
  .voices__stats .stars{
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2.5px;
    font-family: var(--sans);
  }
  .voices__stats .dot{ background: var(--gold); }

  /* Featured pull quote */
  .voice-featured{
    margin: clamp(50px, 8vw, 90px) auto;
    max-width: 1040px;
    text-align: center;
    position: relative;
    padding: clamp(40px, 6vw, 70px) 20px;
  }
  .voice-featured::before,
  .voice-featured::after{
    content: "";
    position: absolute;
    left: 50%; transform: translateX(-50%);
    width: 70px; height: 1px;
    background: var(--gold);
  }
  .voice-featured::before{ top: 0; }
  .voice-featured::after{ bottom: 0; }
  .voice-featured__quote{
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    font-weight: 300;
    font-size: clamp(32px, 5.5vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: var(--ink);
    max-width: 20ch;
    margin: 0 auto;
  }
  .voice-featured__quote::before{
    content: "\201C"; color: var(--gold-dk); margin-right: .06em;
    font-style: normal; font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
  }
  .voice-featured__quote::after{
    content: "\201D"; color: var(--gold-dk); margin-left: .04em;
    font-style: normal; font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
  }
  .voice-featured__quote em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
    font-weight: 400;
  }
  .voice-featured__attr{
    margin-top: 32px;
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--stone);
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 14px;
  }
  .voice-featured__name{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-size: 17px;
    letter-spacing: .01em;
    text-transform: none;
  }
  .voice-featured__attr .sep{
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold); display: inline-block;
  }

  .voices__cta{
    text-align: center;
    margin-top: 50px;
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--stone);
  }
  .voices__cta a{
    color: var(--gold-dk);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color .3s var(--ease);
  }
  .voices__cta a:hover{ color: var(--ink); }

  /* ═══════════════════════════════════════════════════
     FAQ — Accordion
     ═══════════════════════════════════════════════════ */
  .faq{
    background: var(--pearl);
    padding: clamp(80px, 12vw, 140px) var(--pad-x);
  }
  .faq__inner{
    max-width: 1000px;
    margin: 0 auto;
  }
  .faq__head{
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
  }
  .faq__head p{
    margin: 22px auto 0;
    max-width: 50ch;
    color: var(--stone);
    font-size: 15px;
    line-height: 1.7;
  }
  .faq__list{
    border-top: 1px solid var(--line);
  }
  .faq-item{
    border-bottom: 1px solid var(--line);
    transition: border-color .4s var(--ease);
  }
  .faq-item[open]{
    border-bottom-color: var(--gold-line);
  }
  .faq-item summary{
    cursor: pointer;
    list-style: none;
    padding: 26px 4px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    transition: color .3s var(--ease), padding .3s var(--ease);
  }
  .faq-item summary::-webkit-details-marker{ display: none; }
  .faq-item summary::marker{ content: ""; display: none; }
  .faq-item summary:hover{ padding-left: 10px; }
  .faq-item summary .num{
    font-family: var(--display);
    font-size: 12px;
    font-weight: 500;
    color: var(--gold-dk);
    letter-spacing: .08em;
    font-variant-numeric: tabular-nums;
  }
  .faq-item summary .q{
    font-family: var(--display);
    font-size: clamp(17px, 2.1vw, 22px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    letter-spacing: -0.012em;
    line-height: 1.3;
    color: var(--ink);
    transition: color .3s var(--ease);
  }
  .faq-item summary .q em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
  }
  .faq-item summary:hover .q{ color: var(--gold-dk); }
  .faq-item summary .faq-icon{
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--line-hv);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform .4s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
    position: relative;
  }
  .faq-item summary .faq-icon::before,
  .faq-item summary .faq-icon::after{
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 1px;
  }
  .faq-item summary .faq-icon::before{
    width: 10px; height: 1.5px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .faq-item summary .faq-icon::after{
    width: 1.5px; height: 10px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .faq-item[open] summary .faq-icon{
    border-color: var(--gold-dk);
    color: var(--gold-dk);
  }
  .faq-item[open] summary .faq-icon::after{
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
  }
  .faq-item .faq-a{
    padding: 0 4px 28px 50px;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--char);
    max-width: 62ch;
    animation: faqFade .5s var(--ease);
  }
  .faq-item .faq-a em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
  }
  .faq-item .faq-a a{
    color: var(--gold-dk);
    border-bottom: 1px solid var(--gold-line);
    padding-bottom: 1px;
    transition: color .3s var(--ease);
  }
  .faq-item .faq-a a:hover{ color: var(--ink); }
  @keyframes faqFade{
    from{ opacity: 0; transform: translateY(-6px); }
    to  { opacity: 1; transform: translateY(0); }
  }
  @media (max-width: 640px){
    .faq-item summary{ grid-template-columns: auto 1fr auto; gap: 14px; padding: 22px 0; }
    .faq-item summary:hover{ padding-left: 0; }
    .faq-item .faq-a{ padding-left: 36px; }
  }

  /* ═══════════════════════════════════════════════════
     VOICES — Show-more expansion
     ═══════════════════════════════════════════════════ */
  .voices__grid .voice.is-hidden{ display: none; }
  .voices__grid[data-expanded="true"] .voice.is-hidden{
    display: flex;
    animation: fadeUp .6s var(--ease) both;
  }
  .voices__grid[data-expanded="true"] .voice.is-hidden:nth-child(odd){ animation-delay: .05s; }
  .voices__grid[data-expanded="true"] .voice.is-hidden:nth-child(even){ animation-delay: .15s; }

  .voices__expand-wrap{
    display: flex;
    justify-content: center;
    margin-top: clamp(30px, 5vw, 44px);
    transition: opacity .3s var(--ease), max-height .5s var(--ease);
  }
  .voices__expand-wrap.is-hidden{
    opacity: 0; max-height: 0; margin: 0; pointer-events: none;
    overflow: hidden;
  }
  .voices__expand{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    transition: all .35s var(--ease);
    background: transparent;
  }
  .voices__expand:hover{
    background: var(--ink);
    color: var(--pearl);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -10px rgba(10,10,10,.35);
  }
  .voices__expand strong{
    font-family: var(--italic);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-dk);
    font-size: 14px;
    text-transform: none;
    letter-spacing: -0.005em;
  }
  .voices__expand:hover strong{ color: var(--gold-lt); }
  .voices__expand svg{
    width: 14px; height: 14px;
    transition: transform .4s var(--ease);
  }
  .voices__expand:hover svg{ transform: translateY(2px); }

  /* ═══════════════════════════════════════════════════
     STATS STRIP — Credentials band between Hero and Marquee
     ═══════════════════════════════════════════════════ */
  .stats-strip{
    background: var(--pearl);
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    padding: clamp(48px, 6vw, 72px) 24px;
    position: relative;
  }
  .stats-strip__inner{
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    align-items: center;
  }
  .stats-strip__cell--wide .stats-strip__label{
    font-size: 11px;
    letter-spacing: 0.14em;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
  }
  .stats-strip__cell{
    padding: 4px clamp(16px, 2.5vw, 36px);
    text-align: center;
    border-right: 1px solid var(--gold-line);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .4s var(--ease);
  }
  .stats-strip__cell:last-child{ border-right: none; }
  .stats-strip__cell:hover{ transform: translateY(-3px); }
  .stats-strip__num{
    font-family: var(--display);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
  }
  .stats-strip__num em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: normal;
    font-size: 0.85em;
  }
  .stats-strip__num .star{
    color: var(--gold-dk);
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 2px;
    letter-spacing: 0;
  }
  .stats-strip__num .license-num{
    font-size: clamp(22px, 2.6vw, 32px);
    letter-spacing: -0.01em;
  }
  .stats-strip__num .license-prefix{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-size: 0.65em;
    margin-right: 4px;
    font-variation-settings: normal;
  }
  .stats-strip__label{
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    line-height: 1.4;
  }
  @media (max-width: 800px){
    .stats-strip__inner{
      grid-template-columns: repeat(2, 1fr);
      gap: 44px 0;
    }
    .stats-strip__cell--wide{
      grid-column: 1 / -1;
      border-right: none !important;
      border-bottom: 1px solid var(--gold-line);
      padding-bottom: 32px;
    }
    .stats-strip__cell:nth-child(3){ border-right: none; }
    .stats-strip__cell:nth-child(2),
    .stats-strip__cell:nth-child(3){
      padding-bottom: 44px;
      border-bottom: 1px solid var(--gold-line);
    }
  }
  @media (max-width: 420px){
    .stats-strip__num{ font-size: 30px; }
    .stats-strip__label{ font-size: 9px; letter-spacing: 0.22em; }
  }

  /* ═══════════════════════════════════════════════════
     NEIGHBORHOODS MARQUEE — Second scrolling band, pearl variant
     ═══════════════════════════════════════════════════ */
  .marquee--hoods{
    background: var(--cream);
    color: var(--ink);
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    padding: 18px 0;
  }
  .marquee--hoods .marquee__track{
    animation: scrollReverse 72s linear infinite;
    font-family: var(--italic);
    font-style: italic;
    font-size: clamp(20px, 3.2vw, 36px);
    font-weight: 400;
    font-variation-settings: normal;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .marquee--hoods .marquee__track .sep{
    color: var(--gold-dk);
    font-family: var(--sans);
    font-style: normal;
    transform: translateY(-0.2em);
    opacity: 0.6;
  }
  @keyframes scrollReverse{
    from{ transform: translateX(-50%); }
    to  { transform: translateX(0); }
  }

  /* ═══════════════════════════════════════════════════
     FIRST VISIT — 3-step how-it-works section
     ═══════════════════════════════════════════════════ */
  .first-visit{
    padding: clamp(90px, 12vw, 140px) var(--pad-x);
    max-width: var(--maxw);
    margin: 0 auto;
    background: var(--pearl);
  }
  .first-visit__head{
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(60px, 8vw, 100px);
  }
  .first-visit__head .eyebrow{
    justify-content: center;
    margin-bottom: 24px;
  }
  .first-visit__head h2{
    font-family: var(--display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    letter-spacing: -0.028em;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .first-visit__head h2 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: normal;
  }
  .first-visit__head p{
    font-size: 16px;
    line-height: 1.65;
    color: var(--stone);
    max-width: 520px;
    margin: 0 auto;
  }
  .first-visit__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, 4vw, 64px);
    position: relative;
  }
  .first-visit__grid::before{
    /* Hairline connector between steps on desktop */
    content: "";
    position: absolute;
    top: 48px;
    left: 16.67%;
    right: 16.67%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-line) 15%, var(--gold-line) 85%, transparent);
    z-index: 0;
    pointer-events: none;
  }
  .fv-step{
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
  }
  .fv-step__num{
    font-family: var(--italic);
    font-style: italic;
    font-size: clamp(54px, 6vw, 80px);
    font-weight: 300;
    color: var(--gold-dk);
    line-height: 1;
    margin: 0 auto 28px;
    opacity: 0.7;
    display: inline-block;
    position: relative;
    background: var(--pearl);
    padding: 0 20px;
  }
  .fv-step__title{
    font-family: var(--display);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 16px;
    text-transform: none;
  }
  .fv-step__body{
    font-size: 15px;
    line-height: 1.65;
    color: var(--stone);
    max-width: 280px;
    margin: 0 auto;
  }
  .fv-step__body em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--ink);
  }
  @media (max-width: 800px){
    .first-visit__grid{
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .first-visit__grid::before{ display: none; }
    .fv-step{ padding: 0; }
  }

  /* ═══════════════════════════════════════════════════
     VOICES — Closing duo of pull quotes
     ═══════════════════════════════════════════════════ */
  .voices__closing{
    max-width: 1100px;
    margin: clamp(70px, 9vw, 110px) auto 0;
    padding-top: clamp(60px, 7vw, 90px);
    border-top: 1px solid var(--gold-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
  }
  .voice-featured--sm{
    text-align: center;
    padding: 0 10px;
    margin: 0;
    position: relative;
  }
  .voice-featured--sm::before,
  .voice-featured--sm::after{ display: none; }
  .voice-featured--sm .voice-featured__quote{
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.22;
    letter-spacing: -0.018em;
    font-weight: 300;
    max-width: 22ch;
  }
  .voice-featured--sm .voice-featured__attr{
    margin-top: 22px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  .voice-featured--sm .voice-featured__name{
    font-size: 15px;
  }
  @media (max-width: 800px){
    .voices__closing{
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .voices__closing .voice-featured--sm + .voice-featured--sm{
      padding-top: 60px;
      border-top: 1px solid var(--gold-line);
    }
  }

    /* ═══════════════════════════════════════════════════
     HERO CONSULTATION HINT — subtle secondary path
     ═══════════════════════════════════════════════════ */
  .hero__hint{
    margin-top: 26px;
    font-family: var(--italic);
    font-style: italic;
    font-size: 14.5px;
    color: var(--stone);
    line-height: 1.5;
    letter-spacing: -0.005em;
    opacity: 0.9;
  }
  .hero__hint a{
    color: var(--gold-dk);
    text-decoration: none;
    border-bottom: 1px solid rgba(160,132,85,0.28);
    padding-bottom: 2px;
    transition: color .3s var(--ease), border-color .3s var(--ease);
    white-space: nowrap;
  }
  .hero__hint a:hover{
    color: var(--ink);
    border-bottom-color: var(--gold-dk);
  }
  .hero__hint a .arrow{
    display: inline-block;
    transition: transform .3s var(--ease);
    font-family: var(--sans);
    font-style: normal;
    margin-left: 2px;
  }
  .hero__hint a:hover .arrow{ transform: translateX(3px); }

  /* ═══════════════════════════════════════════════════
     CREDENTIALS STRIP — dark editorial band between Craft and Work
     Three dimensions of professional identity: Studio / Booking / Follow
     ═══════════════════════════════════════════════════ */
  .credentials-strip{
    background: var(--ink);
    color: var(--pearl);
    padding: clamp(42px, 5vw, 64px) 24px;
    border-top: 1px solid var(--gold-dk);
    border-bottom: 1px solid var(--gold-dk);
    position: relative;
  }
  .credentials-strip::before,
  .credentials-strip::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .credentials-strip::before{ top: 12px; }
  .credentials-strip::after{ bottom: 12px; }
  .credentials-strip__inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
  }
  .credentials-strip__cell{
    padding: 6px clamp(14px, 2vw, 28px);
    border-right: 1px solid rgba(160,132,85,0.22);
    text-align: center;
    transition: transform .4s var(--ease);
  }
  .credentials-strip__cell:last-child{ border-right: none; }
  .credentials-strip__cell:hover{ transform: translateY(-3px); }
  .credentials-strip__label{
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 500;
    margin-bottom: 14px;
    display: block;
  }
  .credentials-strip__body{
    font-family: var(--display);
    font-variation-settings: "opsz" 72, "wght" 400;
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--pearl);
    line-height: 1.3;
    letter-spacing: -0.008em;
  }
  .credentials-strip__body em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-lt);
    font-variation-settings: normal;
    display: block;
    margin-top: 4px;
    font-size: 0.88em;
  }
  .credentials-strip__body a{
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--ease);
  }
  .credentials-strip__body a:hover{ color: var(--gold-lt); }
  @media (max-width: 800px){
    .credentials-strip__inner{
      grid-template-columns: repeat(2, 1fr);
      gap: 36px 0;
    }
    .credentials-strip__cell:nth-child(2){ border-right: none; }
    .credentials-strip__cell:nth-child(1),
    .credentials-strip__cell:nth-child(2){
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(160,132,85,0.22);
    }
  }
  @media (max-width: 420px){
    .credentials-strip__label{ font-size: 9px; letter-spacing: 0.22em; }
    .credentials-strip__body{ font-size: 15px; }
  }

  /* ═══════════════════════════════════════════════════
     FIRST VISIT — Expanded detail panels (Before You Arrive + Policies)
     ═══════════════════════════════════════════════════ */
  .fv-detail{
    max-width: 1100px;
    margin: clamp(70px, 9vw, 110px) auto 0;
    padding-top: clamp(60px, 7vw, 90px);
    border-top: 1px solid var(--gold-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 90px);
    align-items: start;
  }
  .fv-detail__block{ }
  .fv-detail__eyebrow{
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 16px;
    font-weight: 500;
    display: block;
  }
  .fv-detail__block h3{
    font-family: var(--display);
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.15;
  }
  .fv-detail__block h3 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: normal;
  }
  .fv-detail__intro{
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--stone);
    margin-bottom: 32px;
    max-width: 46ch;
  }
  .fv-detail__list{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .fv-detail__item{
    padding: 22px 0;
    border-top: 1px solid var(--gold-line);
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 18px;
    align-items: start;
  }
  .fv-detail__item:last-child{
    border-bottom: 1px solid var(--gold-line);
  }
  .fv-detail__mark{
    font-family: var(--italic);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-dk);
    font-variation-settings: normal;
    font-weight: 400;
    margin-top: 2px;
    line-height: 1;
    letter-spacing: 0;
  }
  .fv-detail__title{
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .fv-detail__body{
    font-size: 14px;
    line-height: 1.62;
    color: var(--stone);
    margin: 0;
  }
  .fv-detail__body em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--ink);
  }
  @media (max-width: 800px){
    .fv-detail{
      grid-template-columns: 1fr;
      gap: 64px;
    }
  }

    /* ═══════════════════════════════════════════════════
     IN MOTION — vertical video feature between Work and Services
     ═══════════════════════════════════════════════════ */
  .in-motion{
    padding: clamp(90px, 12vw, 150px) var(--pad-x);
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .in-motion__inner{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(50px, 6vw, 100px);
    align-items: center;
  }
  .in-motion__content{
    max-width: 480px;
  }
  .in-motion__content .eyebrow{
    margin-bottom: 28px;
  }
  .in-motion__content h2{
    font-family: var(--display);
    font-size: clamp(42px, 5.5vw, 78px);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    letter-spacing: -0.028em;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 32px;
  }
  .in-motion__content h2 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: normal;
  }
  .in-motion__content p{
    font-size: 17px;
    line-height: 1.65;
    color: var(--stone);
    margin-bottom: 16px;
  }
  .in-motion__content p em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--ink);
  }
  .in-motion__sig{
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-dk);
    font-weight: 500;
  }
  .in-motion__sig::before{
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .in-motion__video{
    position: relative;
    margin: 0;
    aspect-ratio: 9 / 16;
    max-height: 720px;
    justify-self: center;
    width: 100%;
    max-width: 405px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 40px 80px -30px rgba(10,10,10,.35);
    background: var(--ink);
  }
  .in-motion__video video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .in-motion__video::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 75%,
      rgba(10,10,10,.25) 100%
    );
    pointer-events: none;
  }
  .in-motion__videocap{
    position: absolute;
    left: 16px; bottom: 14px;
    z-index: 2;
    color: #F2EBDC;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .in-motion__videocap .dot{
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #C9AE7C;
    animation: pulse 2.4s ease-in-out infinite;
  }
  @media (max-width: 900px){
    .in-motion__inner{
      grid-template-columns: 1fr;
      gap: 50px;
    }
    .in-motion__content{
      max-width: 100%;
      text-align: center;
    }
    .in-motion__content .eyebrow{
      justify-content: center;
    }
    .in-motion__sig{
      margin-left: auto; margin-right: auto;
    }
  }

  /* ═══════════════════════════════════════════════════
     MEDIA — Press feature section
     Editorial press card + biographical narrative + quote trio
     ═══════════════════════════════════════════════════ */
  .media-section{
    padding: clamp(90px, 12vw, 160px) var(--pad-x);
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .media-section__head{
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(56px, 7vw, 88px);
  }
  .media-section__head .eyebrow{
    justify-content: center;
    margin-bottom: 28px;
  }
  .media-section__head h2{
    font-family: var(--display);
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    letter-spacing: -0.028em;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 18px;
  }
  .media-section__head h2 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: normal;
  }
  .media-section__head p{
    font-size: 15px;
    line-height: 1.6;
    color: var(--stone);
    letter-spacing: 0.02em;
  }

  /* ─── Featured press card ─── */
  .press-card{
    max-width: 1080px;
    margin: 0 auto clamp(60px, 8vw, 100px);
    padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 72px);
    border: 1px solid var(--gold-line);
    position: relative;
    text-align: center;
  }
  .press-card::before,
  .press-card::after{
    content: "";
    position: absolute;
    width: 28px; height: 28px;
    border-color: var(--gold);
    border-style: solid;
  }
  .press-card::before{
    top: -1px; left: -1px;
    border-width: 1px 0 0 1px;
  }
  .press-card::after{
    bottom: -1px; right: -1px;
    border-width: 0 1px 1px 0;
  }
  .press-card__meta{
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-dk);
    font-weight: 500;
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .press-card__meta .sep{
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
  }
  .press-card__title{
    font-family: var(--display);
    font-size: clamp(18px, 1.9vw, 22px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    letter-spacing: -0.01em;
    color: var(--stone-lt);
    margin-bottom: 32px;
  }
  .press-card__title em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--ink);
  }
  .press-card__quote{
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    font-weight: 300;
    font-size: clamp(30px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.026em;
    color: var(--ink);
    max-width: 22ch;
    margin: 0 auto 32px;
  }
  .press-card__quote::before{
    content: "\201C";
    color: var(--gold-dk);
    margin-right: .04em;
    font-style: normal;
    font-weight: 400;
  }
  .press-card__quote::after{
    content: "\201D";
    color: var(--gold-dk);
    margin-left: .02em;
    font-style: normal;
    font-weight: 400;
  }
  .press-card__quote em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
    font-weight: 400;
  }
  .press-card__attr{
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 40px;
  }
  .press-card__attr span{
    font-family: var(--italic);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-dk);
    letter-spacing: 0.01em;
    text-transform: none;
    margin-right: 10px;
  }
  .press-card__cta{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
    font-weight: 500;
    transition: color .3s var(--ease), gap .3s var(--ease);
  }
  .press-card__cta:hover{
    color: var(--gold-dk);
    gap: 14px;
  }
  .press-card__cta svg{
    width: 14px; height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
  }

  /* ─── Biography narrative panel ─── */
  .media-bio{
    max-width: 860px;
    margin: 0 auto clamp(60px, 8vw, 100px);
    padding: clamp(40px, 6vw, 64px) 0;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    text-align: center;
  }
  .media-bio__eyebrow{
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 18px;
    font-weight: 500;
    display: block;
  }
  .media-bio__body{
    font-family: var(--display);
    font-size: clamp(17px, 1.6vw, 20px);
    font-variation-settings: "opsz" 72, "wght" 350;
    font-weight: 350;
    line-height: 1.55;
    color: var(--ink);
    letter-spacing: -0.006em;
    max-width: 64ch;
    margin: 0 auto;
  }
  .media-bio__body em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
    font-weight: 400;
  }
  .media-bio__body strong{
    font-weight: 500;
    color: var(--ink);
  }

  /* ─── Quote trio ─── */
  .quote-trio{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
    max-width: 1200px;
    margin: 0 auto;
  }
  .qt-card{
    padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
    border: 1px solid var(--gold-line);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .4s var(--ease), border-color .4s var(--ease);
  }
  .qt-card:hover{
    transform: translateY(-4px);
    border-color: var(--gold);
  }
  .qt-card__tag{
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-dk);
    font-weight: 500;
  }
  .qt-card__quote{
    font-family: var(--display);
    font-size: clamp(18px, 1.9vw, 22px);
    font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 70;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.012em;
    color: var(--ink);
    flex: 1;
  }
  .qt-card__quote em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .qt-card__quote::before{
    content: "\201C";
    color: var(--gold-dk);
    font-family: var(--italic);
    font-size: 1.4em;
    line-height: 0;
    margin-right: .02em;
    vertical-align: -0.2em;
  }
  .qt-card__attr{
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    padding-top: 16px;
    border-top: 1px solid var(--gold-line);
  }
  @media (max-width: 900px){
    .quote-trio{
      grid-template-columns: 1fr;
      gap: 18px;
    }
  }

    /* ═══════════════════════════════════════════════════
     COLOR MARQUEE — infinite horizontal image scroll
     Placed at top of the Color category card inside Services
     Seamless loop achieved by duplicating the track
     ═══════════════════════════════════════════════════ */
  .svc-cat__color-marquee{
    margin: clamp(24px, 3vw, 36px) calc(var(--pad-x) * -1) clamp(28px, 3vw, 40px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--gold-line);
    position: relative;
    overflow: hidden;
  }
  .svc-cat__color-marquee-head{
    padding: 0 var(--pad-x) 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .svc-cat__color-marquee-head h4{
    font-family: var(--display);
    font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0;
  }
  .svc-cat__color-marquee-head h4 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__color-marquee-head .tagline{
    font-size: 13px;
    color: var(--stone);
    font-style: italic;
    font-family: var(--italic);
  }
  .svc-cat__color-marquee-viewport{
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .svc-cat__color-marquee-track{
    display: flex;
    gap: 18px;
    width: max-content;
    animation: color-scroll-left 48s linear infinite;
    padding: 0 9px;
  }
  .svc-cat__color-marquee:hover .svc-cat__color-marquee-track{
    animation-play-state: paused;
  }
  .svc-cat__color-item{
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 310px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid var(--gold-line);
    position: relative;
    transition: transform .5s var(--ease);
  }
  .svc-cat__color-item:hover{
    transform: translateY(-4px);
    border-color: var(--gold);
  }
  .svc-cat__color-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
  }
  .svc-cat__color-item:hover img{
    transform: scale(1.04);
  }
  .svc-cat__color-item__tag{
    position: absolute;
    left: 14px; bottom: 14px;
    z-index: 2;
    padding: 5px 11px;
    background: rgba(10,8,6,.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F2EBDC;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(201,174,124,.35);
  }
  @keyframes color-scroll-left{
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Reduced motion: pause the marquee for users who prefer it */
  @media (prefers-reduced-motion: reduce){
    .svc-cat__color-marquee-track{
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

    /* ═══════════════════════════════════════════════════
     HIGHLIGHTS MARQUEE — reuses color-marquee primitives
     but scrolls in OPPOSITE direction (left-to-right visual flow)
     Longer duration (64s) balances the 8-item track against color's 5
     ═══════════════════════════════════════════════════ */
  .svc-cat__hl-marquee{
    margin: clamp(24px, 3vw, 36px) calc(var(--pad-x) * -1) clamp(28px, 3vw, 40px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--gold-line);
    position: relative;
    overflow: hidden;
  }
  .svc-cat__hl-marquee-head{
    padding: 0 var(--pad-x) 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .svc-cat__hl-marquee-head h4{
    font-family: var(--display);
    font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0;
  }
  .svc-cat__hl-marquee-head h4 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__hl-marquee-head .tagline{
    font-size: 13px;
    color: var(--stone);
    font-style: italic;
    font-family: var(--italic);
  }
  .svc-cat__hl-marquee-viewport{
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .svc-cat__hl-marquee-track{
    display: flex;
    gap: 18px;
    width: max-content;
    animation: hl-scroll-right 64s linear infinite;
    padding: 0 9px;
  }
  .svc-cat__hl-marquee:hover .svc-cat__hl-marquee-track{
    animation-play-state: paused;
  }
  .svc-cat__hl-item{
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 310px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid var(--gold-line);
    position: relative;
    transition: transform .5s var(--ease);
  }
  .svc-cat__hl-item:hover{
    transform: translateY(-4px);
    border-color: var(--gold);
  }
  .svc-cat__hl-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
  }
  .svc-cat__hl-item:hover img{
    transform: scale(1.04);
  }
  .svc-cat__hl-item__tag{
    position: absolute;
    left: 14px; bottom: 14px;
    z-index: 2;
    padding: 5px 11px;
    background: rgba(10,8,6,.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F2EBDC;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(201,174,124,.35);
  }
  /* OPPOSITE direction from color marquee: track starts shifted left,
     animates rightward, so items visually enter from LEFT and exit RIGHT */
  @keyframes hl-scroll-right{
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  @media (prefers-reduced-motion: reduce){
    .svc-cat__hl-marquee-track{
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

    /* ═══════════════════════════════════════════════════
     BLOWOUTS MARQUEE — mirrors Color marquee direction
     (right-to-left) completing the alternating weave:
     Color → | Highlights ← | Blowouts →
     ═══════════════════════════════════════════════════ */
  .svc-cat__bl-marquee{
    margin: clamp(24px, 3vw, 36px) calc(var(--pad-x) * -1) clamp(28px, 3vw, 40px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--gold-line);
    position: relative;
    overflow: hidden;
  }
  .svc-cat__bl-marquee-head{
    padding: 0 var(--pad-x) 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .svc-cat__bl-marquee-head h4{
    font-family: var(--display);
    font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0;
  }
  .svc-cat__bl-marquee-head h4 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__bl-marquee-head .tagline{
    font-size: 13px;
    color: var(--stone);
    font-style: italic;
    font-family: var(--italic);
  }
  .svc-cat__bl-marquee-viewport{
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .svc-cat__bl-marquee-track{
    display: flex;
    gap: 18px;
    width: max-content;
    animation: bl-scroll-left 52s linear infinite;
    padding: 0 9px;
  }
  .svc-cat__bl-marquee:hover .svc-cat__bl-marquee-track{
    animation-play-state: paused;
  }
  .svc-cat__bl-item{
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 310px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid var(--gold-line);
    position: relative;
    transition: transform .5s var(--ease);
  }
  .svc-cat__bl-item:hover{
    transform: translateY(-4px);
    border-color: var(--gold);
  }
  .svc-cat__bl-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
  }
  .svc-cat__bl-item:hover img{
    transform: scale(1.04);
  }
  .svc-cat__bl-item__tag{
    position: absolute;
    left: 14px; bottom: 14px;
    z-index: 2;
    padding: 5px 11px;
    background: rgba(10,8,6,.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F2EBDC;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(201,174,124,.35);
  }
  @keyframes bl-scroll-left{
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce){
    .svc-cat__bl-marquee-track{
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

    /* ═══════════════════════════════════════════════════
     TREATMENTS MARQUEE — left-to-right (matches Highlights)
     Completes the alternating 4-marquee weave:
     Color → | Highlights ← | Blowouts → | Treatments ←
     12 items at 72s = similar per-item velocity to others
     ═══════════════════════════════════════════════════ */
  .svc-cat__tr-marquee{
    margin: clamp(24px, 3vw, 36px) calc(var(--pad-x) * -1) clamp(28px, 3vw, 40px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--gold-line);
    position: relative;
    overflow: hidden;
  }
  .svc-cat__tr-marquee-head{
    padding: 0 var(--pad-x) 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .svc-cat__tr-marquee-head h4{
    font-family: var(--display);
    font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0;
  }
  .svc-cat__tr-marquee-head h4 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__tr-marquee-head .tagline{
    font-size: 13px;
    color: var(--stone);
    font-style: italic;
    font-family: var(--italic);
  }
  .svc-cat__tr-marquee-viewport{
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .svc-cat__tr-marquee-track{
    display: flex;
    gap: 18px;
    width: max-content;
    animation: tr-scroll-right 72s linear infinite;
    padding: 0 9px;
  }
  .svc-cat__tr-marquee:hover .svc-cat__tr-marquee-track{
    animation-play-state: paused;
  }
  .svc-cat__tr-item{
    flex: 0 0 auto;
    width: clamp(220px, 24vw, 310px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid var(--gold-line);
    position: relative;
    transition: transform .5s var(--ease);
  }
  .svc-cat__tr-item:hover{
    transform: translateY(-4px);
    border-color: var(--gold);
  }
  .svc-cat__tr-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
  }
  .svc-cat__tr-item:hover img{
    transform: scale(1.04);
  }
  .svc-cat__tr-item__tag{
    position: absolute;
    left: 14px; bottom: 14px;
    z-index: 2;
    padding: 5px 11px;
    background: rgba(10,8,6,.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F2EBDC;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(201,174,124,.35);
  }
  @keyframes tr-scroll-right{
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  @media (prefers-reduced-motion: reduce){
    .svc-cat__tr-marquee-track{
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

    /* ═══════════════════════════════════════════════════
     HAIRCUT SPOTLIGHT — video feature inside Haircuts category
     Compact 2-col on desktop, stacked on mobile
     ═══════════════════════════════════════════════════ */
  .svc-cat__spotlight{
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: clamp(24px, 3vw, 36px) 0 clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--gold-line);
    margin-bottom: clamp(20px, 2.5vw, 28px);
  }
  .svc-cat__spotlight-video{
    position: relative;
    aspect-ratio: 9 / 16;
    max-width: 280px;
    justify-self: start;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid var(--gold-line);
    cursor: pointer;
    width: 100%;
  }
  .svc-cat__spotlight-video video,
  .svc-cat__spotlight-video img.spot-poster{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
  }
  .svc-cat__spotlight-video:hover img.spot-poster{
    transform: scale(1.03);
  }
  .svc-cat__spotlight-video video{
    opacity: 0;
    transition: opacity .5s var(--ease);
  }
  .svc-cat__spotlight-video.is-playing video{ opacity: 1; }
  .svc-cat__spotlight-video.is-playing img.spot-poster{ opacity: 0; }
  .svc-cat__spotlight-play{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 58px; height: 58px;
    border: 1px solid rgba(255,248,235,.55);
    border-radius: 50%;
    background: rgba(10,8,6,.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: all .35s var(--ease);
  }
  .svc-cat__spotlight-video:hover .svc-cat__spotlight-play{
    background: rgba(10,8,6,.6);
    border-color: rgba(255,248,235,.9);
    transform: translate(-50%, -50%) scale(1.05);
  }
  .svc-cat__spotlight-video.is-playing .svc-cat__spotlight-play{
    opacity: 0;
    transform: translate(-50%, -50%) scale(.9);
  }
  .svc-cat__spotlight-play svg{
    width: 40%; height: 40%;
    fill: #F2EBDC;
    margin-left: 4%;
  }
  .svc-cat__spotlight-badge{
    position: absolute;
    left: 12px; bottom: 12px;
    z-index: 3;
    color: #F2EBDC;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
  }
  .svc-cat__spotlight-badge .dot{
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #C9AE7C;
  }
  .svc-cat__spotlight-caption .eyebrow{
    margin-bottom: 14px;
  }
  .svc-cat__spotlight-caption h4{
    font-family: var(--display);
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.016em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .svc-cat__spotlight-caption h4 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__spotlight-caption p{
    font-size: 14px;
    line-height: 1.6;
    color: var(--stone);
    max-width: 44ch;
  }
  @media (max-width: 720px){
    .svc-cat__spotlight{
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .svc-cat__spotlight-video{
      max-width: 220px;
      justify-self: center;
    }
    .svc-cat__spotlight-caption{
      text-align: center;
    }
    .svc-cat__spotlight-caption .eyebrow{ justify-content: center; }
    .svc-cat__spotlight-caption p{ margin-left: auto; margin-right: auto; }
  }

    /* ═══════════════════════════════════════════════════
     EDITORIAL — competition, runway, and stage work
     Three-video grid: Texas Fashion Week feature + two BTC pair
     ═══════════════════════════════════════════════════ */
  .editorial{
    padding: clamp(90px, 12vw, 150px) var(--pad-x);
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .editorial__head{
    max-width: 760px;
    margin: 0 auto clamp(56px, 7vw, 88px);
    text-align: center;
  }
  .editorial__head .eyebrow{
    justify-content: center;
    margin-bottom: 28px;
  }
  .editorial__head h2{
    font-family: var(--display);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    letter-spacing: -0.028em;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .editorial__head h2 em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: normal;
  }
  .editorial__head p{
    font-size: 15px;
    line-height: 1.6;
    color: var(--stone);
    letter-spacing: 0.02em;
    max-width: 56ch;
    margin: 0 auto;
  }

  /* ─── Video tiles ─── */
  .editorial__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 40px);
  }
  @media (min-width: 900px){
    .editorial__grid{
      grid-template-columns: 1fr 1fr;
      gap: clamp(20px, 2.2vw, 32px);
    }
  }
  .editorial__grid-bottom{
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 40px);
  }
  .ed-tile{
    position: relative;
    overflow: hidden;
    background: var(--ink);
    border: 1px solid var(--gold-line);
    cursor: pointer;
  }
  .ed-tile--feature{
    aspect-ratio: 16 / 9;
  }
  @media (min-width: 900px){
    .ed-tile--feature{ min-height: 340px; }
  }
  .ed-tile--pair-landscape{
    aspect-ratio: 16 / 9;
  }
  .ed-tile--pair-square{
    aspect-ratio: 1 / 1;
  }
  .ed-tile video,
  .ed-tile img.ed-tile__poster{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
  }
  .ed-tile:hover img.ed-tile__poster{
    transform: scale(1.03);
  }
  .ed-tile video{
    opacity: 0;
    transition: opacity .5s var(--ease);
  }
  .ed-tile.is-playing video{
    opacity: 1;
  }
  .ed-tile.is-playing img.ed-tile__poster{
    opacity: 0;
  }

  /* ─── Play button overlay ─── */
  .ed-tile__play{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(64px, 7vw, 92px);
    height: clamp(64px, 7vw, 92px);
    border: 1px solid rgba(255,248,235,.55);
    border-radius: 50%;
    background: rgba(10,8,6,.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s var(--ease);
    z-index: 2;
    pointer-events: none;
  }
  .ed-tile:hover .ed-tile__play{
    background: rgba(10,8,6,.55);
    border-color: rgba(255,248,235,.85);
    transform: translate(-50%, -50%) scale(1.05);
  }
  .ed-tile.is-playing .ed-tile__play{
    opacity: 0;
    transform: translate(-50%, -50%) scale(.9);
  }
  .ed-tile__play svg{
    width: 40%;
    height: 40%;
    fill: #F2EBDC;
    margin-left: 4%;
  }

  /* ─── Caption bar ─── */
  .ed-tile__cap{
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: clamp(20px, 2.5vw, 32px);
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(10,8,6,.35) 30%,
      rgba(10,8,6,.88) 100%);
    color: #F2EBDC;
    z-index: 1;
    pointer-events: none;
  }
  .ed-tile__tag{
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #D2B684;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ed-tile__tag::before{
    content: "";
    width: 18px;
    height: 1px;
    background: #D2B684;
  }
  .ed-tile__title{
    font-family: var(--display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.012em;
    line-height: 1.15;
    color: #F2EBDC;
  }
  .ed-tile__title em{
    font-family: var(--italic);
    font-style: italic;
    color: #E0C79A;
    font-variation-settings: normal;
  }

  /* ─── Editorial footnote strip ─── */
  .editorial__footnote{
    max-width: 860px;
    margin: clamp(50px, 6vw, 80px) auto 0;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-dk);
    padding-top: 36px;
    border-top: 1px solid var(--gold-line);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }
  .editorial__footnote span.sep{
    color: var(--stone-lt);
  }

  @media (max-width: 900px){
    .editorial__grid-bottom{
      grid-template-columns: 1fr;
      gap: 18px;
    }
  }

    /* ═══════════════════════════════════════════════════
     LIGHTBOX — Portfolio photo viewer
     ═══════════════════════════════════════════════════ */
  .lightbox{
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8, 6, 4, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s var(--ease);
    padding: clamp(60px, 8vw, 80px) clamp(70px, 6vw, 100px);
  }
  .lightbox.is-open{
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox__figure{
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: scale(.96);
    transition: opacity .5s var(--ease) .12s, transform .5s var(--ease) .12s;
  }
  .lightbox.is-open .lightbox__figure{
    opacity: 1;
    transform: scale(1);
  }
  .lightbox__figure img{
    max-width: 100%;
    max-height: calc(100vh - 220px);
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
    display: block;
  }
  .lightbox__cap{
    color: var(--pearl);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .lightbox__tag{
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 500;
  }
  .lightbox__title{
    font-family: var(--display);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    font-variation-settings: "opsz" 72, "wght" 400;
    letter-spacing: -0.01em;
    color: var(--pearl);
    line-height: 1.2;
  }
  .lightbox__title em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-lt);
  }
  .lightbox__btn{
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 248, 235, 0.08);
    color: var(--pearl);
    border: 1px solid rgba(255, 248, 235, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .3s var(--ease);
    z-index: 3;
  }
  .lightbox__btn:hover{
    background: rgba(255, 248, 235, 0.18);
    border-color: var(--gold-lt);
    color: var(--gold-lt);
  }
  .lightbox__btn svg{ width: 16px; height: 16px; }
  .lightbox__close{ top: 22px; right: 22px; }
  .lightbox__prev{ left: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox__next{ right: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox__counter{
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 3;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 500;
  }
  .lightbox__counter .current{
    font-family: var(--italic);
    font-style: italic;
    font-size: 18px;
    color: var(--pearl);
    margin-right: 6px;
    letter-spacing: 0;
  }
  .lightbox__counter span{ font-variant-numeric: tabular-nums; }

  /* Portfolio items: signal zoomable */
  .portfolio-item{ cursor: zoom-in; }

  @media (max-width: 640px){
    .lightbox{ padding: 70px 16px 100px; }
    .lightbox__prev{ left: 10px; width: 40px; height: 40px; }
    .lightbox__next{ right: 10px; width: 40px; height: 40px; }
    .lightbox__close{ top: 14px; right: 14px; }
    .lightbox__counter{ top: 22px; left: 18px; }
    .lightbox__figure img{ max-height: calc(100vh - 240px); }
  }

  /* ═══════════════════════════════════════════════════
     SERVICES — Collapsible categories (ALL viewports)
     Every category is collapsed by default; user taps the
     header to expand. Filter pills still work and force open.
     ═══════════════════════════════════════════════════ */
  /* Tappable category header */
  .svc-menu[data-filter="all"] .svc-cat .svc-cat__head{
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .3s var(--ease);
  }
  .svc-menu[data-filter="all"] .svc-cat .svc-cat__head:hover{
    border-bottom-color: var(--gold);
  }
  /* Chevron on the count element */
  .svc-menu[data-filter="all"] .svc-cat .svc-cat__count{
    display: inline-flex;
    align-items: center;
  }
  .svc-menu[data-filter="all"] .svc-cat .svc-cat__count::after{
    content: "";
    display: inline-block;
    width: 9px; height: 9px;
    margin-left: 16px;
    border-right: 1.5px solid var(--stone);
    border-bottom: 1.5px solid var(--stone);
    transform: rotate(45deg) translate(-3px, -3px);
    transition: transform .4s var(--ease), border-color .3s var(--ease);
  }
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__count::after{
    transform: rotate(-135deg) translate(-3px, -3px);
    border-color: var(--gold-dk);
  }
  /* Collapsed — hide every piece of the category body */
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-row,
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-cat__spotlight,
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-cat__color-marquee,
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-cat__hl-marquee,
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-cat__bl-marquee,
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-cat__tr-marquee,
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-cat__haircuts-marquee,
  .svc-menu[data-filter="all"] .svc-cat:not([data-expanded="true"]) .svc-cat__styling-marquee{
    display: none;
  }
  /* Reveal animation when a category opens */
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-row,
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__spotlight,
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__color-marquee,
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__hl-marquee,
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__bl-marquee,
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__tr-marquee,
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__haircuts-marquee,
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"] .svc-cat__styling-marquee{
    animation: svcExpand .45s var(--ease);
  }
  @keyframes svcExpand{
    from{ opacity: 0; transform: translateY(-6px); }
    to  { opacity: 1; transform: translateY(0); }
  }
  /* Tighten spacing when collapsed so the whole Services section
     is far more compact */
  .svc-menu[data-filter="all"] .svc-cat{
    margin-bottom: 18px;
  }
  .svc-menu[data-filter="all"] .svc-cat[data-expanded="true"]{
    margin-bottom: 60px;
  }

    /* ═══════════════════════════════════════════════════
     SCROLL TO TOP BUTTON (desktop only)
     ═══════════════════════════════════════════════════ */
  .scroll-top{
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 92;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-lt);
    border: 1px solid var(--gold-dk);
    display: grid; place-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .4s var(--ease), transform .5s var(--ease-spring), background .3s var(--ease), color .3s var(--ease);
    cursor: pointer;
  }
  .scroll-top.is-visible{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .scroll-top:hover{
    background: var(--gold-dk);
    color: var(--pearl);
    transform: translateY(-3px);
  }
  .scroll-top svg{ width: 15px; height: 15px; transition: transform .3s var(--ease); }
  .scroll-top:hover svg{ transform: translateY(-2px); }
  @media (max-width: 900px){
    .scroll-top{ display: none; }
  }

    /* ═══════════════════════════════════════════════════
     MANIFESTO — Gandhi quote
     ═══════════════════════════════════════════════════ */
  .manifesto{
    background: var(--cream);
    padding: clamp(110px, 16vw, 200px) var(--pad-x);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .manifesto::before,
  .manifesto::after{
    content:"";
    position: absolute;
    left: 50%; transform: translateX(-50%);
    width: 60px; height: 1px;
    background: var(--gold);
  }
  .manifesto::before{ top: 44px; }
  .manifesto::after { bottom: 44px; }
  .manifesto__inner{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .manifesto__eyebrow{
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    margin-bottom: 48px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .manifesto__eyebrow i.crown-mark{ color: var(--gold-dk); }
  .manifesto__quote{
    font-family: var(--display);
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    font-weight: 300;
    font-size: clamp(34px, 6vw, 86px);
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: var(--ink);
    max-width: 16ch;
    margin: 0 auto;
  }
  .manifesto__quote::before,
  .manifesto__quote::after{
    color: var(--gold-dk);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "wght" 400;
    font-style: normal;
  }
  .manifesto__quote::before{ content: "\201C"; margin-right: .08em; }
  .manifesto__quote::after { content: "\201D"; margin-left: .04em; }
  .manifesto__quote em{
    font-family: var(--italic);
    font-style: italic;
    color: var(--gold-dk);
    font-variation-settings: normal;
    font-weight: 400;
  }
  .manifesto__attr{
    margin-top: 48px;
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--stone);
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 14px;
  }
  .manifesto__attr strong{
    font-family: var(--italic);
    font-weight: 400;
    color: var(--gold-dk);
    letter-spacing: .05em;
    text-transform: none;
    font-size: 16px;
    font-style: italic;
  }
  .manifesto__attr .sep{
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold); display: inline-block;
  }

  /* ═══════════════════════════════════════════════════
     BOOK CTA
     ═══════════════════════════════════════════════════ */
  .book{
    background: var(--ink);
    color: var(--pearl);
    padding: clamp(100px, 15vw, 180px) var(--pad-x);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .book::before{
    content:"";
    position: absolute;
    width: 900px; height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--gold) 55%, transparent) 0%, transparent 55%);
    top: -240px; left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
    animation: breathe 8s var(--ease) infinite;
  }
  @keyframes breathe{
    0%,100%{ opacity: .55; transform: translateX(-50%) scale(1); }
    50%    { opacity: .7;  transform: translateX(-50%) scale(1.08); }
  }
  .book__inner{ position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
  .book .eyebrow{ color: var(--gold-lt); justify-content: center; }
  .book .eyebrow::before{ background: var(--gold); }
  .book__title{
    font-family: var(--display);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    font-size: clamp(48px, 9vw, 120px);
    line-height: .95;
    letter-spacing: -0.035em;
    margin-bottom: 26px;
    color: var(--pearl);
  }
  .book__title em{
    font-family: var(--italic);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-lt);
    font-variation-settings: normal;
  }
  .book__sub{
    font-family: var(--italic);
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--stone-lt);
    max-width: 34ch;
    margin: 0 auto 40px;
    line-height: 1.45;
  }
  .book__actions{
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  }
  .book .btn--primary{
    background: var(--gold-dk);
    color: var(--pearl);
  }
  .book .btn--primary:hover{ background: var(--gold); color: var(--ink); }
  .book .btn--ghost{ border-color: var(--stone-lt); color: var(--pearl); background: transparent; }
  .book .btn--ghost:hover{ background: var(--pearl); color: var(--ink); border-color: var(--pearl); }
  .book__ig{
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 36px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    border-bottom: 1px solid var(--gold-dk);
    padding-bottom: 3px;
    transition: color .3s var(--ease);
  }
  .book__ig:hover{ color: var(--pearl); }
  .book__ig svg{ width: 14px; height: 14px; }

  .book__hours{
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 22px;
    max-width: 680px;
    margin-left: auto; margin-right: auto;
    padding-top: 40px;
    border-top: 1px solid color-mix(in srgb, var(--pearl) 20%, transparent);
    font-size: 13px;
  }
  .book__hours div{ display: flex; flex-direction: column; gap: 4px; }
  .book__hours strong{
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    font-weight: 500;
  }
  .book__hours span{ color: var(--stone-lt); }

  /* ═══════════════════════════════════════════════════
     FOOTER
     ═══════════════════════════════════════════════════ */
  .foot{
    background: var(--pearl);
    padding: 60px var(--pad-x) 120px;
    border-top: 1px solid var(--line);
  }
  .foot__inner{
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  @media (min-width: 820px){
    .foot__inner{ grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; }
  }
  .foot__brand{
    display: flex; flex-direction: column; gap: 14px;
  }
  .foot__brand-name{
    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: flex; align-items: baseline; gap: 10px;
    line-height: 1.1;
  }
  .foot__brand-name em{ font-family: var(--italic); font-style: italic; color: var(--gold-dk); font-weight: 400; }
  .foot__brand-tag{
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
  }
  .foot__brand-desc{
    font-size: 13px;
    color: var(--char);
    line-height: 1.65;
    max-width: 36ch;
    margin-top: 6px;
  }
  .foot__social{
    margin-top: 10px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-dk);
    font-weight: 500;
    border: 1px solid var(--gold);
    padding: 10px 14px;
    border-radius: 999px;
    transition: all .3s var(--ease);
    align-self: flex-start;
  }
  .foot__social:hover{ background: var(--ink); color: var(--pearl); border-color: var(--ink); }
  .foot__social svg{ width: 14px; height: 14px; }

  .foot__col h5{
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    margin-bottom: 18px;
  }
  .foot__col p, .foot__col a{
    font-family: var(--display);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--ink);
    display: block;
    margin-top: 6px;
    transition: color .3s var(--ease);
  }
  .foot__col a:hover{ color: var(--gold-dk); }
  .foot__col small{
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    color: var(--stone);
    margin-top: 2px;
    letter-spacing: .02em;
  }
  .foot__col .license-big{
    color: var(--gold-dk);
    font-style: italic;
    font-family: var(--italic);
    letter-spacing: .03em;
  }

  .foot__bottom{
    max-width: var(--maxw);
    margin: 50px auto 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: 14px 30px;
    justify-content: space-between; align-items: center;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--stone);
  }
  .foot__bottom a{ transition: color .3s var(--ease); }
  .foot__bottom a:hover{ color: var(--gold-dk); }
  .foot__bottom .sep{
    display: inline-block; width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold); margin: 0 8px; vertical-align: middle;
  }

  /* ═══════════════════════════════════════════════════
     MOBILE STICKY BAR
     ═══════════════════════════════════════════════════ */
  .sticky{
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 99;
    display: flex; gap: 8px;
    padding: 7px;
    background: color-mix(in srgb, var(--ink) 94%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 999px;
    box-shadow: 0 20px 40px -12px rgba(10,10,10,.55);
    transform: translateY(150%);
    transition: transform .6s var(--ease-sharp);
    border: 1px solid var(--gold-line);
  }
  .sticky.is-visible{ transform: translateY(0); }
  .sticky a{
    flex: 1;
    padding: 14px 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 999px;
    color: var(--pearl);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: all .3s var(--ease);
  }
  .sticky a.primary{ background: var(--gold-dk); }
  .sticky a.primary:hover{ background: var(--gold); color: var(--ink); }
  .sticky a.ghost{ background: transparent; }
  .sticky a.ghost:hover{ background: color-mix(in srgb, var(--pearl) 12%, transparent); }
  .sticky svg{ width: 13px; height: 13px; }
  @media (min-width: 900px){
    .sticky{ display: none; }
  }

  /* ─── Scroll reveal ─── */
  .reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
  }
  .reveal.in{ opacity: 1; transform: translateY(0); }

  /* ─── Focus ─── */
  a:focus-visible, button:focus-visible{
    outline: 2px solid var(--gold-dk);
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* ─── Reduced motion ─── */
  @media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
    }
  }

  /* Safe area for sticky bar on iOS with home indicator */
  @media (max-width: 900px){
    body{ padding-bottom: env(safe-area-inset-bottom); }
  }

  /* ═════ CONTRAST PATCH — dark-mode + mobile overrides ═════ */
  .stats-strip__cell--wide .stats-strip__num{ color: var(--ink); }
  .stats-strip__cell--wide .stats-strip__num em{ color: var(--gold-dk); }
  .stats-strip__cell--wide .stats-strip__label{ color: var(--stone); }
  [data-theme="dark"] .stats-strip__cell--wide .stats-strip__num{ color: #F0E8D6; }
  [data-theme="dark"] .stats-strip__cell--wide .stats-strip__num em{ color: #D2B684; }
  [data-theme="dark"] .stats-strip__cell--wide .stats-strip__label{ color: #C2B190; }
  [data-theme="dark"] .book, [data-theme="dark"] .book h2, [data-theme="dark"] .book h3,
  [data-theme="dark"] .book p, [data-theme="dark"] .book span, [data-theme="dark"] .book strong,
  [data-theme="dark"] .editorial, [data-theme="dark"] .editorial h2, [data-theme="dark"] .editorial h3, [data-theme="dark"] .editorial p,
  [data-theme="dark"] .in-motion, [data-theme="dark"] .in-motion h2, [data-theme="dark"] .in-motion h3, [data-theme="dark"] .in-motion p,
  [data-theme="dark"] .credentials-strip, [data-theme="dark"] .credentials-strip__label,
  [data-theme="dark"] .credentials-strip__body, [data-theme="dark"] .credentials-strip__body em{
    color: #F0E8D6;
  }
  [data-theme="dark"] .foot h5, [data-theme="dark"] .foot p,
  [data-theme="dark"] .foot small, [data-theme="dark"] .foot a{ color: #C2B190; }
  [data-theme="dark"] .foot .license-big, [data-theme="dark"] .foot__bottom span,
  [data-theme="dark"] .foot__bottom strong{ color: #F0E8D6; }
  [data-theme="dark"] .manifesto__quote, [data-theme="dark"] .manifesto__quote em{ color: #F0E8D6; }
  [data-theme="dark"] .manifesto__attr{ color: #C2B190; }
  [data-theme="dark"] .faq-item summary, [data-theme="dark"] .faq-item summary .q,
  [data-theme="dark"] .faq-item summary .num,
  [data-theme="dark"] .faq-item summary .q em{ color: #F0E8D6; }
  [data-theme="dark"] .faq-a, [data-theme="dark"] .faq-a p, [data-theme="dark"] .faq-a a{ color: #C2B190; }
  [data-theme="dark"] .voices__card, [data-theme="dark"] .voices__card p,
  [data-theme="dark"] .voices__card strong, [data-theme="dark"] .voices__card em,
  [data-theme="dark"] .voices__pullquote, [data-theme="dark"] .voices__pullquote em{ color: #F0E8D6; }
  [data-theme="dark"] .voices__card small{ color: #A89E89; }
  @media (max-width: 800px){
    .stats-strip__cell--wide .stats-strip__num{ font-size: clamp(38px, 10vw, 52px); line-height: 1.05; }
    .stats-strip__cell--wide .stats-strip__label{ font-size: 11px; letter-spacing: 0.14em; line-height: 1.65; max-width: 88%; margin: 8px auto 0; }
    [data-theme="dark"] .stats-strip__cell--wide .stats-strip__label{ color: #D6C9AD; }
    [data-theme="dark"] .book p, [data-theme="dark"] .editorial p,
    [data-theme="dark"] .in-motion p, [data-theme="dark"] .manifesto__quote,
    [data-theme="dark"] .faq-a p, [data-theme="dark"] .foot p, [data-theme="dark"] .foot small{ color: #D6C9AD; }
    [data-theme="dark"] .hero__meta span{ color: #C2B190; }
    [data-theme="dark"] .svc-filter{ color: #A89E89; }
    [data-theme="dark"] .svc-filter.is-active{ color: #F0E8D6; }
  }
  @media (max-width: 420px){
    .stats-strip__cell--wide .stats-strip__num{ font-size: 34px; }
    .stats-strip__cell--wide .stats-strip__label{ font-size: 10px; letter-spacing: 0.12em; line-height: 1.55; max-width: 94%; }
    [data-theme="dark"] .svc-cat__color-item__tag, [data-theme="dark"] .svc-cat__hl-item__tag,
    [data-theme="dark"] .svc-cat__bl-item__tag, [data-theme="dark"] .svc-cat__tr-item__tag{ color: #F0E8D6; background: rgba(10,8,6,.78); }
  }


  /* ═════ FONT COLOR SAFETY NET — ensures NO black text on black bg ═════
     Catches every possible text-rendering element inside dark-accent
     sections or globally in dark mode. Uses high specificity overrides
     to win against any stray hardcoded values. */
  [data-theme="dark"] body,
  [data-theme="dark"] main,
  [data-theme="dark"] article,
  [data-theme="dark"] section,
  [data-theme="dark"] header,
  [data-theme="dark"] nav,
  [data-theme="dark"] aside,
  [data-theme="dark"] footer{
    color: #F0E8D6;
  }
  /* Any heading in dark mode — forced cream */
  [data-theme="dark"] h1,
  [data-theme="dark"] h2,
  [data-theme="dark"] h3,
  [data-theme="dark"] h4,
  [data-theme="dark"] h5,
  [data-theme="dark"] h6{
    color: #F0E8D6;
  }
  /* Links in dark mode never go dark */
  [data-theme="dark"] a{
    color: #E0C79A;
  }
  [data-theme="dark"] a:hover{
    color: #F0E8D6;
  }
  /* Italic em accents — warm gold in dark mode */
  [data-theme="dark"] em,
  [data-theme="dark"] i{
    color: #D2B684;
  }
  /* Small and muted copy — champagne, not near-black */
  [data-theme="dark"] small,
  [data-theme="dark"] figcaption,
  [data-theme="dark"] caption{
    color: #C2B190;
  }
  /* Inputs and buttons — ensure legible text */
  [data-theme="dark"] button,
  [data-theme="dark"] input,
  [data-theme="dark"] textarea,
  [data-theme="dark"] select{
    color: #F0E8D6;
  }
  /* Any element inside pinned-dark sections is at minimum champagne */
  [data-theme="dark"] .book *,
  [data-theme="dark"] .studio *,
  [data-theme="dark"] .credentials-strip *,
  [data-theme="dark"] .marquee *,
  [data-theme="dark"] .editorial *,
  [data-theme="dark"] .in-motion *,
  [data-theme="dark"] .manifesto *,
  [data-theme="dark"] .foot *,
  [data-theme="dark"] .services-marquee *{
    color: inherit;
  }
  [data-theme="dark"] .book,
  [data-theme="dark"] .studio,
  [data-theme="dark"] .credentials-strip,
  [data-theme="dark"] .marquee,
  [data-theme="dark"] .editorial,
  [data-theme="dark"] .in-motion,
  [data-theme="dark"] .manifesto,
  [data-theme="dark"] .foot{
    color: #F0E8D6;
  }
  /* Mobile: push contrast a touch higher because small-screen AA
     reading benefits from brighter text on dark */
  @media (max-width: 800px){
    [data-theme="dark"] body,
    [data-theme="dark"] p,
    [data-theme="dark"] li,
    [data-theme="dark"] span{
      color: #F0E8D6;
    }
    [data-theme="dark"] small,
    [data-theme="dark"] .stats-strip__label,
    [data-theme="dark"] figcaption{
      color: #D6C9AD;
    }
  }


  /* ═════ HAIRCUTS MARQUEE — mirrors color-marquee primitives ═════ */
  .svc-cat__haircuts-marquee{
    margin: clamp(24px, 3vw, 36px) calc(var(--pad-x) * -1) clamp(28px, 3vw, 40px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--gold-line);
    position: relative;
    overflow: hidden;
  }
  .svc-cat__haircuts-marquee-head{
    padding: 0 var(--pad-x) 20px;
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .svc-cat__haircuts-marquee-head h4{
    font-family: var(--display); font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 400; font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.012em; color: var(--ink); margin: 0;
  }
  .svc-cat__haircuts-marquee-head h4 em{
    font-family: var(--italic); font-style: italic; color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__haircuts-marquee-head .tagline{
    font-size: 13px; color: var(--stone); font-style: italic; font-family: var(--italic);
  }
  .svc-cat__haircuts-marquee-viewport{
    overflow: hidden; position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .svc-cat__haircuts-marquee-track{
    display: flex; gap: 18px; width: max-content;
    animation: haircuts-scroll-right 58s linear infinite;
    padding: 0 9px;
  }
  .svc-cat__haircuts-marquee:hover .svc-cat__haircuts-marquee-track{ animation-play-state: paused; }
  .svc-cat__haircuts-item{
    flex: 0 0 auto; width: clamp(220px, 24vw, 310px); aspect-ratio: 3 / 4;
    overflow: hidden; background: var(--ink); border: 1px solid var(--gold-line);
    position: relative; transition: transform .5s var(--ease);
  }
  .svc-cat__haircuts-item:hover{ transform: translateY(-4px); border-color: var(--gold); }
  .svc-cat__haircuts-item img{
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .8s var(--ease);
  }
  .svc-cat__haircuts-item:hover img{ transform: scale(1.04); }
  .svc-cat__haircuts-item__tag{
    position: absolute; left: 14px; bottom: 14px; z-index: 2;
    padding: 5px 11px; background: rgba(10,8,6,.62);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: #F2EBDC; font-size: 9px; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 500;
    border: 1px solid rgba(201,174,124,.35);
  }
  @keyframes haircuts-scroll-right{
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }

  /* ═════ STYLING MARQUEE — mirror pattern, scrolls left ═════ */
  .svc-cat__styling-marquee{
    margin: clamp(24px, 3vw, 36px) calc(var(--pad-x) * -1) clamp(28px, 3vw, 40px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--gold-line);
    position: relative; overflow: hidden;
  }
  .svc-cat__styling-marquee-head{
    padding: 0 var(--pad-x) 20px;
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .svc-cat__styling-marquee-head h4{
    font-family: var(--display); font-size: clamp(20px, 2.3vw, 28px);
    font-weight: 400; font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 80;
    letter-spacing: -0.012em; color: var(--ink); margin: 0;
  }
  .svc-cat__styling-marquee-head h4 em{
    font-family: var(--italic); font-style: italic; color: var(--gold-dk);
    font-variation-settings: normal;
  }
  .svc-cat__styling-marquee-head .tagline{
    font-size: 13px; color: var(--stone); font-style: italic; font-family: var(--italic);
  }
  .svc-cat__styling-marquee-viewport{
    overflow: hidden; position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .svc-cat__styling-marquee-track{
    display: flex; gap: 18px; width: max-content;
    animation: styling-scroll-left 68s linear infinite;
    padding: 0 9px;
  }
  .svc-cat__styling-marquee:hover .svc-cat__styling-marquee-track{ animation-play-state: paused; }
  .svc-cat__styling-item{
    flex: 0 0 auto; width: clamp(220px, 24vw, 310px); aspect-ratio: 3 / 4;
    overflow: hidden; background: var(--ink); border: 1px solid var(--gold-line);
    position: relative; transition: transform .5s var(--ease);
  }
  .svc-cat__styling-item:hover{ transform: translateY(-4px); border-color: var(--gold); }
  .svc-cat__styling-item img{
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .8s var(--ease);
  }
  .svc-cat__styling-item:hover img{ transform: scale(1.04); }
  .svc-cat__styling-item__tag{
    position: absolute; left: 14px; bottom: 14px; z-index: 2;
    padding: 5px 11px; background: rgba(10,8,6,.62);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: #F2EBDC; font-size: 9px; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 500;
    border: 1px solid rgba(201,174,124,.35);
  }
  @keyframes styling-scroll-left{
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ═════ EDITORIAL DUAL-ROW MARQUEE ═════
     Two stacked rows scroll in opposite directions, creating a
     magazine-spread feel. Each row has its own gradient mask and
     the whole band is framed by thin hairlines. */
  .ed-marquee{
    margin: clamp(40px, 5vw, 72px) calc(var(--pad-x) * -1) clamp(20px, 3vw, 36px);
    padding: clamp(28px, 3vw, 40px) 0;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    position: relative; overflow: hidden;
  }
  .ed-marquee__head{
    padding: 0 var(--pad-x) clamp(20px, 2.5vw, 32px);
    max-width: 680px;
  }
  .ed-marquee__head .eyebrow{
    display: block;
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold-dk); font-weight: 500;
    margin-bottom: 14px;
  }
  .ed-marquee__head h3{
    font-family: var(--display); font-weight: 300;
    font-size: clamp(28px, 3.6vw, 48px);
    font-variation-settings: "opsz" 144, "wght" 300;
    letter-spacing: -0.02em; line-height: 1.1;
    color: var(--ink); margin: 0 0 14px;
  }
  .ed-marquee__head h3 em{
    font-family: var(--italic); font-style: italic;
    color: var(--gold-dk); font-variation-settings: normal;
  }
  .ed-marquee__head p{
    font-size: 15px; line-height: 1.55; color: var(--stone);
    font-style: italic; font-family: var(--italic);
  }
  .ed-marquee__viewport{
    overflow: hidden; position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  }
  .ed-marquee__viewport + .ed-marquee__viewport{ margin-top: 18px; }
  .ed-marquee__track{
    display: flex; gap: 18px; width: max-content; padding: 0 9px;
  }
  .ed-marquee__track--a{
    animation: ed-scroll-left 72s linear infinite;
  }
  .ed-marquee__track--b{
    animation: ed-scroll-right 84s linear infinite;
  }
  .ed-marquee:hover .ed-marquee__track{ animation-play-state: paused; }
  .ed-marquee__item{
    flex: 0 0 auto; width: clamp(240px, 26vw, 340px); aspect-ratio: 3 / 4;
    overflow: hidden; background: var(--ink);
    border: 1px solid var(--gold-line); position: relative;
    transition: transform .5s var(--ease), border-color .5s var(--ease);
  }
  .ed-marquee__item:hover{ transform: translateY(-6px); border-color: var(--gold); }
  .ed-marquee__item img{
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .9s var(--ease), filter .5s var(--ease);
    filter: grayscale(.12) contrast(1.02);
  }
  .ed-marquee__item:hover img{ transform: scale(1.05); filter: none; }
  .ed-marquee__tag{
    position: absolute; left: 14px; bottom: 14px; z-index: 2;
    padding: 6px 12px; background: rgba(10,8,6,.68);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: #F2EBDC; font-size: 9px; letter-spacing: 0.26em;
    text-transform: uppercase; font-weight: 500;
    border: 1px solid rgba(201,174,124,.42);
  }
  @keyframes ed-scroll-left{
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes ed-scroll-right{
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  @media (prefers-reduced-motion: reduce){
    .svc-cat__haircuts-marquee-track,
    .svc-cat__styling-marquee-track,
    .ed-marquee__track{ animation: none; flex-wrap: wrap; justify-content: center; }
  }
  @media (max-width: 720px){
    .ed-marquee__item{ width: clamp(180px, 48vw, 240px); }
  }


  /* ═════ STUDIO DETAIL TITLES IN GOLD ═════
     Address · Parking · Text Only · Hours · Instagram
     Wins over the FONT COLOR SAFETY NET via !important + specificity. */
  .studio__foot .studio__detail h4,
  .studio .studio__detail h4{
    color: var(--gold-dk) !important;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  [data-theme="dark"] .studio__foot .studio__detail h4,
  [data-theme="dark"] .studio .studio__detail h4{
    color: var(--gold) !important;
  }

  /* ═════ EDITORIAL VIDEO — TAP-TO-UNMUTE BUTTON ═════ */
  .ed-tile__sound{
    position: absolute;
    top: 16px; right: 16px;
    z-index: 3;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px 8px 10px;
    background: rgba(10,8,6,.66);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: #F2EBDC;
    border: 1px solid rgba(201,174,124,.42);
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
    pointer-events: none;
  }
  /* Reveal the sound button once the video is actually playing */
  .ed-tile.is-playing .ed-tile__sound{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .ed-tile__sound:hover{ background: rgba(20,16,10,.82); }
  .ed-tile__sound svg{ width: 16px; height: 16px; flex-shrink: 0; }
  .ed-tile__sound .icon-sound{ display: none; }
  .ed-tile__sound[aria-pressed="true"] .icon-muted{ display: none; }
  .ed-tile__sound[aria-pressed="true"] .icon-sound{ display: block; }
  .ed-tile__sound[aria-pressed="true"] .ed-tile__sound-hint{ display: none; }
  @media (max-width: 620px){
    .ed-tile__sound{ font-size: 9px; padding: 7px 12px 7px 9px; }
    .ed-tile__sound .ed-tile__sound-hint{ display: none; }
  }

  /* ═════ MOBILE STUDIO GALLERY — reset desktop grid spans ═════
     Under 820px the gallery collapses to 1 column. Override the
     desktop min-heights so each photo keeps a natural aspect ratio. */
  @media (max-width: 819px){
    .g-item{ aspect-ratio: 4/3; min-height: 0 !important; }
    .g-item--hero     { aspect-ratio: 16/10; }
    .g-item--stations { aspect-ratio: 3/4; }
    .g-item--floor    { aspect-ratio: 16/9; }
    .g-item--wash     { aspect-ratio: 4/3; }
    .g-item--reception{ aspect-ratio: 4/3; }
    /* Allow the grid item's image to fill the tile height naturally */
    .g-item img{ height: 100%; }
  }

  /* ═════ MOBILE PORTFOLIO — show-more gating ═════
     Limits Recent Work to 9 items below 900px; 10-18 hidden behind toggle.
     Prevents the endless scroll on phones. */
  @media (max-width: 899px){
    .work[data-expanded="false"] .portfolio-item:nth-child(n+10){
      display: none;
    }
    .work__expand-wrap{
      display: flex;
      justify-content: center;
      margin-top: clamp(24px, 4vw, 40px);
    }
    .work[data-expanded="true"] .work__expand-wrap{ display: none; }
  }
  @media (min-width: 900px){
    .work__expand-wrap{ display: none; }
  }
  .work__expand{
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 28px;
    min-height: 44px;
    background: transparent;
    color: var(--gold-dk);
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    cursor: pointer;
    transition: all .35s var(--ease);
  }
  .work__expand:hover,
  .work__expand:focus-visible{
    background: var(--ink);
    color: var(--pearl);
    border-color: var(--ink);
  }

  /* ═════ MOBILE SOUND BUTTON — touch-friendly ═════ */
  @media (pointer: coarse), (max-width: 620px){
    .ed-tile__sound{
      min-height: 44px;
      padding: 10px 14px 10px 12px;
      top: 12px; right: 12px;
    }
    .ed-tile__sound svg{ width: 18px; height: 18px; }
  }

  /* ═════ iPhone SE / narrow phones (<380px) ═════ */
  @media (max-width: 380px){
    .ed-marquee__item{ width: clamp(160px, 52vw, 220px); }
    .svc-cat__haircuts-item,
    .svc-cat__styling-item,
    .svc-cat__color-item,
    .svc-cat__hl-item,
    .svc-cat__bl-item,
    .svc-cat__tr-item{ width: clamp(180px, 60vw, 240px); }
  }

  /* ═════ SKIP-TO-CONTENT — keyboard-only a11y affordance ═════
     Hidden until a keyboard user tabs to it, then slides in as the
     first focusable element on the page. */
  .skip-link{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 200;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--pearl);
    border: 1px solid var(--gold-dk);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    transform: translateY(-120%);
    transition: transform .3s var(--ease);
  }
  .skip-link:focus-visible,
  .skip-link:focus{
    transform: translateY(0);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  main:focus{ outline: none; }

  /* ═════ SHARED COLLAPSE HELPER ═════
     Any element with [data-collapse-target] hides its .collapse-panel
     descendants by default. Flipping data-expanded="true" reveals them.
     Pair with a .collapse-trigger-wrap + .collapse-trigger button. */
  [data-collapse-target]:not([data-expanded="true"]) .collapse-panel{
    display: none;
  }
  /* Label swap: triggers now stay visible in both states; the label text
     flips between collapsed/expanded variants via CSS. */
  .collapse-trigger .label-expanded{ display: none; }
  [data-collapse-target][data-expanded="true"] .collapse-trigger .label-collapsed{
    display: none;
  }
  [data-collapse-target][data-expanded="true"] .collapse-trigger .label-expanded{
    display: inline;
  }
  /* Legacy — kept for any trigger that still opts into one-way behavior */
  [data-collapse-target][data-expanded="true"] .collapse-trigger-wrap.hide-when-expanded{
    display: none;
  }
  .collapse-trigger-wrap{
    display: flex;
    justify-content: center;
    margin: clamp(28px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
  }
  .collapse-trigger{
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 26px;
    min-height: 44px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all .35s var(--ease);
  }
  .collapse-trigger:hover,
  .collapse-trigger:focus-visible{
    background: var(--ink);
    color: var(--pearl);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -10px rgba(10,10,10,.35);
  }
  .collapse-trigger svg{
    width: 14px; height: 14px;
    transition: transform .4s var(--ease);
  }
  [data-collapse-target][data-expanded="true"] .collapse-trigger svg{
    transform: rotate(180deg);
  }
  [data-theme="dark"] .collapse-trigger{
    color: var(--gold-lt);
    border-color: var(--gold-dk);
  }
  [data-theme="dark"] .collapse-trigger:hover,
  [data-theme="dark"] .collapse-trigger:focus-visible{
    background: var(--gold-dk);
    color: var(--ink);
    border-color: var(--gold-dk);
  }

  /* Studio section has dark ink background in both themes; override trigger */
  .studio .collapse-trigger{
    color: var(--gold-lt);
    border-color: var(--gold-dk);
    background: transparent;
  }
  .studio .collapse-trigger:hover,
  .studio .collapse-trigger:focus-visible{
    background: var(--gold-dk);
    color: var(--ink);
    border-color: var(--gold-dk);
  }

  /* Studio foot: when collapsed, drop grid to 1-column so map takes full width */
  .studio__foot-block:not([data-expanded="true"]) .studio__foot{
    grid-template-columns: 1fr;
  }
  @media (min-width: 820px){
    .studio__foot-block:not([data-expanded="true"]) .studio__foot{
      grid-template-columns: 1fr;
    }
  }
  /* Cap the map's size when collapsed, otherwise aspect-ratio 16/11 at
     full width makes it taller than the expanded 3-column layout it replaces */
  .studio__foot-block:not([data-expanded="true"]) .studio__map{
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* ═════ VOICE CARDS — line clamp + "Read more" ═════
     Long reviews are clamped to 4 lines by default. JS inspects each card
     after layout; cards whose text actually overflows receive .is-needed
     on the button, which reveals it. Short reviews stay clean (no button).
     NOTE: Clamp is gated on .js-ready so JS-disabled browsers see full
     reviews — no silent truncation without a way to expand. */
  .js-ready .voice:not(.is-expanded) .voice__text{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .voice__read-more{
    display: none;
    align-self: flex-start;
    font-family: inherit;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold-dk);
    background: none;
    border: none;
    padding: 4px 0 0;
    margin-top: -4px;
    cursor: pointer;
    transition: color .3s var(--ease);
  }
  .voice__read-more.is-needed{ display: inline-block; }
  .voice__read-more:hover,
  .voice__read-more:focus-visible{ color: var(--ink); }
  [data-theme="dark"] .voice__read-more{ color: var(--gold-lt); }
  [data-theme="dark"] .voice__read-more:hover,
  [data-theme="dark"] .voice__read-more:focus-visible{ color: #F0E8D6; }
  .voice--cta .voice__read-more{ display: none !important; }


/* ─── Editorial archive link (→ portfolio.html) ─── */
.editorial__archive-link {
  max-width: var(--maxw, 1200px);
  margin: 0 auto;
  text-align: center;
}
.editorial__archive-anchor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dk);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid color-mix(in srgb, var(--gold-dk) 40%, transparent);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.editorial__archive-anchor:hover,
.editorial__archive-anchor:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}
.editorial__archive-anchor svg {
  width: 14px; height: 14px;
  transition: transform .3s var(--ease);
}
.editorial__archive-anchor:hover svg {
  transform: translateX(4px);
}
[data-theme="dark"] .editorial__archive-anchor {
  color: var(--gold-lt);
  border-color: color-mix(in srgb, var(--gold-lt) 40%, transparent);
}
[data-theme="dark"] .editorial__archive-anchor:hover,
[data-theme="dark"] .editorial__archive-anchor:focus-visible {
  color: var(--pearl);
  border-color: var(--pearl);
}
