
    :root {
      --cream: #f0ebe1;
      --stone: #e3dbd0;
      --concrete: #c8bfb4;
      --warmblack: #1a1714;
      --gold: #8fa3b0;
      --goldlight: #c2cdd6;
      --slate: #5a5550;
      --warmwhite: #faf8f5;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Manrope', sans-serif; background: var(--cream); color: var(--warmblack); overflow-x: hidden; }

    /* Noise grain overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1000;
      opacity: 0.032;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
      transform: translateZ(0);
      will-change: transform;
    }

    /* ─── NAV ─── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1.4rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    }
    #nav.scrolled {
      padding: 0.85rem 2rem;
      background: rgba(240,235,225,0.92);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 rgba(26,23,20,0.08);
    }
    #nav-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--warmblack); text-decoration: none; letter-spacing: -0.01em; -webkit-text-stroke: 0.3px var(--warmblack); transition: color 0.35s ease; display: flex; align-items: center; gap: 0.55rem; }
    #nav-links { display: none; gap: 2.5rem; list-style: none; }
    #nav-links a { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); text-decoration: none; transition: color 0.2s ease; }
    #nav-links a:hover { color: var(--gold); }
    #nav-cta { display: none; padding: 0.65rem 1.5rem; background: var(--warmblack); color: var(--cream); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; border: 1.5px solid transparent; transition: transform 0.2s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease; min-height: 44px; align-items: center; }
    #nav-cta:hover { transform: translateY(-2px); }
    #hamburger { width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; -webkit-appearance: none; appearance: none; -webkit-tap-highlight-color: transparent; }
    #hamburger span { display: block; height: 1.5px; background: var(--warmblack); border-radius: 2px; transform-origin: center; transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease; }
    #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 {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
      background: var(--cream); display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 2rem;
      transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    #mobile-menu.open { transform: translateX(0); }
    #mobile-menu a { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--warmblack); text-decoration: none; }


    /* Nav quick-action icons */
    #nav-icons { display: flex; align-items: center; gap: 0.25rem; }
    #nav-icons a {
      width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
      color: var(--slate); text-decoration: none; border-radius: 50%;
      transition: color 0.2s ease, background 0.2s ease;
    }
    #nav-icons a:hover { color: var(--gold); background: rgba(143,163,176,0.1); }
    #nav:not(.scrolled) #nav-icons a { color: rgba(250,248,245,0.75); }
    #nav:not(.scrolled) #nav-icons a:hover { color: var(--warmwhite); background: rgba(250,248,245,0.1); }
    /* Nav over dark hero (unscrolled) */
    #nav:not(.scrolled) #nav-logo { color: var(--warmwhite); -webkit-text-stroke: 0.3px var(--warmwhite); }
    #nav:not(.scrolled) #nav-links a { color: rgba(250,248,245,0.72); }
    #nav:not(.scrolled) #nav-links a:hover { color: var(--goldlight); }
    #nav:not(.scrolled) #nav-cta {
      background: transparent; color: var(--warmwhite);
      border: 1.5px solid rgba(250,248,245,0.38);
    }
    #nav:not(.scrolled) #hamburger span { background: var(--warmwhite); }
    /* Mobile menu OPEN: nav sits over the cream overlay -> invert logo/icons/X to dark */
    #nav.menu-open #nav-logo { color: var(--warmblack); -webkit-text-stroke: 0.3px var(--warmblack); }
    #nav.menu-open #nav-icons a { color: var(--slate); }
    #nav.menu-open #hamburger span { background: var(--warmblack); }
    @media (min-width: 900px) {
      #nav-links { display: flex; }
      #nav-cta { display: inline-flex; }
      #hamburger { display: none; }
    }


    /* Hero video background */
    #hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; z-index: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
      transform: translateZ(0); backface-visibility: hidden; will-change: transform;
    }
    /* Kill the iOS/Safari play-button overlay + all native video chrome (this is a background video) */
    #hero-video::-webkit-media-controls,
    #hero-video::-webkit-media-controls-enclosure,
    #hero-video::-webkit-media-controls-panel,
    #hero-video::-webkit-media-controls-start-playback-button,
    #hero-video::-webkit-media-controls-play-button,
    #hero-video::-webkit-media-controls-overlay-play-button {
      display: none !important;
      -webkit-appearance: none !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
    #hero-overlay {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        linear-gradient(115deg,
          rgba(12,10,8,0.78) 0%,
          rgba(12,10,8,0.62) 38%,
          rgba(12,10,8,0.40) 68%,
          rgba(12,10,8,0.28) 100%),
        linear-gradient(to bottom,
          rgba(12,10,8,0.10) 0%,
          rgba(12,10,8,0.55) 100%);
    }




    /* ─── WORD ROTATOR + EPOXY GRADIENT TEXT ─── */
    @keyframes epoxy-pour {
      0%   { background-position: 0%   40%; }
      25%  { background-position: 80%  10%; }
      50%  { background-position: 100% 60%; }
      75%  { background-position: 30%  90%; }
      100% { background-position: 0%   40%; }
    }
    .hero-glow {
      display: inline-block;
      background: linear-gradient(
        118deg,
        #f0f5f8  0%,
        #b8cad4  8%,
        #7a9fb0  15%,
        #e8eff4  22%,
        #4d7080  30%,
        #ccd8e0  38%,
        #f4f8fa  44%,
        #8fa3b0  50%,
        #d8e5ec  56%,
        #5a7e90  63%,
        #eaf1f5  70%,
        #9ab8c6  77%,
        #c4a87a  84%,
        #e8eff4  91%,
        #8fa3b0  100%
      );
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: epoxy-pour 6s ease-in-out infinite;
      transition: opacity 0.4s ease, transform 0.4s ease;
      padding: 0.12em 0.04em;
    }
    .hero-glow.swapping-out {
      opacity: 0;
      transform: translateY(-10px);
    }
    .hero-glow.swapping-in {
      opacity: 0;
      transform: translateY(12px);
    }
    .btn-epoxy-sheen {
      background: linear-gradient(
        118deg,
        #faf8f5  0%,
        #c8d2d8 12%,
        #f5f3ef 22%,
        #b8c6ce 33%,
        #faf8f5 44%,
        #d4cfc8 55%,
        #eef3f6 65%,
        #a8bac4 76%,
        #f5f2ee 86%,
        #c2cdd4 93%,
        #faf8f5 100%
      ) !important;
      background-size: 300% 300% !important;
      animation: epoxy-pour 8s ease-in-out infinite;
    }
    /* ─── SCROLL REVEAL ─── */
    [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
    [data-reveal].visible { opacity: 1; transform: none; }
    [data-reveal][data-dir="left"] { transform: translateX(-24px); }
    [data-reveal][data-dir="right"] { transform: translateX(24px); }
    [data-reveal][data-dir="left"].visible, [data-reveal][data-dir="right"].visible { transform: none; }

    /* ─── HERO ─── */
    #hero {
      position: relative; min-height: 100svh;
      display: flex; align-items: center;
      background: var(--warmblack);
      overflow: hidden; padding-top: 6rem;
    }
    #flake-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
    .ghost-word {
      position: absolute; right: -0.04em; top: 50%; transform: translateY(-52%);
      font-family: 'DM Serif Display', serif; font-style: italic;
      font-size: clamp(14rem, 32vw, 28rem);
      color: rgba(250,248,245,0.055); line-height: 1;
      user-select: none; pointer-events: none; z-index: 2;
      letter-spacing: -0.04em;
    }
    .shimmer-floor {
      position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
      background: linear-gradient(180deg, transparent 0%, rgba(143,163,176,0.04) 60%, rgba(194,205,214,0.07) 100%);
      pointer-events: none; z-index: 3;
    }
    .shimmer-floor::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 45%, rgba(194,205,214,0.22) 50%, rgba(255,255,255,0.18) 55%, transparent 100%);
      background-size: 200% 100%;
      animation: floorShimmer 9s ease-in-out infinite;
    }
    @keyframes floorShimmer {
      0% { background-position: -100% 0; }
      100% { background-position: 200% 0; }
    }
    .hero-content { position: relative; z-index: 4; max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 1.5rem 6rem; }

    /* ─── BEFORE / AFTER ─── */
    .ba-container {
      position: relative; overflow: hidden; border-radius: 10px;
      user-select: none; touch-action: none; cursor: ew-resize;
      aspect-ratio: 16/9;
    }
    .ba-layer {
      position: absolute; inset: 0; width: 100%; height: 100%;
      display: flex; align-items: stretch;
    }
    .ba-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ba-before-layer {
      position: absolute; inset: 0;
      clip-path: inset(0 50% 0 0);
      transition: none;
    }
    .ba-before-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ba-handle {
      position: absolute; top: 0; bottom: 0; left: 50%; z-index: 10;
      transform: translateX(-50%);
      display: flex; align-items: center; justify-content: center;
    }
    .ba-handle-line { position: absolute; top: 0; bottom: 0; width: 2px; background: #fff; left: 50%; transform: translateX(-50%); }
    .ba-handle-btn {
      width: 48px; height: 48px; background: #fff; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    }
    .ba-label {
      position: absolute; top: 1rem; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase; color: #fff;
      background: rgba(0,0,0,0.45); padding: 0.3rem 0.7rem; border-radius: 2px;
      backdrop-filter: blur(6px);
    }
    .ba-label-before { left: 1rem; }
    .ba-label-after { right: 1rem; }

    /* ─── SYSTEM CARD FLOOR PREVIEWS ─── */
    .sys-preview {
      height: 90px; border-radius: 6px; position: relative; overflow: hidden; flex-shrink: 0;
    }
    .sys-full-flake {
      background: #3a3d42;
    }
    .sys-full-flake::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 12% 22%, #e8e4de 1.2px, transparent 1.2px),
        radial-gradient(circle at 38% 58%, #9ab0bc 1px, transparent 1px),
        radial-gradient(circle at 66% 28%, #8fa3b0 1px, transparent 1px),
        radial-gradient(circle at 82% 72%, #e8e4de 0.9px, transparent 0.9px),
        radial-gradient(circle at 25% 82%, #7a8090 1.1px, transparent 1.1px),
        radial-gradient(circle at 54% 12%, #9ab0bc 0.8px, transparent 0.8px),
        radial-gradient(circle at 91% 40%, #e8e4de 1px, transparent 1px),
        radial-gradient(circle at 48% 75%, #8fa3b0 0.9px, transparent 0.9px),
        radial-gradient(circle at 72% 55%, #d4c8b8 1px, transparent 1px),
        radial-gradient(circle at 8% 60%, #e0d8cc 0.8px, transparent 0.8px);
      background-size: 28px 28px, 36px 36px, 22px 22px, 32px 32px, 18px 18px, 42px 42px, 26px 26px, 20px 20px, 38px 38px, 24px 24px;
    }
    .sys-metallic {
      background: linear-gradient(135deg, #1a2530 0%, #304858 20%, #5a7d94 40%, #c2cdd6 55%, #304858 75%, #1a2530 100%);
      position: relative;
    }
    .sys-metallic::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
      animation: metallicSheen 4s ease-in-out infinite;
    }
    @keyframes metallicSheen {
      0%, 100% { transform: translateX(-100%); opacity: 0; }
      40% { opacity: 1; }
      60% { opacity: 1; }
      100% { transform: translateX(200%); opacity: 0; }
    }
    .sys-solid {
      background: linear-gradient(135deg, #4a4e52 0%, #3a3e42 60%, #52565a 100%);
    }
    .sys-solid::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    }
    .sys-commercial {
      background: #c8c3bc;
      background-image:
        linear-gradient(rgba(26,23,20,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,23,20,0.06) 1px, transparent 1px);
      background-size: 18px 18px;
    }

    /* ─── COLOR SWATCHES ─── */
    .swatch-circle {
      width: 56px; height: 56px; border-radius: 50%;
      border: 2px solid rgba(26,23,20,0.08);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      flex-shrink: 0;
    }
    .swatch-item:hover .swatch-circle {
      transform: scale(1.12);
      box-shadow: 0 4px 16px rgba(26,23,20,0.18);
    }

    /* ─── GALLERY ─── */
    .gallery-grid {
      columns: 2; column-gap: 10px;
    }
    @media (min-width: 640px) { .gallery-grid { columns: 3; } }
    @media (min-width: 1024px) { .gallery-grid { columns: 4; } }
    .gallery-tile {
      break-inside: avoid; margin-bottom: 10px; position: relative;
      border-radius: 6px; overflow: hidden; cursor: pointer;
      background: var(--stone);
      aspect-ratio: 4 / 3;
    }
    .gallery-tile:nth-child(3n) { aspect-ratio: 3 / 4; }
    .gallery-tile:nth-child(5n) { aspect-ratio: 1 / 1; }
    .gallery-tile img {
      width: 100%; height: 100%; display: block;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .gallery-tile:hover img { transform: scale(1.04); }
    .gallery-tile::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(26,23,20,0); transition: background 0.3s ease;
    }
    .gallery-tile:hover::after { background: rgba(26,23,20,0.15); }

    /* ─── LIGHTBOX ─── */
    #lightbox {
      position: fixed; inset: 0; z-index: 500;
      background: rgba(26,23,20,0.94); display: none; align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 6px; object-fit: contain; }
    #lb-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

    /* ─── POUR DIVIDER ─── */
    .pour-divider svg { display: block; margin-top: -1px; }

    /* ─── TESTIMONIAL CARDS ─── */
    .review-card {
      background: var(--warmwhite);
      border: 1px solid rgba(26,23,20,0.07);
      border-radius: 10px; padding: 2rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(26,23,20,0.09);
    }

    /* ─── FORM ─── */
    .form-field { position: relative; }
    .form-field label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.5rem; }
    .form-field input, .form-field select, .form-field textarea {
      width: 100%; padding: 0.9rem 1rem;
      background: var(--warmwhite); border: 1.5px solid rgba(26,23,20,0.14);
      border-radius: 4px; font-family: 'Manrope', sans-serif; font-size: 0.95rem;
      color: var(--warmblack); outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      font-size: 16px;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(143,163,176,0.12);
    }
    .form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235a5550' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1.2rem; padding-right: 2.5rem; }

    /* ─── STICKY MOBILE CTA ─── */
    #sticky-cta {
      position: fixed; bottom: 1.5rem; left: 50%; z-index: 90;
      transform: translateX(-50%) translateY(200%);
      opacity: 0; pointer-events: none;
      background: var(--warmblack); color: var(--cream);
      padding: 0.95rem 1.9rem; border-radius: 999px;
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: 'Manrope', sans-serif; font-weight: 700;
      font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; white-space: nowrap;
      box-shadow: 0 14px 36px rgba(26,23,20,0.30);
      transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), opacity 0.45s ease, background 0.3s ease;
    }
    #sticky-cta.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
    #sticky-cta:hover { background: #2c2723; }
    #sticky-cta svg { transition: transform 0.3s ease; }
    #sticky-cta:hover svg { transform: translateX(3px); }
    @media (max-width: 600px) { #sticky-cta { bottom: 1.1rem; padding: 0.9rem 1.6rem; font-size: 0.78rem; } }

    /* ─── PROCESS STEP ─── */
    .process-step { position: relative; }
    .process-ghost-num {
      position: absolute; top: -0.3em; left: -0.15em;
      font-family: 'DM Serif Display', serif; font-size: clamp(5rem, 12vw, 9rem);
      color: rgba(26,23,20,0.045); line-height: 1;
      user-select: none; pointer-events: none;
    }


    /* ─── REDUCED MOTION ─── */
    @media (max-width: 600px) {
      .quote-form { grid-template-columns: 1fr !important; }
      .quote-form .form-field { grid-column: 1/-1 !important; }
    }


    /* Book section split grid */
    #book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; max-width: 1140px; margin: 0 auto; }
    @media (max-width: 860px) { #book-grid { grid-template-columns: 1fr; gap: 3rem; } }
    /* Process connecting line */
    .process-line-connector {
      position: absolute; left: 26px;
      top: 3.8rem; bottom: 3.8rem; width: 1.5px;
      background: linear-gradient(to bottom,
        rgba(143,163,176,0.5) 0%,
        rgba(143,163,176,0.25) 55%,
        rgba(143,163,176,0.06) 100%);
      transform: scaleY(0); transform-origin: top center;
      transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .process-line-connector.active { transform: scaleY(1); }


    /* Gallery frame holders */
    .gallery-frame-holder {
      background: var(--stone);
      border: 2px dashed rgba(143,163,176,0.28);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.6rem; min-height: 200px; cursor: default;
    }
    .gallery-frame-holder:hover img { transform: none; }
    .gallery-frame-holder::after { display: none; }
    .gallery-frame-holder svg { opacity: 0.28; }
    .gallery-frame-holder span {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--slate); opacity: 0.5;
    }
    /* Gallery fallback */
    #gallery-fallback { display: none; }
    #gallery-fallback.visible { display: block; }
    .gfb-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 2rem; }
    @media (min-width:640px) { .gfb-grid { grid-template-columns: repeat(4,1fr); } }
    .gfb-tile { height: 190px; border-radius: 8px; position: relative; overflow: hidden; cursor: default; }
    .gfb-label {
      position: absolute; bottom: 0.75rem; left: 0.75rem;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.82);
      text-shadow: 0 1px 6px rgba(0,0,0,0.55);
    }

    /* FAQ accordion */
    .faq-item { border-bottom: 1px solid rgba(26,23,20,0.1); }
    .faq-btn {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between; padding: 1.4rem 0;
      background: none; border: none; cursor: pointer;
      text-align: left; gap: 1.25rem;
    }
    .faq-q {
      font-family: 'DM Serif Display', serif; font-size: 1.05rem;
      font-weight: 400; color: var(--warmblack);
      transition: color 0.2s ease; line-height: 1.4;
    }
    .faq-btn:hover .faq-q, .faq-item.open .faq-q { color: var(--gold); }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      border: 1.5px solid rgba(26,23,20,0.18);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.32s ease;
      color: var(--slate);
    }
    .faq-item.open .faq-icon {
      background: var(--gold); border-color: var(--gold);
      transform: rotate(45deg); color: #fff;
    }
    .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1); }
    .faq-item.open .faq-body { max-height: 340px; }
    .faq-ans { padding-bottom: 1.5rem; font-size: 0.92rem; color: var(--slate); line-height: 1.82; max-width: 680px; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
    }
  
    /* ─────────────  MARQUEES (msw upgrade)  ───────────── */
    .marquee { overflow: hidden; position: relative;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
              mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); }
    .marquee__track { display: flex; align-items: center; width: max-content;
      animation: marquee-scroll var(--mq-speed, 40s) linear infinite; }
    .mq-group { display: flex; align-items: center; flex-shrink: 0; }
    .marquee:hover .marquee__track { animation-play-state: running; }
    @keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
    .marquee--text { background: var(--warmblack); border-top: 1px solid rgba(193,122,84,0.28);
      border-bottom: 1px solid rgba(193,122,84,0.28); padding: 1.7rem 0; --mq-speed: 42s; }
    .mq-word { font-family: 'DM Serif Display', serif; font-size: clamp(1.75rem, 4.4vw, 3.1rem);
      line-height: 1; white-space: nowrap; color: var(--cream); padding: 0 1.6rem; letter-spacing: -0.01em; }
    .mq-word--outline { color: transparent; -webkit-text-stroke: 1px var(--goldlight); text-stroke: 1px var(--goldlight); }
    .mq-star { color: var(--gold); font-size: clamp(0.85rem, 2vw, 1.35rem); transform: translateY(-0.12em); flex-shrink: 0; }
    .marquee--pics { width: 100vw; margin-left: calc(50% - 50vw); margin-bottom: 3.5rem; --mq-speed: 48s; }
    .mq-pic { flex-shrink: 0; width: clamp(230px, 26vw, 330px); height: clamp(160px, 19vw, 230px);
      margin-right: 1.1rem; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 34px rgba(26,23,20,0.14);
      position: relative; cursor: zoom-in; }
    .mq-pic img { width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
    .mq-pic::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(250,248,245,0.12);
      border-radius: 14px; pointer-events: none; }
    .marquee--pics:hover .mq-pic img { transform: scale(1.05); }
    /* clean services grid */
    .svc-grid-msw { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
    .svc-grid-msw > div { background: var(--warmwhite); border: 1px solid rgba(26,23,20,0.08); border-radius: 12px;
      padding: 1.85rem; transition: transform 0.25s ease, box-shadow 0.25s ease; }
    @media (max-width: 600px) {
      .marquee--text { padding: 1.25rem 0; } .mq-pic { margin-right: 0.8rem; border-radius: 11px; }
      .svc-grid-msw { grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important; gap: 0.75rem !important; }
      .svc-grid-msw > div { padding: 1.15rem 1rem !important; min-width: 0 !important; }
      .svc-grid-msw > div > p { display: none !important; }
      .svc-grid-msw h3 { font-size: 0.98rem !important; line-height: 1.2 !important; margin-bottom: 0 !important; overflow-wrap: anywhere; }
      .svc-grid-msw > div > div:first-child { width: 38px !important; height: 38px !important; margin-bottom: 0.85rem !important; }
      .svc-grid-msw > div > div:first-child svg { width: 20px !important; height: 20px !important; }
    }
  
    /* Read-more on process steps (msw) */
    .readmore-btn { margin-left:3rem; margin-top:0.2rem; display:inline-flex; align-items:center; gap:0.4rem;
      background:none; border:none; cursor:pointer; font-family:'Manrope',sans-serif; font-size:0.76rem; font-weight:700;
      letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); padding:0.35rem 0; transition:opacity 0.2s ease; }
    .readmore-btn:hover { opacity:0.65; }
    .readmore-btn svg { transition:transform 0.35s ease; }
    .readmore-btn.open svg { transform:rotate(180deg); }
    .step-more { max-height:0; overflow:hidden; transition:max-height 0.45s cubic-bezier(0.4,0,0.2,1); }
    .step-more.open { max-height:420px; }
  
    /* Booking form warmth (msw) */
    .form-chip { display:inline-flex; align-items:center; gap:0.35rem; font-size:0.72rem; font-weight:700;
      letter-spacing:0.02em; color:var(--warmblack); background:rgba(143,163,176,0.16);
      border:1px solid rgba(143,163,176,0.3); border-radius:100px; padding:0.4rem 0.85rem; }
    .form-chip svg { stroke:var(--gold); }
  
    /* Multi-step booking form (msw) */
    .fstep { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
    .fstep[hidden] { display:none !important; }
    @media (max-width:600px){ .fstep { grid-template-columns:1fr; } }
    .fprogress { height:4px; background:rgba(26,23,20,0.1); border-radius:100px; overflow:hidden; margin-bottom:0.7rem; }
    .fprogress-bar { height:100%; width:50%; background:var(--gold); border-radius:100px; transition:width 0.45s cubic-bezier(0.4,0,0.2,1); }
    .fstep-label { font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--slate); margin-bottom:1.6rem; }
    .fbtn { padding:1.05rem 2rem; background:var(--warmblack); color:var(--cream); font-family:'Manrope',sans-serif;
      font-size:0.85rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; border:none; border-radius:6px;
      cursor:pointer; min-height:52px; display:inline-flex; align-items:center; justify-content:center; gap:0.6rem;
      transition:transform 0.22s ease, box-shadow 0.22s ease; }
    .fbtn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(26,23,20,0.22); }
    .fbtn--full { width:100%; }
    .fbtn--ghost { background:transparent; color:var(--slate); border:1.5px solid rgba(26,23,20,0.18); padding:1.05rem 1.4rem; letter-spacing:0.06em; }
    .fbtn--ghost:hover { border-color:var(--warmblack); color:var(--warmblack); box-shadow:none; transform:none; }
      #hero-video{animation:heroKB 24s ease-in-out infinite alternate;}@keyframes heroKB{from{transform:scale(1.03)}to{transform:scale(1.11)}}@media(prefers-reduced-motion:reduce){#hero-video{animation:none;}}
  
/* ---------- service page shell ---------- */
.pg-main{padding-top:0}
.pg-hero{background:var(--warmblack);color:var(--warmwhite);padding:9rem 0 4.5rem;position:relative;overflow:hidden}
.pg-hero::after{content:'';position:absolute;left:0;right:0;bottom:0;height:120px;
  background:linear-gradient(to top,var(--cream),transparent);pointer-events:none}
.pg-wrap{max-width:1100px;margin:0 auto;padding:0 1.5rem}
.pg-crumb{font-size:0.72rem;letter-spacing:0.14em;text-transform:uppercase;color:rgba(240,235,225,0.45);margin-bottom:1.5rem}
.pg-crumb a{color:rgba(240,235,225,0.7);text-decoration:none}
.pg-crumb a:hover{color:var(--goldlight)}
.pg-eyebrow{display:flex;align-items:center;gap:0.875rem;margin-bottom:1.5rem}
.pg-eyebrow span:first-child{width:28px;height:1px;background:rgba(240,235,225,0.3);display:block}
.pg-eyebrow span:last-child{font-size:0.68rem;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:var(--goldlight)}
.pg-hero h1{font-family:'DM Serif Display',serif;font-weight:400;font-size:clamp(2.4rem,6.5vw,4.6rem);
  line-height:1.02;letter-spacing:-0.02em;margin-bottom:1.5rem;overflow-wrap:break-word}
.pg-hero h1 em{font-style:italic;color:var(--goldlight);display:block}
.pg-lede{font-size:clamp(1rem,2vw,1.14rem);line-height:1.75;color:rgba(250,248,245,0.72);max-width:620px}
.pg-cta-row{display:flex;flex-wrap:wrap;gap:0.85rem;margin-top:2.5rem}
.pg-btn{display:inline-flex;align-items:center;gap:0.55rem;padding:1rem 1.9rem;border-radius:999px;
  font-size:0.78rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;text-decoration:none;
  transition:transform .25s ease,background .25s ease}
.pg-btn--solid{background:var(--warmwhite);color:var(--warmblack)}
.pg-btn--solid:hover{transform:translateY(-2px);background:#fff}
.pg-btn--ghost{border:1px solid rgba(240,235,225,0.28);color:var(--warmwhite)}
.pg-btn--ghost:hover{border-color:var(--goldlight);transform:translateY(-2px)}

.pg-sec{padding:4.5rem 0}
.pg-sec--tint{background:var(--stone)}
.pg-kicker{display:flex;align-items:center;gap:0.875rem;margin-bottom:1.25rem}
.pg-kicker span:first-child{width:28px;height:1px;background:rgba(26,23,20,0.2);display:block}
.pg-kicker span:last-child{font-size:0.66rem;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:var(--slate)}
.pg-h2{font-family:'DM Serif Display',serif;font-weight:400;font-size:clamp(1.9rem,4.6vw,3rem);
  letter-spacing:-0.02em;line-height:1.08;margin-bottom:1.75rem}
.pg-body p{font-size:1rem;line-height:1.85;color:var(--slate);max-width:680px;margin-bottom:1.15rem}

.pg-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.25rem;margin-top:2.5rem}
.pg-card{background:var(--warmwhite);border-radius:14px;padding:1.6rem 1.5rem;box-shadow:0 2px 14px rgba(26,23,20,0.05)}
.pg-card h3{font-family:'DM Serif Display',serif;font-weight:400;font-size:1.25rem;margin-bottom:0.6rem}
.pg-card p{font-size:0.9rem;line-height:1.7;color:var(--slate)}

.pg-steps{counter-reset:s;display:grid;gap:1.1rem;margin-top:2.5rem}
.pg-step{display:flex;gap:1.1rem;align-items:flex-start}
.pg-step-n{flex-shrink:0;width:34px;height:34px;border-radius:50%;background:var(--warmblack);color:var(--goldlight);
  display:flex;align-items:center;justify-content:center;font-size:0.8rem;font-weight:800}
.pg-step h3{font-size:1rem;font-weight:800;margin-bottom:0.3rem}
.pg-step p{font-size:0.9rem;line-height:1.7;color:var(--slate);max-width:600px}

.pg-photos{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem;margin-top:2.5rem}
.pg-photos img{width:100%;height:100%;min-height:220px;object-fit:cover;border-radius:14px;display:block;background:var(--concrete)}

.pg-rv{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem;margin-top:2.5rem}
.pg-rv-card{background:rgba(250,248,245,0.06);border:1px solid rgba(240,235,225,0.12);border-radius:14px;padding:1.6rem 1.5rem}
.pg-rv-card p{font-size:0.92rem;line-height:1.75;color:rgba(250,248,245,0.78);font-style:italic;margin-bottom:1rem}
.pg-rv-who{font-size:0.8rem;font-weight:800;color:var(--warmwhite)}
.pg-rv-tag{font-size:0.68rem;letter-spacing:0.14em;text-transform:uppercase;color:var(--goldlight);margin-top:0.2rem}

.pg-area{font-size:0.95rem;line-height:1.9;color:var(--slate);max-width:760px}
.pg-faq-item{border-bottom:1px solid rgba(26,23,20,0.1);padding:1.4rem 0}
.pg-faq-item h3{font-size:1rem;font-weight:800;margin-bottom:0.55rem}
.pg-faq-item p{font-size:0.92rem;line-height:1.8;color:var(--slate);max-width:680px}

.pg-other{display:flex;flex-wrap:wrap;gap:0.6rem;margin-top:2rem}
.pg-other a{font-size:0.78rem;font-weight:700;padding:0.6rem 1.1rem;border-radius:999px;
  border:1px solid rgba(26,23,20,0.16);color:var(--warmblack);text-decoration:none;transition:.2s}
.pg-other a:hover{border-color:var(--warmblack);background:var(--warmblack);color:var(--cream)}

@media (max-width:600px){
  .pg-hero{padding:7.5rem 0 3.5rem}
  .pg-sec{padding:3.5rem 0}
  .pg-photos img{min-height:190px}
}
