:root {
  --ink: #11140f;
  --forest: #145d36;
  --forest-deep: #0c4026;
  --cream: #fffaf0;
  --paper: #f7f1e5;
  --white: #ffffff;
  --lime: #dce34b;
  --guava: #c8d334;
  --watermelon: #176139;
  --peach: #ed526b;
  --pineapple: #efa02d;
  --coral: #f26b5f;
  --sky: #bce7ea;
  --line: rgba(17, 20, 15, 0.18);
  --muted: #5d6259;
  --flavor-accent: var(--guava);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(30, 44, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.shell-narrow {
  width: min(100% - 64px, 1100px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.announcement {
  position: relative;
  z-index: 31;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 7px 20px;
  background: var(--lime);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement span {
  margin-right: 9px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 10px 30px rgba(17, 20, 15, 0.06);
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  width: max-content;
  align-items: center;
}

.brand img {
  grid-row: 1 / 3;
  width: 24px;
  height: 39px;
  object-fit: contain;
}

.brand-word {
  align-self: end;
  font-family: var(--display);
  font-size: 1.44rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.brand-descriptor {
  align-self: start;
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--forest);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--lime);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(860px, calc(100svh - 110px));
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(255, 250, 240, 0.96) 31%, rgba(255, 250, 240, 0.78) 46%, rgba(255, 250, 240, 0.08) 67%, transparent 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-block: clamp(72px, 9vw, 124px) 44px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 6rem;
  line-height: 0.84;
}

.hero-copy {
  max-width: 510px;
  margin: 30px 0 0;
  color: #41473e;
  font-size: 1.1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--forest);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--lime);
  border-color: var(--lime);
}

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 530px);
  margin: auto 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  gap: 5px;
}

.hero-facts strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stamp,
.product-seal {
  display: grid;
  place-items: center;
  width: 108px;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.78rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero-stamp {
  position: absolute;
  right: 3.5vw;
  bottom: 34px;
}

.word-ribbon {
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.word-ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ribbon 24s linear infinite;
}

.word-ribbon span,
.word-ribbon i {
  flex: none;
  padding-block: 18px;
  font-style: normal;
}

.word-ribbon span {
  padding-inline: 30px;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.word-ribbon i {
  color: var(--lime);
}

@keyframes ribbon {
  to { transform: translateX(-50%); }
}

.flavors {
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr 0.8fr;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 80px);
}

.section-intro .eyebrow {
  align-self: start;
  margin-top: 13px;
}

.section-intro h2,
.why-copy h2,
.story-copy h2,
.tasting-copy h2,
.product-info h1 {
  margin: 0;
  font-size: 3.5rem;
  line-height: 1.05;
}

.section-intro > p:last-child {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

.section-intro.compact {
  grid-template-columns: 0.6fr 1.4fr;
  align-items: start;
}

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

.flavor-card {
  min-width: 0;
}

.flavor-visual {
  position: relative;
  display: block;
  aspect-ratio: 0.77;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

.flavor-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 55%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.flavor-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.flavor-card:hover .flavor-visual img {
  transform: scale(1.035);
}

.flavor-number,
.flavor-arrow {
  position: absolute;
  z-index: 2;
  top: 14px;
  display: grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.flavor-number { left: 14px; }
.flavor-arrow { right: 14px; font-size: 1rem; transition: transform 180ms ease; }
.flavor-card:hover .flavor-arrow { transform: rotate(45deg); }

.flavor-card-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px 0;
}

.flavor-card-copy h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1;
}

.flavor-card-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.flavor-card-copy > a {
  flex-shrink: 0;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flavor-guava { --card-accent: var(--guava); }
.flavor-watermelon { --card-accent: var(--watermelon); }
.flavor-peach { --card-accent: var(--peach); }
.flavor-pineapple { --card-accent: var(--pineapple); }
.flavor-card .flavor-visual { border-bottom: 8px solid var(--card-accent); }

.why {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  min-height: 800px;
  padding: 0;
  border-bottom: 1px solid var(--ink);
  background: #e7f2dc;
}

.why-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-copy {
  align-self: center;
  padding: clamp(60px, 7vw, 110px);
}

.why-copy h2 {
  max-width: 650px;
  font-size: 3rem;
}

.why-lede {
  max-width: 570px;
  margin: 32px 0 44px;
  color: #3f493b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.why-list {
  margin: 0;
}

.why-list div {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.why-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.why-list dt {
  font-weight: 700;
}

.why-list dd {
  margin: 0;
  color: var(--muted);
}

.story {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 850px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 19, 12, 0.42), rgba(6, 19, 12, 0.78));
}

.story-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: grid;
  justify-items: center;
}

.story-copy .eyebrow {
  color: var(--lime);
}

.story-copy h2 {
  max-width: 1040px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 32px 0 36px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
}

.store-locator { background: #f4f8f8; border-top: 1px solid var(--line); }
.locator-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; margin-bottom: 40px; }
.locator-heading h2 { margin: 0; font-size: 3.5rem; line-height: 1.05; }
.locator-heading > p { max-width: 520px; margin: 0; color: #46534c; line-height: 1.7; }
.locator-layout { display: grid; grid-template-columns: 350px minmax(0, 1fr); border-block: 1px solid var(--line); }
.locator-sidebar { padding: 28px 28px 28px 0; min-width: 0; }
.retailer-heading { margin-bottom: 22px; }
.retailer-label { font-size: 0.75rem; color: var(--muted); }
.retailer-heading h3 { margin: 5px 0; font-size: 2rem; }
.retailer-heading p { margin: 0; font-size: 0.9rem; }
.preview-notice { padding: 14px; margin: 0 0 22px; border-left: 3px solid var(--forest); background: #e2eedd; color: #253e2e; font-size: 0.82rem; line-height: 1.6; }
.preview-notice strong { display: block; margin-bottom: 3px; }
.store-tools label { display: block; margin-bottom: 8px; font-size: 0.82rem; font-weight: 600; }
.store-tools input { width: 100%; min-height: 48px; padding: 12px; border: 1px solid #687b71; border-radius: 4px; background: white; }
.store-status { font-size: 0.8rem; color: var(--muted); margin: 18px 0 10px; }
.store-list { max-height: 360px; overflow-y: auto; overscroll-behavior: contain; margin: 0 0 18px; padding: 0 8px 0 0; list-style: none; scrollbar-width: thin; }
.store-item { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); }
.store-number { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #819b8d; border-radius: 50%; font-size: 0.72rem; }
.store-name { margin: 2px 0 5px; font-family: var(--body); font-size: 0.95rem; font-weight: 700; }
.store-address { margin: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }
.store-actions { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.store-map-button, .store-directions { display: inline-flex; align-items: center; min-height: 44px; border: 0; background: transparent; padding: 0; color: var(--forest-deep); font-size: 0.8rem; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.store-empty { padding: 20px 0; font-size: 0.9rem; }
.retailer-link { display: inline-block; font-size: 0.75rem; }
.directory-note { margin: 10px 0 0; font-size: 0.74rem; color: var(--muted); line-height: 1.6; }
.locator-map-wrap { position: relative; min-width: 0; padding: 28px 0 28px 28px; border-left: 1px solid var(--line); }
.store-map { z-index: 0; width: 100%; height: 650px; background: #e3ecec; border: 1px solid #a8bab1; font-family: var(--body); }
.map-loading { display: grid; height: 100%; margin: 0; place-items: center; color: #435b4c; }
.map-caption { margin: 12px 0 0; font-size: 0.77rem; color: #46534c; }
.map-error { padding: 12px 0 0; margin: 0; font-size: 0.8rem; color: #8a3824; }
.wiki-marker span { display: grid; place-items: center; width: 34px; height: 34px; border: 2px solid white; border-radius: 50%; background: var(--forest-deep); color: white; font-family: var(--body); font-weight: 700; font-size: 13px; box-shadow: 0 2px 6px #0004; }
.wiki-marker:focus-visible { outline: 3px solid var(--coral); border-radius: 50%; }
.store-map .leaflet-popup-content-wrapper { border-radius: 6px; }
.store-map .leaflet-control-attribution { font-size: 11px; }
.store-map .leaflet-control-attribution a { color: #145d36; }
.store-map .leaflet-control-zoom a { width: 36px; height: 36px; line-height: 36px; }
.popup-title { display: block; font-size: 0.92rem; line-height: 1.4; }
.popup-copy { font-size: 0.82rem; line-height: 1.5; }
.online-status { max-width: 420px; font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.online-purchase { margin-top: 24px; padding-block: 22px; border-block: 1px solid var(--line); }
.online-purchase h2 { font-family: var(--body); font-size: 1.2rem; text-transform: none; }
.online-purchase p { margin: 10px 0 18px; }
.retail-callout { background: var(--lime); }
.retail-callout-inner { display: flex; gap: 40px; align-items: center; justify-content: space-between; }
.retail-callout h2 { margin: 0 0 20px; font-size: 3rem; line-height: 1.1; }
.retail-callout p:not(.eyebrow) { max-width: 620px; margin: 0; }
.retail-callout .button { flex-shrink: 0; }
[hidden] { display: none !important; }

@media (max-width: 1000px) {
  .locator-layout { grid-template-columns: 300px minmax(0, 1fr); }
  .locator-heading h2 { font-size: 2.8rem; }
}
@media (max-width: 700px) {
  .locator-heading, .locator-layout { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .locator-heading h2 { font-size: 2.3rem; }
  .locator-sidebar { padding: 24px 0 0; }
  .locator-map-wrap { padding: 0 0 24px; border-left: 0; }
  .store-map { height: 420px; }
  .store-list { max-height: 235px; }
  .retail-callout-inner { flex-direction: column; align-items: flex-start; }
  .retail-callout h2 { font-size: 2.3rem; }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 64px 32px 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 34px;
  height: 55px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-line {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 1.8rem;
  letter-spacing: -0.06em;
}

.footer-line {
  max-width: 500px;
  font-size: 2.5rem;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.site-footer nav {
  display: grid;
  justify-content: end;
  gap: 12px;
}

.site-footer nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 52px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Product detail */
.product-hero {
  padding: 32px 0 clamp(88px, 9vw, 140px);
  background: var(--cream);
}

.product-crumb {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-crumb a {
  color: var(--ink);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(46px, 8vw, 124px);
  align-items: center;
}

.product-gallery {
  position: relative;
  aspect-ratio: 0.92;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-bottom: 10px solid var(--flavor-accent);
  border-radius: calc(var(--radius) + 4px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-gallery > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-seal {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 96px;
  background: var(--flavor-accent);
  color: var(--ink);
}

.product-info .eyebrow {
  color: var(--flavor-accent);
}

.product-info h1 {
  font-size: 4rem;
}

.product-info h1.is-long { font-size: 2.7rem; }

.product-subtitle {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description {
  max-width: 600px;
  margin: 30px 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.product-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0 0 34px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.product-points li {
  position: relative;
  padding: 15px 0 15px 20px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
}

.product-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--flavor-accent);
}

.tasting-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: stretch;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: #e7f2dc;
}

.tasting-media {
  min-height: 660px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
}

.tasting-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tasting-copy {
  align-self: center;
  padding: clamp(60px, 7vw, 110px);
}

.tasting-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  color: #3f493b;
  font-size: 1.08rem;
  line-height: 1.72;
}

.pairing-card {
  display: grid;
  gap: 10px;
  max-width: 550px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pairing-card span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pairing-card strong {
  font-size: 1.05rem;
}

.flavor-switcher {
  background: var(--cream);
}

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

.flavor-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--ink);
  border-bottom: 8px solid var(--card-accent);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.flavor-link:hover,
.flavor-link[aria-current="page"] {
  transform: translateY(-5px);
  background: var(--card-accent);
}

.flavor-link span {
  font-size: 0.7rem;
  font-weight: 700;
}

.flavor-link strong {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.flavor-link i {
  font-style: normal;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero {
    min-height: 810px;
  }

  .hero::after {
    background: linear-gradient(90deg, var(--cream) 0%, rgba(255, 250, 240, 0.95) 40%, rgba(255, 250, 240, 0.4) 66%, transparent 100%);
  }

  .hero h1 {
    font-size: 5rem;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 16px;
  }

  .flavor-visual {
    aspect-ratio: 0.9;
  }

  .why,
  .tasting-section {
    grid-template-columns: 1fr 1fr;
  }

  .why-copy,
  .tasting-copy {
    padding: 60px 42px;
  }

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

@media (max-width: 820px) {
  .shell,
  .shell-narrow {
    width: min(100% - 36px, 1320px);
  }

  .site-header {
    min-height: 68px;
    padding: 9px 18px;
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--cream);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 31;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    overflow-y: auto;
    padding: 112px 24px 40px;
    visibility: hidden;
    background: var(--lime);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 20, 15, 0.25);
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-content: space-between;
    margin-top: 24px;
    padding-inline: 20px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 0.07em;
  }

  .hero {
    min-height: 920px;
  }

  .hero-image {
    bottom: auto;
    height: 54%;
  }

  .hero-image img {
    object-position: 64% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.04) 0%, rgba(255, 250, 240, 0.08) 33%, var(--cream) 54%, var(--cream) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 460px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-copy {
    margin-top: 24px;
  }

  .hero-facts {
    margin-top: 42px;
  }

  .hero-stamp {
    top: 28px;
    right: 18px;
    bottom: auto;
    width: 92px;
  }

  .section-intro,
  .section-intro.compact {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-intro .eyebrow {
    margin: 0;
  }

  .section-intro > p:last-child {
    max-width: 560px;
  }

  .why,
  .tasting-section,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .why-media,
  .tasting-media {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .why-copy,
  .tasting-copy {
    padding: 74px 18px;
  }

  .why-copy h2,
  .tasting-copy h2 {
    font-size: 2.5rem;
  }

  .story {
    min-height: 760px;
  }

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

  .footer-line {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer nav {
    grid-column: 2;
    grid-row: 1;
  }

  .copyright {
    grid-row: 3;
  }

  .product-layout {
    gap: 48px;
  }

  .product-gallery {
    aspect-ratio: 0.9;
  }

  .product-info h1 {
    font-size: 3rem;
  }

  .product-info h1.is-long {
    font-size: 2rem;
    letter-spacing: 0;
  }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2.7rem; }
  .section-intro h2, .story-copy h2 { font-size: 2.3rem; }

  .announcement p {
    font-size: 0.64rem;
    letter-spacing: 0.045em;
  }

  .announcement span {
    display: none;
  }

  .brand-descriptor {
    display: none;
  }

  .brand img {
    grid-row: 1;
  }

  .hero {
    min-height: 850px;
  }

  .hero-content {
    padding-top: 410px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
    margin-top: 7px;
  }

  .hero-facts {
    gap: 12px;
  }

  .hero-facts strong {
    font-size: 1rem;
  }

  .hero-facts span {
    font-size: 0.62rem;
  }

  .section {
    padding-block: 82px;
  }

  .flavor-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .flavor-visual {
    aspect-ratio: 0.82;
  }

  .flavor-card-copy {
    padding-inline: 2px;
  }

  .why-media,
  .tasting-media {
    min-height: 440px;
  }

  .why-copy,
  .tasting-copy {
    padding: 68px 18px;
  }

  .why-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .story {
    min-height: 700px;
  }

  .story-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 50px 20px 24px;
  }

  .site-footer nav,
  .footer-line,
  .copyright {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer nav {
    justify-content: start;
    margin-top: 16px;
  }

  .copyright {
    margin-top: 26px;
  }

  .product-hero {
    padding-top: 22px;
  }

  .product-gallery {
    aspect-ratio: 0.79;
  }

  .product-seal {
    top: 14px;
    right: 14px;
    width: 78px;
    font-size: 0.64rem;
  }

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

  .flavor-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
