:root {
  color-scheme: light;
  --ink: #17352f;
  --green: #286d5c;
  --green-dark: #1d5146;
  --cream: #f8f5ed;
  --paper: #fffdf8;
  --line: #d9e2dc;
  --muted: #61746e;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); line-height: 1.65; }
a { color: var(--green-dark); }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 9; background: white; padding: .75rem; }
.site-header, .site-footer { max-width: 1120px; margin: auto; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header nav, .site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: .06em; }
.brand img { width: 42px; height: 42px; border-radius: 10px; }
main { max-width: 1120px; margin: auto; padding: 0 1.5rem 3rem; }
.hero { min-height: 620px; border-radius: 36px; padding: clamp(2rem, 7vw, 5.5rem); display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 3rem; background: var(--green); color: white; overflow: hidden; }
.hero h1 { font-size: clamp(4rem, 11vw, 8rem); line-height: .9; margin: .25rem 0 1.25rem; letter-spacing: -.06em; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 42rem; }
.hero img { width: min(100%, 360px); border-radius: 28%; box-shadow: 0 25px 70px #12352f66; }
.eyebrow { text-transform: uppercase; font-size: .78rem !important; letter-spacing: .16em; font-weight: 800; }
.button { display: inline-block; margin-top: 1rem; padding: .85rem 1.15rem; border-radius: 999px; background: white; color: var(--green-dark); font-weight: 750; text-decoration: none; }
.section { padding: 5rem 0; }
.section h2, .legal-document h1 { font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 1rem; }
.section-intro { max-width: 52rem; font-size: 1.16rem; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.card, .legal-document { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 1.6rem; }
.card h3 { margin-top: 0; }
.privacy-band { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; background: #e8f0eb; border-radius: 30px; padding: clamp(1.5rem, 5vw, 3.5rem); }
.price { font-size: 2rem; font-weight: 850; }
.legal-main { max-width: 860px; padding-top: 2rem; }
.legal-document { padding: clamp(1.5rem, 5vw, 3.5rem); }
.legal-document h2 { margin-top: 2.25rem; line-height: 1.2; }
.notice { padding: 1rem 1.2rem; border-left: 4px solid var(--green); background: #eef4f0; border-radius: 10px; }
.site-footer { border-top: 1px solid var(--line); }
@media (max-width: 760px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .hero, .privacy-band { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero img { width: 180px; }
  .grid { grid-template-columns: 1fr; }
}
