:root {
  color-scheme: light;
  --ink: #12251f;
  --muted: #5d6b66;
  --green: #1d675e;
  --green-dark: #12453f;
  --mint: #e7f1ee;
  --cream: #f7f5ef;
  --paper: #fffefa;
  --line: #d9ded9;
  --gold: #b98535;
  --shadow: 0 24px 70px rgba(18, 37, 31, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
a { color: var(--green); text-underline-offset: 0.2em; }
a:hover { color: var(--green-dark); }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(255, 254, 250, 0.94); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.78rem; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 0.92rem; font-weight: 650; }
.nav-links a { color: var(--ink); text-decoration: none; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 12px; background: var(--green); color: #fff !important; font-weight: 700; text-decoration: none; box-shadow: 0 9px 24px rgba(29, 103, 94, 0.18); }
.button.secondary { background: transparent; color: var(--green) !important; border: 1px solid var(--green); box-shadow: none; }
.hero { padding: clamp(64px, 10vw, 124px) 0 70px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -100px; top: 45px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(185,133,53,.16), rgba(29,103,94,.08) 45%, transparent 72%); pointer-events: none; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; }
h1 { max-width: 820px; margin: 0; font-size: clamp(3rem, 8vw, 6.5rem); }
.lead { max-width: 730px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.15rem, 2.2vw, 1.42rem); line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.privacy-note { margin-top: 24px; color: var(--muted); font-size: .92rem; }
.band { background: var(--ink); color: #f8faf8; padding: 60px 0; }
.band h2 { margin: 0; font-size: clamp(2rem, 4vw, 3rem); }
.band p { color: #d9e2df; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.card { border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 26px; background: rgba(255,255,255,.055); }
.card .number { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--mint); color: var(--green-dark); font-weight: 850; }
.card h3 { margin: 20px 0 8px; font-size: 1.45rem; }
.card p { margin: 0; font-size: .96rem; line-height: 1.65; }
.section { padding: 72px 0; }
.section h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); }
.section-copy { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.assurance { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: stretch; }
.assurance > div { padding: 34px; border-radius: 24px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.assurance ul { margin: 20px 0 0; padding-left: 1.25em; color: var(--muted); }
.legal-main { padding: 58px 0 82px; }
.legal { max-width: 860px; padding: clamp(26px, 5vw, 56px); border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: var(--shadow); }
.legal h1 { font-size: clamp(2.7rem, 7vw, 4.8rem); }
.legal h2 { margin-top: 42px; padding-top: 32px; border-top: 1px solid var(--line); font-size: 1.9rem; }
.legal h3 { margin-top: 28px; font-size: 1.25rem; }
.legal p, .legal li { color: #46554f; }
.legal strong { color: var(--ink); }
.effective { color: var(--green); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.notice { margin: 28px 0; padding: 22px; border-left: 5px solid var(--green); border-radius: 0 16px 16px 0; background: var(--mint); }
.site-footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; padding: 30px 0; color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); }

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, 1120px); }
  .nav { align-items: flex-start; padding: 16px 0; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; gap: 10px 14px; }
  .nav-links > a:not(.button) { display: none; }
  .grid, .assurance { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero::after { opacity: .55; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
