:root {
  --bg: #FFFFFF;
  --fg: #3A2A1A;
  --muted: #6F5B49;
  --brand: #2F251B;
  --card: #FFFDF9;
  --soft: #FAF6EF;
  --border: #EADFCC;
  --shadow: rgba(0,0,0,0.08);
  --accent: #66CC33;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  margin: 0;
  padding: 0;
}

body {
  color: var(--fg);
  font-family: 'Nunito', system-ui, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header.banner {
  background: #fff;
  box-shadow: 0 3px 6px var(--shadow);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.banner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}

.logo-combo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-decoration: none;
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
}

.brand-main {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--brand);
  font-weight: 800;
}

.brand-dotno {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
}

.logo-mark {
  width: 72px;
  height: auto;
}

.hero {
  text-align: center;
  padding: 64px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(102,204,51,0.14), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.hero-inner {
  max-width: 880px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #2f6f18;
  background: rgba(102,204,51,0.14);
  border: 1px solid rgba(102,204,51,0.35);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.08;
  color: var(--brand);
  margin: 16px auto 18px;
  max-width: 900px;
}

.lead {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--muted);
  max-width: 76ch;
  margin: 0 auto;
}

.section {
  text-align: center;
  padding: 56px 0;
}

.section.soft {
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 10px;
  color: var(--brand);
}

.narrow-text {
  max-width: 72ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  align-items: stretch;
}

.choice-card,
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 22px var(--shadow);
  text-align: left;
}

.choice-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.choice-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--accent);
}

.choice-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(102,204,51,0.14);
  border: 1px solid rgba(102,204,51,0.35);
  color: #2f6f18;
  font-weight: 900;
  margin-bottom: 18px;
}

.choice-card h3,
.info-card h3 {
  color: var(--brand);
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.choice-card p,
.info-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.choice-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.btn {
  appearance: none;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px var(--shadow);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  padding: 24px;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 40px 0 60px;
  background: var(--bg);
}

footer a {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 980px) {
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .choice-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .banner-inner {
    padding: 24px 0;
  }

  .logo-combo {
    gap: 8px;
  }

  .logo-mark {
    width: 58px;
  }

  .hero {
    padding: 46px 0 34px;
  }

  .section {
    padding: 44px 0;
  }

  .choice-card,
  .info-card {
    padding: 22px;
    border-radius: 20px;
  }

  .btn {
    width: 100%;
  }
}
