:root {
  --ink: #13201d;
  --muted: #5b6965;
  --line: #dbe5de;
  --paper: #fffdf8;
  --soft: #eef6f1;
  --mint: #1ba56a;
  --mint-dark: #08724d;
  --berry: #bd1f4b;
  --citrus: #f2b705;
  --cola: #452b24;
  --shadow: 0 20px 60px rgba(19, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(219, 229, 222, 0.8);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 148px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

.nav a:hover,
.nav .nav-cta {
  color: var(--ink);
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 88% 18%, rgba(242, 183, 5, 0.24), transparent 28%),
    linear-gradient(135deg, #f8fff6 0%, #fffdf8 46%, #f4f0e6 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  color: #fff;
  background: var(--mint-dark);
  box-shadow: 0 12px 26px rgba(8, 114, 77, 0.25);
}

.primary:hover {
  background: #065f41;
}

.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-weight: 800;
}

.hero-metrics strong {
  color: var(--berry);
  font-size: 26px;
}

.hero-product {
  position: relative;
  align-self: stretch;
  min-height: 470px;
  padding: 34px;
  border: 1px solid rgba(219, 229, 222, 0.9);
  border-radius: 8px;
  background: linear-gradient(160deg, #ffffff 0%, #eaf8f0 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: auto -18% -24% 12%;
  height: 52%;
  background: linear-gradient(90deg, var(--berry), var(--citrus), var(--mint));
  opacity: 0.2;
  transform: rotate(-8deg);
}

.hero-logo {
  position: relative;
  width: min(82%, 360px);
  margin-inline: auto;
}

.tin-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 28px;
}

.tin-stack img {
  width: 100%;
  filter: drop-shadow(0 18px 22px rgba(19, 32, 29, 0.22));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px clamp(18px, 4vw, 64px);
  background: var(--line);
}

.trust-strip span {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #fff;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 64px);
}

.section-muted {
  background: #f2f7f3;
}

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

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

.benefit,
.flavor,
.collection-grid article,
.summary,
.calculator,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 32, 29, 0.06);
}

.benefit {
  padding: 24px;
}

.benefit p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--mint-dark);
  font-weight: 900;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(118px, 1fr));
  gap: 14px;
}

.flavor {
  min-height: 210px;
  padding: 18px 12px 16px;
  text-align: center;
}

.flavor img {
  width: min(132px, 100%);
  height: 138px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.collection-grid article {
  overflow: hidden;
}

.collection-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collection-grid h3 {
  padding: 16px;
}

.order-section {
  background: linear-gradient(135deg, #13201d 0%, #263d35 100%);
  color: #fff;
}

.order-section .eyebrow,
.order-section .section-head {
  color: #b8f0d6;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.calculator,
.summary {
  color: var(--ink);
}

.calculator {
  padding: 16px;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.calc-row:last-child {
  border-bottom: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(27, 165, 106, 0.3);
  border-color: var(--mint);
}

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

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

.summary span,
.summary p {
  color: var(--muted);
}

.summary strong {
  font-size: 24px;
}

.summary p {
  margin: 18px 0 0;
  line-height: 1.6;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 64px);
}

.lead-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-weight: 900;
}

.contact-list a,
.contact-list span {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

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

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 64px);
  color: #d7e4dc;
  background: var(--ink);
}

.footer img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 1040px) {
  .hero,
  .lead-section,
  .order-layout {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flavor-grid,
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .benefit-grid,
  .flavor-grid,
  .collection-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .tin-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-row {
    grid-template-columns: 1fr 92px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer p {
    text-align: left;
  }
}
