:root {
    --cream:   #FCFAF7;
    --ivory:   #F7F1ED;
    --linen:   #F4ECE8;
    --sand:    #EBD8D4;
    --taupe:   #9C8286;
    --bronze:  #C0202F;
    --gold:    #E4939E;
    --espresso:#181314;
    --ink:     #121011;
    --muted:   #857478;
    --hairline: rgba(24,19,20,0.14);
    --hairline-light: rgba(253,250,249,0.22);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--sand); color: var(--ink); }

  h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.005em;
  }
  em { font-style: italic; }

  img { max-width: 100%; display: block; }
  a { color: inherit; }

  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--espresso); color: var(--cream); padding: 12px 24px;
  }
  .skip-link:focus { left: 0; }

  /* ---------- micro components ---------- */
  .label {
    font-family: 'Cinzel', serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--bronze);
  }
  .label--light { color: var(--gold); }

  .rule {
    width: 56px; height: 1px;
    background: var(--bronze);
    opacity: 0.6;
    margin: 26px 0;
  }
  .rule--center { margin-left: auto; margin-right: auto; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 44px;
    border: 1px solid var(--espresso);
    color: var(--espresso);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color 0.45s var(--ease);
    cursor: pointer;
    isolation: isolate;
  }
  .btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--espresso);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
    z-index: -1;
  }
  .btn:hover { color: var(--cream); }
  .btn:hover::before { transform: scaleX(1); }

  .btn--solid { background: var(--espresso); color: var(--cream); }
  .btn--solid::before { background: var(--bronze); }
  .btn--solid:hover { border-color: var(--bronze); }

  .btn--light { border-color: rgba(253,250,249,0.55); color: var(--cream); }
  .btn--light::before { background: var(--cream); }
  .btn--light:hover { color: var(--ink); }

  .btn--gold { background: var(--bronze); border-color: var(--bronze); color: var(--cream); }
  .btn--gold::before { background: var(--espresso); }

  /* ---------- topbar (announce + nav) ---------- */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
  }
  .announce {
    background: var(--espresso);
    color: rgba(253,250,249,0.75);
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 11px 20px;
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  }
  .announce b { color: var(--gold); font-weight: 400; }
  .topbar.scrolled .announce { max-height: 0; padding-top: 0; padding-bottom: 0; }

  /* ---------- nav ---------- */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 48px;
    transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s;
  }
  .topbar.scrolled nav {
    background: rgba(253,250,249,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 48px;
    box-shadow: 0 1px 0 var(--hairline);
  }
  .nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
  }
  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    transition: color 0.3s, opacity 0.3s;
    opacity: 0.85;
  }
  .nav-links a:hover { opacity: 1; }
  .topbar.scrolled .nav-links a { color: var(--espresso); }

  .brand {
    text-decoration: none;
    text-align: center;
    color: var(--cream);
    transition: color 0.4s;
    line-height: 1;
  }
  .topbar.scrolled .brand { color: var(--espresso); }
  .brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
  }
  .brand .brand-word {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-indent: 0.26em; /* balance tracking */
  }
  .brand .eye-mark { width: 40px; height: auto; flex-shrink: 0; }
  .brand .eye-mark path { stroke: currentColor; }
  .brand .brand-sub {
    display: block;
    font-size: 8px;
    letter-spacing: 0.52em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.7;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .nav-phone {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-decoration: none;
    color: var(--cream);
    opacity: 0.85;
    transition: color 0.4s;
  }
  .topbar.scrolled .nav-phone { color: var(--espresso); }
  .nav-book {
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    border: 1px solid rgba(253,250,249,0.5);
    padding: 12px 24px;
    transition: all 0.4s var(--ease);
  }
  .nav-book:hover { background: var(--cream); color: var(--ink); }
  .topbar.scrolled .nav-book { color: var(--espresso); border-color: var(--espresso); }
  .topbar.scrolled .nav-book:hover { background: var(--espresso); color: var(--cream); }

  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 34px; height: 24px;
    position: relative;
    z-index: 1102;
  }
  .nav-toggle span {
    position: absolute; left: 0; right: 0;
    height: 1px; background: var(--cream);
    transition: all 0.4s var(--ease);
  }
  .topbar.scrolled .nav-toggle span, nav.menu-open .nav-toggle span { background: var(--espresso); }
  .nav-toggle span:nth-child(1) { top: 4px; }
  .nav-toggle span:nth-child(2) { top: 12px; }
  .nav-toggle span:nth-child(3) { top: 20px; }
  nav.menu-open .nav-toggle span:nth-child(1) { top: 12px; transform: rotate(45deg); }
  nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.menu-open .nav-toggle span:nth-child(3) { top: 12px; transform: rotate(-45deg); }
  nav.menu-open .brand, nav.menu-open .nav-phone { color: var(--espresso); }
  nav.menu-open .nav-book { color: var(--espresso); border-color: var(--espresso); }

  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--cream);
    z-index: 999;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 7vw, 44px);
    font-weight: 300;
    text-decoration: none;
    color: var(--espresso);
    padding: 8px 0;
    letter-spacing: 0.04em;
  }
  .mobile-menu a:hover { font-style: italic; color: var(--bronze); }
  .mobile-menu .mm-phone {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-top: 28px;
  }

  /* ---------- hero ---------- */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--espresso);
  }
  .hero video, .hero .hero-fallback {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroZoom 14s var(--ease) forwards;
  }
  @keyframes heroZoom { to { transform: scale(1.0); } }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(to top, rgba(12,9,10,0.82) 0%, rgba(12,9,10,0.25) 42%, rgba(12,9,10,0.18) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 9vh;
    color: var(--cream);
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Cinzel', serif;
    font-size: 10.5px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    animation: riseIn 1.2s 0.4s var(--ease) forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 44px; height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-size: clamp(44px, 6.6vw, 94px);
    margin-bottom: 34px;
    opacity: 0;
    animation: riseIn 1.2s 0.65s var(--ease) forwards;
  }
  @media (max-width: 900px) { .br-d { display: none; } }
  .hero h1 em { color: var(--gold); }
  .hero-sub {
    max-width: 470px;
    font-size: 15.5px;
    font-weight: 200;
    color: rgba(253,250,249,0.82);
    margin-bottom: 44px;
    opacity: 0;
    animation: riseIn 1.2s 0.9s var(--ease) forwards;
  }
  .hero-ctas {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: riseIn 1.2s 1.1s var(--ease) forwards;
  }
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(34px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-scroll {
    position: absolute;
    right: 48px; bottom: 9vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(253,250,249,0.6);
    font-size: 9.5px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
  .hero-scroll .line {
    width: 1px; height: 64px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2.4s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
  }

  /* ---------- trust bar ---------- */
  .trustbar {
    border-bottom: 1px solid var(--hairline);
    background: var(--cream);
  }
  .trustbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 48px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .trustbar span {
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ---------- shared section shells ---------- */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 130px 48px;
  }
  .section--flush { padding-top: 0; }
  .sec-head { max-width: 640px; margin-bottom: 72px; }
  .sec-head h2 { font-size: clamp(36px, 4.6vw, 62px); margin-top: 22px; }
  .sec-head h2 em { color: var(--bronze); }
  .sec-head p { margin-top: 24px; color: var(--muted); font-size: 15.5px; max-width: 52ch; }
  .sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }

  /* ---------- florals ---------- */
  .floral {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .floral--tr { top: -8px; right: -30px; width: clamp(190px, 27vw, 400px); }
  .floral--bl { bottom: -8px; left: -30px; width: clamp(150px, 20vw, 300px); transform: scale(-1); opacity: 0.45; }
  .faq-list { position: relative; z-index: 1; }

  /* ---------- manifesto ---------- */
  .manifesto {
    background: var(--ivory);
    border-bottom: 1px solid var(--hairline);
    position: relative;
    overflow: hidden;
  }
  .manifesto-inner { position: relative; z-index: 1; }
  .manifesto-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 150px 48px;
    text-align: center;
  }
  .manifesto h2 {
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.22;
    margin-top: 30px;
    color: var(--ink);
  }
  .manifesto h2 em { color: var(--bronze); }
  .manifesto p {
    max-width: 620px;
    margin: 34px auto 0;
    color: var(--muted);
    font-size: 16px;
  }
  .stats {
    display: flex;
    justify-content: center;
    gap: clamp(40px, 8vw, 110px);
    margin-top: 80px;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
  }
  .stat .num sup { font-size: 0.45em; color: var(--bronze); }
  .stat .cap {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ---------- marquee ---------- */
  .marquee {
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    overflow: hidden;
    padding: 22px 0;
    background: var(--cream);
  }
  .marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 38s linear infinite;
  }
  .marquee span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--taupe);
    white-space: nowrap;
    padding: 0 28px;
    position: relative;
  }
  .marquee span::after {
    content: '·';
    position: absolute;
    right: -6px;
    color: var(--bronze);
    font-style: normal;
  }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* ---------- method ---------- */
  .method-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
  }
  .method-media {
    position: sticky;
    top: 110px;
  }
  .method-media figure {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--sand);
  }
  .method-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
  }
  .method-media figure:hover img { transform: scale(1.045); }
  .method-media figcaption {
    margin-top: 16px;
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .steps { counter-reset: step; }
  .step {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 26px;
    padding: 42px 0;
    border-top: 1px solid var(--hairline);
  }
  .step:last-child { border-bottom: 1px solid var(--hairline); }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--sand);
    line-height: 1;
    transition: color 0.5s;
  }
  .step:hover .step-num { color: var(--bronze); }
  .step h3 { font-size: 26px; margin-bottom: 12px; }
  .step p { color: var(--muted); font-size: 15px; max-width: 46ch; }

  /* ---------- compare (laser vs non-laser) ---------- */
  .versus {
    background: var(--espresso);
    color: var(--cream);
  }
  .versus .section { padding-top: 130px; padding-bottom: 130px; }
  .versus .label { color: var(--gold); }
  .versus h2 { color: var(--cream); }
  .versus h2 em { color: var(--gold); }
  .versus .sec-head p { color: rgba(253,250,249,0.6); }
  .versus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline-light);
    border: 1px solid var(--hairline-light);
  }
  .versus-col { background: var(--espresso); padding: 54px 48px; }
  .versus-col.highlight { background: #251C1E; }
  .versus-col h3 {
    font-size: 27px;
    margin-bottom: 8px;
  }
  .versus-col .tag {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 26px;
  }
  .versus-col.dim .tag { color: rgba(253,250,249,0.4); }
  .versus-col ul { list-style: none; }
  .versus-col li {
    padding: 15px 0 15px 34px;
    border-top: 1px solid var(--hairline-light);
    font-size: 14.5px;
    font-weight: 200;
    color: rgba(253,250,249,0.82);
    position: relative;
  }
  .versus-col li::before {
    position: absolute; left: 0; top: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
  }
  .versus-col.highlight li::before { content: '—'; color: var(--gold); }
  .versus-col.dim li::before { content: '—'; color: rgba(253,250,249,0.3); }
  .versus-col.dim li { color: rgba(253,250,249,0.5); }

  /* ---------- before/after ---------- */
  .ba-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(48px, 7vw, 110px);
    align-items: center;
  }
  .ba-slider {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--sand);
    user-select: none;
    cursor: ew-resize;
  }
  .ba-slider img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .ba-after-clip {
    position: absolute; inset: 0;
    overflow: hidden;
    clip-path: inset(0 0 0 50%);
  }
  .ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--cream);
    box-shadow: 0 0 24px rgba(0,0,0,0.45);
    pointer-events: none;
  }
  .ba-handle::after {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream);
    color: var(--ink);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 2px;
  }
  .ba-tag {
    position: absolute;
    bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(18,16,17,0.55);
    padding: 8px 16px;
    backdrop-filter: blur(6px);
    pointer-events: none;
  }
  .ba-tag--before { left: 18px; }
  .ba-tag--after { right: 18px; }
  .ba-range {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
  }
  .ba-note { margin-top: 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

  /* ---------- gallery ---------- */
  .gallery {
    background: var(--ivory);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .g-card { text-decoration: none; color: inherit; }
  .g-card figure {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--sand);
    position: relative;
  }
  .g-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
  }
  .g-card:hover img { transform: scale(1.05); }
  .g-card .g-num {
    position: absolute;
    top: 20px; left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--cream);
    letter-spacing: 0.2em;
    z-index: 2;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }
  .g-meta { padding: 20px 2px 0; display: flex; justify-content: space-between; align-items: baseline; }
  .g-meta h3 { font-size: 24px; }
  .g-meta span { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }

  /* ---------- journey timeline ---------- */
  .journey-list { max-width: 820px; }
  .j-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 34px;
    padding: 40px 0;
    border-top: 1px solid var(--hairline);
  }
  .j-item:last-child { border-bottom: 1px solid var(--hairline); }
  .j-when {
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bronze);
    padding-top: 8px;
  }
  .j-item h3 { font-size: 25px; margin-bottom: 10px; }
  .j-item p { color: var(--muted); font-size: 15px; max-width: 56ch; }

  /* ---------- about ---------- */
  .about { background: var(--ivory); border-top: 1px solid var(--hairline); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 7vw, 110px);
    align-items: center;
  }
  .about-media { position: relative; }
  .about-media figure {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--sand);
  }
  .about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
  .about-media:hover img { transform: scale(1.04); }
  .about-media::after {
    content: '';
    position: absolute;
    top: 26px; left: 26px; right: -26px; bottom: -26px;
    border: 1px solid var(--sand);
    z-index: -1;
  }
  .about-copy h2 { font-size: clamp(34px, 4.2vw, 56px); margin-top: 22px; }
  .about-copy > p { margin-top: 26px; color: var(--muted); font-size: 15.5px; max-width: 52ch; }
  .about-sign {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 30px;
    color: var(--bronze);
    margin-top: 34px;
  }
  .about-creds { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
  .about-creds span {
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex; align-items: center; gap: 12px;
  }
  .about-creds span::before { content: ''; width: 20px; height: 1px; background: var(--bronze); }

  /* ---------- services ---------- */
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }
  .svc {
    background: var(--cream);
    padding: 52px 48px;
    text-decoration: none;
    color: inherit;
    transition: background 0.5s var(--ease);
    position: relative;
  }
  .svc:hover { background: var(--ivory); }
  .svc .svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--bronze);
    letter-spacing: 0.2em;
  }
  .svc h3 { font-size: 27px; margin: 16px 0 12px; }
  .svc p { color: var(--muted); font-size: 14.5px; max-width: 44ch; }
  .svc .svc-go {
    margin-top: 24px;
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--espresso);
    border-bottom: 1px solid var(--bronze);
    padding-bottom: 4px;
    transition: letter-spacing 0.4s var(--ease);
  }
  .svc:hover .svc-go { letter-spacing: 0.38em; }

  /* ---------- testimonials ---------- */
  .quotes { background: var(--espresso); color: var(--cream); }
  .quotes .label { color: var(--gold); }
  .quotes h2 { color: var(--cream); }
  .quotes h2 em { color: var(--gold); }
  .quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 4vw, 60px);
    margin-top: 70px;
  }
  .quote {
    border-top: 1px solid var(--hairline-light);
    padding-top: 34px;
  }
  .quote .qmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    line-height: 0.6;
    color: var(--gold);
    display: block;
    margin-bottom: 22px;
  }
  .quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-style: italic;
    line-height: 1.5;
    color: rgba(253,250,249,0.88);
  }
  .quote cite {
    display: block;
    margin-top: 24px;
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(253,250,249,0.5);
  }
  .quote-stars { color: var(--gold); letter-spacing: 6px; font-size: 13px; margin-bottom: 18px; }

  /* ---------- faq ---------- */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--hairline); }
  .faq-item:first-child { border-top: 1px solid var(--hairline); }
  .faq-q {
    width: 100%;
    background: none; border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    text-align: left;
    padding: 30px 4px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 300;
    color: var(--espresso);
  }
  .faq-q .fx {
    font-size: 24px;
    color: var(--bronze);
    transition: transform 0.45s var(--ease);
    flex-shrink: 0;
    font-weight: 200;
    line-height: 1;
  }
  .faq-item.open .fx { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s var(--ease);
  }
  .faq-a p {
    padding: 0 4px 32px;
    color: var(--muted);
    font-size: 15px;
    max-width: 64ch;
  }

  /* ---------- service pages ---------- */
  .topbar--solid .nav-links a,
  .topbar--solid .brand,
  .topbar--solid .nav-phone,
  .topbar--solid .nav-book { color: var(--espresso); }
  .topbar--solid .nav-book { border-color: var(--espresso); }
  .topbar--solid .nav-book:hover { background: var(--espresso); color: var(--cream); }
  .topbar--solid .nav-toggle span { background: var(--espresso); }
  .svc-hero {
    position: relative;
    background: var(--ivory);
    overflow: hidden;
    padding: 190px 48px 100px;
  }
  .svc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
  }
  .svc-crumb {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 30px;
  }
  .svc-crumb a { color: inherit; text-decoration: none; }
  .svc-crumb a:hover { color: var(--bronze); }
  .svc-crumb span { color: var(--espresso); }
  .svc-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(46px, 6.4vw, 92px);
    line-height: 1.04;
    letter-spacing: 0.01em;
    color: var(--espresso);
  }
  .svc-hero h1 em { font-style: italic; color: var(--bronze); }
  .svc-hero .lede {
    max-width: 62ch;
    margin: 30px auto 0;
    font-size: 16.5px;
    font-weight: 200;
    line-height: 1.85;
    color: var(--muted);
  }
  .svc-hero .hero-ctas { justify-content: center; margin-top: 44px; }
  @media (max-width: 900px) {
    .svc-hero { padding: 150px 24px 70px; }
    .svc-hero .lede { font-size: 15px; }
  }

  /* ---------- booking ---------- */
  .booking {
    position: relative;
    background: var(--espresso);
    color: var(--cream);
    overflow: hidden;
  }
  .booking-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: 62% 42%;
    opacity: 0.22;
    filter: saturate(0.85) blur(2px);
    transform: scale(1.06);
  }
  .booking-bg--espresso {
    background:
      radial-gradient(ellipse at 20% 12%, rgba(192,32,47,0.20), transparent 55%),
      radial-gradient(ellipse at 82% 88%, rgba(228,147,158,0.12), transparent 60%),
      linear-gradient(160deg, #241a1c 0%, #181314 52%, #121011 100%);
    opacity: 1;
    filter: none;
    transform: none;
  }
  .booking .floral--night {
    z-index: 1;
    opacity: 0.16;
    mix-blend-mode: screen;
  }
  .booking::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(24,19,20,0.5), rgba(18,16,17,0.96) 78%);
  }
  .booking-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 160px 48px;
    text-align: center;
  }
  .booking h2 {
    font-size: clamp(40px, 5.6vw, 76px);
    margin-top: 26px;
  }
  .booking h2 em { color: var(--gold); }
  .booking p {
    max-width: 520px;
    margin: 28px auto 0;
    color: rgba(253,250,249,0.72);
    font-size: 15.5px;
    font-weight: 200;
  }
  .booking-ctas {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .booking-fine {
    margin-top: 44px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253,250,249,0.5);
    line-height: 2.3;
  }

  /* ---------- footer ---------- */
  footer {
    background: var(--ink);
    color: rgba(253,250,249,0.6);
  }
  .foot-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 48px 40px;
  }
  .foot-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 40px);
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 6vw, 76px);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-indent: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    text-align: center;
    line-height: 1;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--hairline-light);
  }
  .foot-mark .eye-mark { width: clamp(48px, 8vw, 104px); height: auto; flex-shrink: 0; }
  .foot-mark .eye-mark path { stroke: var(--gold); }
  .foot-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 44px;
    padding: 64px 0;
  }
  .foot-cols h4 {
    font-size: 10.5px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 22px;
  }
  .foot-cols p, .foot-cols a {
    font-size: 13.5px;
    font-weight: 200;
    color: rgba(253,250,249,0.65);
    text-decoration: none;
    line-height: 2.1;
    display: block;
  }
  .foot-cols a:hover { color: var(--cream); }
  .foot-note {
    border-top: 1px solid var(--hairline-light);
    padding: 28px 0 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253,250,249,0.35);
  }

  /* ---------- mobile sticky bar ---------- */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 990;
    background: rgba(18,16,17,0.96);
    backdrop-filter: blur(10px);
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .sticky-cta a {
    flex: 1;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 8px;
  }
  .sticky-cta .s-call { color: var(--cream); border: 1px solid rgba(253,250,249,0.35); }
  .sticky-cta .s-book { background: var(--bronze); color: var(--cream); }

  /* ---------- reveal on scroll ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
    transition-delay: var(--d, 0s);
  }
  .reveal.in { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero h1, .hero-sub, .hero-ctas, .hero-eyebrow { opacity: 1; }
  }

  /* ---------- responsive ---------- */
  @media (max-width: 1080px) {
    .nav-links { display: none; }
    .quote-grid { grid-template-columns: 1fr; gap: 44px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 900px) {
    nav, .topbar.scrolled nav { padding-left: 22px; padding-right: 22px; }
    .announce { display: none; }
    .brand .brand-word { font-size: 12.5px; letter-spacing: 0.2em; text-indent: 0.2em; }
    .hero-content { padding-bottom: calc(10vh + 78px); }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; padding: 18px 20px; }
    .hero-eyebrow { font-size: 9px; letter-spacing: 0.3em; }
    .brand .eye-mark { width: 26px; }
    .brand-lockup { gap: 8px; }
    .brand .brand-sub { display: none; }
    .floral--tr { width: 150px; opacity: 0.55; right: -20px; }
    .floral--bl { width: 120px; opacity: 0.3; }
    .foot-mark { font-size: 21px; letter-spacing: 0.15em; text-indent: 0.15em; gap: 12px; }
    .foot-mark .eye-mark { width: 38px; }
    .nav-cta .nav-phone { display: none; }
    .nav-toggle { display: block; }
    .section { padding: 88px 22px; }
    .hero-content { padding: 0 22px 12vh; }
    .hero-scroll { display: none; }
    .trustbar-inner { padding: 20px 22px; justify-content: flex-start; gap: 14px 28px; }
    .method-grid, .ba-wrap, .about-grid { grid-template-columns: 1fr; }
    .method-media { position: static; }
    .versus-grid { grid-template-columns: 1fr; }
    .versus-col { padding: 40px 26px; }
    .svc-grid { grid-template-columns: 1fr; }
    .j-item { grid-template-columns: 1fr; gap: 10px; }
    .foot-cols { grid-template-columns: 1fr 1fr; }
    .manifesto-inner { padding: 96px 22px; }
    .booking-inner { padding: 110px 22px; }
    .sticky-cta { display: flex; }
    footer { padding-bottom: 74px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-media::after { display: none; }
  }
