:root {
  --ink: #17211f;
  --muted: #5d6965;
  --paper: #fffdf6;
  --cream: #f3efe5;
  --green: #1e3930;
  --green-2: #dfe9e5;
  --gold: #f4c95d;
  --red: #d95d39;
  --line: #d9d1c1;
  --shadow: 0 18px 48px rgba(23, 33, 31, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 253, 246, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--paper);
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a { text-decoration: none; }
.nav a:hover { color: var(--ink); }

.button {
  border: 1px solid var(--ink);
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fffdf6;
  box-shadow: 0 10px 22px rgba(217, 93, 57, 0.24);
}

.button.secondary {
  background: var(--paper);
}

.button.ghost {
  border-color: transparent;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: clamp(32px, 6vw, 72px) clamp(18px, 5vw, 64px);
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.72);
}

.preview-wrap {
  position: relative;
}

.preview-wrap img {
  width: 100%;
  display: block;
  filter: drop-shadow(var(--shadow));
}

.price-sticker {
  position: absolute;
  right: 7%;
  bottom: 7%;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  border: 5px solid var(--paper);
  font-size: 2rem;
  font-weight: 950;
  transform: rotate(-8deg);
}

.section {
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 64px);
}

.section.alt { background: var(--paper); }
.section.dark { background: var(--green); color: var(--paper); }
.section.dark .lead, .section.dark .muted { color: #d9e4df; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.card, .price-card, .plan-page {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card h3, .price-card h3 { margin-bottom: 8px; }
.muted { color: var(--muted); }

.plain-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.plain-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(23, 33, 31, 0.09);
}

.plain-list strong {
  min-width: 84px;
}

.price-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: #f9f6ec;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1;
  font-weight: 950;
  margin: 10px 0;
}

.mini {
  font-size: 0.88rem;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(23, 33, 31, 0.44);
}

.modal.is-open { display: flex; }

.modal-panel {
  max-width: 470px;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.delivery-hero {
  padding-top: 56px;
}

.plan-page {
  margin: 18px auto;
  max-width: 860px;
  background: #fff;
}

.plan-title {
  padding: 18px;
  margin: -22px -22px 18px;
  background: var(--green);
  color: var(--paper);
  border-radius: 8px 8px 0 0;
}

.form-line {
  min-height: 34px;
  border-bottom: 2px solid #222;
  display: inline-block;
  min-width: 210px;
}

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

.check-item {
  border: 1px solid #222;
  padding: 10px;
  min-height: 72px;
}

.footer {
  padding: 26px clamp(18px, 5vw, 64px);
  background: #141b19;
  color: #d9e4df;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 820px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .nav { flex-wrap: wrap; }
  .hero { min-height: auto; }
  .hero-grid, .grid, .price-band { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .price-sticker { width: 92px; height: 92px; font-size: 1.45rem; }
  .footer-inner { flex-direction: column; }
}

@media print {
  body { background: #fff; }
  .site-header, .hero, .section:not(.printable), .footer, .modal { display: none !important; }
  .section.printable { padding: 0; }
  .plan-page { border: 0; page-break-after: always; }
  .button { display: none; }
}
