:root {
  --ink: #14161a;
  --ink-soft: #3a3f47;
  --muted: #6b7280;
  --line: rgba(26, 28, 31, 0.08);
  --line-strong: rgba(166, 133, 82, 0.28);
  --paper: #ffffff;
  --paper-soft: #f7f5f1;
  --paper-warm: #f1ebe2;
  --gold: #a68552;
  --gold-deep: #8b6d3f;
  --gold-soft: #c4a574;
  --gold-pale: #f4ece0;
  --shadow: 0 18px 50px rgba(26, 28, 31, 0.06);
  --shadow-hover: 0 28px 70px rgba(26, 28, 31, 0.12);
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(196,165,116,0.10), transparent 55%),
    radial-gradient(900px 420px at -10% 20%, rgba(241,235,226,0.9), transparent 50%),
    var(--paper);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(166, 133, 82, 0.22); }

.font-display { font-family: "Cormorant Garamond", Georgia, serif; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0.75rem; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(26, 28, 31, 0.05);
}
.site-header::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166,133,82,0.55), transparent);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(166, 133, 82, 0.55);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.95), transparent 45%),
    linear-gradient(160deg, #fff 0%, var(--gold-pale) 55%, #e8d5b0 100%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(166, 133, 82, 0.18);
  flex: 0 0 auto;
}
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.14em;
  font-size: 1.22rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.brand-name .word-property {
  font-weight: 500;
  color: var(--ink);
}
.brand-name .word-true {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.16em;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-desktop a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.nav-desktop a:hover { color: var(--gold-deep); }
.nav-desktop a.is-active { color: var(--gold-deep); }
.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--gold);
}
.nav-desktop .btn {
  margin-left: 0.35rem;
}
.nav-desktop .btn.is-active::after { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, #f0e0c2, #c4a574 42%, #a68552 78%, #8b6d3f 100%);
  color: #14161a;
  box-shadow: 0 12px 30px rgba(166, 133, 82, 0.22);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.35) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-gold:hover { filter: brightness(1.04); transform: translateY(-1px); }
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
.btn-outline {
  border-color: var(--line-strong);
  color: var(--gold-deep);
  background: #fff;
}
.btn-outline:hover { background: var(--gold-pale); }
.btn:focus-visible,
.nav-desktop a:focus-visible,
.footer-links a:focus-visible,
.menu-btn:focus-visible,
.mobile-menu a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.checkbox input:focus-visible {
  outline: 2px solid rgba(166, 133, 82, 0.7);
  outline-offset: 3px;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 0.4rem 0 1.4rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.95rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child {
  border-bottom: 0;
  margin-top: 0.6rem;
  text-align: center;
  background: linear-gradient(135deg, #e8d5b0, #c4a574 42%, #a68552 100%);
  color: var(--ink);
  font-weight: 600;
  padding: 1rem;
}
.mobile-menu a.is-active { color: var(--gold-deep); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.4rem 0 4.2rem;
  background:
    radial-gradient(ellipse at top right, rgba(196,165,116,0.18), transparent 42%),
    radial-gradient(ellipse at 10% 80%, rgba(241,235,226,0.75), transparent 40%),
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 55%, #f7f5f1 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,165,116,0.16), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.8);
  color: var(--gold-deep);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(166,133,82,0.12);
}
h1, h2, h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; }
h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.lead {
  margin: 1.4rem 0 0;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.fineprint {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  background: var(--paper-soft);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  z-index: 2;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero-visual:hover img { transform: scale(1.06); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(20,22,26,0.42)),
    linear-gradient(90deg, rgba(20,22,26,0.12), transparent 40%);
}
.hero-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 3;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,0.35);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.hero-float {
  position: absolute;
  z-index: 4;
  right: 1rem;
  top: 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(166,133,82,0.28);
  padding: 0.85rem 0.95rem;
  box-shadow: 0 14px 40px rgba(20,22,26,0.12);
  max-width: 11.5rem;
}
.hero-float .stat-label { margin-bottom: 0.25rem; }
.hero-float .stat-value {
  font-size: 1.15rem;
  line-height: 1.15;
  margin-top: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.stat {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  padding: 1.15rem 1rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
}
.stat-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.stat-value {
  margin-top: 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--ink);
}

.section {
  padding: 5rem 0;
}
.section-soft { background: var(--paper-soft); }
.section-head {
  max-width: 42rem;
  margin-bottom: 2.2rem;
}
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}
.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--ink);
}
.section-head p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}

.grid-2 {
  display: grid;
  gap: 1.2rem;
}
.grid-3 {
  display: grid;
  gap: 1.2rem;
}
.grid-4 {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-strong);
}
.card h3 {
  font-size: 1.55rem;
  margin-top: 0.7rem;
  color: var(--ink);
}
.card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
  font-weight: 300;
}
.card-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-deep);
  font-size: 1.8rem;
}
.card-link {
  display: block;
  color: inherit;
  height: 100%;
}
.card-cta {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.path-card {
  min-height: 100%;
}
.path-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), transparent 70%);
  opacity: 0.9;
}

.media-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
a.media-card:hover,
.media-card.is-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-strong);
}
.media-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 0.8s var(--ease);
}
a.media-card:hover img,
.media-card.is-link:hover img {
  transform: scale(1.04);
}
.deal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.deal-meta > div {
  min-width: 0;
}
.deal-meta .stat-value {
  font-size: 1.05rem;
  margin-top: 0.25rem;
  line-height: 1.25;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.86);
  color: var(--gold-deep);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}
.pill-live .pill-dot {
  background: #2f9e6b;
  box-shadow: 0 0 0 3px rgba(47,158,107,0.14);
}
.mark-ribbon {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
}
.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.trust-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.trust-item strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.trust-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 300;
}
.trust-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-deep);
  font-size: 1.35rem;
  line-height: 1;
  min-width: 1.6rem;
}
.media-card .body { padding: 1.4rem 1.5rem 1.6rem; }
.media-card .body h3 {
  font-size: 1.8rem;
  margin: 0.4rem 0 0;
}
.media-card .body p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}

.path-card .card-num { margin-bottom: 0.2rem; }
.path-card h3 { margin-top: 0.2rem; }

.page-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse at top right, rgba(196,165,116,0.14), transparent 45%),
    linear-gradient(180deg, #fbfaf7, #ffffff);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166,133,82,0.45), transparent);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.02;
}
.page-hero p {
  margin-top: 1rem;
  max-width: 40rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.split img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.note {
  border: 1px dashed var(--line-strong);
  background: var(--gold-pale);
  padding: 1.2rem 1.3rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(196,165,116,0.22), transparent 45%),
    linear-gradient(135deg, #fff 0%, var(--gold-pale) 100%);
  box-shadow: var(--shadow-hover);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: grid;
  gap: 1.4rem;
  align-items: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166,133,82,0.16), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.08;
}
.cta-band p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
  max-width: 36rem;
}

.form-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fcfbf8);
  box-shadow: var(--shadow-hover);
  padding: 1.7rem;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep), transparent);
}
.form-grid {
  display: grid;
  gap: 1rem;
}
label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  font: inherit;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(166,133,82,0.55);
  box-shadow: 0 0 0 3px rgba(166,133,82,0.12);
}
.checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checkbox input { width: auto; margin-top: 0.2rem; }
.form-msg { margin-top: 1rem; font-size: 0.92rem; line-height: 1.55; }
.form-msg.ok { color: var(--gold-deep); }
.form-msg.err { color: #b42318; }
.form-success-panel {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #fff, var(--gold-pale));
  padding: 1.5rem;
  margin-top: 1rem;
}
.form-success-panel h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.form-success-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}
.hidden { display: none !important; }

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f7f5f1 0%, #f1ebe2 100%);
  padding: 3rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166,133,82,0.45), transparent);
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.14em;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}
.footer-brand .word-true {
  font-weight: 700;
}
.footer-copy {
  margin-top: 0.8rem;
  max-width: 28rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
  font-size: 0.94rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-links a:hover { color: var(--gold-deep); }
.legal {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(26,28,31,0.06);
}
.mobile-cta.is-visible { display: block; }
.mobile-cta .btn { width: 100%; }
body.has-mobile-cta main,
body.has-mobile-cta .site-footer {
  padding-bottom: 5.5rem;
}
body.menu-open .mobile-cta { display: none !important; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .hero-visual { min-height: 460px; }
  .hero-visual img { min-height: 460px; }
  .cta-band {
    grid-template-columns: 1.4fr auto;
    gap: 2rem;
  }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 6rem 0; }
  body.has-mobile-cta main,
  body.has-mobile-cta .site-footer { padding-bottom: 0; }
}

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