:root{
    padding-top:env(safe-area-inset-top, 0px);
    padding-bottom:env(safe-area-inset-bottom, 0px);
    --bg:#F5ECE4;
    --bg-alt:#EEE0D3;
    --surface:#FFFCFA;
    --surface-2:#FBF3EC;
    --ink:#26201C;
    --ink-soft:#6E5B50;
    --ink-faint:#9C8A7D;
    --accent:#8C3B4F;
    --accent-ink:#FFFFFF;
    --accent-soft:#F1DCE1;
    --accent-2:#74805C;
    --accent-2-soft:#E7E9D8;
    --line:#E3D2C2;
    --shadow: 0 30px 70px -35px rgba(50,25,18,.45);
    --shadow-sm: 0 14px 30px -18px rgba(50,25,18,.4);
    --radius-lg:30px;
    --radius-md:18px;
    --radius-sm:11px;
    --font-display:'Fraunces', 'Iowan Old Style', Georgia, serif;
    --font-body:'Manrope', 'Segoe UI', system-ui, sans-serif;
    --font-script:'Beau Rivage', cursive;
  }
  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]){
      --bg:#1C1512;
      --bg-alt:#221A16;
      --surface:#251C18;
      --surface-2:#2B211C;
      --ink:#F3E7DD;
      --ink-soft:#C9B7AA;
      --ink-faint:#8F7B6C;
      --accent:#E496A8;
      --accent-ink:#2B1219;
      --accent-soft:#3B2229;
      --accent-2:#AEBF92;
      --accent-2-soft:#2A3122;
      --line:#3C2E27;
      --shadow: 0 30px 70px -35px rgba(0,0,0,.6);
      --shadow-sm: 0 14px 30px -18px rgba(0,0,0,.55);
    }
  }
  :root[data-theme="dark"]{
    --bg:#1C1512;
    --bg-alt:#221A16;
    --surface:#251C18;
    --surface-2:#2B211C;
    --ink:#F3E7DD;
    --ink-soft:#C9B7AA;
    --ink-faint:#8F7B6C;
    --accent:#E496A8;
    --accent-ink:#2B1219;
    --accent-soft:#3B2229;
    --accent-2:#AEBF92;
    --accent-2-soft:#2A3122;
    --line:#3C2E27;
    --shadow: 0 30px 70px -35px rgba(0,0,0,.6);
    --shadow-sm: 0 14px 30px -18px rgba(0,0,0,.55);
  }

  *{box-sizing:border-box;}
  /* grid items default to min-width:auto, which can force a track (and the page) to overflow
     when it holds an image or long text — reset it everywhere grid is used */
  .about-grid > *, .reviews-grid > *, .contact-card > *, .footer-grid > *,
  .directions-grid > *, .directions-photos > *{ min-width:0; }
  img{max-width:100%; display:block;}
  [hidden]{display:none!important;}
  html{scroll-behavior:smooth; scroll-padding-top:88px;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
  }
  body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.6;
    padding-inline:0;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  a{color:inherit;}
  .wrap{
    max-width:1180px;
    margin-inline:auto;
    padding-inline:24px;
  }
  .bleed{
    width:100vw;
    margin-inline:calc(50% - 50vw);
  }
  h1,h2,h3,h4{
    font-family:var(--font-display);
    font-weight:600;
    margin:0;
    text-wrap:balance;
    color:var(--ink);
  }
  p{margin:0;}
  .eyebrow{
    font-family:var(--font-body);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--accent);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:26px;
    height:1px;
    background:var(--accent);
    display:inline-block;
  }
  .btn{
    font-family:var(--font-body);
    font-weight:700;
    font-size:.92rem;
    letter-spacing:.01em;
    border-radius:999px;
    padding:14px 26px;
    border:1px solid transparent;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn:focus-visible{outline:2px solid var(--accent); outline-offset:3px;}
  .btn-primary{background:var(--accent); color:var(--accent-ink); box-shadow:var(--shadow-sm);}
  .btn-primary:hover{transform:translateY(-2px); box-shadow:var(--shadow);}
  .btn-ghost{background:transparent; color:var(--ink); border-color:var(--line);}
  .btn-ghost:hover{border-color:var(--accent); color:var(--accent); transform:translateY(-2px);}
  .btn-sm{padding:10px 18px; font-size:.82rem;}

  /* NAV */
  header.nav{
    position:sticky;
    top:env(safe-area-inset-top, 0px);
    z-index:50;
    background:color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
  }
  .nav-inner{
    max-width:1180px;
    margin-inline:auto;
    padding:14px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
  }
  .wordmark{
    font-family:var(--font-script);
    font-size:2rem;
    color:var(--accent);
    line-height:1;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    gap:2px;
  }
  .wordmark small{
    font-family:var(--font-body);
    font-size:.62rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--ink-faint);
    font-weight:700;
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
  }
  .nav-links a{
    text-decoration:none;
    font-size:.9rem;
    font-weight:600;
    color:var(--ink-soft);
    position:relative;
    padding-bottom:3px;
  }
  .nav-links a:hover{color:var(--accent);}
  .nav-actions{display:flex; align-items:center; gap:14px;}
  .nav-toggle{
    display:none;
    width:42px; height:42px;
    border-radius:50%;
    border:1px solid var(--line);
    background:var(--surface);
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-direction:column;
    gap:4px;
  }
  .nav-toggle span{width:16px; height:2px; background:var(--ink); display:block; border-radius:2px; transition:transform .3s ease, opacity .3s ease;}
  .nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg);}
  .nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
  .nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
  .mobile-panel{display:none;}
  .mobile-cta{display:none;}

  /* HERO — full-bleed studio photo as background, copy overlaid */
  .hero{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    padding-block:56px 40px;
    min-height:560px;
    display:flex;
    align-items:center;
  }
  .hero-slider{
    position:absolute;
    inset:0;
    z-index:0;
  }
  .hero-slide{
    position:absolute;
    inset:0;
    z-index:1;
    clip-path:inset(0 100% 0 0);
    transition:clip-path 1.15s cubic-bezier(.65,0,.35,1);
  }
  .hero-slide.is-active{
    z-index:2;
    clip-path:inset(0 0 0 0);
  }
  .hero-slide img{
    width:100%; height:100%; object-fit:cover;
    object-position:center 38%;
    animation:heroKenBurns 9s ease-in-out infinite alternate;
  }
  @keyframes heroKenBurns{
    from{ transform:scale(1); }
    to{ transform:scale(1.09); }
  }
  @media (prefers-reduced-motion: reduce){
    .hero-slide img{animation:none;}
  }
  .hero-scrim{
    position:absolute; inset:0;
    background:
      linear-gradient(100deg, rgba(20,13,10,.92) 0%, rgba(24,15,12,.74) 36%, rgba(28,17,13,.38) 64%, rgba(28,17,13,.14) 100%),
      linear-gradient(0deg, rgba(14,9,7,.35), rgba(14,9,7,0) 40%);
  }
  .hero-inner{
    position:relative;
    z-index:1;
  }
  .hero-copy{max-width:600px;}
  .hero-copy h1{
    font-size:clamp(2.5rem, 4.6vw, 3.7rem);
    line-height:1.06;
    margin-top:18px;
    letter-spacing:-.01em;
    color:#fff;
  }
  .hero-copy h1 em{
    font-style:italic;
    color:#F3BBC8;
    font-weight:500;
  }
  .hero-copy p.lead{
    margin-top:16px;
    max-width:46ch;
    color:rgba(255,255,255,.86);
    font-size:1.07rem;
  }
  .eyebrow-light{color:#F3BBC8;}
  .eyebrow-light::before{background:#F3BBC8;}
  .hero-cta{
    display:flex;
    gap:14px;
    margin-top:24px;
    flex-wrap:wrap;
  }
  .btn-on-photo{border-color:rgba(255,255,255,.5); color:#fff;}
  .btn-on-photo:hover{border-color:#fff; color:#fff; background:rgba(255,255,255,.14);}
  .rating-pill{
    margin-top:22px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:999px;
    padding:9px 18px 9px 9px;
    box-shadow:var(--shadow-sm);
  }
  .rating-pill .stars{color:var(--accent); font-size:1rem; letter-spacing:1px;}
  .rating-pill .num{font-family:var(--font-display); font-weight:700; font-size:1.15rem;}
  .rating-pill .sep{width:1px; height:18px; background:var(--line);}
  .rating-pill .sub{font-size:.82rem; color:var(--ink-soft);}
  .rating-pill-light{background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.32); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);}
  .rating-pill-light .stars{color:#F3BBC8;}
  .rating-pill-light .num{color:#fff;}
  .rating-pill-light .sep{background:rgba(255,255,255,.3);}
  .rating-pill-light .sub{color:rgba(255,255,255,.82);}
  .stat-row{
    display:flex;
    gap:34px;
    margin-top:26px;
    flex-wrap:wrap;
  }
  .stat-row .stat b{
    display:block;
    font-family:var(--font-display);
    font-size:1.7rem;
    font-weight:600;
  }
  .stat-row .stat span{
    font-size:.78rem;
    color:var(--ink-faint);
    letter-spacing:.03em;
  }
  .stat-row-light .stat b{color:#fff;}
  .stat-row-light .stat span{color:rgba(255,255,255,.7);}
  /* slide label — a compact, self-contained pill at the top of the photo, clear of the CTA/rating block below */
  .hero-slide-tag{
    position:absolute;
    top:calc(20px + env(safe-area-inset-top, 0px));
    right:24px;
    z-index:2;
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.32);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-radius:999px;
    padding:9px 16px;
    box-shadow:0 20px 44px -22px rgba(0,0,0,.6);
    transition:opacity .3s ease;
  }
  .hero-slide-tag strong{font-family:var(--font-display); font-weight:600; font-size:.92rem; color:#fff;}
  .hero-slide-tag span{font-size:.76rem; font-weight:700; color:#F3BBC8;}
  .hero-slide-tag span:empty{display:none;}
  .hero-dots{
    position:absolute;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    z-index:2;
    display:flex;
    gap:8px;
  }
  .hero-dots button{
    width:7px; height:7px;
    border-radius:50%;
    border:none;
    padding:0;
    background:rgba(255,255,255,.45);
    cursor:pointer;
    transition:width .3s ease, background .3s ease;
  }
  .hero-dots button[aria-current="true"]{width:22px; border-radius:999px; background:#fff;}

  /* FILMSTRIP */
  .filmstrip-section{padding-block:44px 0;}
  .filmstrip{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:6px;
    border-radius:var(--radius-md);
    overflow:hidden;
  }
  .filmstrip figure{
    margin:0;
    aspect-ratio:1/1;
    overflow:hidden;
    position:relative;
    cursor:pointer;
  }
  .filmstrip img{
    width:100%; height:100%; object-fit:cover;
    transition:transform .6s cubic-bezier(.2,.8,.2,1);
  }
  .filmstrip figure:hover img{transform:scale(1.08);}
  .filmstrip figcaption{
    position:absolute; inset:auto 0 0 0;
    padding:10px 12px;
    font-size:.68rem;
    letter-spacing:.05em;
    font-weight:600;
    color:#fff;
    background:linear-gradient(0deg, rgba(20,12,10,.78), rgba(20,12,10,0));
  }
  .price-tag{
    position:absolute;
    top:10px; right:10px;
    z-index:2;
    background:rgba(255,255,255,.94);
    color:var(--ink);
    font-family:var(--font-display);
    font-weight:700;
    font-size:.74rem;
    padding:4px 10px;
    border-radius:999px;
    box-shadow:0 10px 20px -12px rgba(0,0,0,.5);
  }
  .filmstrip figure.is-selected{outline:3px solid var(--accent); outline-offset:-3px;}
  .filmstrip figure.is-selected::after{
    content:"✓";
    position:absolute;
    top:10px; left:10px;
    z-index:2;
    width:22px; height:22px;
    border-radius:50%;
    background:var(--accent);
    color:var(--accent-ink);
    font-size:.7rem;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .filmstrip-hint{
    display:none;
    font-size:.72rem;
    color:var(--ink-faint);
    text-align:center;
    padding-top:10px;
  }

  section{padding-block:96px;}
  .section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:52px;
    flex-wrap:wrap;
  }
  .section-head h2{font-size:clamp(2rem,3.4vw,2.7rem);}
  .section-head .intro{max-width:38ch; color:var(--ink-soft); font-size:.98rem;}

  /* TEASER — compact link-out to the About page */
  .teaser{background:var(--bg-alt); padding-block:64px;}
  .teaser-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:36px;
    flex-wrap:wrap;
  }
  .teaser-inner h2{margin-top:10px; font-size:clamp(1.6rem,2.6vw,2.1rem);}
  .teaser-text{margin-top:14px; color:var(--ink-soft); max-width:52ch;}
  .teaser .btn{flex:none;}

  /* DIRECTIONS — text intro on top, photo-grid showcase below */
  .directions-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:44px;
  }
  .directions-copy{max-width:640px; margin-inline:auto; text-align:center;}
  .directions-copy .eyebrow{justify-content:center;}
  .directions-copy h2{margin-top:12px; font-size:clamp(1.9rem,3.2vw,2.5rem);}
  .directions-text{margin-top:18px; color:var(--ink-soft); font-size:1.02rem;}
  .directions-actions{margin-top:28px; display:flex; justify-content:center;}
  .directions-link{
    display:inline-block;
    margin-top:18px;
    font-size:.86rem;
    font-weight:700;
    color:var(--ink-soft);
    text-decoration:none;
    border-bottom:1px solid var(--line);
    padding-bottom:2px;
    transition:color .2s ease, border-color .2s ease;
  }
  .directions-link:hover{color:var(--accent); border-color:var(--accent);}
  .directions-photos{
    --tile-gap:14px;
    overflow:hidden;
    mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image:linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }
  .directions-photos-track{
    display:flex;
    gap:var(--tile-gap);
    width:max-content;
    animation:directionsScroll 28s linear infinite;
    will-change:transform;
  }
  .directions-photos:hover .directions-photos-track{animation-play-state:paused;}
  @keyframes directionsScroll{
    from{transform:translateX(0);}
    to{transform:translateX(-25%);}
  }
  @media (prefers-reduced-motion: reduce){
    .directions-photos-track{animation:none;}
  }
  .directions-tile{
    position:relative;
    flex:0 0 190px;
    aspect-ratio:3/4;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    isolation:isolate;
  }
  .directions-tile img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease;}
  .directions-tile:hover img{transform:scale(1.06);}
  .directions-tile::after{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:55%;
    background:linear-gradient(0deg, rgba(18,10,8,.62), rgba(18,10,8,0));
    pointer-events:none;
  }
  .directions-label{
    position:absolute;
    left:50%; bottom:14px;
    transform:translateX(-50%);
    z-index:2;
    width:max-content;
    max-width:calc(100% - 20px);
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.38);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    color:#fff;
    font-weight:700;
    font-size:.78rem;
    letter-spacing:.01em;
    padding:8px 16px;
    border-radius:999px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  /* ABOUT */
  .about{background:var(--bg-alt);}
  .about-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:64px;
    align-items:center;
  }
  .about-media{position:relative;}
  .about-media .frame{
    border-radius:var(--radius-lg);
    overflow:hidden;
    aspect-ratio:5/6;
    box-shadow:var(--shadow);
  }
  .about-media img{width:100%; height:100%; object-fit:cover;}
  .about-media .frame-caption{
    margin-top:14px;
    font-size:.8rem;
    color:var(--ink-faint);
    font-style:italic;
    font-family:var(--font-display);
  }
  blockquote{
    margin:26px 0 0;
    font-family:var(--font-display);
    font-style:italic;
    font-size:1.5rem;
    line-height:1.4;
    color:var(--ink);
    border-left:2px solid var(--accent);
    padding-left:22px;
  }
  .about-copy p.body-text{margin-top:22px; color:var(--ink-soft); max-width:56ch;}
  .fact-list{
    margin-top:34px;
    display:grid;
    gap:16px;
  }
  .fact-list li{
    list-style:none;
    display:flex;
    gap:14px;
    align-items:flex-start;
    font-size:.94rem;
    color:var(--ink-soft);
  }
  .fact-list .mark{
    flex:none;
    width:28px; height:28px;
    border-radius:50%;
    background:var(--accent-2-soft);
    color:var(--accent-2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.75rem;
    font-weight:800;
    margin-top:2px;
  }
  .fact-list b{color:var(--ink); font-weight:700;}

  /* SERVICES — icon tiles, all categories visible at once, no scrolling */
  .services-tabs-wrap{margin-bottom:36px;}
  .services-tabs{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(108px, 1fr));
    gap:10px;
  }
  .tab-btn{
    font-family:var(--font-body);
    font-weight:700;
    font-size:.78rem;
    line-height:1.25;
    padding:16px 10px;
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    background:var(--surface);
    color:var(--ink-soft);
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:9px;
    text-align:center;
    transition:border-color .25s ease, color .25s ease, background .25s ease, transform .2s ease, box-shadow .25s ease;
  }
  .tab-icon{width:25px; height:25px; flex:none;}
  .tab-icon svg{width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round;}
  .tab-btn:hover{border-color:var(--accent); color:var(--accent); transform:translateY(-2px);}
  .tab-btn[aria-selected="true"]{
    background:var(--accent);
    border-color:var(--accent);
    color:var(--accent-ink);
    box-shadow:var(--shadow-sm);
  }
  .menu-card{transition:opacity .18s ease;}
  .menu-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:44px 48px;
    box-shadow:var(--shadow-sm);
  }
  .menu-card h3{
    font-size:1.3rem;
    font-weight:600;
    margin-bottom:6px;
  }
  .menu-card .menu-note{color:var(--ink-faint); font-size:.85rem; margin-bottom:28px; display:block;}
  .menu-list{display:grid; gap:4px;}
  .menu-row{
    display:flex;
    align-items:baseline;
    gap:12px;
    padding:9px 10px;
    margin-inline:-10px;
    border-radius:10px;
    cursor:pointer;
    transition:background .2s ease;
  }
  .menu-row:hover{background:var(--bg-alt);}
  .menu-row.is-selected{background:var(--accent-soft);}
  .menu-row.is-selected .name::before{content:"✓"; color:var(--accent); font-weight:800; margin-right:2px;}

  /* booking cart — accumulates every service tapped (rows or lash photos), stays until cleared */
  .booking-cart{
    position:fixed;
    left:0; right:0; bottom:0;
    z-index:85;
    background:var(--ink);
    color:var(--bg);
    box-shadow:0 -24px 60px -24px rgba(0,0,0,.55);
  }
  .booking-cart-inner{
    max-width:1180px;
    margin-inline:auto;
    padding:14px 24px;
    padding-bottom:calc(14px + env(safe-area-inset-bottom, 0px));
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
  }
  .booking-cart-info{display:flex; align-items:baseline; gap:12px; min-width:0; flex-wrap:wrap;}
  .booking-cart-count{font-size:.82rem; font-weight:700; white-space:nowrap;}
  .booking-cart-info strong{font-family:var(--font-display); color:#F3BBC8; font-size:1.15rem; white-space:nowrap;}
  .booking-cart-list{
    font-size:.78rem;
    color:color-mix(in srgb, var(--bg) 60%, transparent);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:38vw;
  }
  .booking-cart .btn{flex:none;}
  @media (max-width:720px){
    .booking-cart-list{display:none;}
    .booking-cart-inner{padding:12px 16px; padding-bottom:calc(12px + env(safe-area-inset-bottom, 0px));}
  }

  /* BOOKING MODAL — the full reservation flow: services → date → time → staff → summary */
  .booking-modal{
    position:fixed;
    inset:0;
    z-index:100;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
  }
  .booking-modal-backdrop{
    position:absolute; inset:0;
    background:rgba(20,13,10,.55);
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(3px);
  }
  .booking-modal-panel{
    position:relative;
    z-index:1;
    width:100%;
    max-width:640px;
    max-height:min(720px, calc(100vh - 48px));
    background:var(--surface);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    display:flex;
    flex-direction:column;
    overflow:hidden;
  }
  .booking-modal-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:20px 22px;
    border-bottom:1px solid var(--line);
    flex:none;
  }
  .booking-steps{display:flex; align-items:center; gap:7px;}
  .booking-steps span{
    position:relative;
    width:26px; height:26px;
    border-radius:50%;
    border:1.5px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    font-size:.72rem; font-weight:700;
    color:var(--ink-faint);
    font-family:var(--font-body);
    flex:none;
  }
  .booking-steps span:not(:last-child)::after{
    content:"";
    position:absolute; left:100%; top:50%;
    transform:translateY(-50%);
    width:7px; height:1.5px;
    background:var(--line);
  }
  .booking-steps span.is-active{background:var(--accent); border-color:var(--accent); color:var(--accent-ink);}
  .booking-steps span.is-done{border-color:var(--accent); color:var(--accent);}
  .booking-modal-close{
    width:34px; height:34px; flex:none;
    border-radius:50%;
    border:1px solid var(--line);
    background:var(--surface);
    color:var(--ink-soft);
    cursor:pointer;
    font-size:.85rem;
    transition:border-color .2s ease, color .2s ease;
  }
  .booking-modal-close:hover{border-color:var(--accent); color:var(--accent);}
  .booking-modal-body{
    padding:24px 22px;
    overflow-y:auto;
    flex:1 1 auto;
    min-height:0;
  }
  .booking-panel h3{font-size:1.3rem;}
  .booking-panel-hint{margin-top:6px; font-size:.85rem; color:var(--ink-faint);}

  .booking-service-list{margin-top:22px; display:grid; gap:22px;}
  .booking-service-cat{
    font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
    color:var(--accent); margin-bottom:10px;
  }
  .booking-service-group{display:grid; gap:6px;}
  .booking-service-row{
    width:100%;
    display:flex; align-items:center; gap:12px;
    padding:11px 12px;
    border:1px solid var(--line);
    border-radius:12px;
    background:var(--surface);
    font-family:var(--font-body);
    cursor:pointer;
    text-align:left;
    transition:border-color .2s ease, background .2s ease;
  }
  .booking-service-row:hover{border-color:var(--accent);}
  .booking-service-row.is-checked{background:var(--accent-soft); border-color:var(--accent);}
  .booking-check{
    flex:none; width:19px; height:19px;
    border-radius:6px;
    border:1.5px solid var(--line);
    background:var(--surface);
    position:relative;
  }
  .booking-service-row.is-checked .booking-check{background:var(--accent); border-color:var(--accent);}
  .booking-service-row.is-checked .booking-check::after{
    content:"✓"; position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    color:var(--accent-ink); font-size:.7rem; font-weight:800;
  }
  .booking-service-name{flex:1; font-size:.94rem; font-weight:600; color:var(--ink);}
  .booking-service-price{font-family:var(--font-display); font-weight:600; font-size:.92rem; white-space:nowrap;}

  .booking-date-list{margin-top:20px; display:grid; grid-template-columns:repeat(auto-fill, minmax(70px, 1fr)); gap:8px;}
  .booking-date-btn{
    display:flex; flex-direction:column; align-items:center; gap:2px;
    padding:12px 6px;
    border:1px solid var(--line);
    border-radius:12px;
    background:var(--surface);
    cursor:pointer;
    font-family:var(--font-body);
    transition:border-color .2s ease, background .2s ease;
  }
  .booking-date-btn:hover:not(:disabled){border-color:var(--accent);}
  .booking-date-btn.is-selected{background:var(--accent); border-color:var(--accent);}
  .booking-date-btn.is-selected *{color:var(--accent-ink) !important;}
  .booking-date-btn:disabled{opacity:.35; cursor:not-allowed;}
  .booking-date-day{font-size:.66rem; letter-spacing:.05em; text-transform:uppercase; color:var(--ink-faint);}
  .booking-date-num{font-family:var(--font-display); font-size:1.25rem; font-weight:600; color:var(--ink);}
  .booking-date-month{font-size:.68rem; color:var(--ink-faint);}

  .booking-time-list{margin-top:20px; display:grid; grid-template-columns:repeat(auto-fill, minmax(78px, 1fr)); gap:8px;}
  .booking-time-btn{
    padding:12px 8px;
    border:1px solid var(--line);
    border-radius:12px;
    background:var(--surface);
    font-family:var(--font-body);
    font-weight:600;
    font-size:.9rem;
    color:var(--ink);
    cursor:pointer;
    transition:border-color .2s ease, background .2s ease, color .2s ease;
  }
  .booking-time-btn:hover{border-color:var(--accent);}
  .booking-time-btn.is-selected{background:var(--accent); border-color:var(--accent); color:var(--accent-ink);}

  .booking-staff-list{margin-top:22px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px;}
  .booking-staff-card{
    display:flex; flex-direction:column; align-items:center; gap:10px;
    padding:20px 10px;
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    background:var(--surface);
    cursor:pointer;
    font-family:var(--font-body); font-weight:700; font-size:.86rem; color:var(--ink);
    transition:border-color .2s ease, background .2s ease;
  }
  .booking-staff-card:hover{border-color:var(--accent);}
  .booking-staff-card.is-selected{background:var(--accent-soft); border-color:var(--accent);}
  .booking-staff-card .avatar{width:44px; height:44px; font-size:1.1rem;}

  .booking-summary{margin-top:20px; display:grid; gap:2px; border:1px solid var(--line); border-radius:12px; overflow:hidden;}
  .booking-summary-row{
    display:flex; justify-content:space-between; gap:16px;
    padding:13px 16px;
    background:var(--surface-2);
    font-size:.88rem;
  }
  .booking-summary-row:nth-child(even){background:var(--surface);}
  .booking-summary-row span{color:var(--ink-faint);}
  .booking-summary-row strong{color:var(--ink); text-align:right; font-weight:700;}
  .booking-confirm-actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap;}
  .booking-confirm-actions .btn{flex:1; justify-content:center; min-width:200px;}

  .booking-modal-nav{
    display:flex; align-items:center; justify-content:space-between; gap:14px;
    padding:16px 22px;
    padding-bottom:calc(16px + env(safe-area-inset-bottom, 0px));
    border-top:1px solid var(--line);
    flex:none;
  }
  .booking-modal-total{font-size:.82rem; font-weight:700; color:var(--ink-soft); text-align:center; flex:1;}
  .booking-modal-nav .btn:disabled{opacity:.4; cursor:not-allowed; pointer-events:none;}
  @media (max-width:560px){
    .booking-modal{padding:0;}
    .booking-modal-panel{max-width:none; max-height:100%; height:100%; border-radius:0;}
    .booking-staff-list{grid-template-columns:1fr; }
    .booking-staff-card{flex-direction:row; justify-content:flex-start; padding:14px 16px;}
    .booking-modal-total{display:none;}
    .booking-confirm-actions{flex-direction:column;}
    .booking-confirm-actions .btn{min-width:0; width:100%;}
  }

  .menu-row .name{
    font-size:1.03rem;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .menu-row .leader{
    flex:1;
    border-bottom:1px dotted var(--line);
    margin-bottom:5px;
    min-width:24px;
  }
  .menu-row .price{
    font-family:var(--font-display);
    font-weight:600;
    font-size:1.12rem;
    white-space:nowrap;
  }
  .promo{
    font-size:.62rem;
    font-weight:800;
    letter-spacing:.06em;
    color:var(--accent-2);
    background:var(--accent-2-soft);
    padding:3px 9px;
    border-radius:999px;
  }

  /* SLIDER — shared by Team and Gallery */
  .slider{position:relative;}
  .slider-track{
    display:flex;
    gap:22px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding-bottom:2px;
  }
  .slider-track::-webkit-scrollbar{display:none;}
  .slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px; height:46px;
    border-radius:50%;
    background:var(--surface);
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    box-shadow:var(--shadow-sm);
    z-index:3;
    font-size:1.15rem;
    color:var(--ink);
    transition:border-color .25s ease, color .25s ease;
  }
  .slider-arrow:hover{border-color:var(--accent); color:var(--accent);}
  .slider-arrow.prev{left:-23px;}
  .slider-arrow.next{right:-23px;}
  .slider-dots{display:flex; gap:8px; justify-content:center; margin-top:26px;}
  .slider-dot{width:8px; height:8px; border-radius:50%; background:var(--line); border:none; padding:0; cursor:pointer; transition:width .3s ease, background .3s ease;}
  .slider-dot[aria-current="true"]{background:var(--accent); width:24px; border-radius:999px;}
  @media (max-width:900px){ .slider-arrow{display:none;} }

  /* TEAM */
  .team-slide-photo{
    flex:0 0 300px;
    aspect-ratio:4/5;
    border-radius:var(--radius-lg);
    overflow:hidden;
    position:relative;
    scroll-snap-align:start;
    box-shadow:var(--shadow-sm);
  }
  .team-slide-photo img{width:100%; height:100%; object-fit:cover;}
  .team-slide-cap{position:absolute; left:0; right:0; bottom:0; padding:20px; background:linear-gradient(0deg, rgba(18,10,8,.8), transparent);}
  .team-slide-cap strong{display:block; font-family:var(--font-display); font-size:1.1rem; color:#fff;}
  .team-slide-cap span{font-size:.8rem; color:rgba(255,255,255,.85);}
  .team-slide-card{
    flex:0 0 300px;
    scroll-snap-align:start;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:32px;
    box-shadow:var(--shadow-sm);
    display:flex;
    flex-direction:column;
    gap:16px;
    align-items:flex-start;
    justify-content:center;
  }
  .avatar{
    flex:none;
    width:72px; height:72px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:var(--font-display);
    font-size:1.5rem;
    font-weight:600;
    color:var(--accent-ink);
    background:linear-gradient(155deg, var(--accent), var(--accent-2));
  }
  .team-slide-card h4{font-size:1.2rem;}
  .team-slide-card p{color:var(--ink-soft); font-size:.88rem;}

  /* GALLERY */
  .gallery{background:var(--bg-alt);}
  .gallery-slide{
    flex:0 0 300px;
    aspect-ratio:3/4;
    border-radius:var(--radius-lg);
    overflow:hidden;
    position:relative;
    scroll-snap-align:start;
    box-shadow:var(--shadow-sm);
  }
  .gallery-slide img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease;}
  .gallery-slide:hover img{transform:scale(1.05);}
  .gallery-slide .cap{
    position:absolute; left:0; right:0; bottom:0;
    padding:20px 22px;
    background:linear-gradient(0deg, rgba(18,10,8,.8), rgba(18,10,8,0));
    color:#fff;
  }
  .gallery-slide .cap .eyebrow{color:#F0D8DE;}
  .gallery-slide .cap .eyebrow::before{background:#F0D8DE;}
  .gallery-slide .cap h4{color:#fff; font-size:1.08rem; margin-top:6px;}

  /* REVIEWS */
  .reviews-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:50px;
  }
  .rating-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:38px;
    box-shadow:var(--shadow-sm);
    height:fit-content;
  }
  .rating-big{
    font-family:var(--font-display);
    font-size:3.6rem;
    font-weight:600;
    line-height:1;
  }
  .rating-card .stars{color:var(--accent); margin-top:10px; font-size:1.1rem; letter-spacing:2px;}
  .rating-card .count{color:var(--ink-soft); font-size:.88rem; margin-top:8px;}
  .bar-list{margin-top:28px; display:grid; gap:10px;}
  .bar-row{display:flex; align-items:center; gap:10px; font-size:.78rem; color:var(--ink-soft);}
  .bar-row .label{width:34px; flex:none; font-variant-numeric:tabular-nums;}
  .bar-track{flex:1; height:7px; background:var(--bg-alt); border-radius:999px; overflow:hidden;}
  .bar-fill{height:100%; background:var(--accent); border-radius:999px;}
  .bar-row .val{width:26px; text-align:right; flex:none; font-variant-numeric:tabular-nums;}

  .review-scroller{
    display:flex;
    gap:18px;
    overflow-x:auto;
    padding-bottom:10px;
    scroll-snap-type:x proximity;
  }
  .review-scroller::-webkit-scrollbar{height:6px;}
  .review-scroller::-webkit-scrollbar-thumb{background:var(--line); border-radius:999px;}
  .review-card{
    scroll-snap-align:start;
    flex:0 0 280px;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:var(--radius-md);
    padding:26px;
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .review-card .stars{color:var(--accent); font-size:.85rem; letter-spacing:1px;}
  .review-card p.quote{font-size:.92rem; color:var(--ink); flex:1;}
  .review-foot{display:flex; align-items:center; justify-content:space-between; font-size:.78rem; color:var(--ink-faint);}
  .review-foot .who{display:flex; align-items:center; gap:8px; font-weight:700; color:var(--ink-soft);}
  .verified{
    display:inline-flex; align-items:center; gap:4px;
    color:var(--accent-2);
    font-weight:700;
    font-size:.68rem;
    letter-spacing:.03em;
  }

  /* CONTACT */
  .contact-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
  }
  .contact-col{padding:52px;}
  .contact-col.hours{border-right:1px solid var(--line); background:var(--surface-2);}
  .hours-row{
    display:flex;
    justify-content:space-between;
    padding:11px 0;
    border-bottom:1px solid var(--line);
    font-size:.92rem;
  }
  .hours-row:last-child{border-bottom:none;}
  .hours-row .day{color:var(--ink-soft);}
  .hours-row.today{font-weight:800; color:var(--ink);}
  .hours-row.today .day{color:var(--accent);}
  .status-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    font-size:.8rem;
    color:var(--ink-soft);
  }
  .status-dot{width:8px; height:8px; border-radius:50%; background:var(--accent-2);}
  .status-dot.closed{background:var(--ink-faint);}
  .contact-list{display:grid; gap:22px; margin-top:6px;}
  .contact-item{display:flex; gap:16px; align-items:flex-start;}
  .contact-item .ic{
    flex:none; width:38px; height:38px; border-radius:50%;
    background:var(--accent-soft); color:var(--accent);
    display:flex; align-items:center; justify-content:center;
    font-size:1rem;
  }
  .contact-item a, .contact-item p{font-size:.95rem; text-decoration:none;}
  .contact-item .lbl{font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:3px;}
  .social-row{display:flex; gap:12px; margin-top:28px;}
  .social-row a{
    width:42px; height:42px; border-radius:50%;
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    text-decoration:none; font-size:.95rem; color:var(--ink-soft);
    transition:all .25s ease;
  }
  .social-row a:hover{background:var(--accent); border-color:var(--accent); color:var(--accent-ink); transform:translateY(-2px);}

  /* FOOTER */
  footer{
    background:var(--ink);
    color:var(--bg);
    padding-block:64px 34px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:40px;
  }
  footer .wordmark{color:var(--bg); }
  footer .wordmark small{color:color-mix(in srgb, var(--bg) 55%, transparent);}
  footer p{color:color-mix(in srgb, var(--bg) 65%, transparent); font-size:.88rem; max-width:36ch; margin-top:14px;}
  footer h5{
    font-family:var(--font-body); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
    color:color-mix(in srgb, var(--bg) 55%, transparent); margin-bottom:16px; font-weight:700;
  }
  footer ul{list-style:none; margin:0; padding:0; display:grid; gap:10px;}
  footer a{color:color-mix(in srgb, var(--bg) 82%, transparent); text-decoration:none; font-size:.9rem;}
  footer a:hover{color:var(--accent);}
  .footer-bottom{
    margin-top:56px;
    padding-top:24px;
    border-top:1px solid color-mix(in srgb, var(--bg) 18%, transparent);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    font-size:.76rem;
    color:color-mix(in srgb, var(--bg) 45%, transparent);
  }

  @media (max-width:980px){
    .hero{min-height:480px;}
    .about-grid, .reviews-grid{grid-template-columns:1fr;}
    .directions-photos{--tile-gap:12px;}
    .directions-tile{flex-basis:160px;}
    .about-media .frame{aspect-ratio:16/10;}
    .contact-card{grid-template-columns:1fr;}
    .contact-col{padding:36px 28px;}
    .contact-col.hours{border-right:none; border-bottom:1px solid var(--line);}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:720px){
    .nav-links{display:none;}
    .nav-actions .btn-primary{display:none;}
    .nav-toggle{display:flex;}
    .mobile-panel{
      display:block;
      max-height:0;
      overflow:hidden;
      transition:max-height .35s ease;
      background:var(--bg);
      border-bottom:1px solid var(--line);
    }
    .mobile-panel.open{max-height:360px;}
    .mobile-panel ul{list-style:none; margin:0; padding:18px 24px; display:grid; gap:16px;}
    .mobile-panel li{list-style:none;}
    .mobile-panel a{text-decoration:none; color:var(--ink); font-weight:600; display:block;}
    .mobile-panel .btn{width:100%; justify-content:center; margin-top:6px;}
    section{padding-block:56px;}
    .directions-photos{margin-inline:-24px; padding-inline:24px; --tile-gap:10px;}
    .directions-tile{flex-basis:128px;}
    .directions-label{font-size:.7rem; padding:7px 10px; max-width:calc(100% - 10px); letter-spacing:0;}
    .hero{padding-block:52px 40px; min-height:0;}
    .hero-copy{max-width:none; margin-top:10px;}
    .hero-copy h1{margin-top:12px;}
    .hero-copy p.lead{margin-top:14px;}
    .hero-cta{margin-top:18px;}
    .rating-pill{margin-top:16px;}
    .stat-row{margin-top:18px;}
    .hero-slide-tag{
      top:calc(16px + env(safe-area-inset-top, 0px));
      left:50%; right:auto;
      transform:translateX(-50%);
      width:max-content;
      max-width:calc(100% - 32px);
      padding:8px 14px;
    }
    .hero-slide-tag strong, .hero-slide-tag span{white-space:nowrap;}
    .hero-slide-tag strong{font-size:.82rem;}
    .hero-slide-tag span{font-size:.7rem;}
    .menu-card{padding:26px 20px;}
    .footer-grid{grid-template-columns:1fr;}
    .contact-col{padding:30px 22px;}

    /* filmstrip becomes a peeking scroll carousel, every photo always reachable */
    .filmstrip{
      display:flex;
      gap:8px;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      border-radius:0;
      margin-inline:-24px;
      padding-inline:24px;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .filmstrip::-webkit-scrollbar{display:none;}
    .filmstrip figure{
      flex:0 0 68%;
      scroll-snap-align:start;
      border-radius:var(--radius-sm);
    }
    .filmstrip-hint{display:block;}

    /* price rows stack cleanly instead of forcing a dotted leader to fit */
    .menu-row{flex-wrap:wrap; row-gap:4px; justify-content:space-between;}
    .menu-row .leader{display:none;}
    .menu-row .name{flex-wrap:wrap;}

    .stat-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      text-align:center;
    }
    .stat-row .stat{display:flex; flex-direction:column; align-items:center;}

    /* sticky booking bar replaces the header CTA once it's hidden */
    .mobile-cta{
      display:flex;
      gap:10px;
      position:fixed;
      left:0; right:0; bottom:0;
      z-index:60;
      padding:12px 16px;
      padding-bottom:calc(12px + env(safe-area-inset-bottom, 0px));
      background:color-mix(in srgb, var(--bg) 92%, transparent);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      border-top:1px solid var(--line);
    }
    .mobile-cta .btn-primary{flex:1; justify-content:center;}
    .mobile-cta .btn-icon{width:48px; flex:none; padding:0; justify-content:center; font-size:1.05rem;}
    body{padding-bottom:76px;}
  }
  @media (max-width:460px){
    .hero{min-height:0;}
    .hero-copy h1{font-size:2.1rem;}
    .hero-copy p.lead{font-size:.96rem;}
    .stat-row{display:none;}
    .filmstrip figure{flex-basis:78%;}
    .rating-big{font-size:3rem;}
    .review-card{flex-basis:78%;}
  }

  /* ABOUT PAGE — hero band + story layout for a-propos.html */
  .page-hero{
    background:var(--bg-alt);
    padding-block:64px 56px;
    text-align:center;
  }
  .page-hero h1{font-size:clamp(2.2rem,4vw,3.1rem); margin-top:14px;}
  .page-hero p{margin:16px auto 0; max-width:56ch; color:var(--ink-soft); font-size:1.05rem;}
  .page-hero .eyebrow{justify-content:center;}
  .back-link{
    display:inline-flex; align-items:center; gap:8px;
    font-size:.85rem; font-weight:700; color:var(--ink-soft);
    text-decoration:none; margin-bottom:18px;
  }
  .back-link:hover{color:var(--accent);}
  .closing-cta{background:var(--ink); color:var(--bg); text-align:center; padding-block:72px;}
  .closing-cta h2{color:var(--bg); font-size:clamp(1.8rem,3vw,2.4rem);}
  .closing-cta p{color:color-mix(in srgb, var(--bg) 75%, transparent); margin:14px auto 28px; max-width:48ch;}
