:root {
  color-scheme: light;
  --ink: #111a20;
  --muted: #4c5b55;
  --paper: #f6f1e8;
  --surface: #fffdf8;
  --line: #c8d2ca;
  --accent: #0e6f68;
  --blue: #2359c4;
  --warn: #c2572b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: var(--accent); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px clamp(18px, 4vw, 52px); border-bottom: 1px solid var(--line); background: rgba(255, 253, 248, 0.92); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 900; text-decoration: none; }
.brand img { border-radius: 8px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 14px; }
.nav-links a { color: var(--muted); font-weight: 750; text-decoration: none; }
.hero { display: grid; grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr); gap: clamp(24px, 4vw, 56px); align-items: center; min-height: calc(100vh - 74px); padding: clamp(28px, 6vw, 78px) clamp(18px, 5vw, 72px); }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-size: 0.8rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1 { margin: 0; max-width: 820px; font-size: clamp(2.4rem, 6vw, 5.7rem); line-height: 0.98; letter-spacing: 0; }
.lead { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 1.16rem; line-height: 1.55; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; min-height: 42px; border: 1px solid var(--accent); border-radius: 8px; padding: 10px 14px; color: #fff; background: var(--accent); font-weight: 850; text-decoration: none; }
.button.secondary { color: var(--ink); background: var(--surface); border-color: var(--line); }
.hero-shot { width: 100%; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 20px 58px rgba(17, 26, 32, 0.18); background: var(--surface); }
.band { padding: 42px clamp(18px, 5vw, 72px); border-top: 1px solid var(--line); background: var(--surface); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: #fff; }
.card h2, .card h3 { margin: 0 0 8px; letter-spacing: 0; }
.card p, .policy p, li { color: var(--muted); line-height: 1.55; }
.policy { max-width: 880px; margin: 0 auto; padding: 54px 20px; }
.policy-header { margin-bottom: 28px; }
.footer { display: flex; gap: 14px; padding: 28px clamp(18px, 5vw, 72px); border-top: 1px solid var(--line); }
code { overflow-wrap: anywhere; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .grid { grid-template-columns: 1fr; }
}
