:root {
  --cream: #f8f0e4;
  --paper: #fff9ef;
  --section-a: #fff8ed;
  --section-b: #f6eadb;
  --section-c: #efe0cc;
  --leaf: #485a25;
  --leaf-soft: #6f7f3f;
  --moss: #273319;
  --clay: #b38456;
  --sage: #dfe5ce;
  --ink: #263417;
  --muted: #675e51;
  --line: rgba(72, 90, 37, 0.2);
  --shadow: 0 22px 58px rgba(68, 47, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--section-a) 18%, var(--section-b) 58%, var(--section-a) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 72px);
  border-bottom: 1px solid rgba(72, 90, 37, 0.12);
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(172px, 17vw, 252px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 42px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn,
.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn.primary,
.header-cta {
  color: #fff;
  background: var(--leaf);
  box-shadow: 0 14px 28px rgba(72, 90, 37, 0.18);
}

.btn.secondary {
  color: var(--leaf);
  background: rgba(255, 250, 240, 0.78);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--leaf);
}

.page-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 255, 255, 0.34), transparent 26%),
    linear-gradient(180deg, var(--section-start, var(--section-a)) 0%, var(--section-mid, var(--section-a)) 58%, var(--section-end, var(--section-b)) 100%);
}

.page-section::before {
  position: absolute;
  inset: 8% auto auto -8%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(72, 90, 37, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.42);
  content: "";
}

.page-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), var(--section-end, var(--section-b)));
  pointer-events: none;
  content: "";
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0 0 22px;
  border: 1px solid rgba(72, 90, 37, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--leaf);
  background: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
}

h2 {
  max-width: 920px;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
}

h3 {
  margin: 0;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.24rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 750px) 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(88px, 10vh, 150px);
  padding-bottom: clamp(76px, 9vh, 120px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.92) 33%, rgba(255, 250, 240, 0.26) 58%, rgba(255, 250, 240, 0) 100%),
    url("assets/generated-hero.png");
  background-position: center top;
  background-size: cover;
}

.hero-copy,
.hero-media,
.section-copy,
.section-image,
.product-intro,
.product-hero,
.section-heading,
.contact-card {
  position: relative;
  z-index: 1;
}

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

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
}

.benefit-row article,
.feature-grid article,
.product-card,
.timeline article,
.testimonial-grid article,
.score-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow);
}

.benefit-row article {
  display: grid;
  min-height: 104px;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.benefit-row span,
.timeline span,
.product-card small {
  color: var(--leaf-soft);
  font-weight: 900;
}

.benefit-row span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(72, 90, 37, 0.3);
  border-radius: 999px;
  color: var(--leaf);
  font-size: 1.8rem;
}

.benefit-row strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-note {
  position: relative;
  margin: 28px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-note::before {
  position: absolute;
  top: 0.2em;
  bottom: 0.2em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--leaf);
  content: "";
}

.hero-media,
.section-image,
.product-hero,
.contact-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media {
  min-height: min(720px, 76vh);
}

.hero .hero-media {
  display: none;
}

.hero-media img,
.section-image img,
.product-hero img,
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-image img,
.product-hero img,
.product-card-image,
.process-image,
.contact-media img {
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
}

.about {
  --section-start: #f9f1e5;
  --section-mid: #f7ecdd;
  --section-end: #f3e5d3;
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  background:
    radial-gradient(circle at 18% 70%, rgba(111, 127, 63, 0.09), transparent 28%),
    linear-gradient(180deg, var(--section-start), var(--section-mid) 56%, var(--section-end)),
    radial-gradient(circle at 20% 70%, rgba(111, 127, 63, 0.18), transparent 30%);
}

.section-image {
  aspect-ratio: 4 / 5;
}

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

.feature-grid article {
  min-height: 220px;
  padding: 22px;
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  grid-template-areas:
    "copy image"
    "cards cards";
  align-items: center;
  gap: clamp(26px, 4vw, 52px);
}

.product-stick {
  --section-start: #f8ecdc;
  --section-mid: #f7eddf;
  --section-end: #f4e6d3;
  background:
    radial-gradient(circle at 84% 18%, rgba(179, 132, 86, 0.09), transparent 30%),
    linear-gradient(180deg, var(--section-start), var(--section-mid) 52%, var(--section-end));
}

.product-ring {
  --section-start: #f4e6d3;
  --section-mid: #f8ecdc;
  --section-end: #f3e4d0;
  background:
    radial-gradient(circle at 78% 20%, rgba(72, 90, 37, 0.08), transparent 30%),
    linear-gradient(180deg, var(--section-start), var(--section-mid) 50%, var(--section-end));
}

.product-cone {
  --section-start: #f3e4d0;
  --section-mid: #f8ecdc;
  --section-end: #f4e6d3;
  background:
    radial-gradient(circle at 80% 18%, rgba(179, 132, 86, 0.08), transparent 30%),
    linear-gradient(180deg, var(--section-start), var(--section-mid) 52%, var(--section-end));
}

.product-intro {
  grid-area: copy;
}

.product-hero {
  grid-area: image;
  height: clamp(260px, 34vw, 430px);
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-area: cards;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.product-card.featured {
  background: var(--moss);
  color: #fff;
}

.product-card.featured ul,
.product-card.featured small {
  color: rgba(255, 250, 240, 0.78);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-card ul {
  flex: 1;
  margin: 18px 0;
  padding-left: 20px;
  color: var(--muted);
}

.product-card strong {
  color: var(--leaf);
  font-size: 2rem;
  font-weight: 900;
}

.product-card.featured strong {
  color: #f1d9aa;
}

.product-card .btn {
  width: 100%;
  margin-top: 16px;
}

.process {
  --section-start: #f4e6d3;
  --section-mid: #f8ecdc;
  --section-end: #f7eddf;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(180deg, var(--section-start), var(--section-mid) 48%, var(--section-end));
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 360px;
  overflow: hidden;
  padding: 0 0 24px;
}

.timeline h3 {
  margin-top: 12px;
}

.process-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.timeline span,
.timeline h3,
.timeline p {
  display: block;
  margin-right: 24px;
  margin-left: 24px;
}

.timeline span {
  margin-top: 20px;
}

.feedback {
  --section-start: #f7eddf;
  --section-mid: #fff8ed;
  --section-end: #f7eddf;
  background:
    radial-gradient(circle at 16% 18%, rgba(72, 90, 37, 0.06), transparent 26%),
    linear-gradient(180deg, var(--section-start), var(--section-mid) 44%, var(--section-end));
}

.score-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--line);
}

.score-panel div {
  min-height: 132px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 250, 240, 0.94);
}

.score-panel strong {
  display: block;
  color: var(--leaf);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.score-panel span,
.testimonial-grid p {
  color: var(--muted);
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid article {
  min-height: 220px;
  padding: 24px;
}

.avatar {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--leaf-soft);
  font-weight: 900;
}

.contact {
  min-height: auto;
  --section-start: #f7eddf;
  --section-mid: #f5e8d7;
  --section-end: #efe0cc;
  background:
    radial-gradient(circle at 82% 18%, rgba(72, 90, 37, 0.09), transparent 30%),
    linear-gradient(180deg, var(--section-start), var(--section-mid) 52%, var(--section-end));
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 5vw, 56px);
}

.contact-media {
  aspect-ratio: 4 / 5;
}

.signup-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin-top: 28px;
}

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

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdf7;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: start;
  padding: 42px clamp(18px, 5vw, 76px);
  color: #fff;
  background: #283119;
}

.site-footer img {
  width: 204px;
  margin-bottom: 12px;
  filter: brightness(1.7);
}

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

.site-footer address {
  font-style: normal;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header.open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    gap: 16px;
    justify-content: start;
    padding: 16px 0 4px;
  }

  .site-header.open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: fit-content;
  }

  .hero,
  .about,
  .product-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(247, 240, 229, 0.9)),
      url("assets/generated-hero.png");
    background-position: center top;
  }

  .product-section {
    grid-template-areas:
      "copy"
      "image"
      "cards";
  }

  .hero-media {
    min-height: 460px;
  }

  .hero .hero-media {
    display: block;
  }

  .feature-grid,
  .product-grid,
  .timeline,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
    padding: 12px 18px;
  }

  .brand img {
    width: 166px;
  }

  .page-section {
    min-height: auto;
    padding: 54px 18px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .benefit-row,
  .feature-grid,
  .product-grid,
  .timeline,
  .score-panel,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .product-hero {
    height: 260px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card-image {
    aspect-ratio: 16 / 11;
  }

  .contact-card {
    padding: 20px;
  }
}
