/* =========================================================================
   Ghost Auto Refinishing: prototype design system
   A single committed dark, cinematic luxury world.
   Palette: graphite ground, warm off-white, champagne gold.
   Prototype by Voltihost LLC.
   ========================================================================= */

:root {
  /* Grounds and surfaces (cool-neutral graphite, biased slightly warm) */
  --ink:      #0b0b0d;
  --ink-2:    #101015;
  --ink-3:    #16161c;
  --ink-4:    #1d1d24;
  --ink-5:    #26262e;

  /* Text (warm off-white, never pure) */
  --paper:      #f2efe9;
  --paper-dim:  #b9b3a8;
  --paper-faint:#877f72;

  /* Champagne gold accent family */
  --gold:      #c9a24b;
  --gold-hi:   #e6cd86;
  --gold-deep: #8a6d2f;
  --gold-olive:#a99f5b;
  --gold-wash: rgba(201, 162, 75, 0.14);
  --gold-glow: rgba(201, 162, 75, 0.30);

  /* Lines */
  --hair:      rgba(242, 239, 233, 0.09);
  --hair-2:    rgba(242, 239, 233, 0.15);
  --hair-gold: rgba(201, 162, 75, 0.28);

  /* Gradients */
  --grad-gold:  linear-gradient(135deg, #e6cd86 0%, #c9a24b 44%, #8a6d2f 100%);
  --grad-gold-h:linear-gradient(90deg, #8a6d2f, #c9a24b 40%, #e6cd86 70%, #c9a24b);
  --grad-veil:  linear-gradient(180deg, rgba(11,11,13,0) 0%, rgba(11,11,13,0.55) 55%, var(--ink) 100%);
  --grad-hero:  radial-gradient(120% 90% at 78% 18%, rgba(201,162,75,0.14) 0%, rgba(201,162,75,0) 46%),
                radial-gradient(90% 80% at 12% 92%, rgba(120,110,80,0.10) 0%, rgba(0,0,0,0) 50%),
                linear-gradient(180deg, #0e0e12 0%, #0b0b0d 60%, #08080a 100%);

  /* Type */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
                  "Charter", "Bitstream Charter", Georgia, ui-serif, serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Liberation Sans", "DejaVu Sans", Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.72rem;
  --fs-micro:   0.78rem;
  --fs-small:   0.9rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.14rem, 0.6rem + 1.1vw, 1.4rem);
  --fs-title:   clamp(1.24rem, 1rem + 0.8vw, 1.55rem);
  --fs-h3:      clamp(1.7rem, 1.1rem + 1.9vw, 2.35rem);
  --fs-h2:      clamp(2.1rem, 1.2rem + 3.1vw, 3.6rem);
  --fs-hero:    clamp(2.85rem, 1.1rem + 7.4vw, 6.6rem);

  /* Space + shape */
  --measure: 64ch;
  --container: 1200px;
  --container-wide: 1360px;
  --pad-x: clamp(1.25rem, 4vw, 2.75rem);
  --section-y: clamp(4.75rem, 8vw, 8.5rem);
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.03), 0 18px 40px -24px rgba(0,0,0,0.8);
  --shadow-2: 0 30px 80px -40px rgba(0,0,0,0.9);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.5s;

  color-scheme: dark;
}

/* -------------------------------------------------------------------------
   Reset and base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; }
svg { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #14110a; }

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* -------------------------------------------------------------------------
   Typography helpers
   ------------------------------------------------------------------------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.012em; line-height: 1.02; text-wrap: balance; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--grad-gold-h);
  display: inline-block;
}
.eyebrow.is-centered::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, #c9a24b, #8a6d2f, transparent);
  display: inline-block;
}
.eyebrow.is-plain::before { display: none; }

.lead { font-size: var(--fs-lead); color: var(--paper-dim); line-height: 1.6; max-width: 54ch; }

.muted { color: var(--paper-dim); }
.faint { color: var(--paper-faint); }
.gold  { color: var(--gold); }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; }
p { text-wrap: pretty; }

/* -------------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.container.is-wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-y); position: relative; }
.section.is-tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.15rem; }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { margin-top: 1.15rem; }

.rule { height: 1px; background: var(--hair); border: 0; }
.rule.is-gold { background: linear-gradient(90deg, transparent, var(--hair-gold), transparent); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.stack { display: flex; flex-direction: column; }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-bd: var(--hair-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  --btn-fg: #16110a;
  background: var(--grad-gold);
  border-color: transparent;
  box-shadow: 0 10px 30px -12px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 16px 40px -12px var(--gold-glow); filter: brightness(1.05); }

.btn-outline { --btn-bd: var(--hair-gold); color: var(--paper); }
.btn-outline:hover { border-color: var(--gold); background: var(--gold-wash); }

.btn-ghost { border-color: transparent; padding-inline: 0.4rem; }
.btn-ghost:hover { color: var(--gold-hi); }

.btn.is-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* -------------------------------------------------------------------------
   Header / navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--hair);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4.75rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
  position: relative;
  padding-block: 0.4rem;
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--grad-gold-h);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.nav-phone svg { width: 1em; height: 1em; color: var(--gold); }
.nav-phone span { font-variant-numeric: tabular-nums; }

.nav-toggle {
  display: none;
  width: 2.75rem; height: 2.75rem;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--hair-2);
  border-radius: var(--r-xs);
  cursor: pointer;
}
.nav-toggle svg { width: 1.3rem; height: 1.3rem; }

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-shield { width: 2.5rem; height: 2.9rem; flex: none; filter: drop-shadow(0 4px 14px rgba(201,162,75,0.28)); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .b-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--paper);
  font-weight: 400;
}
.brand-word .b-sub {
  font-size: 0.56rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.32rem;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-grain { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; z-index: 1; mix-blend-mode: overlay; }
.hero-silhouette {
  position: absolute;
  right: -6%;
  bottom: 8%;
  width: min(64vw, 880px);
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.hero-vignette { position: absolute; inset: 0; z-index: 2; background:
  radial-gradient(80% 60% at 50% 40%, transparent 40%, rgba(6,6,8,0.5) 100%); pointer-events: none; }
.hero .container { position: relative; z-index: 3; }
.hero-inner { max-width: 46rem; }
.hero-eyebrow { margin-bottom: 1.6rem; }
.hero h1 { font-size: var(--fs-hero); line-height: 0.98; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; }
.hero-sub { margin-top: 1.7rem; max-width: 36rem; }
.hero-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust {
  margin-top: 3.2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hair);
}
.hero-trust .t-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-trust .t-num { font-family: var(--font-display); font-size: 1.7rem; color: var(--paper); line-height: 1; }
.hero-trust .t-num .u { color: var(--gold); }
.hero-trust .t-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-faint); }
.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--paper-faint);
}
.scroll-hint .bar { width: 1px; height: 2.4rem; background: linear-gradient(var(--gold), transparent); }

/* -------------------------------------------------------------------------
   Before / after reveal
   ------------------------------------------------------------------------- */
.reveal-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--hair-2);
  box-shadow: var(--shadow-2);
  user-select: none;
  touch-action: pan-y;
}
.reveal-layer { position: absolute; inset: 0; overflow: hidden; }
.reveal-after  { z-index: 1; }
.reveal-before { z-index: 2; clip-path: inset(0 48% 0 0); }
.reveal-wrap.is-dragging .reveal-before { transition: none; }
.reveal-tag {
  position: absolute; top: 1rem; z-index: 4;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  padding: 0.4rem 0.75rem; border-radius: 999px; backdrop-filter: blur(6px);
  background: rgba(9,9,11,0.55); border: 1px solid var(--hair-2);
}
.reveal-tag.is-before { left: 1rem; color: var(--paper-dim); }
.reveal-tag.is-after  { right: 1rem; color: var(--gold-hi); }
.reveal-handle {
  position: absolute; top: 0; z-index: 5; left: 50%;
  width: 44px; height: 100%; transform: translateX(-50%);
  cursor: ew-resize; display: grid; place-items: center;
}
.reveal-handle::before { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: var(--gold); box-shadow: 0 0 18px var(--gold-glow); }
.reveal-knob {
  position: relative; width: 44px; height: 44px; border-radius: 999px;
  background: var(--grad-gold); display: grid; place-items: center;
  color: #16110a; box-shadow: 0 8px 24px -6px var(--gold-glow); border: 1px solid rgba(255,255,255,0.25);
}
.reveal-knob svg { width: 1.5rem; height: 1.5rem; }

/* -------------------------------------------------------------------------
   Services
   ------------------------------------------------------------------------- */
.svc-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr)); }
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  min-height: 100%;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad-gold-h); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--hair-gold); box-shadow: var(--shadow-1); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--paper-faint); font-variant-numeric: tabular-nums; }
.svc-icon {
  width: 3rem; height: 3rem; display: grid; place-items: center;
  border: 1px solid var(--hair-gold); border-radius: 999px; color: var(--gold);
}
.svc-icon svg { width: 1.5rem; height: 1.5rem; }
.svc-card h3 { font-size: var(--fs-title); color: var(--paper); }
.svc-card p { font-size: var(--fs-small); color: var(--paper-dim); }
.svc-card .link-arrow { margin-top: auto; }

/* -------------------------------------------------------------------------
   Feature split
   ------------------------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr 1fr; }
.split.is-flip .split-media { order: -1; }
.split-media { position: relative; }
.split-body h2 { font-size: var(--fs-h2); margin-bottom: 1.2rem; }
.feature-list { list-style: none; padding: 0; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .fi {
  flex: none; width: 1.6rem; height: 1.6rem; margin-top: 0.15rem;
  display: grid; place-items: center; color: var(--gold);
  border: 1px solid var(--hair-gold); border-radius: 999px;
}
.feature-list .fi svg { width: 0.9rem; height: 0.9rem; }
.feature-list strong { color: var(--paper); font-weight: 600; }
.feature-list span { display: block; color: var(--paper-dim); font-size: var(--fs-small); }

.frame {
  position: relative; border: 1px solid var(--hair-2); border-radius: var(--r-sm);
  overflow: hidden; background: var(--ink-2); aspect-ratio: 4 / 3;
}
.frame.is-tall { aspect-ratio: 3 / 4; }
.frame-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.1rem 1.25rem; display: flex; justify-content: space-between; align-items: end;
  background: linear-gradient(180deg, transparent, rgba(6,6,8,0.82));
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-dim);
}
.frame-caption .gold { color: var(--gold); }

/* -------------------------------------------------------------------------
   Stat band
   ------------------------------------------------------------------------- */
.stat-band { border-block: 1px solid var(--hair); background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 2vw, 1.75rem);
  text-align: center;
  border-left: 1px solid var(--hair);
}
.stat:first-child { border-left: 0; }
.stat .s-num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--paper); }
.stat .s-num .u { color: var(--gold); }
.stat .s-label { margin-top: 0.7rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-faint); }

/* -------------------------------------------------------------------------
   Process steps
   ------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); gap: 0; }
.step {
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border: 1px solid var(--hair);
  border-inline-start: 0;
  position: relative;
}
.steps .step:first-child { border-inline-start: 1px solid var(--hair); }
.step-n {
  font-family: var(--font-display); font-size: 2.4rem; color: transparent;
  -webkit-text-stroke: 1px var(--hair-gold); line-height: 1; display: block; margin-bottom: 0.9rem;
}
.step h3 { font-size: var(--fs-title); margin-bottom: 0.5rem; color: var(--paper); }
.step p { font-size: var(--fs-small); color: var(--paper-dim); }

/* -------------------------------------------------------------------------
   Dealer / B2B band (distinct trade treatment)
   ------------------------------------------------------------------------- */
.trade {
  position: relative;
  background:
    radial-gradient(90% 120% at 90% 10%, rgba(201,162,75,0.10), transparent 55%),
    linear-gradient(180deg, #0d0d11, #0a0a0c);
  border-block: 1px solid var(--hair-gold);
  overflow: hidden;
}
.trade::before {
  content: "TRADE";
  position: absolute; top: -2.5rem; right: -1rem; z-index: 0;
  font-family: var(--font-display); font-size: clamp(6rem, 18vw, 16rem);
  color: rgba(201,162,75,0.05); letter-spacing: 0.1em; pointer-events: none;
}
.trade .container { position: relative; z-index: 1; }
.trade-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.trade-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--hair-gold); border-radius: 999px; padding: 0.45rem 0.95rem; margin-bottom: 1.5rem;
}
.trade h2 { font-size: var(--fs-h2); margin-bottom: 1.2rem; }
.trade-points { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.6rem; }
.trade-points li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-small); color: var(--paper-dim); }
.trade-points .fi { flex: none; color: var(--gold); margin-top: 0.1rem; }
.trade-points .fi svg { width: 1.05rem; height: 1.05rem; }
.trade-panel {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--hair-2); border-radius: var(--r-sm);
}
.trade-panel h3 { font-size: var(--fs-title); margin-bottom: 0.4rem; color: var(--paper); }
.trade-panel .tp-list { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.9rem; }
.trade-panel .tp-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--fs-small); padding-bottom: 0.9rem; border-bottom: 1px solid var(--hair); }
.trade-panel .tp-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.trade-panel .tp-list .v { color: var(--gold); font-weight: 600; }

/* -------------------------------------------------------------------------
   Gallery
   ------------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); gap: clamp(0.8rem, 1.5vw, 1.2rem); }
.tile {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--hair); background: var(--ink-2);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tile.is-wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.tile:hover { transform: translateY(-3px); border-color: var(--hair-gold); }
.tile-art { position: absolute; inset: 0; }
.tile-meta {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(6,6,8,0.85));
  display: flex; justify-content: space-between; align-items: end; gap: 0.5rem;
}
.tile-meta .m-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--paper); }
.tile-meta .m-tag { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

/* -------------------------------------------------------------------------
   Testimonial
   ------------------------------------------------------------------------- */
.quote-band { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.quote {
  max-width: 52rem; margin-inline: auto; text-align: center;
}
.quote .q-mark { font-family: var(--font-display); font-size: 5rem; line-height: 0.6; color: var(--gold); opacity: 0.5; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem); line-height: 1.3; color: var(--paper); text-wrap: balance; margin: 1rem 0 1.8rem; }
.quote figcaption { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-faint); }
.quote figcaption .gold { color: var(--gold); }

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.cta {
  position: relative; overflow: hidden;
  background: radial-gradient(90% 140% at 50% 0%, rgba(201,162,75,0.14), transparent 60%), var(--ink-2);
  border-top: 1px solid var(--hair-gold);
  text-align: center;
}
.cta h2 { font-size: clamp(2.1rem, 1rem + 4vw, 4rem); margin-bottom: 1.2rem; }
.cta p { max-width: 40rem; margin-inline: auto; }
.cta-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* -------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.is-span { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-faint); }
.field input, .field select, .field textarea {
  background: var(--ink-2); border: 1px solid var(--hair-2); border-radius: var(--r-xs);
  padding: 0.85rem 1rem; color: var(--paper); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--paper-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--ink-3); }
.field textarea { resize: vertical; min-height: 7rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--hair); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand p { color: var(--paper-dim); font-size: var(--fs-small); margin-top: 1.2rem; max-width: 26ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: var(--fs-small); color: var(--paper-dim); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-contact .fc-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: var(--fs-small); color: var(--paper-dim); }
.footer-contact .fc-item svg { width: 1rem; height: 1rem; color: var(--gold); flex: none; margin-top: 0.25rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2.5rem, 4vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--hair); }
.footer-bottom p { font-size: 0.78rem; color: var(--paper-faint); }
.footer-bottom .disclaimer { max-width: 60ch; }

/* -------------------------------------------------------------------------
   Page hero (interior pages)
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative; padding-top: 9.5rem; padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: radial-gradient(100% 90% at 80% 0%, rgba(201,162,75,0.10), transparent 55%), linear-gradient(180deg, #0e0e12, var(--ink));
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 1.3rem; }
.page-hero h1 { font-size: clamp(2.6rem, 1.4rem + 4.6vw, 4.8rem); line-height: 1; letter-spacing: -0.02em; }
.page-hero p { margin-top: 1.5rem; max-width: 46rem; }
.crumbs { display: flex; gap: 0.6rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--gold); }

/* -------------------------------------------------------------------------
   Reveal-on-scroll motion
   ------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* -------------------------------------------------------------------------
   Utilities
   ------------------------------------------------------------------------- */
.ic { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: var(--measure); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.hide { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--hair-gold); border-radius: 999px; padding: 0.4rem 0.9rem;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav-links {
    display: flex; position: absolute; inset: 4.75rem 0 auto 0; flex-direction: column;
    align-items: flex-start; gap: 0; padding: 1rem var(--pad-x) 1.5rem;
    background: rgba(9,9,11,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--hair);
  }
  .site-header.is-open .nav-links li { width: 100%; }
  .site-header.is-open .nav-links a { display: block; width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--hair); letter-spacing: 0.12em; }
  .split { grid-template-columns: 1fr; }
  .split.is-flip .split-media { order: 0; }
  .trade-grid { grid-template-columns: 1fr; }
  .trade-points { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .tile.is-wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--hair); }
  .stat:first-child { border-top: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.2rem 1.6rem; }
  .brand-word .b-name { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   Hero layout + refinish panels (added)
   ------------------------------------------------------------------------- */
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2rem, 5vw, 4.25rem); align-items: center; }
.hero-visual { position: relative; }
.hero-inner { max-width: none; }
.reveal-caption { margin-top: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-faint); }
.reveal-caption .rc-hint { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); }
.reveal-caption .rc-hint svg { width: 1.05rem; height: 1.05rem; }

/* Painted-panel visualizations (photo-free, meaningful before/after) */
.panel-after {
  background:
    linear-gradient(115deg, rgba(255,255,255,0) 34%, rgba(240,222,170,0.5) 46%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 60%),
    radial-gradient(120% 140% at 25% 12%, rgba(230,205,134,0.18), transparent 45%),
    linear-gradient(160deg, #23242c 0%, #14151b 42%, #0c0d12 100%);
}
.panel-after::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(255,255,255,0.10), transparent 30%);
  mix-blend-mode: screen;
}
.panel-before {
  background:
    repeating-linear-gradient(58deg, rgba(0,0,0,0.16) 0 2px, rgba(255,255,255,0.015) 2px 5px),
    radial-gradient(90% 120% at 70% 30%, rgba(90,86,78,0.35), transparent 55%),
    linear-gradient(160deg, #34322e 0%, #26241f 45%, #1b1a17 100%);
  filter: saturate(0.6);
}
.panel-before::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(0,0,0,0.28) 0 6px, transparent 7px),
    radial-gradient(circle at 62% 44%, rgba(0,0,0,0.22) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 70%, rgba(0,0,0,0.2) 0 5px, transparent 6px);
  opacity: 0.7;
}
.panel-label {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 3;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--paper);
}
.panel-after .panel-label .pl-sub,
.panel-before .panel-label .pl-sub { display: block; font-family: var(--font-sans); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.15rem; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-block: 7.5rem 3.5rem; }
  .hero-visual { order: 2; }
}
