:root {
  --ink: #17231f;
  --muted: #5f6d67;
  --paper: #fbfaf6;
  --card: #ffffff;
  --line: #dfe5e1;
  --green: #234c3d;
  --green-dark: #173529;
  --gold: #c2a45f;
  --soft: #edf3ef;
  --shadow: 0 18px 45px rgba(23, 53, 41, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(194,164,95,.12), transparent 28rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223,229,225,.9);
  background: rgba(251,250,246,.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--green);
  font-family: Georgia, serif;
  font-size: 21px;
  box-shadow: 0 8px 20px rgba(35,76,61,.22);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .15s ease, box-shadow .15s ease;
}

.button {
  color: white !important;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(35,76,61,.20);
}

.button-secondary {
  color: var(--green);
  border: 1px solid #bac8c0;
  background: rgba(255,255,255,.75);
}

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

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.hero-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.hero-card .mini-label {
  color: var(--green);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 29px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section.soft {
  width: 100%;
  padding-left: max(16px, calc((100% - 1160px)/2));
  padding-right: max(16px, calc((100% - 1160px)/2));
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p,
.card p,
.legal p,
.legal li {
  color: var(--muted);
}

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 32px rgba(23,53,41,.06);
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: white;
  background: var(--green);
  font-weight: 850;
}

.product-panel {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  border-radius: 32px;
  color: white;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.product-panel p { color: #d9e5de; }

.product-panel .button {
  color: var(--green-dark) !important;
  background: white;
}

.product-window {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}

.product-window div {
  margin: 11px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.09);
}

.page-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 38px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
}

.legal {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 90px;
}

.legal section {
  margin: 38px 0;
  padding: 0;
}

.legal h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.legal h3 {
  margin-top: 24px;
  font-family: Inter, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: #fffdf7;
}

.contact-box {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f3f3ee;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
  font-size: .92rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.small {
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 820px) {
  .nav {
    min-height: 68px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero,
  .product-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
    gap: 34px;
  }

  .grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .product-panel {
    padding: 30px 24px;
  }
}
