/* ═══════════════════════════════════════════════════════════════════════════
   Archie Home Services — styles.css
   "Art Gallery" redesign. Dark museum palette · Cormorant + Montserrat.
   Mobile-first, no framework, Cloudflare Pages ready.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Museum dark palette */
  --c-void:      #080706;
  --c-dark:      #0C0B09;
  --c-dark-2:    #141210;
  --c-dark-3:    #1C1A17;
  --c-dark-4:    #252219;
  --c-surface:   #1F1D1A;

  /* Gold accent — museum label, frame gilding */
  --c-gold:          #C9A84C;
  --c-gold-light:    #DFC26E;
  --c-gold-dark:     #A88535;
  --c-gold-dim:      rgba(201,168,76,.10);
  --c-gold-border:   rgba(201,168,76,.22);
  --c-gold-glow:     0 0 0 1px rgba(201,168,76,.35), 0 8px 32px rgba(201,168,76,.22);

  /* Text — ivory / cream hierarchy */
  --c-cream:     #F0EBE0;
  --c-cream-2:   #C4B89E;
  --c-cream-3:   #7A7060;
  --c-cream-4:   #4A4438;

  /* Semantic */
  --c-success:     #2A7A52;
  --c-success-bg:  rgba(42,122,82,.12);
  --c-error:       #CC3030;
  --c-error-bg:    rgba(204,48,48,.10);
  --c-focus:       #6A9FC8;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Cormorant', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(.7rem,   1.6vw, .775rem);
  --text-sm:   clamp(.8125rem,1.8vw, .875rem);
  --text-base: clamp(.9375rem,2vw,   1rem);
  --text-lg:   clamp(1.0625rem,2.4vw,1.1875rem);
  --text-xl:   clamp(1.25rem, 3vw,   1.5rem);
  --text-2xl:  clamp(1.5rem,  4vw,   2rem);
  --text-3xl:  clamp(2rem,    5vw,   2.75rem);
  --text-4xl:  clamp(2.5rem,  6vw,   3.75rem);
  --text-5xl:  clamp(3rem,    8vw,   5rem);
  --text-hero: clamp(3rem,    8vw,   5.5rem);

  /* Spacing (8px grid) */
  --sp-1:  .25rem;  --sp-2:  .5rem;   --sp-3:  .75rem;  --sp-4:  1rem;
  --sp-5:  1.25rem; --sp-6:  1.5rem;  --sp-8:  2rem;    --sp-10: 2.5rem;
  --sp-12: 3rem;    --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container:      1200px;
  --container-text: 740px;
  --header-h:       76px;

  /* Radius */
  --r-sm:   4px;   --r-md: 8px;   --r-lg: 16px;
  --r-xl:   24px;  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,.5);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.6);
  --shadow-xl: 0 28px 60px rgba(0,0,0,.7), 0 4px 12px rgba(0,0,0,.4);

  /* Easing */
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.16,1.06,.3,1);
  --ease-in-out: cubic-bezier(.65,.05,.36,1);

  /* Transitions */
  --t-fast: 150ms var(--ease-out);
  --t-mid:  280ms var(--ease-out);
  --t-slow: 520ms var(--ease-out);
}

/* ─── 1b. PROGRESSIVE ENHANCEMENT FALLBACK ──────────────────────────────── */
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ─── 2. RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-cream);
  background: var(--c-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* replaced by custom cursor on pointer devices */
}

/* Restore default cursor on touch/coarse-pointer devices */
@media (pointer: coarse) { body { cursor: auto; } }

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }
ul[role="list"], ol[role="list"] { list-style: none; }
button { cursor: pointer; }

/* ─── 3. SKIP LINK ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  padding: var(--sp-3) var(--sp-6);
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: 600;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border-radius: 0 0 var(--r-md) var(--r-md);
  text-decoration: none;
  z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; outline: 3px solid var(--c-gold-light); outline-offset: 2px; }

/* ─── 4. FOCUS ───────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
:focus:not(:focus-visible) { outline: none; }

/* ─── 5. LAYOUT ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px)  { .container { padding-inline: var(--sp-8); } }
@media (min-width: 1024px) { .container { padding-inline: var(--sp-12); } }

.section { padding-block: var(--sp-24); }
@media (min-width: 1024px) { .section { padding-block: var(--sp-32); } }

/* ─── 6. SECTION HEADERS ────────────────────────────────────────────────── */
.section__header { margin-bottom: var(--sp-16); max-width: var(--container-text); }
.section__header--center { margin-inline: auto; text-align: center; }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--c-gold-border);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--c-cream);
  margin-bottom: var(--sp-5);
  text-wrap: balance;
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--c-cream-2);
  max-width: 60ch;
  line-height: 1.8;
}
.section__header--center .section__subtitle { margin-inline: auto; }

/* ─── 7. HALL SECTION BACKGROUNDS ──────────────────────────────────────────
   Each section = a gallery hall with a painting background.
   User replaces BackGround/*.jpg files to "hang new paintings".           ── */
.hall-section { position: relative; overflow: hidden; }
.hall-section > .container,
.hall-section > .fan-wrap { position: relative; z-index: 2; }

.hall-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
}

.hall-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .38;
  transition: opacity 1s ease;
}

.hall-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,11,9,.82) 0%,
    rgba(12,11,9,.68) 50%,
    rgba(12,11,9,.76) 100%
  );
}

/* ─── 8. BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .8em 1.7em;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
  -webkit-user-select: none;
  user-select: none;
}
.btn:active { transform: translateY(1px) !important; }

/* Sheen sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn:hover::after { animation: btn-sheen .7s var(--ease-out); }
@keyframes btn-sheen { from { left: -80%; } to { left: 130%; } }

.btn--primary {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: rgba(240,235,224,.8);
  border-color: rgba(201,168,76,.3);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--c-gold);
  color: var(--c-cream);
  background: rgba(201,168,76,.06);
}

.btn--outline {
  background: transparent;
  color: var(--c-cream-2);
  border-color: var(--c-gold-border);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-dim);
}

.btn--sm  { padding: .6em 1.2em; font-size: var(--text-xs); }
.btn--lg  { padding: .95em 2em; font-size: var(--text-sm); }
.btn--full { width: 100%; justify-content: center; }

/* Magnetic pull via JS */
.btn[data-magnetic] {
  transition: transform .4s var(--ease-spring), background var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast);
  transform: translate(var(--mx,0), var(--my,0));
}
.btn[data-magnetic]:hover { transform: translate(var(--mx,0), var(--my,0)) scale(1.02); }

/* ─── 9. PRELOADER ───────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--c-void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
#preloader.is-hidden  { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader[hidden]    { display: none !important; }

.preloader__inner { text-align: center; }

.preloader__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2em;
  overflow: hidden;
}

.preloader__w1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .06em;
  color: var(--c-cream);
  opacity: 0;
  transform: translateY(20px);
  animation: pre-rise .8s var(--ease-out) .2s forwards;
}
.preloader__w2 {
  font-family: var(--font-body);
  font-size: clamp(.65rem, 2vw, .85rem);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: 0;
  transform: translateY(12px);
  animation: pre-rise .8s var(--ease-out) .5s forwards;
}
@keyframes pre-rise { to { opacity: 1; transform: none; } }

.preloader__rule {
  margin: var(--sp-5) auto var(--sp-4);
  width: 0;
  height: 1px;
  background: var(--c-gold-border);
  animation: pre-rule .6s var(--ease-out) .9s forwards;
}
@keyframes pre-rule { to { width: 80px; } }

.preloader__tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-cream-3);
  opacity: 0;
  animation: pre-rise .6s var(--ease-out) 1.1s forwards;
}

/* ─── 10. CUSTOM CURSOR ──────────────────────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 8000;
  top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: opacity .3s ease, width .3s var(--ease-spring), height .3s var(--ease-spring);
}

#cursor-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  mix-blend-mode: difference;
}

#cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(201,168,76,.55);
  background: transparent;
  transition: width .3s var(--ease-spring), height .3s var(--ease-spring),
              border-color .3s ease, opacity .3s ease;
}

/* Hover states driven by JS body class */
body.cursor-hover #cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--c-gold);
}
body.cursor-hover #cursor-dot { opacity: 0; }

/* Hide on touch devices */
@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ─── 11. SCROLL PROGRESS BAR ────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 7000;
  pointer-events: none;
  background: transparent;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  box-shadow: 0 0 10px rgba(201,168,76,.5);
}

/* ─── 12. GRAIN TEXTURE ──────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 7500;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(6) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-8%,4%); }
  40%  { transform: translate(6%,-6%); }
  60%  { transform: translate(-4%,8%); }
  80%  { transform: translate(8%,-2%); }
  100% { transform: translate(0,0); }
}

/* ─── 13. HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 500;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}
.site-header.is-scrolled {
  background: rgba(8,7,6,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--c-gold-border);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* Logo with cascade text */
.site-header__logo {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, var(--text-xl));
  font-weight: 400;
  color: var(--c-cream);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.site-header__logo strong {
  font-weight: 600;
  color: var(--c-gold);
}

/* Cascade text effect — each word wraps to clip letters */
.cascade-text {
  display: inline-flex;
  cursor: pointer;
}
.cascade-word {
  display: inline-block;
  overflow: hidden;
  position: relative;
  height: 1.2em;
  line-height: 1.2;
  vertical-align: bottom;
}
.cascade-char {
  display: inline-block;
  position: relative;
  transition: transform .45s var(--ease-out), opacity .45s var(--ease-out);
  transition-delay: calc(var(--ci) * .03s);
  will-change: transform;
}
.cascade-char--clone {
  position: absolute;
  top: 0; left: 0;
  transform: translateY(-100%);
  opacity: 0;
  transition-delay: calc(var(--ci) * .03s);
}
.cascade-text:hover .cascade-char { transform: translateY(100%); opacity: 0; }
.cascade-text:hover .cascade-char--clone { transform: translateY(0); opacity: 1; }

/* Desktop nav — visible from 1200px where there's room for all items */
.site-nav { display: none; }
@media (min-width: 1200px) {
  .site-nav { display: block; flex: 1; min-width: 0; }
  .site-nav__list {
    display: flex;
    gap: clamp(var(--sp-4), 2.2vw, var(--sp-8));
    list-style: none;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .site-nav__link {
    font-size: clamp(.65rem, .9vw, var(--text-xs));
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(240,235,224,.6);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--t-fast);
    position: relative;
    padding-bottom: 3px;
  }
  .site-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-mid);
  }
  .site-nav__link:hover,
  .site-nav__link.is-active { color: var(--c-cream); }
  .site-nav__link:hover::after,
  .site-nav__link.is-active::after { transform: scaleX(1); }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(240,235,224,.75);
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: color var(--t-fast);
  flex-shrink: 0;
}
.header-phone:hover { color: var(--c-gold); }
/* Hide number text on very small screens — show only icon */
.header-phone__num { display: none; }
@media (min-width: 400px) { .header-phone__num { display: inline; } }
/* Hide "Get a Quote" button on mobile — it's in the mobile nav */
.site-header__cta { display: none; }
@media (min-width: 768px) { .site-header__cta { display: inline-flex; } }

/* Hamburger — clean 3-bar icon, no border box */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: var(--sp-2);
  flex-shrink: 0;
}
.nav-toggle:hover .nav-toggle__bar { background: var(--c-gold); }
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t-mid), opacity var(--t-mid), background var(--t-fast), width var(--t-mid);
}
/* Middle bar slightly shorter — classic look */
.nav-toggle__bar:nth-child(2) { width: 18px; }
.nav-toggle:hover .nav-toggle__bar:nth-child(2) { width: 24px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1200px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(8,7,6,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-gold-border);
  padding: var(--sp-6) var(--sp-5) var(--sp-10);
  transform: translateY(-108%);
  transition: transform var(--t-slow), visibility var(--t-slow);
  visibility: hidden;
  z-index: 490;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav__list { list-style: none; }
.mobile-nav__link {
  display: block;
  padding: var(--sp-4) 0;
  color: rgba(240,235,224,.75);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  border-bottom: 1px solid rgba(201,168,76,.1);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-nav__link:hover { color: var(--c-gold); padding-left: var(--sp-3); }
.mobile-nav__cta { margin-top: var(--sp-6); display: block; }

/* ─── 14. HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--c-void);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Painting layer — clip-path expands on scroll via JS */
.hero__painting {
  position: absolute;
  inset: 0;
  clip-path: inset(5% 8% round 12px);
  transition: clip-path 0s; /* JS animates directly, no CSS transition */
  will-change: clip-path;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero__painting { clip-path: inset(0%); }
}
.hero__painting-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .42;
}

.hero__gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    125deg,
    rgba(8,7,6,.92) 0%,
    rgba(8,7,6,.70) 40%,
    rgba(8,7,6,.38) 72%,
    rgba(8,7,6,.10) 100%
  );
}

.hero__mesh {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 12% 35%, rgba(201,168,76,.15), transparent 65%),
    radial-gradient(35% 45% at 88% 70%, rgba(140,120,80,.1), transparent 65%);
  mix-blend-mode: screen;
  animation: mesh-drift 20s var(--ease-in-out) infinite alternate;
}
@keyframes mesh-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(2%,-2%,0) scale(1.07); }
}

.hero__container {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  padding-block: var(--sp-16);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 400px;
    gap: var(--sp-20);
    padding-block: var(--sp-24);
  }
}

/* Eyebrow with dash */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-6);
}
.eyebrow-dash {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--c-gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--c-cream);
  margin-bottom: var(--sp-8);
  max-width: 12ch;
  text-wrap: balance;
}
.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold);
}

.hero__subline {
  font-size: var(--text-lg);
  color: rgba(240,235,224,.6);
  max-width: 50ch;
  line-height: 1.8;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  list-style: none;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(201,168,76,.15);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(240,235,224,.5);
}
.hero__trust svg { color: var(--c-gold); flex-shrink: 0; }

/* Decorative exhibit frame (desktop) */
.hero__frame-col { display: none; }
@media (min-width: 1024px) {
  .hero__frame-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero__exhibit-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  perspective: 1200px;
  cursor: default;
}

/* 3D flip wrapper */
.hero__flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.4,.2,.2,1);
  border: 1px solid var(--c-gold-border);
  border-radius: 2px;
}
.hero__exhibit-frame:hover .hero__flip-inner { transform: rotateY(180deg); }

/* Both faces */
.hero__flip-front,
.hero__flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* Front: portrait */
.hero__exhibit-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero__exhibit-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  background: linear-gradient(to top, rgba(12,11,9,.92) 0%, rgba(12,11,9,.6) 60%, transparent 100%);
  z-index: 2;
}

/* Back: quality statement */
.hero__flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #16130b 0%, #0c0b09 60%, #111008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-6);
}
.hero__flip-back-content { text-align: center; }
.hero__flip-ornament {
  color: var(--c-gold);
  font-size: 1.25rem;
  display: block;
  margin-bottom: var(--sp-6);
  opacity: .7;
}
.hero__flip-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--c-cream);
  line-height: 1.55;
  margin: 0 0 var(--sp-6);
}
.hero__flip-body {
  font-size: var(--text-sm);
  color: var(--c-cream-3);
  line-height: 1.7;
  margin: 0 0 var(--sp-7);
}
.hero__flip-sig {
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: .8;
}

/* Golden corners — above the 3D card, no border clash */
.frame-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--c-gold);
  border-style: solid;
  border-width: 0;
  z-index: 10;
  pointer-events: none;
}
.frame-corner--tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.frame-corner--tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.frame-corner--bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.frame-corner--br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

.hero__exhibit-label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--c-cream-2);
  letter-spacing: .02em;
}
.hero__exhibit-subtext {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: var(--sp-2);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__flip-inner { transition: none; }
  .hero__exhibit-frame:hover .hero__flip-inner { transform: none; }
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  left: 50%; bottom: var(--sp-8);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  color: rgba(240,235,224,.35);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: color var(--t-fast);
  opacity: 0;
  animation: cue-fade .8s var(--ease-out) 1.8s forwards;
}
@keyframes cue-fade { to { opacity: 1; } }
.hero__scroll-cue:hover { color: var(--c-gold); }
.hero__scroll-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.4), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-cue-line::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--c-gold);
  animation: scroll-cue 2.4s var(--ease-in-out) infinite;
}
@keyframes scroll-cue {
  0%   { transform: translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}
@media (max-width: 767px) { .hero__scroll-cue { display: none; } }

/* ─── 15. SERVICES ───────────────────────────────────────────────────────── */
.services { background: var(--c-dark-2); }

/* container-scroll: starts 3D-tilted, flattens as it scrolls into view */
.container-scroll {
  transform: perspective(1200px) rotateX(18deg) scale(.96);
  transform-origin: top center;
  transition: transform 1s var(--ease-out);
}
.container-scroll.is-flat {
  transform: perspective(1200px) rotateX(0deg) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .container-scroll, .container-scroll.is-flat { transform: none; }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 600px)  { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(4,1fr); gap: var(--sp-4); } }

.service-card {
  position: relative;
  background: rgba(28,26,23,.8);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
  backdrop-filter: blur(4px);
}

/* Gold corner frame decoration */
.service-card__corners { position: absolute; inset: 0; pointer-events: none; }
.service-card__corners span {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(201,168,76,.3);
  border-style: solid;
  border-width: 0;
  transition: border-color .3s ease;
}
.service-card__corners span:nth-child(1) { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.service-card__corners span:nth-child(2) { top: 8px; right: 8px; border-top-width: 1px; border-right-width: 1px; }
.service-card__corners span:nth-child(3) { bottom: 8px; left: 8px; border-bottom-width: 1px; border-left-width: 1px; }
.service-card__corners span:nth-child(4) { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.4); }
.service-card:hover .service-card__corners span { border-color: var(--c-gold); }

/* 3D tilt — driven by JS on mousemove */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform .15s ease, box-shadow .3s ease, border-color .3s ease;
}
.tilt-card.is-tilting {
  transition: box-shadow .3s ease, border-color .3s ease;
}

.service-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--c-gold-dim);
  border: 1px solid var(--c-gold-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-6);
  color: var(--c-gold);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.service-card:hover .service-card__icon-wrap {
  background: rgba(201,168,76,.18);
  border-color: rgba(201,168,76,.5);
}
.service-card__icon { width: 26px; height: 26px; }

.service-card__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,.15);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--c-cream-2);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
}
.service-card__tags li {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--c-cream-3);
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--r-sm);
  padding: .25em .75em;
  letter-spacing: .04em;
}

/* ─── 16. WHY US ─────────────────────────────────────────────────────────── */
.why-us { background: var(--c-dark-3); }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (min-width: 1024px) {
  .why-us__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-24); }
}

.why-us__intro-text {
  font-size: var(--text-lg);
  color: var(--c-cream-2);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
  max-width: 44ch;
}

/* Stats row */
.why-us__stats {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--c-gold-border);
}
.why-stat { text-align: left; }
.why-stat__num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  font-style: italic;
  color: var(--c-gold);
  line-height: 1;
  display: inline-block;
}
.why-stat__plus {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-gold);
  vertical-align: top;
  margin-left: 2px;
  display: inline-block;
}
.why-stat__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-cream-3);
  margin-top: var(--sp-1);
}

.why-us__list { list-style: none; }
.why-us__item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.why-us__item:first-child { padding-top: 0; }
.why-us__item:last-child  { border-bottom: none; }

.why-us__item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--c-gold-dim);
  border: 1px solid var(--c-gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold);
  margin-top: 2px;
}
.why-us__item-icon svg { width: 17px; height: 17px; }
.why-us__item-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 400; color: var(--c-cream); margin-bottom: var(--sp-1); line-height: 1.3; }
.why-us__item-text  { font-size: var(--text-sm); color: var(--c-cream-2); line-height: 1.7; }

/* ─── 17. REVIEWS CAROUSEL ───────────────────────────────────────────────── */
.reviews { background: var(--c-dark-2); }

/* Carousel wrapper */
.reviews-carousel {
  margin-bottom: var(--sp-10);
  position: relative;
}

.reviews-track-wrap {
  overflow: hidden;
  width: 100%;
  /* Fade edges to hint at more cards */
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: var(--sp-5);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  will-change: transform;
  /* Don't let cards collapse */
  align-items: stretch;
}

/* Card sizing — 1 per view on mobile, 2 on tablet, 3 on desktop */
.reviews-track .review-card {
  flex: 0 0 100%;
}
@media (min-width: 640px) {
  .reviews-track .review-card {
    flex: 0 0 calc(50% - var(--sp-5) / 2);
  }
}
@media (min-width: 1024px) {
  .reviews-track .review-card {
    flex: 0 0 calc(33.333% - var(--sp-5) * 2 / 3);
  }
}

/* Review card */
.review-card {
  background: rgba(28,26,23,.7);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
  backdrop-filter: blur(4px);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.3); }
.review-card__stars { display: flex; gap: 2px; color: var(--c-gold); font-size: 1rem; letter-spacing: .08em; }
.review-card__text  { flex: 1; font-family: var(--font-display); font-size: var(--text-lg); font-style: italic; color: var(--c-cream-2); line-height: 1.7; font-weight: 300; }
.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(201,168,76,.1);
}
.review-card__author { font-weight: 600; font-size: var(--text-sm); color: var(--c-cream); font-family: var(--font-body); }
.review-card__meta   { font-size: var(--text-xs); color: var(--c-cream-3); }
.review-card__source { font-size: var(--text-xs); color: var(--c-cream-3); font-style: italic; white-space: nowrap; }

/* Carousel nav */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.reviews-nav__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-gold-border);
  background: rgba(12,11,9,.6);
  backdrop-filter: blur(8px);
  color: var(--c-cream-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--t-fast), color var(--t-fast),
              background var(--t-fast), transform var(--t-fast), opacity var(--t-fast);
}
.reviews-nav__btn svg { width: 18px; height: 18px; }
.reviews-nav__btn:hover:not(:disabled) {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: var(--c-gold-dim);
  transform: scale(1.08);
}
.reviews-nav__btn:disabled { opacity: .3; cursor: default; }

/* Dots */
.reviews-dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.reviews-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(201,168,76,.25);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, transform .3s ease, width .3s ease;
}
.reviews-dot.is-active {
  background: var(--c-gold);
  transform: scale(1.4);
}

/* Empty state */
.reviews__empty {
  text-align: center;
  padding: var(--sp-16);
  color: var(--c-cream-3);
  width: 100%;
}
.reviews__empty h3 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 400; color: var(--c-cream-2); margin-bottom: var(--sp-3); }
.reviews__empty p  { max-width: 40ch; margin-inline: auto; font-size: var(--text-sm); }

.reviews__footer { text-align: center; }

/* ─── 18. GALLERY FAN CAROUSEL ───────────────────────────────────────────── */
.gallery-section { background: var(--c-dark-3); }
.gallery-section > .container { margin-bottom: var(--sp-8); }

.fan-wrap {
  width: 100%;
  padding-bottom: var(--sp-16);
}

.fan-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(22rem, 65vh, 38rem);
  perspective: 2000px;
  overflow: visible;
}

.fan-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(201,168,76,.2);
  width: clamp(200px, 24vw, 340px);
  height: clamp(300px, 36vw, 510px);
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform;
}
.fan-card:hover { border-color: rgba(201,168,76,.5); }

.fan-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .7s var(--ease-out);
}
.fan-card:hover .fan-card__img { transform: scale(1.05); }

.fan-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 2;
}
.fan-card:hover .fan-card__overlay { opacity: 1; }

.fan-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5) var(--sp-6);
  z-index: 3;
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
}
.fan-card:hover .fan-card__info { transform: translateY(0); }

.fan-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: 2px;
}
.fan-card__sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--c-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav controls */
.fan-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-10);
  position: relative;
  z-index: 10;
}

.fan-nav__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-gold-border);
  background: rgba(12,11,9,.6);
  backdrop-filter: blur(8px);
  color: var(--c-cream-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.fan-nav__btn:hover { border-color: var(--c-gold); color: var(--c-gold); background: var(--c-gold-dim); transform: scale(1.08); }
.fan-nav__btn svg { width: 18px; height: 18px; }

.fan-dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.fan-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,.25);
  transition: background .3s ease, transform .3s ease;
}
.fan-dot.is-active {
  background: var(--c-gold);
  transform: scale(1.4);
}

/* ─── 19. QUOTE FORM ─────────────────────────────────────────────────────── */
.quote { background: var(--c-dark); }

.quote__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (min-width: 1024px) {
  .quote__grid { grid-template-columns: 1fr 1.3fr; gap: var(--sp-20); }
}

.quote__info-text {
  font-size: var(--text-base);
  color: var(--c-cream-2);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

.quote__contact-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.quote__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--c-cream-2);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  border: 1px solid rgba(201,168,76,.14);
  background: rgba(28,26,23,.5);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.quote__contact-item:hover { border-color: var(--c-gold); color: var(--c-gold); background: var(--c-gold-dim); }
.quote__contact-item svg { flex-shrink: 0; opacity: .7; }

/* Form */
.quote-form {
  background: rgba(20,18,16,.8);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--r-md);
  padding: var(--sp-10);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
@media (max-width: 480px) { .quote-form { padding: var(--sp-6); } }

.form-row { display: grid; gap: var(--sp-5); }
.form-row--2 { grid-template-columns: 1fr; }
@media (min-width: 480px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-row + .form-row,
.form-row + .form-field,
.form-field + .form-field { margin-top: var(--sp-5); }

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-cream-2);
  margin-bottom: var(--sp-2);
}
.form-label-optional {
  font-weight: 400;
  color: var(--c-cream-3);
  font-size: var(--text-xs);
  margin-left: var(--sp-1);
  text-transform: none;
  letter-spacing: 0;
}

.form-input {
  display: block;
  width: 100%;
  padding: .75em 1em;
  background: rgba(12,11,9,.6);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-cream);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--c-cream-3); }
.form-input:hover   { border-color: rgba(201,168,76,.4); }
.form-input:focus   { border-color: var(--c-gold); background: rgba(20,18,16,.8); outline: none; box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.form-input.is-invalid { border-color: var(--c-error); box-shadow: 0 0 0 3px rgba(204,48,48,.1); }

/* Dark option styling for select */
.form-input option { background: var(--c-dark-3); color: var(--c-cream); }

.form-select-wrap { position: relative; }
.form-select-wrap .form-input { padding-right: 2.5em; cursor: pointer; }
.form-select-arrow {
  position: absolute;
  right: .85em; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--c-cream-3);
  pointer-events: none;
}

.form-textarea { height: 130px; resize: vertical; line-height: 1.6; }

.form-error {
  display: block;
  min-height: 1.2em;
  margin-top: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--c-error);
  font-weight: 500;
}

.form-footer { margin-top: var(--sp-6); }
.form-disclaimer {
  margin-top: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--c-cream-3);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: var(--sp-10) var(--sp-8);
  border-radius: var(--r-md);
  background: var(--c-success-bg);
  border: 1px solid rgba(42,122,82,.25);
}
.form-success svg { color: var(--c-success); margin-inline: auto; margin-bottom: var(--sp-4); }
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: #6EC997;
  margin-bottom: var(--sp-3);
}
.form-success p { font-size: var(--text-base); color: var(--c-cream-2); max-width: 40ch; margin-inline: auto; }

/* ─── 20. FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-void);
  border-top: 1px solid var(--c-gold-border);
  padding-block: var(--sp-16) var(--sp-8);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
@media (min-width: 600px)  { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1.2fr; gap: var(--sp-16); } }

.site-footer__logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  font-style: italic;
  color: var(--c-cream-2);
  text-decoration: none;
  margin-bottom: var(--sp-4);
  transition: color var(--t-fast);
}
.site-footer__logo strong { color: var(--c-gold); font-style: normal; font-weight: 400; }
.site-footer__logo:hover  { color: var(--c-cream); }

.site-footer__tagline {
  font-size: var(--text-sm);
  color: var(--c-cream-3);
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: var(--sp-6);
}
.site-footer__brand-contact { display: flex; flex-direction: column; gap: var(--sp-2); }
.site-footer__brand-contact a {
  color: var(--c-cream-3);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--t-fast);
}
.site-footer__brand-contact a:hover { color: var(--c-gold); }

.site-footer__nav-title {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--c-gold-border);
  display: inline-block;
}
.site-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__nav a {
  color: var(--c-cream-3);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.site-footer__nav a:hover { color: var(--c-cream-2); padding-left: var(--sp-2); }

.site-footer__reach { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__reach-item {
  display: flex; align-items: center; gap: var(--sp-3);
  color: var(--c-cream-3);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--t-fast);
}
.site-footer__reach-item:hover { color: var(--c-gold); }
.site-footer__reach-item svg { flex-shrink: 0; opacity: .65; }
.site-footer__area { margin-top: var(--sp-5); font-size: var(--text-xs); color: var(--c-cream-4); letter-spacing: .06em; }

.site-footer__bottom {
  padding-top: var(--sp-6);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3);
}
.site-footer__legal { font-size: var(--text-xs); color: var(--c-cream-4); }

/* ─── 21. FLOATING CONTACTS ──────────────────────────────────────────────── */
.floating-contacts {
  position: fixed;
  bottom: var(--sp-6); right: var(--sp-5);
  z-index: 400;
  display: flex; flex-direction: column; gap: var(--sp-3); align-items: center;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  border: 1px solid transparent;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.5); }
.float-btn svg { width: 22px; height: 22px; }
.float-btn--wa   { background: #25D366; color: #fff; }
.float-btn--call { background: var(--c-gold); color: var(--c-dark); }

/* ─── 22. SCROLL REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(.98);
  filter: blur(8px);
  transition:
    opacity   .95s var(--ease-out),
    transform .95s var(--ease-out),
    filter    .95s var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal--right { transform: translate3d(40px, 0, 0) scale(.98); }
.reveal--left  { transform: translate3d(-40px, 0, 0) scale(.98); }

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}
.reveal.is-settled { will-change: auto; }

/* Stagger delays */
.reveal--d1 { transition-delay: .06s; }
.reveal--d2 { transition-delay: .14s; }
.reveal--d3 { transition-delay: .22s; }
.reveal--d4 { transition-delay: .30s; }
.reveal--d5 { transition-delay: .38s; }
.reveal--d6 { transition-delay: .46s; }

/* ─── 23. REDUCED MOTION ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; will-change: auto; }
  .hero__painting { clip-path: inset(0%); }
  .hero__mesh, .grain, .hero__scroll-cue-line::after { animation: none !important; }
  .container-scroll, .container-scroll.is-flat { transform: none !important; }
  .btn[data-magnetic] { transform: none !important; }
  .btn::after { display: none; }
  .hall-bg { transform: none !important; }
}

/* ─── 23.6 SERVICE AREA — CONSTELLATION MAP ──────────────────────────────── */
.service-area { overflow: hidden; }

.sa-map-wrap { margin-top: var(--sp-10); }

.sa-svg {
  width: 100%; height: auto;
  display: block; overflow: visible;
  max-width: 900px; margin-inline: auto;
}

/* Ambient twinkling */
.sa-amb { fill: rgba(240,235,224,.9); animation: sa-amb 4s ease-in-out infinite; }
.sa-amb:nth-child(2n) { animation-duration: 5.8s; animation-delay:  .9s; }
.sa-amb:nth-child(3n) { animation-duration: 3.4s; animation-delay: 2.2s; }
.sa-amb:nth-child(4n) { animation-duration: 6.5s; animation-delay: 1.5s; }
.sa-amb:nth-child(5n) { animation-duration: 4.7s; animation-delay: 3.1s; }
.sa-amb:nth-child(7n) { animation-duration: 5.2s; animation-delay:  .4s; }
@keyframes sa-amb { 0%,100% { opacity:.22; } 50% { opacity:.04; } }

/* Lines */
.sa-line { stroke: rgba(201,168,76,.13); stroke-width:.7; transition: stroke .25s, stroke-width .25s; }
.sa-line.is-active { stroke: rgba(201,168,76,.6); stroke-width: 1.3; }

/* Star */
.sa-halo { fill: transparent; }
.sa-dot  { fill: rgba(201,168,76,.55); transform-box: fill-box; transform-origin: center; transition: fill .25s, filter .25s; }
.sa-ray  { stroke: rgba(201,168,76,0); stroke-width: 1.2; stroke-linecap: round; transition: stroke .25s; }

/* Labels */
.sa-lbl {
  font-family: 'Montserrat', sans-serif; font-size: 9.5px; font-weight: 500;
  fill: rgba(240,235,224,.48); letter-spacing: .07em; text-transform: uppercase;
  pointer-events: none; transition: fill .25s;
}
.sa-sub {
  font-family: 'Montserrat', sans-serif; font-size: 8px;
  fill: rgba(201,168,76,0); letter-spacing: .1em; text-transform: uppercase;
  pointer-events: none; transition: fill .25s;
}

/* Hover */
@media (hover: hover) {
  .sa-star { cursor: pointer; }
  .sa-star:hover .sa-dot, .sa-star:focus-visible .sa-dot {
    fill: #fff8e0;
    filter: drop-shadow(0 0 4px rgba(201,168,76,1)) drop-shadow(0 0 12px rgba(201,168,76,.65)) drop-shadow(0 0 24px rgba(201,168,76,.3));
    animation: sa-twinkle .85s ease-in-out;
  }
  .sa-star:hover .sa-ray, .sa-star:focus-visible .sa-ray { stroke: rgba(201,168,76,.75); }
  .sa-star:hover .sa-lbl, .sa-star:focus-visible .sa-lbl { fill: rgba(240,235,224,.95); }
  .sa-star:hover .sa-sub, .sa-star:focus-visible .sa-sub { fill: rgba(201,168,76,.85); }
}
@keyframes sa-twinkle {
  0%  {transform:scale(1)}  18% {transform:scale(2.4)} 36% {transform:scale(.8)}
  55% {transform:scale(1.8)} 72% {transform:scale(.9)} 88% {transform:scale(1.3)} 100% {transform:scale(1.1)}
}

/* Home base */
.sa-star--home .sa-dot {
  fill: #c9a84c;
  filter: drop-shadow(0 0 5px rgba(201,168,76,.8));
  animation: sa-home 3s ease-in-out infinite;
}
@keyframes sa-home {
  0%,100% { filter: drop-shadow(0 0 4px rgba(201,168,76,.7)); }
  50%      { filter: drop-shadow(0 0 14px rgba(201,168,76,1)); }
}
.sa-star--home .sa-lbl { fill: rgba(201,168,76,.85); font-size: 10.5px; font-weight: 600; }
.sa-star--home .sa-sub { fill: rgba(201,168,76,.5); }
.sa-star--home:hover .sa-dot, .sa-star--home:focus-visible .sa-dot { animation: sa-twinkle .85s ease-in-out; }

/* Tooltip */
.sa-tooltip {
  position: fixed; pointer-events: none; z-index: 600;
  background: rgba(18,16,11,.96); border: 1px solid rgba(201,168,76,.4);
  border-radius: var(--r-sm); padding: 7px 14px;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 500;
  color: var(--c-cream-2); letter-spacing: .05em; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(201,168,76,.15);
  opacity: 0; transform: translateY(5px);
  transition: opacity .18s, transform .18s;
}
.sa-tooltip.is-visible { opacity: 1; transform: translateY(0); }
.sa-tooltip strong { color: var(--c-gold); }

/* Mobile */
.sa-pills { display: none; list-style: none; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: var(--sp-6); }
.sa-pills li { font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--c-cream-3); padding: 6px 14px; border: 1px solid rgba(201,168,76,.15); border-radius: 100px; }
.sa-footnote { text-align: center; margin-top: var(--sp-7); font-family: var(--font-display); font-style: italic; font-size: var(--text-sm); color: var(--c-cream-4); letter-spacing: .05em; }

@media (max-width: 640px) {
  .sa-lbl, .sa-sub { display: none; }
  .sa-pills { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .sa-amb, .sa-star--home .sa-dot { animation: none !important; }
  .sa-star:hover .sa-dot { animation: none !important; }
}

/* ─── 24. PRIVACY / COOKIE CONSENT ───────────────────────────────────────── */
.site-footer__legal-nav { display: flex; align-items: center; gap: var(--sp-5); }
.site-footer__legal-nav a,
.site-footer__legal-link-btn {
  font-size: var(--text-xs);
  color: var(--c-cream-4);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--t-fast);
}
.site-footer__legal-nav a:hover,
.site-footer__legal-link-btn:hover { color: var(--c-gold); }

.privacy-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--c-dark-2);
  border-top: 1px solid var(--c-gold-border);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-5) var(--sp-4);
  animation: privacy-banner-in var(--t-slow);
}
@keyframes privacy-banner-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.privacy-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.privacy-banner__text {
  flex: 1 1 480px;
  font-size: var(--text-sm);
  color: var(--c-cream-3);
  line-height: 1.6;
}
.privacy-banner__text a { color: var(--c-gold); text-decoration: underline; }
.privacy-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-shrink: 0;
}
.privacy-banner__link {
  background: none;
  border: none;
  padding: 0;
  font-size: var(--text-xs);
  color: var(--c-cream-2);
  text-decoration: underline;
  cursor: pointer;
  font-family: var(--font-body);
}
.privacy-banner__link:hover { color: var(--c-gold); }

.privacy-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(8,7,6,.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.privacy-modal {
  max-width: 460px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--c-dark-2);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-8);
}
.privacy-modal h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: var(--sp-4);
}
.privacy-modal__text {
  font-size: var(--text-sm);
  color: var(--c-cream-3);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.privacy-modal__gpc {
  font-size: var(--text-xs);
  color: var(--c-gold);
  background: var(--c-gold-dim);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.privacy-modal__toggle {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--c-cream-2);
  cursor: pointer;
  margin-bottom: var(--sp-5);
}
.privacy-modal__toggle input { margin-top: .2em; accent-color: var(--c-gold); width: 16px; height: 16px; flex-shrink: 0; }
.privacy-modal__note { font-size: var(--text-xs); margin-bottom: var(--sp-6); }
.privacy-modal__note a { color: var(--c-gold); }
.privacy-modal__actions { display: flex; justify-content: flex-end; gap: var(--sp-3); }

@media (max-width: 640px) {
  .privacy-banner__inner { flex-direction: column; align-items: stretch; }
  .privacy-banner__actions { justify-content: space-between; }
}

/* ─── 25. LEGAL PAGE ─────────────────────────────────────────────────────── */
.legal-header {
  border-bottom: 1px solid var(--c-gold-border);
  padding-block: var(--sp-5);
}
.legal-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.legal-header__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--c-cream-2);
  text-decoration: none;
}
.legal-header__logo strong { color: var(--c-gold); font-style: normal; font-weight: 400; }
.legal-header__back {
  font-size: var(--text-sm);
  color: var(--c-cream-3);
  text-decoration: none;
}
.legal-header__back:hover { color: var(--c-gold); }

.legal-main {
  max-width: var(--container-text);
  margin-inline: auto;
  padding: var(--sp-16) var(--sp-4) var(--sp-24);
  color: var(--c-cream-2);
}
.legal-main h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: var(--sp-3);
}
.legal-main .legal-updated {
  font-size: var(--text-sm);
  color: var(--c-cream-4);
  margin-bottom: var(--sp-12);
}
.legal-main h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--c-gold);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
}
.legal-main h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-cream);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
}
.legal-main p { font-size: var(--text-sm); line-height: 1.8; margin-bottom: var(--sp-4); }
.legal-main ul { margin: 0 0 var(--sp-4) var(--sp-5); }
.legal-main li { font-size: var(--text-sm); line-height: 1.8; margin-bottom: var(--sp-2); }
.legal-main a { color: var(--c-gold); }
.legal-main strong { color: var(--c-cream); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-6);
  font-size: var(--text-xs);
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: var(--sp-3);
  border: 1px solid var(--c-gold-border);
  vertical-align: top;
}
.legal-table th { color: var(--c-gold); font-weight: 600; letter-spacing: .04em; }
.legal-table td { color: var(--c-cream-3); }

.legal-choices-btn {
  background: none;
  border: 1px solid var(--c-gold-border);
  border-radius: var(--r-md);
  color: var(--c-gold);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.legal-choices-btn:hover { background: var(--c-gold-dim); }

/* ─── 26. PRINT ──────────────────────────────────────────────────────────── */
@media print {
  .site-header, .floating-contacts, .nav-toggle, .mobile-nav,
  .hero__painting, .hero__gradient, .hero__mesh, .grain,
  .scroll-progress, .hero__scroll-cue, #preloader, #cursor-dot, #cursor-ring,
  .hall-bg { display: none; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
