:root {
  --ink: #13231e;
  --muted: #56635f;
  --paper: #f5f2e9;
  --surface: #fffdf7;
  --green: #1d5b45;
  --green-dark: #124231;
  --line: #d9d8ce;
  --accent: #d9a441;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }
.site-header, main, footer { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 750; letter-spacing: -.01em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: .82rem;
  letter-spacing: .08em;
}
nav { display: flex; gap: clamp(16px, 3vw, 34px); }
nav a { color: var(--muted); text-decoration: none; font-size: .93rem; }
nav a:hover, nav a:focus-visible { color: var(--green); }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  padding: 90px clamp(24px, 5vw, 70px);
  border-radius: 4px;
  color: white;
  background:
    radial-gradient(circle at 76% 22%, rgba(217,164,65,.2), transparent 25%),
    linear-gradient(135deg, #123e30, #1d5b45 65%, #164936);
  box-shadow: 0 24px 70px rgba(23, 48, 39, .16);
}
.eyebrow { margin: 0 0 16px; color: var(--green); font-weight: 750; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow { color: #efca7d; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 790px; font-size: clamp(3rem, 6.4vw, 6.1rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4.1rem); }
.lead { max-width: 700px; margin: 28px 0 34px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.button { display: inline-block; padding: 13px 21px; border: 1px solid rgba(255,255,255,.45); border-radius: 2px; text-decoration: none; font-weight: 700; }
.button:hover, .button:focus-visible { color: var(--ink); background: white; }
.hero-panel { border-top: 1px solid rgba(255,255,255,.26); }
.hero-panel div { display: grid; grid-template-columns: 46px 1fr; gap: 10px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.26); }
.hero-panel span { color: #efca7d; font-size: .76rem; }
.hero-panel p { margin: 0; }

.section { padding: clamp(80px, 12vw, 150px) clamp(4px, 3vw, 42px); }
.section-grid { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(40px, 9vw, 130px); }
.section-grid p { margin-top: 0; color: var(--muted); font-size: 1.05rem; }
.notice { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(36px, 8vw, 120px); align-items: end; border-block: 1px solid var(--line); }
.notice > p { max-width: 690px; margin: 0; color: var(--muted); font-size: 1.15rem; }
.contact { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(40px, 9vw, 130px); align-items: start; }
.contact-card { padding: clamp(28px, 4vw, 46px); background: var(--surface); border-top: 4px solid var(--green); box-shadow: 0 16px 45px rgba(23,48,39,.08); }
.contact-card p { margin-top: 0; color: var(--muted); }
.contact-card a { color: var(--green); font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-card .small { margin: 22px 0 0; font-size: .9rem; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px 4px 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: .87rem; }
footer p { margin: 0; }

.policy-page { max-width: 920px; }
.policy-heading { padding: 100px 0 65px; border-bottom: 1px solid var(--line); }
.policy-heading h1 { color: var(--ink); }
.policy-heading .lead { margin-bottom: 0; color: var(--muted); }
.policy-content { padding: 44px 0 120px; }
.policy-content section { display: grid; grid-template-columns: 220px 1fr; gap: 34px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.policy-content h2 { font-family: inherit; font-size: 1.03rem; font-weight: 750; letter-spacing: 0; }
.policy-content p { margin: 0 0 14px; color: var(--muted); }
.policy-content a { color: var(--green); }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; padding-block: 20px; }
  nav { gap: 14px; padding-top: 9px; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 70px; }
  .hero-panel { margin-top: 20px; }
  .section-grid, .notice, .contact { grid-template-columns: 1fr; }
  .policy-content section { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 500px) {
  .site-header, main, footer { width: min(100% - 24px, 1160px); }
  .brand > span:last-child { display: none; }
  .hero { border-radius: 0; padding-inline: 20px; }
  .section { padding-inline: 6px; }
  footer { flex-direction: column; }
}

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