:root {
  --bg: #f4f1ea;
  --paper: #fffdf8;
  --ink: #12231f;
  --muted: #66716d;
  --line: rgba(18, 35, 31, 0.12);
  --accent: #f2a900;
  --accent-deep: #d68d00;
  --green: #163a32;
  --green-2: #234f45;
  --soft: #efe9dc;
  --shadow: 0 24px 70px rgba(18, 35, 31, 0.10);
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 0%, rgba(242,169,0,.16), transparent 28rem),
    linear-gradient(180deg, #f8f5ee 0%, var(--bg) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(18,35,31,.06);
  background: rgba(248,245,238,.86);
  backdrop-filter: blur(14px);
}

nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 850;
  font-size: 1.18rem;
  letter-spacing: -.035em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.brand-mark::before {
  width: 9px;
  height: 9px;
  left: 7px;
  top: 7px;
}

.brand-mark::after {
  width: 7px;
  height: 7px;
  right: 7px;
  bottom: 7px;
  background: #ffd768;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green);
}

main {
  padding: 0 0 96px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
  padding: 104px 0 76px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid rgba(22,58,50,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--green);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(242,169,0,.13);
}

h1, h2, h3 {
  margin: 0;
  color: var(--green);
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
}

.hero h1 span {
  color: var(--accent-deep);
}

.lead {
  max-width: 700px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1.07rem, 2.2vw, 1.27rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: var(--green);
  box-shadow: 0 10px 25px rgba(22,58,50,.18);
}

.button.primary:hover {
  background: var(--green-2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,215,104,.35), transparent 12rem),
    linear-gradient(145deg, var(--green) 0%, #0f2a24 100%);
  color: white;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: -110px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255,255,255,.03),
    0 0 0 76px rgba(255,255,255,.025);
}

.hero-card h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 390px;
}

.hero-card p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
}

.mini-grid {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  z-index: 1;
}

.mini {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}

.mini strong {
  display: block;
  margin-bottom: 3px;
  color: white;
}

.mini span {
  color: rgba(255,255,255,.66);
  font-size: .86rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,253,248,.84);
  box-shadow: 0 12px 38px rgba(18,35,31,.05);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 54px;
  border-radius: 11px;
  background: var(--soft);
  color: var(--green);
  font-size: .87rem;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.card p {
  color: var(--muted);
}

.card p + p {
  margin-top: 9px;
}

.contact {
  margin-top: 18px;
  padding: 30px;
  border-radius: 22px;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(214,141,0,.14);
}

.contact h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.contact p {
  margin: 0;
  color: rgba(18,35,31,.75);
}

.contact a {
  font-weight: 900;
}

.prose {
  max-width: 800px;
  padding-top: 84px;
}

.prose h1 {
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.prose .intro {
  margin: 0 0 46px;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.prose section:first-of-type {
  border-top: 0;
}

.prose h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose p {
  margin: 0;
}

.prose p + p,
.prose ul + p,
.prose p + ul {
  margin-top: 12px;
}

.prose ul {
  margin: 12px 0 0;
  padding-left: 21px;
}

.notice {
  padding: 17px 19px;
  border: 1px solid rgba(22,58,50,.10);
  border-radius: 14px;
  background: var(--soft);
  color: var(--green);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  color: var(--muted);
  font-size: .88rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-card {
    min-height: 360px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 10px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-links {
    display: none;
  }

  nav {
    min-height: 66px;
  }

  .hero {
    padding: 54px 0 56px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.8rem);
  }

  .hero-card {
    min-height: 410px;
    padding: 25px;
    border-radius: 22px;
  }

  .mini-grid {
    left: 25px;
    right: 25px;
    bottom: 25px;
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 36px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}