:root {
  color-scheme: light dark;
  --cream: #f5efe5;
  --paper: #fffaf2;
  --ink: #293025;
  --muted: #65705d;
  --sage: #536546;
  --sage-soft: #dde5d2;
  --line: #d8d0c3;
  --amber: #c88b38;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); line-height: 1.65; }
a { color: var(--sage); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; border-radius: 4px; }
.skip { position: fixed; left: 1rem; top: -5rem; z-index: 5; background: var(--paper); padding: .7rem 1rem; }
.skip:focus { top: 1rem; }
.site-header { border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--cream) 92%, transparent); }
.nav { max-width: 1080px; margin: auto; padding: 1rem 1.25rem; display: flex; gap: 1rem; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { font-weight: 650; text-decoration: none; }
main { max-width: 1080px; margin: auto; padding: 3rem 1.25rem 5rem; }
.hero { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(220px, .55fr); gap: 3rem; align-items: center; padding: 2.5rem 0 4rem; }
.hero img { width: min(100%, 280px); justify-self: center; border-radius: 28%; box-shadow: 0 18px 55px #28302222; }
.eyebrow { color: var(--sage); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.025em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 7vw, 4.7rem); margin: .4rem 0 1rem; }
.legal h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { margin-top: 2.3rem; font-size: 1.45rem; }
.lead { max-width: 700px; font-size: 1.18rem; color: var(--muted); }
.actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.7rem; }
.button { display: inline-block; padding: .8rem 1.1rem; border-radius: 999px; background: var(--sage); color: white; text-decoration: none; font-weight: 750; }
.button.secondary { background: var(--sage-soft); color: var(--ink); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card, .legal-card { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 1.5rem; box-shadow: 0 12px 35px #2930250a; }
.card h2, .card h3 { margin-top: 0; }
.legal { max-width: 820px; }
.legal-card { padding: clamp(1.4rem, 5vw, 3rem); }
.meta { color: var(--muted); font-size: .95rem; }
.notice { border-left: 4px solid var(--amber); padding: .8rem 1rem; background: color-mix(in srgb, var(--paper) 80%, var(--amber)); border-radius: 0 12px 12px 0; }
ul { padding-left: 1.25rem; }
footer { border-top: 1px solid var(--line); }
.footer-inner { max-width: 1080px; margin: auto; padding: 1.5rem 1.25rem 2.5rem; color: var(--muted); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 720px) {
  .nav { align-items: flex-start; }
  .nav-links { gap: .6rem; font-size: .92rem; }
  .hero { grid-template-columns: 1fr; text-align: left; padding-top: 1.5rem; }
  .hero img { width: 180px; grid-row: 1; justify-self: start; }
  .grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media (prefers-color-scheme: dark) {
  :root { --cream: #1d231a; --paper: #272f22; --ink: #f0eadf; --muted: #c2cbb8; --sage: #b8c99e; --sage-soft: #3d4935; --line: #46513f; --amber: #e0a654; }
  .button { color: #1d231a; }
  .site-header { background: #1d231a; }
}

