:root {
  --ink: #18210f;
  --muted: #69725f;
  --line: #dfe7d3;
  --cream: #fffaf0;
  --soft: #f4f8ea;
  --green: #376b2b;
  --green-dark: #23471d;
  --yellow: #f5bd3d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(42, 56, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 231, 211, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 42px;
  place-items: center;
  color: var(--green-dark);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50% 50% 46% 46%;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

.header-action,
.secondary-button,
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.header-action,
.secondary-button {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.primary-button {
  padding: 0 22px;
  border: 0;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(55, 107, 43, 0.24);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 76px) 48px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.areas p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.hero-media img {
  width: 100%;
  height: min(62vw, 620px);
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.delivery-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: 280px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.delivery-note span {
  color: var(--muted);
}

.section-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.section-strip span {
  padding: 18px;
  text-align: center;
  font-weight: 800;
  background: var(--soft);
}

.subscription-section,
.content-grid,
.areas {
  padding: 70px clamp(18px, 5vw, 76px);
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.builder,
.summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.builder {
  display: grid;
  gap: 0;
}

fieldset {
  margin: 0;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

fieldset:last-child {
  border-bottom: 0;
}

legend {
  margin-bottom: 14px;
  font-weight: 800;
}

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

.option-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--green);
  background: #eef7e7;
  box-shadow: inset 0 0 0 1px var(--green);
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card span {
  font-weight: 800;
}

.choice-card small,
.hint,
.microcopy {
  color: var(--muted);
  line-height: 1.5;
}

.quantity-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 160px) 46px;
  gap: 10px;
  align-items: center;
}

.stepper {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
}

input[type="number"],
input[type="text"],
input[type="tel"],
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

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

.address-grid label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.address-grid .wide {
  grid-column: 1 / -1;
}

[hidden] {
  display: none !important;
}

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

.day-grid label {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  font-weight: 800;
  cursor: pointer;
}

.day-grid label:has(input:checked) {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.day-grid input {
  position: absolute;
  opacity: 0;
}

.summary {
  position: sticky;
  top: 88px;
  padding: 24px;
}

.price-line {
  margin: 22px 0;
}

.price-line span {
  display: block;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 800;
}

.price-line small {
  color: var(--muted);
  font-weight: 700;
}

.savings {
  padding: 12px 14px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.summary-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.summary-list dt {
  color: var(--muted);
}

.summary-list dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.full {
  width: 100%;
  margin-top: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.content-grid article {
  min-height: 230px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-grid article span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 800;
}

.content-grid article p {
  color: var(--muted);
  line-height: 1.6;
}

.areas {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.areas ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areas li {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--green-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .app-layout,
  .content-grid,
  .areas {
    grid-template-columns: 1fr;
  }

  .summary {
    position: static;
  }

  .section-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: stretch;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-stats,
  .option-grid,
  .option-grid.two,
  .option-grid.three,
  .address-grid,
  .day-grid,
  .areas ul {
    grid-template-columns: 1fr;
  }

  .address-grid .wide {
    grid-column: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .delivery-note {
    position: static;
    margin-top: 12px;
  }

  .section-strip {
    grid-template-columns: 1fr;
  }
}
