:root {
  --ink: #10261f;
  --soft: #3d534a;
  --muted: #5f7469;
  --line: #d5e0da;
  --paper: #f3f7f4;
  --panel: #ffffff;
  --forest: #1f5c45;
  --forest-deep: #0d3326;
  --gold: #c9a14a;
  --gold-soft: #f0e2c0;
  --sky: #e8f2ec;
  --radius: 1.25rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 161, 74, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(31, 92, 69, 0.12), transparent 50%),
    linear-gradient(180deg, #eef5f0 0%, var(--paper) 38%, #f7faf8 100%);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 247, 244, 0.92);
  border-bottom: 1px solid rgba(213, 224, 218, 0.9);
  backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.brand img { width: 3.25rem; height: 3.25rem; object-fit: contain; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--soft);
}

.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a.is-active { color: var(--forest); }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 51, 38, 0.94) 0%, rgba(31, 92, 69, 0.88) 48%, rgba(16, 38, 31, 0.92) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.25rem) 1.35rem;
  color: #f5faf7;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.hero__support {
  max-width: 40rem;
  font-size: 1.05rem;
  color: rgba(245, 250, 247, 0.88);
}

.hero__support a { color: var(--gold-soft); font-weight: 700; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) 1.35rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.55rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.section__lead { color: var(--soft); font-size: 1.02rem; max-width: 44rem; margin-bottom: 1.5rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 12px 28px rgba(16, 38, 31, 0.05);
}

fieldset.panel { margin-bottom: 1rem; }
legend {
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 0 0.25rem;
}

.hint { color: var(--soft); font-size: 0.95rem; margin: 0.35rem 0 0.85rem; }

label.field { display: block; font-weight: 600; margin-bottom: 0.85rem; }
label.choice { display: flex; gap: 0.6rem; align-items: flex-start; margin: 0.4rem 0; font-weight: 500; color: var(--soft); }
label.choice input { margin-top: 0.35rem; }

input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea { min-height: 6rem; resize: vertical; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

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

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.card .price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0.45rem 0 0.15rem;
}

.card .care { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.65rem; }
.card ul { padding-left: 1.1rem; color: var(--soft); }
.card li { margin: 0.25rem 0; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); background: var(--sky); }
tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; white-space: nowrap; }

.result {
  background: var(--forest-deep);
  color: #eef6f1;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}

.result h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.result p { color: rgba(238, 246, 241, 0.88); }
.result a { color: var(--gold-soft); font-weight: 700; }
.result ul { margin: 0.8rem 0 1rem; padding-left: 1.1rem; }
.result li { margin: 0.45rem 0; }
.result .price { font-size: 1.55rem; font-weight: 700; color: #fff; margin-top: 0.35rem; }

.note { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; }
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.35rem 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}
.footer a { color: var(--forest); font-weight: 600; text-decoration: none; }

.band-select { max-width: 28rem; margin-bottom: 1.25rem; }

@media (max-width: 820px) {
  .grid-2, .cards { grid-template-columns: 1fr; }
  .hero__brand { max-width: none; }
}
