
    :root {
      --bg:    #080808;
      --surf:  #101010;
      --psrf:  #0B1919;
      --bdr:   #2C2C2C;
      --text:  #F0EBE1;
      --sub:   #C8C2B8;
      --muted: #888880;
      --acc:   #C4A882;
      --pet:   #2E6B6B;
      --pm:    #62AEAE;
      --ease:  cubic-bezier(0.25, 0, 0, 1);
      --px:    clamp(1.2rem, 5vw, 2.5rem);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; background: var(--bg); color-scheme: dark; }
    body {
      color: var(--text);
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 400; line-height: 1.6; overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ─── ENTRANCE KEYFRAMES (pure CSS — zero JS dependency) ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-14px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes grainShift {
      0%,100% { transform: translate(0,0); }
      10% { transform: translate(-2%,-3%); }
      20% { transform: translate(-4%,2%); }
      30% { transform: translate(2%,-4%); }
      40% { transform: translate(-2%,5%); }
      50% { transform: translate(-4%,2%); }
      60% { transform: translate(3%,0); }
      70% { transform: translate(0,3%); }
      80% { transform: translate(-3%,0); }
      90% { transform: translate(2%,2%); }
    }

    /* ─── AMBIENT LAYERS ─────────────────────────────────── */
    .grain {
      position: fixed; inset: -100%; width: 300%; height: 300%;
      z-index: 999; pointer-events: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      opacity: 0.035; mix-blend-mode: overlay;
      animation: grainShift 9s steps(8) infinite;
    }
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 2px; width: 0%;
      background: linear-gradient(90deg, var(--pet), var(--acc));
      z-index: 300; transition: width 0.1s linear;
    }

    /* ─── SAFE SCROLL REVEALS — transform/scale only, NEVER opacity ─── */
    [data-reveal] { transition: transform 0.85s var(--ease); }
    [data-reveal="up"] { transform: translateY(0); }
    [data-reveal="up"].pre { transform: translateY(36px); }
    [data-reveal="scale"] {
      transform: scale(1); filter: blur(0px);
      transition: transform 0.85s var(--ease), filter 0.85s var(--ease);
    }
    [data-reveal="scale"].pre { transform: scale(0.93); filter: blur(6px); }

    /* ─── NAV ────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.3rem var(--px);
      transition: background 0.3s, border-color 0.3s;
      border-bottom: 1px solid transparent;
      animation: fadeDown 0.8s var(--ease) 0.05s both;
    }
    nav.scrolled {
      background: rgba(8,8,8,0.97);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-color: var(--bdr);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 0.85rem;
      position: relative; z-index: 210;
    }
    .logo-mark {
      width: 42px; height: 42px; flex-shrink: 0;
      transition: transform 0.45s var(--ease);
    }
    .lm-ring {
      fill: none; stroke: var(--pet); stroke-width: 1.5;
      stroke-dasharray: 132; stroke-dashoffset: 0;
      transition: stroke 0.3s;
      animation: ringDraw 1.5s var(--ease) 0.15s both;
    }
    .lm-txt {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 17px; font-style: italic; fill: var(--acc);
      animation: markIn 0.7s var(--ease) 1.0s both;
    }
    .nav-logo:hover .logo-mark { transform: rotate(-8deg) scale(1.1); }
    .nav-logo:hover .lm-ring { stroke: var(--pm); }
    @keyframes ringDraw {
      from { stroke-dashoffset: 132; }
      to   { stroke-dashoffset: 0; }
    }
    @keyframes markIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    .nav-logo-text {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.05rem; font-weight: 400; letter-spacing: 0.08em;
    }
    .nav-ehl {
      display: block; font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--pm); margin-bottom: 0.1rem;
    }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--sub); transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .btn-nav {
      font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
      border: 1px solid rgba(196,168,130,0.6); color: var(--acc);
      padding: 0.6rem 1.4rem; min-height: 44px;
      display: flex; align-items: center; position: relative; z-index: 210;
      transition: background 0.2s, color 0.2s, transform 0.25s var(--ease);
    }
    .btn-nav:hover { background: var(--acc); color: var(--bg); border-color: var(--acc); transform: translateY(-1px); }

    /* ─── HAMBURGER ──────────────────────────────────────── */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none;
      padding: 8px; min-width: 44px; min-height: 44px;
      align-items: center; justify-content: center; position: relative; z-index: 210;
    }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.2s; }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ─── MOBILE MENU ────────────────────────────────────── */
    .mob-menu {
      position: fixed; inset: 0; z-index: 190; background: var(--bg);
      display: flex; flex-direction: column; justify-content: center;
      padding: 7rem var(--px) 3rem;
      transform: translateX(100%); transition: transform 0.4s var(--ease);
      border-left: 2px solid var(--pet);
    }
    .mob-menu.open { transform: translateX(0); }
    .mob-menu ul { list-style: none; }
    .mob-menu li { border-top: 1px solid var(--bdr); }
    .mob-menu li:last-child { border-bottom: 1px solid var(--bdr); }
    .mob-menu a {
      display: block; padding: 1.3rem 0;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 400;
      color: var(--sub); transition: color 0.2s, padding-left 0.2s;
    }
    .mob-menu a:hover { color: var(--text); padding-left: 0.5rem; }
    .mob-book {
      display: flex; align-items: center; justify-content: center;
      margin-top: 2.5rem; background: var(--pet); color: var(--text);
      padding: 1.1rem 2rem; min-height: 52px;
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      font-weight: 500; transition: background 0.2s, transform 0.2s;
    }
    .mob-book:hover { background: var(--pm); color: var(--bg); }
    .mob-cred { margin-top: 1.5rem; text-align: center; font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

    /* ─── HERO ───────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh; display: grid; grid-template-rows: 1fr auto;
      padding: 0 var(--px) 2.5rem; overflow: hidden;
    }
    .page-glow {
      position: fixed; inset: 0; z-index: -1; pointer-events: none;
      background: radial-gradient(720px circle at var(--mx,50%) var(--my,40%), rgba(46,107,107,0.36), transparent 60%);
      transition: background 0.15s ease-out;
    }
    .hero-body { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 3rem; padding-top: 8rem; }
    .hero-parallax { flex: 1; }
    .hero-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(4.8rem, 15vw, 15rem);
      font-weight: 400; line-height: 0.86; letter-spacing: -0.025em;
      color: var(--text);
    }
    .hn-line { display: inline-block; }
    .hn-1 { animation: fadeUp 0.9s var(--ease) 0.22s both; }
    .hn-2 { animation: fadeUp 0.9s var(--ease) 0.40s both; }
    .hero-name-last { font-style: italic; color: var(--acc); }
    @supports (-webkit-background-clip: text) or (background-clip: text) {
      .hero-name-last {
        background: linear-gradient(110deg, var(--acc) 42%, #F2E3C4 50%, var(--acc) 58%);
        background-size: 250% 100%;
        background-position: 125% 0;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: goldSheen 2s var(--ease) 1.3s 1 both;
      }
      @keyframes goldSheen {
        from { background-position: 125% 0; }
        to   { background-position: -125% 0; }
      }
    }
    .hero-aside {
      width: 232px; flex-shrink: 0; padding-bottom: 0.6rem;
      border-left: 2px solid var(--pet); padding-left: 1.5rem;
      animation: fadeUp 0.8s var(--ease) 0.58s both;
    }
    .lbl-acc { font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--acc); display: block; }
    .lbl-pet { font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--pm); display: block; }
    .hero-aside p { font-size: 0.78rem; color: var(--sub); line-height: 1.75; margin-top: 0.7rem; }
    .hero-mob-sub { display: none; }
    .hero-foot {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--bdr); padding-top: 1.3rem;
      font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted);
      animation: fadeUp 0.8s var(--ease) 0.74s both;
    }
    .scroll-hint { display: flex; align-items: center; gap: 0.8rem; }
    .scroll-hint::before { content: ''; width: 28px; height: 1px; background: var(--muted); }

    /* ─── MARQUEE ────────────────────────────────────────── */
    .marquee {
      overflow: hidden; background: var(--psrf);
      border-top: 1px solid var(--pet); border-bottom: 1px solid var(--pet);
      padding: 0.9rem 0;
      animation: fadeUp 0.7s var(--ease) 0.9s both;
    }
    .marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: ticker 22s linear infinite; }
    @media (hover: hover) {
      .marquee:hover .marquee-track { animation-play-state: paused; }
    }
    .marquee-item {
      flex-shrink: 0; display: flex; align-items: center; gap: 1rem;
      font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text);
    }
    .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--pm); flex-shrink: 0; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── SECTION COMMON ─────────────────────────────────── */
    .section { padding: clamp(4rem, 8vw, 7rem) var(--px); border-bottom: 1px solid var(--bdr); }
    .section-head { margin-bottom: 3.5rem; }
    .section-eyebrow { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--acc); display: block; margin-bottom: 1rem; }
    .section-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.6rem, 6vw, 6.5rem);
      font-weight: 400; line-height: 1.0; letter-spacing: -0.015em; color: var(--text);
    }

    /* ─── SERVICES ───────────────────────────────────────── */
    .services .svc-row:nth-of-type(1) { transition-delay: 0s; }
    .services .svc-row:nth-of-type(2) { transition-delay: 0.08s; }
    .services .svc-row:nth-of-type(3) { transition-delay: 0.16s; }
    .services .svc-row:nth-of-type(4) { transition-delay: 0.24s; }
    .svc-row {
      display: grid; grid-template-columns: 56px 1fr 1fr;
      gap: 2rem; align-items: start;
      padding: 2.2rem 0; border-top: 1px solid var(--bdr);
      transition-property: border-color, transform;
      transition-duration: 0.25s, 0.85s;
    }
    .svc-row:hover { border-color: var(--pet); }
    .svc-num { font-size: 0.56rem; letter-spacing: 0.22em; color: var(--pm); padding-top: 0.5rem; }
    .svc-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.6rem, 2.8vw, 3rem); font-weight: 400; line-height: 1.1; color: var(--text); }
    .svc-tag { display: inline-block; margin-top: 0.75rem; font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; border: 1px solid var(--pet); color: var(--pm); padding: 0.3rem 0.7rem; }
    .svc-desc { font-size: 0.8rem; color: var(--text); line-height: 1.85; }

    /* ─── BIO ────────────────────────────────────────────── */
    .bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .bio-portrait { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--surf); }
    .bio-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter 0.5s, transform 0.7s var(--ease); }
    .bio-portrait:hover img { filter: grayscale(0%); transform: scale(1.03); }
    .bio-badge { position: absolute; bottom: 1.2rem; left: 1.2rem; font-size: 0.54rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--psrf); color: var(--pm); padding: 0.4rem 0.8rem; border: 1px solid var(--pet); }
    .bio-quote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 400; font-style: italic; line-height: 1.4; border-left: 2px solid var(--acc); padding-left: 1.4rem; margin-bottom: 2rem; color: var(--text); }
    .bio-p { font-size: 0.82rem; color: var(--text); line-height: 1.9; margin-bottom: 1.1rem; }
    .bio-timeline { margin-top: 2rem; border-top: 1px solid var(--bdr); border-left: 2px solid var(--pet); padding-left: 1.2rem; }
    .bio-tl-row { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--bdr); }
    .bio-year { font-size: 0.56rem; letter-spacing: 0.16em; color: var(--pm); padding-top: 0.2rem; }
    .bio-ev { font-size: 0.78rem; color: var(--text); }

    /* ─── GALLERY ────────────────────────────────────────── */
    .gallery-card:nth-of-type(1) { transition-delay: 0s; }
    .gallery-card:nth-of-type(2) { transition-delay: 0.1s; }
    .gallery-card:nth-of-type(3) { transition-delay: 0.2s; }
    .gallery-card:nth-of-type(4) { transition-delay: 0.3s; }
    .gallery-track {
      display: flex; gap: 1.2rem; overflow-x: auto; margin-top: 2.5rem; padding-bottom: 1rem;
      cursor: grab; scrollbar-width: none; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
    }
    .gallery-track::-webkit-scrollbar { display: none; }
    .gallery-track:active { cursor: grabbing; }
    .gallery-card { flex: 0 0 auto; height: clamp(260px, 34vw, 420px); overflow: hidden; background: var(--surf); scroll-snap-align: start; }
    .gallery-card img { height: 100%; width: auto; display: block; filter: grayscale(20%); transition: filter 0.5s, transform 0.7s var(--ease); }
    .gallery-card:hover img { filter: grayscale(0%); transform: scale(1.05); }

    /* ─── FAQ ────────────────────────────────────────────── */
    .faq-list { max-width: 680px; }
    .faq-item { border-top: 1px solid var(--bdr); }
    .faq-btn {
      width: 100%; background: none; border: none; color: var(--text);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 400;
      text-align: left; padding: 1.6rem 0; min-height: 56px;
      cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
      transition: color 0.2s; -webkit-tap-highlight-color: transparent;
    }
    .faq-btn:hover, .faq-item.open .faq-btn { color: var(--acc); }
    .faq-cross { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
    .faq-cross::before, .faq-cross::after { content: ''; position: absolute; background: var(--sub); transition: transform 0.3s var(--ease), opacity 0.25s, background 0.2s; }
    .faq-cross::before { width: 18px; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
    .faq-cross::after  { width: 1px; height: 18px; left: 50%; top: 0; transform: translateX(-50%); }
    .faq-item.open .faq-cross::before { background: var(--pm); }
    .faq-item.open .faq-cross::after  { opacity: 0; transform: translateX(-50%) scaleY(0); }
    .faq-body {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows 0.45s var(--ease), padding-bottom 0.35s;
    }
    .faq-inner {
      overflow: hidden; min-height: 0;
      font-size: 0.82rem; color: var(--text); line-height: 1.9;
    }
    .faq-item.open .faq-body { grid-template-rows: 1fr; padding-bottom: 1.8rem; }

    /* ─── CONTACT ────────────────────────────────────────── */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .contact-cta-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.4rem, 5.5vw, 5.5rem); font-weight: 400; line-height: 1.0; letter-spacing: -0.015em; color: var(--text); }
    .contact-cta-heading em { font-style: italic; color: var(--acc); }
    .btn-primary {
      position: relative; overflow: hidden;
      display: inline-flex; align-items: center; gap: 1rem;
      margin-top: 2.5rem; background: var(--acc); color: var(--bg);
      padding: 1rem 2rem; min-height: 52px;
      font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
      transition: background 0.2s, gap 0.2s, transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(110deg, transparent 32%, rgba(255,255,255,0.32) 50%, transparent 68%);
      transform: translateX(-130%);
      transition: transform 0.65s var(--ease);
      pointer-events: none;
    }
    .btn-primary:hover::before { transform: translateX(130%); }
    .btn-primary:hover { background: var(--text); gap: 1.6rem; transform: translateY(-2px); box-shadow: 0 12px 32px -10px rgba(196,168,130,0.5); }
    .ci-row { display: grid; grid-template-columns: 1fr 1fr; padding: 1.2rem 0; border-top: 1px solid var(--bdr); }
    .ci-label { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
    .ci-val { font-size: 0.78rem; color: var(--text); }
    .ci-val a { color: var(--pm); }

    /* ─── STICKY BAR ─────────────────────────────────────── */
    .sticky-bar { display: none; }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      padding: 1.8rem var(--px);
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--sub); border-top: 2px solid var(--pet);
    }

    /* ─── REFINEMENT LAYER ───────────────────────────────── */
    /* Fix: anchor links no longer hide headings under fixed nav */
    [id] { scroll-margin-top: 92px; }

    ::selection { background: var(--pet); color: var(--text); }

    :focus-visible {
      outline: 2px solid var(--pm);
      outline-offset: 3px;
    }

    html { scrollbar-color: var(--pet) var(--bg); }
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--pet); border-radius: 5px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--pm); }

    /* Nav links: gold underline grows from left */
    .nav-links a { position: relative; padding-bottom: 4px; }
    .nav-links a::after {
      content: ''; position: absolute; left: 0; bottom: 0;
      width: 100%; height: 1px; background: var(--acc);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s var(--ease);
    }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* Marquee: soft edge fades instead of hard cuts */
    .marquee {
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    /* Section eyebrows: petrol rule draws in with the reveal */
    .section-eyebrow::after {
      content: ''; display: block;
      width: 38px; height: 1px; background: var(--pet);
      margin-top: 0.7rem;
      transform-origin: left;
      transition: transform 0.8s var(--ease) 0.15s;
    }
    [data-reveal].pre .section-eyebrow::after { transform: scaleX(0); }

    /* Scroll hint: gentle breathing */
    @keyframes hintPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
    .scroll-hint { animation: hintPulse 2.6s ease-in-out 1.8s infinite; }

    /* ══════════════════════════════════════════════════════
       MOBILE ≤ 820px
    ══════════════════════════════════════════════════════ */
    @media (max-width: 820px) {
      .nav-links, .btn-nav { display: none; }
      .hamburger { display: flex; }
      .logo-mark { width: 36px; height: 36px; }
      .nav-logo-text { font-size: 0.95rem; }

      .hero { padding: 0 var(--px) 5.5rem; }
      .hero-body { flex-direction: column; align-items: flex-start; gap: 0; padding-top: 6rem; }
      .hero-name { font-size: clamp(4rem, 19vw, 7rem); }
      .hero-aside { display: none; }
      .hero-mob-sub {
        display: block; margin-top: 1.4rem; padding-top: 1.2rem;
        border-top: 2px solid var(--pet); width: 100%;
        animation: fadeUp 0.8s var(--ease) 0.58s both;
      }
      .hero-mob-sub .lbl-pet { margin-bottom: 0.5rem; }
      .hero-mob-sub p { font-size: 0.82rem; color: var(--sub); line-height: 1.75; }
      .hero-foot { font-size: 0.54rem; }
      .scroll-hint { display: none; }

      .section { padding: 3.5rem var(--px); }
      .section-head { margin-bottom: 2.5rem; }

      .svc-row { grid-template-columns: 38px 1fr; gap: 0 1.2rem; padding: 1.8rem 0; }
      .svc-num  { grid-row: 1; grid-column: 1; }
      .svc-name-wrap { grid-row: 1; grid-column: 2; }
      .svc-desc { grid-row: 2; grid-column: 2; margin-top: 0.8rem; font-size: 0.8rem; }

      .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .bio-portrait { max-height: 65vw; }
      .bio-quote { font-size: clamp(1.25rem, 5vw, 1.6rem); }
      .bio-timeline { padding-left: 1rem; }

      .gallery-card { height: clamp(200px, 52vw, 280px); }

      .faq-list { max-width: 100%; }
      .faq-btn { font-size: clamp(1.1rem, 5vw, 1.4rem); padding: 1.4rem 0; }

      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .contact-cta-heading { font-size: clamp(2.2rem, 10vw, 3.5rem); }
      .btn-primary { width: 100%; justify-content: center; }
      .ci-row { grid-template-columns: 1fr; gap: 0.2rem; padding: 1rem 0; }

      footer { flex-direction: column; gap: 0.6rem; text-align: center; padding-bottom: calc(2rem + 64px + env(safe-area-inset-bottom)); }

      .sticky-bar {
        display: grid; grid-template-columns: 1.25fr 0.75fr 1.3fr;
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 180;
        background: rgba(8,8,8,0.97); border-top: 2px solid var(--pet);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        padding-bottom: env(safe-area-inset-bottom);
      }
      .sticky-bar a {
        display: flex; align-items: center; justify-content: center; gap: 0.5rem;
        font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
        min-height: 56px; -webkit-tap-highlight-color: transparent; transition: background 0.15s;
      }
      .sticky-msg { color: var(--text); border-right: 1px solid var(--bdr); }
      .sticky-msg:active { background: var(--bdr); }
      .sticky-book { background: var(--pet); color: var(--text); }
      .sticky-book:active { background: #1e4747; }
      .sticky-icon { width: 15px; height: 15px; flex-shrink: 0; }
    }

    @media (max-width: 390px) {
      .hero-name { font-size: clamp(3.5rem, 21vw, 4.5rem); }
      .section-title { font-size: clamp(2rem, 10vw, 2.8rem); }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee-track, .grain { animation: none; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0s !important;
        transition-duration: 0.01ms !important;
      }
    }
  
    /* ─── SUBPAGE LAYER ──────────────────────────────────── */
    .page-hero { padding: 9.5rem var(--px) 3.5rem; border-bottom: 1px solid var(--bdr); }
    .page-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.6rem, 6vw, 5.5rem);
      font-weight: 400; line-height: 1.0; letter-spacing: -0.015em; color: var(--text);
    }
    .lead { max-width: 62ch; color: var(--sub); margin-top: 1.2rem; font-size: 0.9rem; line-height: 1.8; }
    .content { max-width: 780px; }
    .prose p { font-size: 0.85rem; line-height: 1.95; color: var(--text); margin-bottom: 1.15rem; }
    .prose h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 400;
      margin: 2.4rem 0 1rem; color: var(--text);
    }
    .tick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 2.5rem; margin-top: 1rem; }
    .tick { display: flex; gap: 0.8rem; font-size: 0.83rem; color: var(--text); padding: 0.55rem 0; border-bottom: 1px solid var(--bdr); }
    .tick::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--pm); margin-top: 0.55rem; flex-shrink: 0; }
    .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
    .loc-card { border: 1px solid var(--bdr); padding: 1.8rem; transition: border-color 0.25s; }
    .loc-card:hover { border-color: var(--pet); }
    .loc-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 400; }
    .loc-addr { font-size: 0.82rem; color: var(--sub); margin-top: 0.5rem; line-height: 1.7; }
    .hours { list-style: none; margin-top: 1.1rem; }
    .hours li { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 0.4rem 0; border-bottom: 1px solid var(--bdr); color: var(--text); }
    .hours li span:first-child { color: var(--sub); }
    .hours-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.8rem; letter-spacing: 0.04em; }
    .price-band { border: 1px solid var(--pet); background: var(--psrf); padding: 1.8rem; margin: 2rem 0; }
    .price-band strong { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.7rem; font-weight: 400; color: var(--acc); display: block; margin-bottom: 0.4rem; }
    .price-band p { font-size: 0.8rem; color: var(--text); line-height: 1.8; margin: 0; }
    .form-field { margin-bottom: 1.3rem; }
    .form-field label { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sub); margin-bottom: 0.5rem; }
    .form-field input, .form-field textarea {
      width: 100%; background: var(--surf); border: 1px solid var(--bdr);
      color: var(--text); padding: 0.95rem 1rem; font-family: inherit; font-size: 0.87rem;
      transition: border-color 0.2s;
    }
    .form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--pm); }
    .form-field textarea { min-height: 160px; resize: vertical; }
    .form-status { margin-top: 1rem; font-size: 0.82rem; display: none; }
    .form-status.ok { display: block; color: var(--pm); }
    .form-status.err { display: block; color: #d08a8a; }
    .form-note { font-size: 0.72rem; color: var(--muted); margin-top: 1.2rem; line-height: 1.7; }
    .crumb { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pm); display: block; margin-bottom: 1.1rem; }
    .crumb a { color: var(--muted); }
    .crumb a:hover { color: var(--text); }
    @media (max-width: 820px) {
      .page-hero { padding: 7.5rem var(--px) 2.5rem; }
      .tick-grid, .loc-grid { grid-template-columns: 1fr; }
    }

    /* ─── ROTATING GALLERY (progressive enhancement) ─────── */
    .carousel { position: relative; }
    .car-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 5; width: 46px; height: 46px;
      background: rgba(8,8,8,0.85); border: 1px solid var(--pet);
      color: var(--text); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; line-height: 1;
      transition: background 0.2s, border-color 0.2s;
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    }
    .car-btn:hover { background: var(--pet); border-color: var(--pm); }
    .car-prev { left: 0.6rem; }
    .car-next { right: 0.6rem; }
    .car-dots {
      display: flex; gap: 0.6rem; justify-content: center;
      margin-top: 1.4rem;
    }
    .car-dot {
      width: 26px; height: 3px; border: none; padding: 0; cursor: pointer;
      background: var(--bdr); transition: background 0.3s;
    }
    .car-dot.active { background: var(--acc); }
    .car-dot:hover { background: var(--pm); }
    @media (max-width: 820px) {
      .car-btn { display: none; }   /* swipe is the mobile control */
      .car-dot { width: 20px; min-height: 12px; background-clip: content-box; padding: 5px 0; background-color: var(--bdr); }
      .car-dot.active { background-color: var(--acc); }
    }

    /* ─── PORTRAITS ──────────────────────────────────────── */
    .hero-portrait {
      aspect-ratio: 3/4; overflow: hidden;
      margin-bottom: 1.1rem; border: 1px solid var(--bdr);
    }
    .hero-portrait img {
      width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%;
      filter: grayscale(15%); display: block;
    }
    .hero-mob-portrait { display: none; }
    .contact-portrait {
      width: 100%; max-width: 440px; display: block;
      margin-bottom: 1.6rem; border: 1px solid var(--bdr);
    }
    @media (max-width: 820px) {
      .hero-mob-sub { display: flex; gap: 1.2rem; align-items: flex-start; }
      .hero-mob-portrait {
        display: block; flex: 0 0 38%;
        aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--bdr);
      }
      .hero-mob-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; display: block; }
    }

    /* ─── LANGUAGE TOGGLE ────────────────────────────────── */
    .lang-toggle {
      font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--sub); border: 1px solid var(--bdr);
      padding: 0.55rem 0.9rem; min-height: 44px;
      display: flex; align-items: center; gap: 0.55rem;
      margin-right: 0.9rem; position: relative; z-index: 210;
      transition: color 0.2s, border-color 0.2s;
    }
    .lang-toggle:hover { color: var(--text); border-color: var(--pm); }
    @media (max-width: 820px) { .lang-toggle { display: none; } }

    /* ─── LANGUAGE FLAGS ─────────────────────────────────── */
    .lang-flag {
      width: 20px; height: 12px; display: block; flex-shrink: 0;
      border-radius: 2px;
      outline: 1px solid var(--bdr);   /* white Finnish flag needs an edge on dark bg */
    }

    /* ─── SNOWLION MARK ──────────────────────────────────── */
    .logo-lion {
      width: 44px; height: 44px; object-fit: contain; display: block;
      padding: 5px; background: var(--text); border-radius: 10px;
      animation: lionIn 0.9s cubic-bezier(0.25,0,0,1) 0.2s both;
    }
    @keyframes lionIn {
      from { opacity: 0; transform: scale(0.82) rotate(-6deg); }
      to   { opacity: 1; transform: scale(1) rotate(0deg); }
    }
    @media (max-width: 820px) { .logo-lion { width: 38px; height: 38px; } }
