/* ============================================================
   Tennis Court LED — Landing Page
   A service of eneroi LLC. Sport-grade LED + Synapse smart controls.
   Brand: charcoal #2a2a28, gold #C8A951, off-white #faf9f6
   ============================================================ */

:root {
  --bg: #faf9f6;
  --bg-alt: #f3f1ec;
  --ink: #1c1c1a;
  --ink-2: #2a2a28;
  --ink-3: #34342f;
  --ink-soft: #4a4946;
  --ink-mute: #6e6c66;
  --gold: #C8A951;
  --gold-deep: #a88c3d;
  --gold-soft: #e6d49a;
  --rule: #e3dfd4;
  --rule-dark: rgba(255,255,255,0.08);
  --shadow: 0 1px 2px rgba(28,28,26,.05), 0 8px 24px rgba(28,28,26,.08);
  --shadow-lg: 0 4px 12px rgba(28,28,26,.08), 0 30px 80px rgba(28,28,26,.18);
  --shadow-dark: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,169,81,0.18);
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; margin: 0 0 0.5em; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); line-height: 0.98; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); line-height: 1.3; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '//';
  color: var(--gold);
  opacity: 0.55;
}
.divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 28px;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease, box-shadow 220ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(200,169,81,0.25);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 12px 32px rgba(200,169,81,0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn:active { transform: translateY(1px); }
.btn .arrow { font-size: 14px; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}
.site-header.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--rule);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand { display: flex; flex-direction: column; gap: 5px; }
.wordmark {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
  position: relative;
  padding-bottom: 7px;
  transition: color 240ms ease;
}
.wordmark::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gold);
}
.site-header.scrolled .wordmark { color: var(--ink); }
.service-of {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
  transition: color 240ms ease;
}
.site-header.scrolled .service-of { color: var(--ink-mute); }
.service-of img { height: 18px; width: auto; opacity: 0.95; }
.service-of a { display: inline-flex; align-items: center; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color 240ms ease;
}
.site-header.scrolled .header-phone { color: var(--ink); }
.header-phone:hover { color: var(--gold) !important; }

.site-header .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.site-header .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.site-header.scrolled .btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
}
.site-header.scrolled .btn-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- Hero (dark, full-bleed) ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: clamp(96px, 11vw, 140px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(200, 169, 81, 0.18), transparent 65%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(200, 169, 81, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-text h1 {
  max-width: 18ch;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}
.hero-text .hero-sub { max-width: 48ch; }
.hero-meta { grid-column: 1 / -1; }
.hero-copy h1 {
  color: #fff;
}
.hero-copy h1 .accent { color: var(--gold); }
.hero-sub {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  margin: 16px 0 40px;
  line-height: 1.55;
}
.hero .eyebrow { color: var(--gold); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-cta .secondary {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  padding-left: 8px;
}
.hero-cta .secondary a {
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.hero-cta .secondary a:hover { color: var(--gold); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-dark);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-meta .ico {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  filter: saturate(1.05);
}

/* Hero video card — landscape drone footage, fills right column */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #070809; /* matches animation bg so there is no flash before its title card paints */
  box-shadow: var(--shadow-dark);
}
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(200,169,81,0.35), transparent 60%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,81,0.4);
  border-radius: 4px;
  pointer-events: none;
  z-index: 3; /* keep the gold frame above the poster + iframe */
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(200,169,81,0.4);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.hero-video-tag .live-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Stats strip (dark, dramatic) ---------- */
.stats {
  background: var(--ink-2);
  color: #fff;
  padding: 56px 0;
  position: relative;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.stats .container { position: relative; }
.stats-eyebrow {
  text-align: center;
  margin-bottom: 32px;
  display: block;
}
.stats-eyebrow .eyebrow { color: rgba(255,255,255,0.55); }
.stats-eyebrow .eyebrow::before { color: rgba(255,255,255,0.35); }
.stats .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  text-align: left;
  padding: 8px 40px;
  border-left: 1px solid var(--rule-dark);
  position: relative;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.stat:first-child::before { left: 0; }
.stat:not(:first-child)::before { left: 40px; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-width: 28ch;
}

/* ---------- Process (dark bg, dark cards w/ gold top accent) ---------- */
.process { background: var(--ink-2); color: #fff; }
.process h2 { color: #fff; }
.process .header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.process .header-row p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 48ch;
  margin: 0;
}
.process .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process .grid.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.step {
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--gold);
  padding: 56px 36px 48px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(28,28,26,0.25);
}
.step .num {
  font-family: var(--serif);
  font-size: 5.5rem;
  color: var(--gold);
  line-height: 0.85;
  margin-bottom: 24px;
  display: block;
  position: relative;
  z-index: 1;
  letter-spacing: -0.04em;
}
.step h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step p {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.step .step-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 1;
}
.step-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,81,0.4);
  padding-bottom: 3px;
  transition: color 180ms ease, border-color 180ms ease;
}
.step-link:hover {
  color: #fff;
  border-color: var(--gold);
}

/* Report preview block (sample PDF) */
.report-preview {
  margin-top: 80px;
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--gold);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.report-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.report-preview-image {
  position: relative;
  display: block;
  z-index: 1;
  transition: transform 280ms ease;
}
.report-preview-image:hover { transform: translateY(-4px); }
.report-preview-image img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,169,81,0.25);
}
.report-preview-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(28,28,26,0.92);
  color: var(--gold);
  padding: 6px 10px;
  border: 1px solid rgba(200,169,81,0.4);
}
.report-preview-content { position: relative; z-index: 1; }
.report-preview-content .eyebrow { color: var(--gold); }
.report-preview-content h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 22ch;
}
.report-preview-content p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 56ch;
}
.report-preview-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.report-preview-download {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}
.report-preview-download:hover {
  color: #fff;
  border-color: var(--gold);
}

/* ---------- Why us (DARK section) ---------- */
.why {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(200,169,81,0.10), transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(200,169,81,0.06), transparent 70%);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 100%);
}
.why .container { position: relative; z-index: 1; }
.why h2 { color: #fff; }
.why p { color: rgba(255,255,255,0.75); }
.why .layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: stretch;
}
.why .layout > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.why .layout > div:nth-child(2) > .cred-also { margin: 0; }
.why-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-top: 16px;
  transition: color 180ms ease, border-color 180ms ease;
}
.why-link:hover { color: var(--gold); }

/* Cred tile grid */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.cred-tile {
  background: var(--ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 200ms ease;
}
.cred-tile:hover { background: var(--ink-2); }
.cred-tile .cred-mark {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.cred-tile .cred-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

.cred-also {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Certification + utility trade-ally logo strip */
.cred-logos { margin-top: 24px; text-align: center; }
.cred-logos .cred-also { margin: 0 0 16px; }
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.logo-row img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 220ms ease, transform 200ms ease;
  display: block;
}
.logo-row img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Marquee logo strip — copied from eneroi.com (grayscale to color on hover) */
.marquee-strip {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--rule-dark);
}
.marquee-strip .strip-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  text-align: center;
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 60s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  margin: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #fff;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 220ms ease, filter 220ms ease, border-color 220ms ease;
  height: 72px;
  min-width: 160px;
}
.marquee-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  border-color: var(--gold);
}
.marquee-item img {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Service area (dark) ---------- */
.service-area { background: var(--ink-2); color: #fff; }
.service-area h2 { color: #fff; }
.service-area .layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.service-area .copy p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 50ch;
}
.service-area ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
}
.service-area li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
}
.service-area li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,81,0.15);
}
.map-wrap {
  background: var(--ink);
  border: 1px solid var(--ink-3);
  padding: 28px;
  aspect-ratio: 959 / 593;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.us-map {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.map-wrap svg { width: 100%; height: 100%; position: relative; z-index: 1; }
.map-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}
.map-corner.tl { top: 16px; left: 16px; }
.map-corner.br { bottom: 16px; right: 16px; }

/* ---------- Form section (dark) ---------- */
.lead {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,169,81,0.12), transparent 70%);
  pointer-events: none;
}
.lead .container { max-width: 820px; position: relative; z-index: 1; }
.lead h2 { color: #fff; }
.lead .lead-sub {
  color: rgba(255,255,255,0.72);
  margin-bottom: 48px;
  max-width: 50ch;
  font-size: 1.05rem;
}
.lead .divider { background: var(--gold); }

.form-card {
  background: var(--bg);
  color: var(--ink);
  padding: 56px;
  border-radius: 0;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-grid .full { grid-column: 1 / -1; }
.field-section {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 16px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field label .req { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.18);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #c8514f; }
.error-msg { color: #c8514f; font-size: 13px; min-height: 1em; margin-top: 2px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-card .submit-row { margin-top: 32px; }
.form-card .btn { width: 100%; padding: 18px 28px; font-size: 16px; }
.form-meta {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #131311;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 40px;
  font-size: 14px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer .brand-block { color: rgba(255,255,255,0.85); }
.site-footer .brand-block .wordmark { color: #fff; }
.site-footer .brand-block .wordmark::after { background: var(--gold); }
.site-footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,0.65); margin: 0 0 8px; }
.site-footer a { transition: color 150ms ease; }
.site-footer a:hover { color: var(--gold); }
.site-footer .copy-row {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ---------- Thank you page ---------- */
.thanks {
  padding: 180px 0 120px;
  text-align: center;
  background: var(--bg);
}
.thanks .container { max-width: 680px; }
.thanks h1 { font-size: clamp(3rem, 6vw, 4.4rem); margin-bottom: 16px; }
.thanks .lede { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 64px; }
.thanks h2 { font-size: 1.4rem; margin-bottom: 28px; }
.thanks ol {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 auto 48px;
  max-width: 480px;
  counter-reset: step;
  display: grid;
  gap: 22px;
}
.thanks ol li {
  counter-increment: step;
  position: relative;
  padding-left: 50px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.thanks ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--gold);
}
.thanks .urgent {
  margin-top: 8px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  color: var(--ink-mute);
}
.thanks .urgent a { color: var(--ink); border-bottom: 1px solid var(--gold); }

/* ---------- Featured project (Windyke, dark) ---------- */
.project { background: var(--ink-2); color: #fff; }
.project h2 { color: #fff; }
.project .header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.project .header-row p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 50ch;
  margin: 0;
}
.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
  margin: 0 0 56px;
}
.project-meta .cell {
  background: var(--ink);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project-meta .num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.project-meta .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Project gallery: 1 featured (left) + 2x2 right block, vertically centered */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 16px;
  align-items: center;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; }
.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.gallery figure:hover img { transform: scale(1.03); }
.gallery .feat { aspect-ratio: 4 / 5; }
.gallery-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.gallery-right figure { aspect-ratio: 4 / 3; }
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  pointer-events: none;
}

/* Synapse light-show feature block: iPad tap (portrait) + lights response (landscape) */
.lightshow {
  margin-top: 80px;
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--gold);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Phone/tablet frame holding the iPad tap demo */
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 17;
  background: #000;
  border: 3px solid #1a1a1a;
  border-radius: 38px;
  overflow: hidden;
  padding: 12px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,169,81,0.18);
  z-index: 1;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  background: #000;
}
.phone-frame-tag {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  z-index: 3;
}

.lightshow-result {
  position: relative;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(200,169,81,0.2);
}
.lightshow-result video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightshow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.lightshow-result-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(200,169,81,0.4);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.lightshow-content { position: relative; z-index: 1; }
.lightshow-content .eyebrow { color: var(--gold); }
.lightshow-content h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 22ch;
}
.lightshow-content p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 56ch;
}
.lightshow-content .src {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

/* ---------- Reframe (4 angle cards, dark) ---------- */
.reframe { background: var(--ink); color: #fff; }
.reframe h2 { color: #fff; }
.reframe .header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.reframe .header-row p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin: 0;
}
.angle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.angle {
  background: var(--ink);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 200ms ease;
}
.angle:hover { background: var(--ink-2); }
.angle .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.angle h3 {
  font-size: 1.25rem;
  margin: 0 0 4px;
  color: #fff;
}
.angle p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
}

/* ---------- Spec (Built For Sport) ---------- */
.spec {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.spec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(200,169,81,0.08), transparent 70%);
  pointer-events: none;
}
.spec::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 100%);
}
.spec .container { position: relative; z-index: 1; }
.spec h2 { color: #fff; }
.spec .header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.spec .header-row p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 54ch;
  margin: 0;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.spec-tile {
  background: var(--ink);
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms ease;
}
.spec-tile:hover { background: var(--ink-2); }
.spec-tile .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.spec-tile h3 {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0;
  min-height: 2.5em;
}
.spec-tile p {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Honest Conversation (dark) ---------- */
.honest { background: var(--ink-2); color: #fff; }
.honest h2 { color: #fff; }
.honest .header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.honest .header-row p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin: 0;
}
.honest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.honest-card {
  background: var(--ink);
  border: 1px solid var(--rule-dark);
  border-top: 3px solid var(--gold);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.honest-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.honest-card h3 {
  font-size: 1.2rem;
  margin: 0 0 4px;
  color: #fff;
  line-height: 1.25;
}
.honest-card p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.honest-cta {
  text-align: center;
  padding: 36px 0 0;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.honest-cta .pitch {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: #fff;
  margin: 0;
  max-width: 28ch;
  line-height: 1.2;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq h2 { text-align: center; }
.faq .divider { margin: 0 auto 28px; }
.faq .intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 56px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--rule);
  transition: border-color 180ms ease;
}
.faq-item:hover { border-color: var(--gold-soft); }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary .icn {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 220ms ease;
}
.faq-item[open] summary .icn { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 70ch;
}
.faq .center-eyebrow { text-align: center; }
.faq .center-eyebrow .eyebrow { display: inline-flex; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stat:not(:first-child)::before { left: 32px; }
  .stat { padding: 8px 32px; }
  .why .layout { gap: 56px; }
  .service-area .layout { gap: 56px; }
  .process .grid.grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step { padding: 44px 28px 36px; }
  .step .num { font-size: 4.6rem; }
  .project-meta { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; align-items: stretch; }
  .gallery .feat { aspect-ratio: 16 / 9; }
  .lightshow { grid-template-columns: 1fr; gap: 56px; padding: 48px 36px; }
  .phone-frame { max-width: 280px; }
  .reframe .header-row,
  .spec .header-row,
  .honest .header-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .hero { padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-video-wrap { max-width: 100%; margin: 0 auto; }
  .hero-meta { flex-wrap: wrap; gap: 16px 24px; }
  .stats { padding: 56px 0; }
  .stats .grid { grid-template-columns: 1fr; gap: 0; }
  .stat { padding: 32px 0; border-left: none; border-top: 1px solid var(--rule-dark); }
  .stat:first-child { border-top: none; padding-top: 8px; }
  .stat:not(:first-child)::before { left: 0; }
  .process .header-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .process .grid,
  .process .grid.grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .report-preview {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 28px;
    margin-top: 56px;
  }
  .report-preview-image { max-width: 320px; margin: 0 auto; }
  .why .layout,
  .service-area .layout { grid-template-columns: 1fr; gap: 48px; }
  .service-area ul { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; }
  .marquee-item { width: 150px; height: 64px; padding: 14px 20px; margin: 0 12px; }
  .marquee-item img { max-height: 32px; max-width: 110px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .project .header-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .gallery-right { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lightshow { padding: 36px 24px; }
  .angle-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .honest-grid { grid-template-columns: 1fr; }
  .angle { padding: 32px 26px; }
  .spec-tile { padding: 32px 24px 28px; }
  .honest-card { padding: 30px 24px; }
  .faq-item summary { padding: 18px 22px; gap: 16px; }
  .faq-item .answer { padding: 0 22px 20px; }
}

@media (max-width: 600px) {
  .header-phone { display: none; }
  .site-header .container { padding-top: 16px; padding-bottom: 16px; }
  h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero { padding: 100px 0 64px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .secondary { padding-left: 0; text-align: center; }
  .step { padding: 40px 28px 36px; }
  .step .num { font-size: 4.4rem; }
  .map-wrap { padding: 20px; }
  .form-card { padding: 28px 20px; }
  .stat { padding: 28px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
