:root {
  --bg: #f7f1e8;
  --panel: #fffdf8;
  --ink: #1f2430;
  --muted: #6f6670;
  --green: #2f6f73;
  --blue: #315f88;
  --line: #e3d7c8;
  --warm: #d9894d;
  --shadow: 0 18px 50px rgba(49, 38, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-action,
.primary,
.secondary {
  border-radius: 8px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-action,
.primary {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  padding: 11px 16px;
}

.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--green);
  padding: 11px 16px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 6vw, 72px);
  padding: clamp(28px, 7vw, 86px) clamp(18px, 7vw, 92px);
}

.hero-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 20%, #fffdf8 0 32%, #efe4d4 33% 100%);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: min(78%, 380px);
  height: auto;
  object-fit: contain;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.lead {
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 25px);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 7vw, 92px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.strip div {
  background: var(--panel);
  padding: 22px;
}

.strip strong,
.strip span {
  display: block;
}

.strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 7vw, 92px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid article,
.legal-box,
.cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid p,
.text-block,
.legal-box {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  background: #fff8ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-block {
  font-size: 18px;
}

.legal-box {
  padding: 26px;
  max-width: 920px;
}

.cta {
  margin: 0 clamp(18px, 7vw, 92px) clamp(42px, 7vw, 92px);
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

.cta p {
  color: var(--muted);
  margin-bottom: 24px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 7vw, 92px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

footer span {
  color: var(--blue);
}

@media (max-width: 860px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 240px;
    order: 2;
  }

  .strip,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
