/* ============================================================================
   Coastal Lane — "Coastal Noir" theme
   Editorial luxury construction site, scroll-native motion.
   Tokens live in :root — change those to re-skin everything.
   ============================================================================ */

:root {
  /* ---------- Palette: Coastal Noir ---------- */
  --bg-dark:      #0E1419;   /* deep harbor navy — primary dark      */
  --bg-darker:    #080C10;   /* near-black for max-contrast wells    */
  --bg-light:     #F5F1E8;   /* warm bone — primary light            */
  --bg-cream:     #ECE6D5;   /* deeper cream alt section             */
  --bg-surface:   #FBF8F1;   /* card / raised                        */

  --ink:          #14171C;
  --ink-muted:    #5C5F66;
  --ink-dim:      #8A8B8F;
  --ink-on-dark:  #ECE6D5;
  --ink-on-dark-muted: rgba(236, 230, 213, 0.62);
  --ink-on-dark-dim:   rgba(236, 230, 213, 0.42);

  --brass:        #B8956A;   /* brushed brass accent                 */
  --brass-deep:   #8B6E48;
  --brass-soft:   rgba(184, 149, 106, 0.16);

  --terracotta:   #C8552B;   /* vivid CTA (used sparingly)           */
  --terracotta-deep: #9D3E1B;

  --line:         rgba(20, 23, 28, 0.10);
  --line-soft:    rgba(20, 23, 28, 0.06);
  --line-on-dark: rgba(236, 230, 213, 0.10);
  --line-on-dark-strong: rgba(236, 230, 213, 0.22);

  /* ---------- Typography ---------- */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* ---------- Spacing ---------- */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-6: 1.5rem;   --s-8: 2rem;     --s-10: 2.5rem;  --s-12: 3rem;
  --s-16: 4rem;    --s-20: 5rem;    --s-24: 6rem;    --s-32: 8rem;
  --s-40: 10rem;   --s-48: 12rem;

  /* ---------- Radius ---------- */
  --r-sm: 4px;  --r-md: 10px;  --r-lg: 18px;  --r-xl: 28px;  --r-pill: 999px;

  /* ---------- Motion ---------- */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --d-fast: 220ms;  --d-med: 480ms;  --d-slow: 900ms;

  /* ---------- Layout ---------- */
  --container: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
}

/* ============================================================================
   Reset & base
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  /* Lenis handles smooth scroll. Keep this off so it doesn't fight Lenis. */
}
html.lenis { height: auto; }
html.lenis body { overflow: hidden; } /* Lenis manages scroll */

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: inherit;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--brass); color: var(--bg-darker); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(20,23,28,0.18); border-radius: 999px; }

/* ============================================================================
   Typography display sizes — editorial scale
   ============================================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9.5vw, 9.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.lede {
  font-size: clamp(1.075rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 56ch;
}

/* Italic-soft = serif italic in brass */
.italic-soft {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
  transform-origin: left;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* On-dark variants */
.on-dark { color: var(--ink-on-dark); }
.on-dark .lede { color: var(--ink-on-dark-muted); }
.on-dark .mono { color: var(--ink-on-dark-dim); }

/* ============================================================================
   Layout primitives
   ============================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.section-lg { padding: clamp(6rem, 14vw, 12rem) 0; }
.section-dark {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--ink-on-dark);
}
.section-cream { background: var(--bg-cream); }

/* Section number/label (top-left of sections) */
.section-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: var(--s-12);
}
.section-tag .num {
  color: var(--brass);
  font-feature-settings: 'tnum';
}
.section-tag .bar {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 200px;
}
.section-dark .section-tag { color: var(--ink-on-dark-dim); }
.section-dark .section-tag .bar { background: var(--line-on-dark); }

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--d-fast) var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn .icon {
  width: 14px; height: 14px;
  transition: transform var(--d-fast) var(--ease-out);
}
.btn:hover .icon { transform: translateX(4px); }

.btn-terracotta {
  background: var(--terracotta);
  color: #fff;
}
.btn-terracotta:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(200, 85, 43, 0.55);
}

.btn-ink {
  background: var(--ink);
  color: var(--bg-light);
}
.btn-ink:hover {
  background: var(--bg-darker);
  transform: translateY(-1px);
}

.btn-bone {
  background: var(--bg-light);
  color: var(--ink);
}
.btn-bone:hover { background: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg-light);
  border-color: var(--ink);
}
.section-dark .btn-ghost {
  border-color: var(--line-on-dark-strong);
  color: var(--ink-on-dark);
}
.section-dark .btn-ghost:hover {
  background: var(--ink-on-dark);
  color: var(--ink);
  border-color: var(--ink-on-dark);
}

/* Magnetic button — wrapper handles transform via JS */
.magnetic { display: inline-block; will-change: transform; }
.magnetic > .magnetic-inner { will-change: transform; display: inline-block; }

/* ============================================================================
   Loader / intro
   ============================================================================ */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-darker);
  color: var(--ink-on-dark);
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  pointer-events: none;
}
.intro-loader .inner {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.intro-loader .label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-on-dark-dim);
}
.intro-loader .count {
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 14rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink-on-dark);
  font-feature-settings: 'tnum';
  font-variation-settings: 'opsz' 144;
}
.intro-loader .count .pct {
  font-family: var(--font-body);
  font-size: 0.25em;
  vertical-align: top;
  margin-left: 0.2em;
  color: var(--brass);
  letter-spacing: 0.12em;
}
.intro-loader.is-done {
  pointer-events: none;
}

/* ============================================================================
   Custom cursor
   ============================================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 300;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #ECE6D5;
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid #ECE6D5;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.2s, opacity 0.2s;
}
.cursor-dot.is-hover { width: 4px; height: 4px; }
.cursor-ring.is-hover { width: 64px; height: 64px; border-color: var(--brass); }
.cursor-dot.is-hidden, .cursor-ring.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Hide native cursor on interactive elements when custom cursor active */
html.has-custom-cursor, html.has-custom-cursor * { cursor: none !important; }

/* ============================================================================
   Section indicator dots (right-side)
   ============================================================================ */
.section-indicator {
  position: fixed;
  top: 50%;
  right: clamp(1rem, 2.5vw, 2rem);
  transform: translateY(-50%);
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 1.1rem;
  pointer-events: auto;
}
@media (min-width: 1024px) { .section-indicator { display: flex; } }
.section-indicator a {
  position: relative;
  width: 22px; height: 22px;
  display: grid; place-items: center;
}
.section-indicator a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-dim);
  transition: all var(--d-fast) var(--ease-out);
}
.section-indicator a:hover::before { background: var(--brass); transform: scale(1.4); }
.section-indicator a.is-active::before {
  background: var(--brass);
  transform: scale(1.6);
  box-shadow: 0 0 0 5px rgba(184, 149, 106, 0.18);
}
.section-indicator a .label {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0;
  transition: opacity var(--d-fast) var(--ease-out);
}
.section-indicator a:hover .label,
.section-indicator a.is-active .label { opacity: 1; }
/* Dark-section context */
.section-indicator.is-on-dark a::before { background: var(--ink-on-dark-dim); }
.section-indicator.is-on-dark a.is-active::before {
  background: var(--brass);
  box-shadow: 0 0 0 5px rgba(184, 149, 106, 0.20);
}
.section-indicator.is-on-dark a .label { color: var(--ink-on-dark-dim); }

/* ============================================================================
   Hero (full-bleed, no header)
   ============================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--bg-darker);
  color: var(--ink-on-dark);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,16,0.55) 0%, rgba(8,12,16,0.20) 35%, rgba(8,12,16,0.85) 100%),
    linear-gradient(90deg, rgba(8,12,16,0.55) 0%, rgba(8,12,16,0) 70%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.4fr 1fr; align-items: end; }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.hero-headline h1 {
  color: #fff;
  font-weight: 300;
}
.hero-headline h1 .row { display: block; overflow: hidden; }
.hero-headline h1 .row .word,
.hero-headline h1 .row > span { display: inline-block; }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
.hero-meta .lede { color: rgba(236, 230, 213, 0.82); max-width: 38ch; }
.hero-meta .actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero .eyebrow { color: var(--brass); }
.hero .eyebrow::before { background: var(--brass); }

/* Hero corner badges */
.hero-corner {
  position: absolute;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 230, 213, 0.55);
}
.hero-corner.tr { top: clamp(1.5rem, 3vw, 2.5rem); right: var(--gutter); text-align: right; }
.hero-corner.tl { top: clamp(1.5rem, 3vw, 2.5rem); left: var(--gutter); }

.hero-scroll-cue {
  position: absolute;
  bottom: clamp(1rem, 2vw, 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(236, 230, 213, 0.7);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(236, 230, 213, 0.7));
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass);
  animation: scroll-line 1.8s var(--ease-in-out) infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ============================================================================
   Marquee strip
   ============================================================================ */
.marquee {
  position: relative;
  background: var(--bg-light);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
  overflow: hidden;
}
.marquee.is-dark {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-color: var(--line-on-dark);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .item {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track .item .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
}
.marquee-track .item em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================================
   Manifesto / about block
   ============================================================================ */
.manifesto {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .manifesto { grid-template-columns: 5fr 6fr; } }

.manifesto-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-cream);
}
.manifesto-image img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.manifesto-image .img-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--bg-light);
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-body { padding-top: clamp(0.5rem, 2vw, 2rem); }
.manifesto-body h2 { margin-top: 1.25rem; }
.manifesto-body p { margin-top: 1.5rem; max-width: 56ch; }
.manifesto-body p.muted { color: var(--ink-muted); }
.manifesto-body .actions { margin-top: 2.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================================
   Counters band
   ============================================================================ */
.counters {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .counters { grid-template-columns: repeat(3, 1fr); } }
.counters .cell {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.counters .cell:last-child { border-right: 0; }
@media (max-width: 699px) {
  .counters .cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .counters .cell:last-child { border-bottom: 0; }
}
.counters .num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.counters .num .suffix {
  color: var(--brass);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.counters .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

/* ============================================================================
   Services — editorial dark list
   ============================================================================ */
.services-head {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: 1fr;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 900px) {
  .services-head { grid-template-columns: 1fr 1fr; align-items: end; }
}
.services-head h2 { color: var(--ink-on-dark); }

.service-list { border-top: 1px solid var(--line-on-dark); }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.5rem, 3.5vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line-on-dark);
  transition: padding-left var(--d-med) var(--ease-out);
  isolation: isolate;
}
.service-row:hover { padding-left: clamp(0.5rem, 2vw, 1.5rem); }
.service-row .index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ink-on-dark-dim);
  font-feature-settings: 'tnum';
  width: 3em;
}
.service-row .name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--ink-on-dark);
  transition: color var(--d-fast) var(--ease-out), transform var(--d-med) var(--ease-out);
}
.service-row:hover .name {
  color: var(--brass);
  transform: translateX(8px);
}
.service-row .desc {
  display: none;
  color: var(--ink-on-dark-muted);
  font-size: 0.95rem;
  max-width: 38ch;
}
@media (min-width: 1024px) { .service-row .desc { display: block; } }
.service-row .arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark-strong);
  display: grid; place-items: center;
  color: var(--ink-on-dark);
  transition: all var(--d-fast) var(--ease-out);
}
.service-row .arrow svg { width: 14px; height: 14px; transition: transform var(--d-fast) var(--ease-out); }
.service-row:hover .arrow {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--bg-darker);
}
.service-row:hover .arrow svg { transform: translateX(2px) translateY(-2px); }

/* Hover preview thumbnail (desktop only) */
.service-preview {
  position: fixed;
  pointer-events: none;
  width: 320px;
  aspect-ratio: 4/5;
  z-index: 70;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 0.25s var(--ease-out), transform 0.4s var(--ease-out);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.service-preview img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.service-preview img.is-active { opacity: 1; }
.service-preview.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (max-width: 1023px), (hover: none) { .service-preview { display: none; } }

/* ============================================================================
   Process — pinned horizontal scroll
   ============================================================================ */
.process {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.process-head {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}
.process-pin {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.process-track {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  padding-left: var(--gutter);
  padding-right: 50vw;
  will-change: transform;
}
.process-step {
  flex: 0 0 auto;
  width: min(78vw, 520px);
  background: var(--bg-light);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  aspect-ratio: 5/6;
  justify-content: space-between;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--brass);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  font-feature-settings: 'tnum';
}
.process-step h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.process-step p { color: var(--ink-muted); font-size: 0.97rem; max-width: 38ch; }
.process-step .step-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Mobile fallback: stack vertically without pin */
@media (max-width: 899px) {
  .process-pin { height: auto; display: block; }
  .process-track {
    flex-direction: column;
    padding: 0 var(--gutter) clamp(3rem, 7vw, 5rem);
    transform: none !important;
    gap: 1.5rem;
  }
  .process-step { width: 100%; aspect-ratio: auto; }
}

/* ============================================================================
   Selected work / gallery preview
   ============================================================================ */
.selected-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.selected-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
@media (min-width: 700px) { .selected-grid { grid-template-columns: repeat(12, 1fr); } }

.selected-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  cursor: pointer;
  isolation: isolate;
}
.selected-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out);
  will-change: transform;
}
.selected-item:hover img { transform: scale(1.04); }
.selected-item .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  color: #fff;
  background: linear-gradient(to top, rgba(8,12,16,0.85), rgba(8,12,16,0) 80%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--d-med) var(--ease-out);
}
.selected-item:hover .meta { transform: translateY(0); opacity: 1; }
.selected-item .meta h4 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #fff;
}
.selected-item .meta .loc {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* 12-col asymmetric grid */
@media (min-width: 700px) {
  .selected-item.lg { grid-column: span 7; aspect-ratio: 4/3; }
  .selected-item.md { grid-column: span 5; aspect-ratio: 4/5; }
  .selected-item.sm { grid-column: span 4; aspect-ratio: 1/1; }
  .selected-item.tall { grid-column: span 4; aspect-ratio: 3/4; }
  .selected-item.wide { grid-column: span 8; aspect-ratio: 16/9; }
}
@media (max-width: 699px) {
  .selected-item { aspect-ratio: 4/5; }
}

/* ============================================================================
   CTA close
   ============================================================================ */
.cta-close {
  text-align: center;
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.cta-close h2 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  max-width: 14ch;
  margin: 0 auto;
  font-weight: 300;
}
.cta-close .lede {
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  color: var(--ink-on-dark-muted);
  text-align: center;
  max-width: 48ch;
}
.cta-close .actions {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
  background: var(--bg-darker);
  color: var(--ink-on-dark-muted);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line-on-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-on-dark);
}
@media (min-width: 800px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand .mark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink-on-dark);
  letter-spacing: -0.02em;
}
.footer-brand .mark em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.footer-brand p {
  max-width: 38ch;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-on-dark);
  margin-bottom: 1.25rem;
}
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a {
  font-size: 0.95rem;
  color: var(--ink-on-dark-muted);
  transition: color var(--d-fast) var(--ease-out);
}
.footer ul a:hover { color: var(--brass); }

.footer-bottom {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-on-dark-dim);
}

/* ============================================================================
   Reveal classes (initial state — JS adds final state)
   ============================================================================ */
.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--d-slow) var(--ease-out), transform var(--d-slow) var(--ease-out);
}
.reveal.in,
[data-reveal].in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* Word/char split lines (set by JS) */
.split-line { display: block; overflow: hidden; }
.split-line .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform var(--d-slow) var(--ease-out);
  will-change: transform;
}
.split-line .word .space { white-space: pre; }
.split-line.in .word { transform: translateY(0); }
.split-line.in .word:nth-child(2)  { transition-delay: 40ms; }
.split-line.in .word:nth-child(3)  { transition-delay: 80ms; }
.split-line.in .word:nth-child(4)  { transition-delay: 120ms; }
.split-line.in .word:nth-child(5)  { transition-delay: 160ms; }
.split-line.in .word:nth-child(6)  { transition-delay: 200ms; }
.split-line.in .word:nth-child(7)  { transition-delay: 240ms; }
.split-line.in .word:nth-child(8)  { transition-delay: 280ms; }

/* Reveal scale / slide variants */
[data-reveal="image"] { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out); }
[data-reveal="image"].in { clip-path: inset(0 0 0 0); }

/* ============================================================================
   Lightbox (kept; styled to fit theme)
   ============================================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 16, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 250;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(236, 230, 213, 0.12);
  color: var(--ink-on-dark);
  display: grid; place-items: center;
  border: 1px solid var(--line-on-dark);
  transition: background var(--d-fast) var(--ease-out);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(236, 230, 213, 0.22); }
.lightbox-close { top: clamp(1rem, 2vw, 1.5rem); right: clamp(1rem, 2vw, 1.5rem); }
.lightbox-nav.prev { left: clamp(1rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: clamp(1rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }

/* ============================================================================
   Utility helpers
   ============================================================================ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-prose { max-width: 640px; }
.muted { color: var(--ink-muted); }
.brass { color: var(--brass); }
.terra { color: var(--terracotta); }
.divider { height: 1px; background: var(--line); margin: 4rem 0; }
.divider.on-dark { background: var(--line-on-dark); }
.spacer-sm { height: var(--s-4); }
.spacer    { height: var(--s-8); }
.spacer-lg { height: var(--s-16); }

/* ============================================================================
   Sub-page primitives (about / services / gallery / contact / service detail)
   ============================================================================ */

/* ------- Page header (slimmer hero used on sub-pages) ------- */
.page-header {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(2.5rem, 5vw, 5rem);
  background: var(--bg-light);
  overflow: hidden;
}
.page-header.is-dark {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
}
.page-header.is-dark h1, .page-header.is-dark h2 { color: var(--ink-on-dark); }
.page-header.is-cream { background: var(--bg-cream); }

.page-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  transition: color var(--d-fast) var(--ease-out), gap var(--d-fast) var(--ease-out);
}
.page-header .back-link:hover { color: var(--brass); gap: 0.75rem; }
.page-header.is-dark .back-link { color: var(--ink-on-dark-muted); }
.page-header.is-dark .back-link:hover { color: var(--brass); }

.page-header h1 { margin-top: clamp(0.75rem, 1.5vw, 1.25rem); }
.page-header .lede {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 56ch;
}
.page-header.is-dark .lede { color: var(--ink-on-dark-muted); }

/* Optional decorative number/coordinates in page-header */
.page-header .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
.page-header.is-dark .meta-row { border-top-color: var(--line-on-dark); }
.page-header .meta-row .item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.page-header .meta-row .item .k {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.page-header.is-dark .meta-row .item .k { color: var(--ink-on-dark-dim); }
.page-header .meta-row .item .v {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  letter-spacing: -0.015em;
}

/* ------- Content split (image + body, used by service detail and about) ------- */
.content-split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .content-split { grid-template-columns: 5fr 6fr; } }
.content-split.reverse > :first-child { order: 2; }
.content-split.even { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .content-split.even { grid-template-columns: 1fr 1fr; }
  .content-split.wide-text { grid-template-columns: 6fr 5fr; }
}

.content-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  aspect-ratio: 4/5;
}
.content-image.aspect-square { aspect-ratio: 1/1; }
.content-image.aspect-wide   { aspect-ratio: 16/10; }
.content-image.aspect-tall   { aspect-ratio: 3/4; }
.content-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out);
  will-change: transform;
}
.content-image:hover img { transform: scale(1.03); }
.content-image .img-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--bg-light);
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-body { padding-top: clamp(0.5rem, 2vw, 2rem); }
.content-body > * + * { margin-top: 1.5rem; }
.content-body h2 { margin-top: 1.25rem; }
.content-body h3 {
  margin-top: 2.5rem;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-variation-settings: normal;
}
.content-body p { max-width: 60ch; color: var(--ink); line-height: 1.65; }
.content-body p.muted { color: var(--ink-muted); }
.content-body .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ------- Feature list (bulleted with brass marker) ------- */
.feature-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--brass);
  margin-top: 0.78em;
}
.section-dark .feature-list,
.section-dark .feature-list li { border-color: var(--line-on-dark); }
.on-dark .feature-list, .on-dark .feature-list li { border-color: var(--line-on-dark); }

/* ------- Feature grid (replaces old .steps) ------- */
.feature-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid.col-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .feature-grid.col-4 { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  background: var(--bg-light);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--d-fast) var(--ease-out), border-color var(--d-fast) var(--ease-out);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--brass); }
.feature-card .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 0.85;
  color: var(--brass);
  letter-spacing: -0.04em;
  font-feature-settings: 'tnum';
}
.feature-card .num.glyph {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
}
.feature-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.018em;
  text-transform: none;
  color: var(--ink);
  font-variation-settings: 'opsz' 144;
}
.feature-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.section-dark .feature-card {
  background: rgba(236, 230, 213, 0.04);
  border-color: var(--line-on-dark);
}
.section-dark .feature-card h3 { color: var(--ink-on-dark); }
.section-dark .feature-card p { color: var(--ink-on-dark-muted); }
.section-dark .feature-card:hover { background: rgba(236, 230, 213, 0.06); border-color: var(--brass); }

/* Card link variant (whole card clickable, e.g. services overview) */
a.feature-card {
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
a.feature-card .more {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--d-fast) var(--ease-out);
}
a.feature-card:hover .more { gap: 0.7rem; }

/* ------- Contact methods (phone / email / address blocks) ------- */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-method {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-light);
  transition: border-color var(--d-fast) var(--ease-out), transform var(--d-fast) var(--ease-out);
  text-decoration: none;
  color: inherit;
}
.contact-method:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.contact-method .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brass-soft);
  color: var(--brass);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-method .ic svg { width: 20px; height: 20px; }
.contact-method .body { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-method .label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.contact-method .val {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: -0.018em;
  font-variation-settings: 'opsz' 144;
}
.contact-method .note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

/* ------- Form (replaces old .form styles) ------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-light);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.form h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  margin-bottom: 0.25rem;
  font-variation-settings: 'opsz' 144;
}
.form .form-intro {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color var(--d-fast) var(--ease-out), background var(--d-fast) var(--ease-out);
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-dim); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--brass);
  background: var(--bg-surface);
}
.form textarea { resize: vertical; min-height: 130px; }
.form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23B8956A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.5rem;
}
.form .alert {
  padding: 1rem 1.1rem;
  border-radius: 2px;
  font-size: 0.92rem;
  display: none;
  font-family: var(--font-body);
}
.form .alert.success {
  background: rgba(184, 149, 106, 0.10);
  border: 1px solid var(--brass);
  color: var(--brass-deep);
}
.form .alert.error {
  background: rgba(200, 85, 43, 0.10);
  border: 1px solid var(--terracotta);
  color: var(--terracotta-deep);
}
.form .alert.show { display: block; }
.form button[type="submit"] {
  margin-top: 0.5rem;
  align-self: stretch;
  justify-content: center;
}

/* ------- FAQ rows (editorial accordion-style stack) ------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) { .faq-item { grid-template-columns: 1fr 1.5fr; gap: clamp(2rem, 4vw, 4rem); } }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  font-variation-settings: 'opsz' 144;
}
.faq-item .index {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.faq-item p {
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 56ch;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, [data-reveal], .split-line .word { opacity: 1; transform: none; clip-path: none; }
  .marquee-track { animation: none; }
  .hero-scroll-cue .line::after { animation: none; }
}
