/* ==========================================================
   Dream BuildTech — shared stylesheet
   Bold & modern construction / real estate site
   ========================================================== */

:root {
  --ink: #0c0d10;
  --ink-2: #16181d;
  --ink-3: #1f2229;
  --line: rgba(255, 255, 255, 0.10);
  --paper: #f6f5f2;
  --paper-2: #ffffff;
  --muted: #8b8f99;
  --muted-dark: #5b6070;
  --brand: #ff6b18;
  --brand-2: #ffb020;
  --brand-grad: linear-gradient(100deg, #ff6b18 0%, #ffb020 100%);
  --maxw: 1200px;
  --r: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -0.02em; }

p { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--tint { background: #ecebe6; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand-grad);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted-dark);
  max-width: 62ch;
}
.section--dark .lede { color: #a9aeba; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--brand-grad);
  color: #170b02;
  box-shadow: 0 12px 30px rgba(255, 107, 24, .35);
}
.btn--primary:hover { box-shadow: 0 18px 40px rgba(255, 107, 24, .45); }
.btn--ghost {
  border-color: rgba(12, 13, 16, .22);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.section--dark .btn--ghost { border-color: var(--line); color: var(--paper); }
.section--dark .btn--ghost:hover { background: var(--paper); color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 13, 16, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--paper);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  color: var(--paper);
}
/* Logo lockup: red house mark + wordmark */
.brand__mark {
  width: 68px;
  height: auto;
  flex: none;
  overflow: visible;
  transition: transform .25s ease;
}
.brand:hover .brand__mark { transform: translateY(-2px); }
.brand__text {
  display: block;
  line-height: 1.05;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .155em;
  text-transform: uppercase;
  color: var(--brand-2);
  line-height: 1;
  margin-top: 5px;
}

/* Full logo lockup used inside page content */
.logo-lockup {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  color: #c9cdd6;
  transition: background .16s ease, color .16s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav__links a.is-active { color: #fff; background: rgba(255, 255, 255, .12); }
.nav__cta { margin-left: 10px; padding: 11px 22px; font-size: .9rem; }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--paper);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(255, 107, 24, .32) 0%, rgba(255, 107, 24, 0) 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 span { display: block; }
.hero h1 .accent {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: #a9aeba;
  max-width: 56ch;
  margin-top: 22px;
}

/* ---------- Hero background video ----------
   Footage is 9:16 (shot for Reels). On desktop it sits as a contained
   vertical panel beside the headline; on mobile it goes full-bleed,
   which is the aspect ratio it was actually shot for. */
.hero__media {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  /* desktop: contained panel, right-hand side */
  top: 50%;
  right: max(24px, calc((100% - var(--maxw)) / 2));
  transform: translateY(-50%);
  width: clamp(240px, 24vw, 330px);
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
  background: var(--ink-2);
  opacity: 0;
  animation: heroMediaIn .9s ease .25s forwards;
}
@keyframes heroMediaIn { to { opacity: 1; } }

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 13, 16, .55) 0%, rgba(12, 13, 16, .05) 45%, transparent 100%);
}

/* Keep hero copy clear of the panel on desktop */
.hero--video .wrap > *:not(.stats) { max-width: min(62ch, 60%); }
.hero--video .stats { position: relative; z-index: 2; }

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 8vw, 110px) 0 clamp(56px, 7vw, 92px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 176, 32, .22) 0%, rgba(255, 176, 32, 0) 65%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { text-decoration: none; color: var(--brand-2); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: clamp(48px, 6vw, 76px);
}
.stat { background: var(--ink-2); padding: 30px 26px; }
.stat b {
  display: block;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: .85rem;
  color: #9aa0ac;
  letter-spacing: .02em;
}

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper-2);
  border: 1px solid rgba(12, 13, 16, .08);
  border-radius: var(--r);
  padding: 32px 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(12, 13, 16, .10);
  border-color: rgba(255, 107, 24, .35);
}
.section--dark .card {
  background: var(--ink-2);
  border-color: var(--line);
}
.section--dark .card:hover { box-shadow: 0 22px 48px rgba(0, 0, 0, .45); }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--muted-dark); font-size: .97rem; }
.section--dark .card p { color: #9aa0ac; }

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 24, .12);
  color: var(--brand);
  margin-bottom: 20px;
}
.icon svg { width: 24px; height: 24px; }

.num {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--brand);
  display: block;
  margin-bottom: 12px;
}

/* feature card with big gradient number */
.step {
  position: relative;
  padding-top: 38px;
  border-top: 2px solid rgba(12, 13, 16, .1);
}
.section--dark .step { border-top-color: var(--line); }
.step b.step__n {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--brand);
}
.step h3 { margin-top: 6px; }
.step p { color: var(--muted-dark); font-size: .96rem; }
.section--dark .step p { color: #9aa0ac; }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--narrow { grid-template-columns: 1fr 1.15fr; }

.frame {
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(150deg, #23262e 0%, #14161b 100%);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  position: relative;
  display: grid;
  place-items: center;
  color: #6d7280;
  text-align: center;
  padding: 24px;
  font-size: .85rem;
  letter-spacing: .04em;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.frame span { position: relative; z-index: 2; }

/* ---------- Owner portrait ---------- */
.portrait {
  position: relative;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 28px 64px rgba(12, 13, 16, .18);
  isolation: isolate;
}
.portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, rgba(9, 10, 13, .92) 0%, rgba(9, 10, 13, .55) 42%, transparent 100%);
  pointer-events: none;
}
.portrait figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 28px;
  color: #fff;
}
.portrait figcaption strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.portrait figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-2);
}
.portrait figcaption span::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand-grad);
}

/* ---------- Team photos ---------- */
.team-grid .card { padding: 24px 22px; }
.team-grid h3 { margin-bottom: .3em; }
.team-role {
  color: var(--brand-2);
  font-weight: 700;
  font-size: .82rem !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 14px;
  margin-bottom: 22px;
  background: var(--ink-3);
}

/* ---------- Map embed ---------- */
.map-frame {
  margin-top: 22px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.35) contrast(1.05);
}

/* ---------- Lists ---------- */
.ticks { list-style: none; margin: 0 0 8px; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--muted-dark);
  font-size: .98rem;
}
.section--dark .ticks li { color: #a9aeba; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-grad);
  box-shadow: inset 0 0 0 3px var(--paper);
}
.section--dark .ticks li::before { box-shadow: inset 0 0 0 3px var(--ink); }
.card .ticks li::before { box-shadow: inset 0 0 0 3px #fff; }
.section--dark .card .ticks li::before { box-shadow: inset 0 0 0 3px var(--ink-2); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--brand-grad);
  color: #180c02;
  border-radius: 24px;
  padding: clamp(40px, 5vw, 62px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2 { margin: 0; max-width: 18ch; }
.cta-band p { margin: 12px 0 0; color: rgba(24, 12, 2, .78); max-width: 46ch; }
.cta-band .btn--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(12, 13, 16, .16);
  background: #fff;
  font: inherit;
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 107, 24, .14);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted-dark); }

.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 107, 24, .12);
  border: 1px solid rgba(255, 107, 24, .35);
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.55;
}
.form-status.is-visible { display: block; }
.form-status a { color: var(--brand); }
.form-status.is-ok {
  background: rgba(22, 163, 74, .12);
  border-color: rgba(22, 163, 74, .4);
  color: #14532d;
}
.form-status.is-ok a { color: #15803d; }
.form-status.is-error {
  background: rgba(220, 38, 38, .10);
  border-color: rgba(220, 38, 38, .38);
  color: #7f1d1d;
}
.form-status.is-error a { color: #b91c1c; }
.form-status.is-pending { opacity: .85; }

/* Inline field validation */
.field-error {
  font-size: .82rem;
  font-weight: 600;
  color: #dc2626;
  letter-spacing: 0;
  text-transform: none;
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .10);
}

/* Honeypot — hidden from people, visible to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button[disabled] { opacity: .6; cursor: progress; transform: none; }

/* ---------- Contact tiles ---------- */
.contact-tile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.contact-tile .icon { margin: 0; width: 44px; height: 44px; border-radius: 12px; flex: none; }
.contact-tile h4 { margin: 0 0 4px; font-size: .95rem; letter-spacing: 0; }
.contact-tile p { margin: 0; color: #9aa0ac; font-size: .95rem; }
.contact-tile a { color: var(--brand-2); text-decoration: none; }
.contact-tile a:hover { text-decoration: underline; }

/* ---------- Accordion (FAQ) ---------- */
details.faq {
  border-bottom: 1px solid rgba(12, 13, 16, .12);
  padding: 20px 0;
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
  flex: none;
}
details.faq[open] summary::after { content: "–"; }
details.faq p { margin: 14px 0 0; color: var(--muted-dark); font-size: .97rem; max-width: 72ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #9aa0ac;
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.site-footer h5 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: .94rem; }
.site-footer a { text-decoration: none; color: #9aa0ac; transition: color .16s ease; }
.site-footer a:hover { color: var(--brand-2); }
.site-footer p { font-size: .94rem; }
.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  color: #6d7280;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover { transform: none; }
  /* Video never autoplays here — script.js also skips loading it, so the
     poster frame is all these users get. */
  .hero__media { opacity: 1; animation: none; }
}

/* ---------- Responsive ---------- */
/* Tablet: panel shrinks, copy gets more room */
@media (max-width: 1100px) {
  .hero__media { width: clamp(200px, 22vw, 260px); right: 24px; }
  .hero--video .wrap > *:not(.stats) { max-width: min(62ch, 62%); }
}

/* Mobile: full-bleed background — the aspect ratio the footage was shot in */
@media (max-width: 860px) {
  .hero__media {
    inset: 0;
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .hero__video { opacity: .38; }
  .hero__scrim {
    background: linear-gradient(to bottom, rgba(12,13,16,.72) 0%, rgba(12,13,16,.58) 45%, rgba(12,13,16,.92) 100%);
  }
  .hero--video .wrap { position: relative; z-index: 2; }
  .hero--video .wrap > *:not(.stats) { max-width: none; }
}

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .split--narrow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .brand { font-size: 1rem; gap: 9px; }
  .brand__mark { width: 52px; }
  .brand small { font-size: .5rem; letter-spacing: .12em; }
  .nav__links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 22px;
    background: rgba(12, 13, 16, .98);
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 14px; }
  .nav__cta { margin: 8px 0 0; justify-content: center; }
  .nav__toggle { display: block; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
