/* ═══════════════════════════════════════════════════════════
   DESIGN LANGUAGE #7 — INDUSTRIAL EDGE
   Dark hero → warm light body → dark accents → dark footer
   For construction, trades, contractors, remodelers.
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:         #FFFFFF;
  --bg-alt:     #F5F6F8;
  --bg-card:    #FFFFFF;
  --bg-dark:    #21405d;
  --bg-deep:    #21405d;
  --fg:         #2c2c2c;
  --fg-muted:   rgba(44,44,44,.55);
  --fg-light:   rgba(255,255,255,.85);
  --fg-light-muted: rgba(255,255,255,.55);
  --primary:    #21405d;
  --primary-dim: rgba(33,64,93,0.12);
  --accent:     #3f93b8;
  --accent-dim: rgba(63,147,184,0.15);
  --border:     rgba(33,64,93,0.08);
  --border-light: rgba(33,64,93,0.12);
  --serif:  'Lato', Georgia, serif;
  --sans:   'Open Sans', -apple-system, sans-serif;
  --mono:   'JetBrains Mono', 'SF Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0, 1);
  --radius: 4px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--accent-dim); color: var(--fg); }

/* ── Typography — light weight, editorial ────────────────── */
.t-massive {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.t-massive em { font-style: italic; color: var(--accent); }

.t-display {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.t-display em { font-style: italic; color: var(--accent); }

.t-heading {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.t-body {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--fg-muted);
}

.t-body-sans {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-muted);
}

.t-mono {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.t-mono--accent { color: var(--accent); }

/* ── Utility ─────────────────────────────────────────────── */
.mb-xs  { margin-bottom: 0.5rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 1.5rem; }
.mb-lg  { margin-bottom: 2rem; }
.mb-xl  { margin-bottom: 3rem; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}
.divider--center { margin: 2rem auto; }

/* ── Loader (DK-quality: sweep line + text) ──────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__line {
  width: 60px; height: 1px;
  background: rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.loader__line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  animation: loader-sweep 1.8s ease-in-out infinite;
}
@keyframes loader-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.loader__text {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

/* ── Progress Bar ────────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--primary); z-index: 9998;
  transition: width 50ms linear;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  pointer-events: none;
  transition: background .4s var(--ease), padding .3s var(--ease);
}
.nav * { pointer-events: auto; }
.nav.scrolled {
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(12px);
  padding-top: .75rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color .4s;
}
.nav.scrolled .nav__logo { color: var(--fg); }
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__anchor {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.nav__anchor:hover { color: #fff; }
.nav.scrolled .nav__anchor { color: var(--fg-muted); }
.nav.scrolled .nav__anchor:hover { color: var(--fg); }
.nav__cta {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .55rem 1.2rem;
  color: var(--bg-dark) !important;
  background: rgba(255,255,255,.9);
  transition: all .4s var(--ease);
}
.nav__cta:hover { background: #fff; transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 22px; height: 18px;
  position: relative; z-index: 200;
}
.nav__hamburger span {
  display: block; width: 100%; height: 1px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav.scrolled .nav__hamburger span { background: var(--fg); }
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* Mobile Menu */
.nav__mobile {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(10,10,12,.97);
  backdrop-filter: blur(30px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.nav__mobile.open { opacity: 1; visibility: visible; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,.6);
  transition: color .3s;
}
.nav__mobile a:hover { color: #fff; }
.nav__mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: rgba(255,255,255,.4);
  background: none; border: none;
}
.nav__mobile-divider {
  width: 50px; height: 1px;
  background: var(--accent);
}
.nav__mobile-cta {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: .8rem 2rem;
  border: 1px solid rgba(184,149,106,.3);
  display: inline-block;
}

/* ── Hero (dark, image-driven — stays dark always) ───────── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 4rem;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) contrast(1.02);
  transform: scale(1.1);
  transition: transform 8s var(--ease);
}
.hero.loaded .hero-bg img { transform: scale(1); }
/* Dual-direction vignette (DK pattern) */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,12,.85) 0%, rgba(10,10,12,.5) 40%, rgba(10,10,12,.15) 100%),
    linear-gradient(to top, rgba(10,10,12,.8) 0%, rgba(10,10,12,.2) 50%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
}
.hero-tag {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.hero-tag.revealed { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-title .word {
  display: inline;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.hero-title .word.revealed { opacity: 1; }
.hero-line { display: inline; }

.hero-sub {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-light-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease) .4s, transform .8s var(--ease) .4s;
}
.hero-sub.revealed { opacity: 1; transform: translateY(0); }

.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease) .6s, transform .8s var(--ease) .6s;
}
.hero-buttons.revealed { opacity: 1; transform: translateY(0); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 3rem; right: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .3; transform: scaleY(.6); } }

/* ── Buttons (ghost/outline style — DK pattern) ──────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: .9rem 2rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  transition: all .5s var(--ease);
}
.btn-primary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 0;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .4s var(--ease);
}
.btn-secondary:hover { gap: .8rem; }
.btn-secondary svg { width: 16px; height: 16px; }

/* Buttons on light backgrounds */
.section .btn-primary {
  color: var(--fg);
  border-color: var(--border-light);
}
.section .btn-primary:hover {
  border-color: var(--fg);
  background: rgba(42,37,32,.04);
}

/* Solid CTA button (for contact/CTA sections) */
.btn-solid {
  display: inline-flex; align-items: center;
  padding: .9rem 2rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--primary, var(--fg));
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease);
}
.btn-solid:hover { transform: translateY(-1px); }
/* Fill reveal on hover (Sanctuary pattern) */
.btn-solid::after {
  content: '';
  position: absolute; top: 100%; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-dark);
  transition: top .45s var(--ease-smooth);
  z-index: 1;
}
.btn-solid:hover::after { top: 0; }
.btn-solid span { position: relative; z-index: 2; }

/* ── Stats Ticker ────────────────────────────────────────── */
.hero-ticker {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .8s var(--ease) .8s;
}
.hero-ticker.revealed { opacity: 1; }
.ticker-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1;
}
.ticker-label {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .4rem;
}

/* ── Sections (warm light body) ──────────────────────────── */
.section {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-dark);
  color: var(--fg-light);
}
.section--dark .t-display { color: #fff; }
.section--dark .t-body { color: var(--fg-light-muted); }
.section--dark .t-mono { color: var(--fg-light-muted); }
.section__inner { max-width: min(90%, 1100px); margin: 0 auto; }
.section__narrow { max-width: 800px; margin: 0 auto; text-align: center; }

/* ── Story (centered editorial — DK pattern) ─────────────── */
.story-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ── Story Split ─────────────────────────────────────────── */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.story-split__image {
  overflow: hidden;
  border-radius: var(--radius);
}
.story-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.story-split__image:hover img { transform: scale(1.06); }
@media (max-width: 768px) {
  .story-split { grid-template-columns: 1fr; }
}
/* Story split with video */
.story-split__image iframe {
  border-radius: var(--radius);
}
.section--dark .story-split__image {
  border: 1px solid rgba(255,255,255,.1);
}
.section--dark .t-mono--accent { color: var(--accent); }
.section--dark .t-display { color: #fff; }
.section--dark .t-display em { color: var(--accent); }
.section--dark .t-body, .section--dark .t-body-sans { color: rgba(255,255,255,.7); }
.section--dark p { color: rgba(255,255,255,.6); }
.section--dark .divider { background: var(--accent); }
.section--dark .btn-primary { color: #fff; border-color: rgba(255,255,255,.4); }
.section--dark .btn-primary:hover { border-color: #fff; }

/* ── Services Grid (white cards on warm bg) ──────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}
/* Balance orphan cards — if 3-col grid has 1 leftover, span it across 2 cols */
.services-grid > .service-card:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  max-width: calc(33.333% - 1rem);
  justify-self: center;
}
/* If 2 leftover in 3-col, center them */
.services-grid > .service-card:nth-last-child(2):nth-child(3n+1),
.services-grid > .service-card:nth-last-child(1):nth-child(3n+2) {
  justify-self: center;
}
.service-card__num {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: .75rem;
}
.service-card__desc {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Stats Row ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: .5rem;
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── CTA Banner (dark accent section) ────────────────────── */
.cta-banner {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-banner__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.25) contrast(1.05);
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,12,.65);
}
.cta-banner__content {
  position: relative; z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner { background: var(--bg-dark); }
.cta-banner .t-display { color: #fff; }
.cta-banner .t-body, .cta-banner .t-body-sans, .cta-banner p { color: rgba(255,255,255,.7); }
.cta-banner .btn-primary,
.cta-banner a[class*="btn"] {
  color: var(--bg-dark) !important;
  background: #fff !important;
  border: 2px solid #fff !important;
  padding: .9rem 2.5rem;
  font-weight: 600;
  letter-spacing: .12em;
}
.cta-banner .btn-primary:hover,
.cta-banner a[class*="btn"]:hover {
  background: rgba(255,255,255,.9) !important;
  transform: translateY(-2px);
}
.cta-banner .btn-secondary { color: rgba(255,255,255,.6); }

/* ── Testimonial Carousel ────────────────────────────────── */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform .5s var(--ease);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  padding: clamp(1.8rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.3rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .12;
}
.testimonial-stars {
  color: var(--accent);
  font-size: .9rem;
  letter-spacing: .1em;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--fg);
}
.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: .4rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.testimonial-author {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: .03em;
}
.testimonial-role {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 300;
  color: var(--fg-muted);
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.testimonial-dots {
  display: flex;
  gap: .6rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
.testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.15);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--fg);
  transition: all .3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.testimonial-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}
.testimonial-count {
  font-family: var(--sans);
  font-size: .65rem;
  color: var(--fg-muted);
  letter-spacing: .1em;
  text-align: center;
  margin-top: .8rem;
}

/* ── FAQ (sticky-left / accordion-right — DK pattern) ────── */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.faq-split__header {
  position: sticky;
  top: 8rem;
}
.faq { max-width: 100%; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg);
  cursor: pointer;
  gap: 1rem;
  transition: color .3s;
}
.faq__q:hover { color: var(--accent); }
.faq__q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq__item--open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq__item--open .faq__a { max-height: 300px; }
.faq__a-inner {
  padding: 0 0 1.5rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .faq-split { grid-template-columns: 1fr; }
  .faq-split__header { position: static; }
}

/* ── Footer (dark) ───────────────────────────────────────── */
.footer {
  background: #1e1c1a;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: clamp(4rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2rem;
}
.footer__btn {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: .6rem 1.2rem;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-block;
  transition: all .4s var(--ease);
}
.footer__btn:hover { border-color: rgba(255,255,255,.4); color: #fff; }
.footer__col-title {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.2rem;
}
.footer__col a {
  display: block;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
  transition: color .3s;
}
.footer__col a:hover { color: rgba(255,255,255,.9); }
.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.footer__copy {
  font-family: var(--sans);
  font-size: .7rem;
  color: rgba(255,255,255,.4);
}
.footer__phone {
  font-family: var(--sans);
  font-size: .7rem;
  color: rgba(255,255,255,.4);
}
.footer p, .footer span {
  color: rgba(255,255,255,.45);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Scroll Reveal (larger travel, slower — DK pattern) ──── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── Word Reveal (editorial body) ────────────────────────── */
[data-word-reveal] .word { opacity: .12; }
[data-word-reveal] .word.revealed { opacity: 1; }

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 999999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot.visible, .cursor-ring.visible { opacity: 1; }
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(184,149,106,.55);
  transition: opacity .3s, width .35s var(--ease), height .35s var(--ease), border-color .35s;
}
.cursor-ring.hover {
  width: 52px; height: 52px;
  border-color: rgba(184,149,106,.25);
}
.cursor-dot.hover {
  transform: translate(-50%, -50%) scale(2.5);
}
@media (hover: none), (max-width: 1024px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 0 1.5rem 2.5rem; min-height: 600px; }
  .hero-scroll { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-sub { font-size: .85rem; }
  .hero-buttons { flex-direction: column; gap: .8rem; }
}
@media (max-width: 480px) {
  .hero { padding: 0 1rem 2rem; min-height: 500px; }
  .hero-title { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .nav { padding: .8rem 1rem; }
}
