:root {
  color-scheme: light;
  --bg: #f8fbf6;
  --paper: #ffffff;
  --ink: #17201b;
  --muted: #607166;
  --soft: #e8f2ea;
  --mint: #bfe6cc;
  --teal: #0f766e;
  --amber: #ff9f0a;
  --amber-dark: #9a5a00;
  --red: #dc2626;
  --line: rgba(23, 32, 27, 0.12);
  --shadow: 0 24px 70px rgba(23, 32, 27, 0.14);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 251, 246, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(255, 159, 10, 0.25);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.nav-links a:hover,
.footer-links a:hover { color: var(--teal); }

.hero,
.principles,
.section-intro,
.journey-grid,
.split-section,
.proof-band,
.cta-strip,
.page-hero,
.page-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 56px;
  padding: 54px 0 44px;
}

.hero-copy-block { max-width: 620px; }
.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 950;
}
.hero-copy,
.section-intro p,
.copy-panel p,
.proof-grid p,
.page-hero p,
.page-content p,
.page-content li,
.support-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 22px;
  border: 1px solid var(--amber);
  background: var(--amber);
  color: #111;
  font-weight: 900;
}
.button.secondary {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}
.hero-photo,
.hero-phone {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-photo {
  left: 0;
  top: 70px;
  width: 57%;
  height: 440px;
}
.hero-phone {
  right: 0;
  top: 0;
  width: 54%;
  height: 610px;
  object-position: top center;
  border: 8px solid #111;
  border-radius: 34px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 82px;
}
.principles article,
.journey-card,
.copy-panel,
.proof-grid article,
.policy,
.support-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 18px;
}
.principles article {
  padding: 22px;
}
.principles strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}
.principles span { color: var(--muted); line-height: 1.45; }

.section-intro {
  padding: 28px 0 28px;
}
.section-intro h2,
.copy-panel h2,
.proof-band h2,
.cta-strip h2,
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}
.section-intro p { max-width: 830px; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 0 80px;
}
.journey-card {
  overflow: hidden;
}
.journey-card img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}
.journey-card div { padding: 20px; }
.journey-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber-dark);
  font-weight: 950;
}
.journey-card h3,
.proof-grid h3,
.support-card h3,
.policy h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.08;
}
.journey-card p {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 22px;
  align-items: stretch;
  padding: 0 0 86px;
}
.copy-panel {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #0b0b0b;
}
.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 0 0 90px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.proof-grid article,
.support-card,
.policy {
  padding: 24px;
}

.cta-strip {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 52px 0 86px;
  border-top: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 28px 0;
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer-brand { font-size: 18px; }
.footer-brand img { width: 32px; height: 32px; }
.copyright {
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 88px 0 42px;
}
.page-hero h1 {
  max-width: 840px;
}
.page-hero p {
  max-width: 760px;
}
.page-content {
  padding: 0 0 90px;
}
.policy {
  margin-bottom: 16px;
}
.policy a,
.support-card a {
  color: var(--teal);
  font-weight: 900;
}
.policy ul {
  margin: 0;
  padding-left: 20px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .proof-band {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 38px;
  }
  .hero-copy-block {
    max-width: none;
  }
  .hero-visual {
    min-height: 620px;
  }
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 14px;
    white-space: nowrap;
  }
  .hero {
    padding-bottom: 28px;
  }
  .hero-visual {
    min-height: 520px;
  }
  .hero-photo {
    width: 62%;
    height: 330px;
    top: 80px;
  }
  .hero-phone {
    width: 58%;
    height: 500px;
  }
  .principles,
  .journey-grid,
  .proof-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .principles {
    padding-bottom: 58px;
  }
  .journey-card img {
    height: 330px;
  }
  .media-panel img {
    min-height: 430px;
  }
  .cta-strip,
  .footer-inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .copyright {
    justify-self: start;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 45px;
  }
  .section-intro h2,
  .copy-panel h2,
  .proof-band h2,
  .cta-strip h2,
  .page-hero h1 {
    font-size: 36px;
  }
  .hero-visual {
    min-height: 470px;
  }
  .hero-photo {
    width: 68%;
    height: 275px;
  }
  .hero-phone {
    width: 62%;
    height: 450px;
    border-width: 6px;
  }
  .copy-panel,
  .proof-grid article,
  .policy,
  .support-card {
    padding: 20px;
  }
}
