:root {
  --teal: #144f46;
  --ink: #113034;
  --mid: #1a6b5c;
  --yellow: #ffce49;
  --yellow-soft: #ffd567;
  --cream: #f7f7f5;
  --gray: #e5e5e3;
  --muted: #6b736f;
  --white: #fff;
  --max: 1180px;
  --narrow: 760px;
  --header: 64px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif;
  --radius: 4px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a { color: var(--mid); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--teal);
  color: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.container.narrow { width: min(100% - 2rem, var(--narrow)); }

.promo-bar {
  background: var(--yellow-soft);
  color: var(--teal);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
}
.promo-bar p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  min-height: var(--header);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
  flex-shrink: 0;
}
.brand-mark {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-tag {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--mid); }

.nav-toggle {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.4rem;
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.header-cta { flex-shrink: 0; }

.hero {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 380px;
  max-height: 620px;
  display: grid;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  object-fit: cover;
  object-position: right center;
  opacity: 1;
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(100deg, rgba(17,48,52,.92) 0%, rgba(17,48,52,.75) 40%, rgba(17,48,52,.2) 100%);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.hero-content {
  max-width: 680px;
  margin-left: max(calc((100% - var(--max)) / 2), 1rem);
  width: min(100% - 2rem, 680px);
}
.eyebrow {
  display: inline-block;
  margin: 0 0 .85rem;
  padding: .3rem .7rem;
  background: var(--yellow);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  line-height: 1.15;
  font-weight: 700;
}
.hero-lead {
  margin: 0 0 1.4rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  max-width: 56ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.intro-band {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--gray);
}
.intro-band p {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
}

.trust-strip {
  background: var(--teal);
  color: var(--white);
  padding: 1rem 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.5rem;
}
.trust-item {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.content-section { padding: clamp(2.75rem, 6vw, 4.5rem) 0; }
.content-section.alt { background: var(--cream); }

.section-head { max-width: 720px; margin-bottom: 2rem; }
.section-head h2 { margin: 0 0 .7rem; }
.section-head p { margin: 0; color: var(--muted); }

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 .75rem;
  color: var(--teal);
}
h4 { margin: 0; font-size: 1rem; font-weight: 600; color: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-media { order: 1; }
.split-copy h2 { margin-top: 0; }
.split-copy p:first-of-type { margin-top: 0; }

.split-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  background: var(--cream);
}
.split-media--wide { aspect-ratio: 16 / 10; }
.split-media--wide img { object-fit: contain; }
.split-media img {
  width: 100%;
  height: 100%;
}

.check-list,
.dash-list {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}
.check-list li,
.dash-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: .45rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .65rem;
  height: .65rem;
  background: var(--teal);
}
.dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85rem;
  width: .7rem;
  height: 2px;
  background: var(--yellow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  margin-bottom: 2.25rem;
}
.stat {
  background: var(--teal);
  color: var(--white);
  padding: 1.1rem .75rem;
  text-align: center;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-height: 96px;
  justify-content: center;
}
.stat strong {
  font-size: 1.2rem;
  color: var(--yellow);
}
.stat span { font-size: .82rem; opacity: .9; }

.review-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.25rem;
}
.review-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}
.review-media img { width: 100%; height: 100%; }
.review-panels { display: flex; flex-direction: column; gap: 1rem; }
.panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray);
}
.panel-positive { border-top: 4px solid var(--teal); }
.panel-note {
  border-top: 4px solid var(--yellow);
  background: #f1f1f1;
}
.panel h3 { margin-top: 0; }
.panel p:last-child { margin-bottom: 0; }

.testimonials {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
}
.testimonials-head { margin-bottom: 1.35rem; }
.testimonials-head h3 { margin: 0 0 .5rem; }
.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .85rem;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}
.stars {
  color: #f5b400;
  letter-spacing: .06em;
  font-size: 1.05rem;
  line-height: 1;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.info-box.review-box {
  background: var(--white);
  border: 1px solid var(--gray);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.info-box-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem;
  background: #f4f8f7;
  border-bottom: 1px solid var(--gray);
}
.reviewer-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.info-box-meta { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.info-box-meta cite {
  font-style: normal;
  font-weight: 700;
  font-size: .95rem;
}
.info-box-meta .reviewer-meta {
  font-size: .75rem;
  color: var(--muted);
}
.info-box-meta .stars { margin-top: .15rem; font-size: .9rem; }
.info-box-body { padding: 1rem 1.1rem 1.2rem; flex: 1; }
.info-box-body p { margin: 0; font-size: .95rem; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.product-tile {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-tile img {
  width: 100%;
  aspect-ratio: 1894 / 1264;
  object-fit: cover;
  object-position: center;
  background: #1a1a1a;
}
.product-tile-body { padding: 1.25rem; }
.product-tile-body h3 { margin-top: 0; margin-bottom: .65rem; }
.product-tile-body p:last-child { margin-bottom: 0; }

.flavours-block h3 { margin-top: 0; }
.flavour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .85rem;
  margin: 1.25rem 0 1.5rem;
}
.flavour-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
}
.flavour-card img {
  width: 100%;
  aspect-ratio: 1;
}
.flavour-card h4 { padding: .85rem; font-size: .95rem; }
.flavour-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  background: linear-gradient(145deg, var(--teal), var(--mid));
  color: var(--white);
  border: 0;
  aspect-ratio: 1;
}
.flavour-text-inner { text-align: center; padding: 1.25rem; }
.flavour-text h4 { color: var(--white); padding: 0; margin-bottom: .25rem; }
.flavour-text p { margin: 0; color: var(--yellow-soft); font-size: .85rem; }
.flavours-note { max-width: 70ch; }

.final-section {
  position: relative;
  min-height: 420px;
  display: grid;
  color: var(--white);
  background: var(--ink);
}
.final-media { position: absolute; inset: 0; }
.final-media img { width: 100%; height: 100%; object-fit: cover; }
.final-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(105deg, rgba(17,48,52,.92), rgba(20,79,70,.8) 60%, rgba(17,48,52,.5));
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: flex;
  align-items: center;
}
.final-overlay h2 { color: var(--white); margin-top: 0; }
.final-overlay p { color: rgba(255,255,255,.92); }
.final-overlay .btn { margin-top: .5rem; }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2.25rem;
}
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: .85rem;
  color: var(--white);
}
.footer-logo .brand-mark { color: var(--white); }
.footer-logo .brand-tag { color: rgba(255,255,255,.65); }
.footer-brand p {
  margin: 0 0 .75rem;
  max-width: 34ch;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.footer-social-note {
  font-size: .85rem !important;
  color: rgba(255,255,255,.6) !important;
}
.footer-social-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-col h3 {
  margin: 0 0 .9rem;
  color: var(--white);
  font-size: 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .92rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 1rem 0 1.2rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.page-hero {
  background: linear-gradient(135deg, var(--teal), var(--ink));
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
}
.page-hero h1 {
  margin: 0 0 .65rem;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.page-hero p {
  margin: 0;
  max-width: 56ch;
  color: rgba(255,255,255,.88);
}
.page-content { padding: clamp(2rem, 5vw, 3.25rem) 0; }
.page-content .prose { max-width: 760px; }
.prose h2 {
  margin-top: 1.75rem;
  margin-bottom: .7rem;
  font-size: 1.3rem;
}
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }

.contact-form {
  display: grid;
  gap: .85rem;
  max-width: 520px;
  margin-top: 1.25rem;
}
.form-field { display: grid; gap: .35rem; }
.form-field label {
  font-weight: 600;
  font-size: .9rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.faq-list {
  display: grid;
  gap: .85rem;
  max-width: 760px;
}
.faq-item {
  border: 1px solid var(--gray);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 1.1rem;
}
.faq-item h2 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
}
.faq-item p { margin: 0; color: var(--muted); }

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .review-layout,
  .product-grid { grid-template-columns: 1fr; }
  .split.reverse .split-copy,
  .split.reverse .split-media { order: initial; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .header-cta { display: none; }
  .header-inner { gap: .65rem; }
  .site-nav { min-width: 0; }
  .site-nav ul { gap: .35rem .7rem; }
  .site-nav a { font-size: .78rem; }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: .5rem;
  }
  .site-nav {
    display: block;
    margin-left: auto;
    min-width: 0;
    flex: 1 1 auto;
  }
  .site-nav ul {
    justify-content: flex-end;
    gap: .25rem .55rem;
  }
  .site-nav a { font-size: .72rem; }
  .brand-mark { font-size: 1.05rem; }
  .brand-tag { font-size: .62rem; }
  .hero {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: none;
  }
  .hero-overlay {
    padding: 2rem 0 1.75rem;
    background: linear-gradient(to top, rgba(17,48,52,.94) 0%, rgba(20,79,70,.72) 55%, rgba(17,48,52,.4) 100%);
  }
  .hero h1 { font-size: 1.65rem; }
  .hero-lead {
    font-size: .95rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .content-section,
  .testimonials,
  .final-section {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
  }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .testimonial-grid,
  .flavour-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
