/* UPDATE COLOURS: Change these variables to quickly adjust the brand palette. */
:root {
  --cream: #fff8ec;
  --cream-deep: #f2e6d4;
  --surface: #ffffff;
  --dark-green: #243d26;
  --leaf-green: #5f7d32;
  --olive: #8fa652;
  --tomato: #cf3e21;
  --pepper: #b71924;
  --honey: #f5ad10;
  --honey-soft: #fff0bd;
  --ink: #1c241d;
  --muted: #65705e;
  --line: #e4d9c7;
  --shadow: 0 18px 48px rgba(36, 61, 38, 0.14);
  --soft-shadow: 0 10px 26px rgba(36, 61, 38, 0.08);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, 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;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 18px;
  color: #ffffff;
  background: var(--dark-green);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: 170px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  color: var(--dark-green);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a {
  padding: 6px 0;
}

.site-nav a:hover {
  color: var(--tomato);
}

.section {
  padding: clamp(62px, 8vw, 106px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 78px;
}

.section > * {
  max-width: var(--max-width);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  min-height: min(700px, calc(100vh - 79px));
  background:
    linear-gradient(135deg, rgba(143, 166, 82, 0.13), transparent 38%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.hero > * {
  max-width: none;
}

.hero-logo {
  width: min(205px, 58vw);
  margin-bottom: 16px;
  mix-blend-mode: multiply;
}

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

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

h1 {
  margin-bottom: 10px;
  color: var(--dark-green);
  font-size: clamp(3rem, 6.8vw, 4.9rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  color: var(--dark-green);
  font-size: clamp(2.15rem, 4.4vw, 4.5rem);
  line-height: 1;
  max-width: 930px;
}

h3 {
  margin-bottom: 8px;
  color: var(--dark-green);
  font-size: 1.2rem;
  line-height: 1.22;
}

.hero-slogan {
  margin-bottom: 10px;
  color: var(--leaf-green);
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 950;
}

.hero-subheading {
  max-width: 640px;
  margin-bottom: 14px;
  color: var(--dark-green);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  font-weight: 850;
}

.hero-description,
.section-heading p,
.section-copy,
.showcase-copy p,
.packaging-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
}

.button-primary {
  color: #ffffff;
  background: var(--dark-green);
}

.button-primary:hover {
  background: #162717;
}

.button-secondary {
  color: var(--dark-green);
  background: var(--surface);
  border-color: var(--line);
}

.button-light {
  width: fit-content;
  margin-top: 22px;
  color: var(--dark-green);
  background: var(--cream);
  border-color: rgba(255, 248, 236, 0.28);
}

.pack-hero,
.packaging-visual {
  margin: 0;
  padding: clamp(16px, 3vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pack-hero img,
.packaging-visual img {
  width: 100%;
  border-radius: var(--radius);
}

figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

figcaption strong {
  color: var(--dark-green);
}

.showcase-highlights {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-highlights article {
  min-width: 0;
  padding: 24px clamp(16px, 3vw, 28px);
  background: var(--surface);
}

.showcase-highlights span,
.showcase-highlights strong {
  display: block;
}

.showcase-highlights span {
  margin-bottom: 7px;
  color: var(--leaf-green);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.showcase-highlights strong {
  color: var(--dark-green);
  font-size: 1.02rem;
  line-height: 1.25;
}

.showcase-highlights p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.split,
.packaging-section,
.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  gap: clamp(28px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.split > *,
.packaging-section > *,
.showcase-section > * {
  max-width: none;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading p {
  max-width: 760px;
}

.stat-grid,
.benefit-grid,
.flavour-grid,
.team-grid,
.prompt-grid {
  display: grid;
  gap: 16px;
}

.stat-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.stat-card,
.benefit-card,
.flavour-card,
.team-card,
.prompt-grid article,
.taste-card {
  min-width: 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 190px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.stat-card span,
.benefit-card p,
.flavour-card p,
.team-card p,
.taste-card p,
.prompt-grid article,
.check-list {
  color: var(--muted);
}

.evidence-label {
  display: inline-flex;
  width: fit-content;
  margin: 6px 0 0;
  padding: 8px 11px;
  color: var(--dark-green);
  background: var(--honey-soft);
  border: 1px solid rgba(245, 173, 16, 0.35);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
}

.product-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.product-showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-showcase-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.product-snapshot-list {
  display: grid;
  gap: 10px;
}

.product-snapshot-list p {
  margin: 0;
  padding: 13px 15px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-snapshot-list strong {
  color: var(--dark-green);
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-badges span {
  padding: 10px 13px;
  color: var(--dark-green);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
}

.difference-card {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1.3fr);
  gap: 26px;
  align-items: start;
  margin-top: 28px;
  padding: 26px;
  color: #ffffff;
  background: var(--dark-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.difference-card h3,
.difference-card .eyebrow {
  color: #ffffff;
}

.difference-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.difference-card li {
  position: relative;
  padding: 14px 16px 14px 42px;
  color: var(--dark-green);
  background: var(--cream);
  border-radius: var(--radius);
  font-weight: 850;
}

.difference-card li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 12px;
  height: 12px;
  background: var(--honey);
  border-radius: 50%;
  transform: translateY(-50%);
}

.inulin-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.inulin-card p {
  color: var(--muted);
}

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

.inulin-points div {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inulin-points strong,
.inulin-points span {
  display: block;
}

.inulin-points strong {
  margin-bottom: 6px;
  color: var(--dark-green);
  font-size: 1.08rem;
}

.inulin-points span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.45;
}

.nutrition-card {
  margin-top: 18px;
  padding: 26px;
  background: var(--dark-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nutrition-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.nutrition-heading h3,
.nutrition-heading .eyebrow,
.nutrition-heading strong {
  color: #ffffff;
}

.nutrition-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.nutrition-heading strong {
  flex: 0 0 auto;
  padding: 8px 12px;
  background: rgba(255, 248, 236, 0.12);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 999px;
  font-size: 0.95rem;
}

.nutrition-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: var(--radius);
}

.nutrition-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #f8fff2;
  background: #152916;
}

.nutrition-table th,
.nutrition-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 248, 236, 0.16);
  text-align: right;
  vertical-align: middle;
  white-space: nowrap;
}

.nutrition-table th:first-child,
.nutrition-table td:first-child {
  text-align: left;
}

.nutrition-table thead th {
  color: #ffffff;
  background: var(--leaf-green);
  font-size: 0.9rem;
  font-weight: 950;
}

.nutrition-table tbody th {
  color: #ffffff;
  font-weight: 900;
}

.nutrition-table tbody tr:nth-child(even) {
  background: rgba(255, 248, 236, 0.045);
}

.nutrition-table tbody tr:last-child th,
.nutrition-table tbody tr:last-child td {
  border-bottom: 0;
}

.nutrition-note {
  margin: 12px 0 0;
  color: #e9f0df;
  font-size: 0.9rem;
  font-weight: 760;
}

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

.benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  border-top: 7px solid var(--leaf-green);
}

.benefit-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--leaf-green);
  font-size: 0.82rem;
  font-weight: 950;
}

.tomato-card {
  border-top-color: var(--tomato);
}

.olive-card {
  border-top-color: var(--olive);
}

.honey-card {
  border-top-color: var(--honey);
}

.green-card {
  border-top-color: var(--dark-green);
}

.flavours-section {
  background: var(--cream-deep);
}

.flavour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.flavour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding-top: 22px;
}

.flavour-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--tomato);
}

.flavour-card > p:last-of-type {
  margin-bottom: 18px;
}

.flavour-pepper::before {
  background: var(--pepper);
}

.flavour-honey::before {
  background: var(--honey);
}

.flavour-image {
  display: grid;
  place-items: center;
  height: 205px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid rgba(228, 217, 199, 0.75);
  border-radius: var(--radius);
}

.flavour-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flavour-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--tomato);
  box-shadow: 0 8px 18px rgba(207, 62, 33, 0.24);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.character-name {
  margin-bottom: 8px;
  color: var(--leaf-green);
  font-weight: 900;
}

.taste-profile {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--dark-green);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.flavour-pack-shot {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-top: auto;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flavour-tomato .flavour-pack-shot {
  max-height: 190px;
  border-color: rgba(207, 62, 33, 0.28);
  box-shadow: 0 12px 28px rgba(207, 62, 33, 0.12);
}

.insight-section {
  background: var(--surface);
}

.insight-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.stat-highlight {
  background: var(--dark-green);
}

.stat-highlight strong,
.stat-highlight span {
  color: #ffffff;
}

.taste-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.18fr);
  gap: 30px;
  margin-top: 20px;
  background: var(--cream);
  border-left: 8px solid var(--tomato);
}

.taste-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.snapshot-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.snapshot-highlights span {
  padding: 9px 11px;
  color: #ffffff;
  background: var(--dark-green);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.mini-chart {
  display: grid;
  gap: 18px;
  align-content: center;
}

.chart-row {
  display: grid;
  gap: 7px;
}

.chart-row span {
  color: var(--dark-green);
  font-size: 0.9rem;
  font-weight: 850;
}

.chart-row div {
  height: 16px;
  overflow: hidden;
  background: #eadfcd;
  border-radius: 999px;
}

.chart-row i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--tomato), var(--honey));
  border-radius: 999px;
}

.chart-row small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.packaging-section {
  align-items: start;
  background: var(--cream);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--olive);
  border-radius: 50%;
}

.showcase-section {
  align-items: start;
  background: var(--dark-green);
  color: #ffffff;
}

.showcase-section h2,
.showcase-section .eyebrow,
.showcase-section .showcase-copy p {
  color: #ffffff;
}

.social-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: var(--radius);
}

.social-strip span {
  margin-right: 4px;
  color: #ffffff;
  font-weight: 900;
}

.social-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--dark-green);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.social-strip .disabled-link {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.78;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.prompt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.prompt-grid article {
  display: flex;
  align-items: center;
  min-height: 96px;
  color: var(--dark-green);
  font-weight: 900;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  color: #ffffff;
  background: var(--dark-green);
  border-radius: 50%;
  font-weight: 950;
}

.team-card h3 {
  margin-bottom: 6px;
}

.team-card p {
  margin-bottom: 0;
}

.snack-fact {
  margin-top: 14px;
  padding-top: 14px;
  color: var(--leaf-green);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px);
  color: #e9f0df;
  background: var(--dark-green);
}

.site-footer img {
  width: 148px;
  margin-bottom: 12px;
  mix-blend-mode: screen;
}

.site-footer p {
  margin-bottom: 5px;
}

.footer-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  max-width: 520px;
}

.social-heading {
  grid-column: 1 / -1;
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 900;
}

.footer-social a,
.footer-social .social-placeholder {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  padding: 12px;
  color: var(--dark-green);
  background: var(--cream);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 900;
}

.footer-social small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-social .social-placeholder {
  opacity: 0.72;
}

.footnote {
  max-width: 820px;
  align-self: end;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero,
  .showcase-highlights,
  .split,
  .packaging-section,
  .showcase-section,
  .product-showcase-panel,
  .taste-card,
  .difference-card,
  .inulin-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .inulin-points {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .showcase-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: clamp(18px, 5vw, 72px);
  }

  .benefit-grid,
  .insight-stats,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 9px 14px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 92px;
    height: 42px;
  }

  .site-nav {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .site-nav a:hover {
    background: var(--surface);
  }

  .section {
    padding-block: 50px;
    scroll-margin-top: 68px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .stat-grid-three,
  .showcase-highlights,
  .benefit-grid,
  .flavour-grid,
  .insight-stats,
  .prompt-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .footer-social {
    grid-template-columns: 1fr;
  }

  .flavour-image {
    height: 170px;
  }

  .stat-card,
  .benefit-card {
    min-height: auto;
  }

  .difference-card {
    padding: 22px;
  }
}
