:root {
  --green-950: #06251c;
  --green-900: #0b3d2e;
  --green-800: #14543f;
  --green-600: #1f7a58;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --cream: #f7f4ee;
  --paper: #fffdf8;
  --ink: #12201b;
  --muted: #5c6b66;
  --line: rgba(18, 32, 27, 0.1);
  --shadow: 0 24px 50px rgba(6, 37, 28, 0.16);
  --radius: 18px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Figtree, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--green-950);
  color: var(--gold-soft);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.logo-mark {
  width: 48px;
  height: 48px;
  color: var(--gold);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  padding: 12px 20px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-header {
  background: var(--green-900);
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 16px;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-950);
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.02rem;
}

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 162, 39, 0.18), transparent 28%),
    linear-gradient(160deg, var(--green-950), var(--green-800));
  color: #fff;
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 12px;
}

.hero h1,
.section h2,
.cta h2,
.why-grid h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  max-width: 12ch;
}

.hero-lead {
  margin-top: 16px;
  font-size: 1.25rem;
  color: var(--gold-soft);
  font-weight: 600;
}

.hero-text {
  margin-top: 18px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.86);
}

.hero-alert {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
}

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

.hero-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-kicker {
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  margin: 8px 0 8px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  font-weight: 600;
}

.option:has(input:checked) {
  border-color: var(--green-600);
  background: #eef7f2;
}

.option input {
  accent-color: var(--green-800);
}

.hero-card .btn {
  margin-top: 10px;
}

.card-note {
  font-size: 0.82rem;
  margin: 12px 0 0;
}

.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0;
}

.trust-grid article {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-grid strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--paper);
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h2,
.why-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.section-head p,
.lede {
  color: var(--muted);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.step-num {
  display: block;
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.steps h3,
.service h3,
.why-list h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.steps p,
.service p,
.why-list p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--green-800);
  margin-bottom: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.why-list li {
  padding: 20px 22px;
  background: var(--paper);
  border-radius: 14px;
  border-left: 4px solid var(--gold);
}

.cta {
  padding: 0 0 88px;
}

.cta-box {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: #fff;
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer strong {
  font-family: Fraunces, Georgia, serif;
  color: #fff;
  font-size: 1.2rem;
}

.footer p {
  max-width: 42ch;
  margin-top: 8px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom {
  padding-top: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1f9d57;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(31, 157, 87, 0.4);
  z-index: 50;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 900px) {
  .nav,
  .btn-header {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-h) + 32px);
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }

  .menu-btn {
    display: flex;
  }

  .hero-grid,
  .trust-grid,
  .steps,
  .cards,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .section {
    padding: 64px 0;
  }

  .cta {
    padding-bottom: 64px;
  }

  .cta-box {
    padding: 40px 22px;
  }
}
