/* ============================================================
   BelleHarvest — Clean modern redesign
   Brand: cream + coral + maroon. Real BelleHarvest photography.
   Type: Hanken Grotesk (sans) + Fraunces (italic accent only)
   ============================================================ */

:root {
  /* palette — brand-true, slightly modernized */
  --cream:       #f5ead4;     /* nav, commitments, calm sections */
  --cream-2:     #fbf3df;     /* lighter cream / text on dark */
  --cream-3:     #faf6ec;
  --coral:       #d96852;     /* "Taste the Difference" / partner CTA */
  --coral-deep:  #b94d3e;
  --maroon:      #7a2030;     /* slideshow text panel — slightly deeper */
  --maroon-deep: #5a1620;
  --mustard:     #a8861a;
  --sepia:       #6b5a48;
  --ink:         #1f1a16;
  --ink-2:       #2e2823;
  --ink-soft:    #5b524a;
  --line:        rgba(31, 26, 22, 0.10);

  /* type */
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", "Georgia", serif;

  /* metrics */
  --max:        1260px;
  --max-narrow: 760px;
  --radius:     999px;
  --shadow-1:   0 1px 2px rgba(31,26,22,.04), 0 10px 28px rgba(31,26,22,.06);
  --shadow-2:   0 6px 14px rgba(31,26,22,.08), 0 28px 60px rgba(31,26,22,.14);

  /* easing */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-3);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .2s; }
em { font-family: var(--serif); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 144, "SOFT" 30; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 500; letter-spacing: -0.012em; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 1.4rem;
}
.eyebrow-light { color: rgba(251, 243, 223, 0.85); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-cream {
  background: var(--cream-2);
  color: var(--ink);
  border-color: var(--cream-2);
}
.btn-cream:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream-2);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.8);
}

/* ---------- HEADER ---------- */
.site-header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .3s var(--ease), background .3s;
}
.site-header.scrolled {
  box-shadow: 0 1px 0 var(--line), 0 8px 22px rgba(31, 26, 22, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 14px 0;
  position: relative;
}
.brand { display: inline-flex; align-items: center; transition: opacity .2s; }
.brand:hover { opacity: .8; }
.brand-logo { height: 64px; width: auto; }

.primary-nav > ul {
  list-style: none;
  display: flex;
  gap: 38px;
  margin: 0; padding: 0;
  align-items: center;
}
.primary-nav a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--coral);
  transition: right .35s var(--ease);
}
.primary-nav a:not(.nav-cta):hover::after { right: 0; }
.primary-nav a:hover { color: var(--coral); }

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: var(--radius);
  letter-spacing: .14em;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover {
  background: var(--coral-deep);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(217,104,82,.28);
}
.nav-cta::after { display: none !important; }

/* dropdown */
.has-menu { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: -16px;
  background: #fff;
  list-style: none;
  margin: 0; padding: 8px 0;
  min-width: 200px;
  box-shadow: var(--shadow-2);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility 0s linear .2s;
}
.has-menu:hover .submenu,
.has-menu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s, transform .2s, visibility 0s;
}
.submenu li a {
  display: block;
  padding: 10px 22px;
  font-size: .72rem;
}
.submenu li a::after { display: none !important; }
.submenu li a:hover { background: var(--cream); color: var(--coral); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink); display: block; border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.02);
  animation: heroBreath 18s ease-in-out infinite alternate;
}
@keyframes heroBreath {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.07); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,16,12,.10) 0%, rgba(20,16,12,.50) 100%),
    linear-gradient(90deg, rgba(20,16,12,.35) 0%, rgba(20,16,12,0) 60%);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 32px 130px;
  text-align: center;
  animation: heroIn 1s var(--ease) both;
  animation-delay: .1s;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
}
.hero-title em {
  color: #fff;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-lede {
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  margin: 0 auto 2.4rem;
  max-width: 640px;
  font-weight: 400;
}
.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 250, 240, 0.7);
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  z-index: 1;
}
.hero-scroll svg {
  width: 12px; height: 22px;
  animation: hsBob 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
@keyframes hsBob {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50%      { transform: translateY(5px); opacity: 1; }
}

/* ---------- STORY SECTIONS (3) ---------- */
.story {
  position: relative;
  min-height: clamp(540px, 80vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.story-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transition: transform 1.4s var(--ease);
}
.story:hover .story-bg-img { transform: scale(1.03); }

.story-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 90px 32px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.story-content.in { opacity: 1; transform: translateY(0); }
.story-num {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.78);
  margin: 0 0 1.4rem;
}
.story-title {
  color: #fff;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0 0 .9rem;
}
.story-title em {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.story-copy {
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  margin: 0 0 2.2rem;
  font-weight: 400;
}

/* coral (story 01) — solid coral + apple bg image overlay */
.story--coral {
  background: var(--coral);
}
.story--coral .story-bg-img {
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: .95;
}

/* photo banners (02, 03) — overlays */
.story--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.story--sepia::before {
  background: rgba(107, 90, 72, 0.58);
  mix-blend-mode: multiply;
}
.story--sepia .story-bg-img { filter: saturate(.55) sepia(.18); }
.story--mustard::before {
  background: rgba(168, 134, 26, 0.72);
  mix-blend-mode: multiply;
}
.story--mustard .story-bg-img { filter: saturate(.85); }

/* ---------- COMMITMENTS INTRO ---------- */
.commitments-intro {
  background: var(--cream);
  padding: 110px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.commitments-intro.in { opacity: 1; transform: translateY(0); }
.ci-eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 1.2rem;
}
.ci-body {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- INITIATIVES (slideshow) ---------- */
.initiatives {
  position: relative;
  background: var(--maroon);
}
.ini-slides {
  position: relative;
  min-height: clamp(460px, 68vh, 660px);
}
.ini-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s var(--ease), visibility 0s linear .55s;
  pointer-events: none;
}
.ini-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s var(--ease), visibility 0s;
}
.ini-text {
  background: var(--maroon);
  color: var(--cream-2);
  padding: 100px clamp(40px, 6vw, 90px) 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ini-roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream-2);
  margin: 0 0 1.2rem;
  letter-spacing: .04em;
  opacity: .9;
}
.ini-text h3 {
  font-family: var(--sans);
  color: var(--cream-2);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin: 0 0 1.2em;
  max-width: 16ch;
}
.ini-text h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.ini-copy {
  color: rgba(251, 243, 223, 0.82);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0;
}
.ini-image {
  position: relative;
  overflow: hidden;
}
.ini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease-out;
}
.ini-slide.is-active .ini-image img { transform: scale(1.08); }

.ini-controls {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 clamp(40px, 6vw, 90px) 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
}
.ini-progress {
  position: relative;
  width: clamp(220px, 32%, 360px);
  height: 1px;
  background: rgba(251, 243, 223, 0.18);
}
.ini-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 100%;
  background: var(--cream-2);
  transform-origin: left center;
  transform: scaleX(0);
}
.ini-dots {
  display: flex;
  gap: 24px;
  pointer-events: auto;
  flex-wrap: wrap;
}
.ini-dot {
  background: transparent;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(251, 243, 223, 0.5);
  transition: color .25s var(--ease);
  font-family: var(--sans);
}
.ini-dot .d-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-size: 1.1rem;
}
.ini-dot .d-lbl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ini-dot:hover { color: rgba(251, 243, 223, 0.85); }
.ini-dot.is-active { color: var(--cream-2); }

/* ---------- PARTNER CTA ---------- */
.partner-cta {
  background: var(--coral);
  padding: 56px 0;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.partner-cta.in { opacity: 1; transform: translateY(0); }
.partner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.partner-row h2 {
  color: #fff;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.018em;
  margin: 0;
}
.partner-row h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--cream);
  padding: 90px 0 36px;
  color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { height: 58px; width: auto; margin-bottom: 18px; }
.footer-brand p {
  font-size: .96rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.fc-head {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.footer-col p {
  font-size: .96rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.footer-col p .muted {
  color: rgba(31,26,22,.45);
  font-size: .86rem;
}
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--coral); }
.fc-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-list a { font-size: .94rem; }

.socials {
  display: inline-flex;
  gap: 10px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: .82rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-base p { margin: 0; color: inherit; }
.footer-legal a { color: var(--ink-soft); }
.footer-legal a:hover { color: var(--coral); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .header-inner { min-height: 80px; }
  .brand-logo { height: 50px; }

  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 16px 32px 26px;
    display: none;
    box-shadow: 0 12px 22px rgba(0,0,0,.08);
  }
  .primary-nav.open { display: block; }
  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .primary-nav > ul > li > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: block;
  }
  .nav-cta { width: fit-content; margin-top: 12px; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 6px 0 6px 14px;
    background: transparent;
  }

  .ini-slide { grid-template-columns: 1fr; }
  .ini-image { min-height: 280px; order: -1; }
  .ini-text { padding: 60px 32px 130px; }
  .ini-controls { padding: 0 32px 28px; }

  .partner-row { flex-direction: column; text-align: center; gap: 18px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-base { padding-top: 22px; }
}

@media (max-width: 560px) {
  .hero-inner { padding: 80px 28px 110px; }
  .hero-cta .btn { flex: 1; min-width: 0; }
  .story-content { padding: 70px 28px; }
  .commitments-intro { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-bg { animation: none; transform: none; }
}

/* ============================================================
   RETAILERS + SUSTAINABILITY PAGE
   ============================================================ */

/* Page hero -- shallower than the home hero, cream background, no photo */
.page-hero {
  background: var(--cream);
  padding: 140px 0 80px;
  position: relative;
}
.page-hero .container { max-width: var(--max-narrow); text-align: center; }
.page-hero__eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.2rem;
}
.page-hero__title {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.page-hero__title em {
  color: var(--coral);
}
.page-hero__lede {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 1.6rem auto 0;
  max-width: 56ch;
}

/* Apple chart panel */
.apple-chart {
  background: #fff;
  padding: 100px 0;
}
.apple-chart__row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.apple-chart__copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.apple-chart__copy em { color: var(--coral); }
.apple-chart__copy p {
  font-size: 1.02rem;
  margin: 0.8rem 0 1.6rem;
}
.apple-chart__img {
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.apple-chart__img img { width: 100%; height: auto; display: block; }
@media (max-width: 880px) {
  .apple-chart__row { grid-template-columns: 1fr; gap: 36px; }
}

/* Specialty packaging — copy + bullet list, cream */
.specialty-packaging {
  background: var(--cream-3);
  padding: 100px 0;
}
.specialty-packaging .container { max-width: var(--max-narrow); }
.specialty-packaging__eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.specialty-packaging h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.specialty-packaging h2 em { color: var(--coral); }
.specialty-packaging > .container > p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.specialty-packaging__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 26px;
}
.specialty-packaging__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.specialty-packaging__list li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--coral);
}

/* Product showcase grid -- 4 image cards */
.product-grid {
  padding: 80px 0 100px;
  background: #fff;
}
.product-grid__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .product-grid__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid__cards { grid-template-columns: 1fr; }
}
.product-card {
  background: var(--cream-3);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}
.product-card__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
}
.product-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.product-card__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 1.45rem;
  margin: 0;
  color: var(--ink);
}
.product-card__body a {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: auto;
  align-self: flex-start;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
}
.product-card__body a:hover { color: var(--coral-deep); border-bottom-color: var(--coral-deep); }

/* Sustainability intro + three commitments (reuse .initiatives styling) */
.sustain-intro {
  background: var(--cream);
  padding: 110px 0 90px;
}
.sustain-intro .container { max-width: var(--max-narrow); text-align: center; }
.sustain-intro h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0 0 1rem;
}
.sustain-intro h2 em { color: var(--coral); }
.sustain-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 62ch;
}

/* Sustainable-packaging feature grid */
.sustain-pack {
  padding: 100px 0;
  background: var(--cream-3);
}
.sustain-pack__head {
  text-align: center;
  max-width: var(--max-narrow);
  margin: 0 auto 56px;
}
.sustain-pack__head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.sustain-pack__head h2 em { color: var(--coral); }
.sustain-pack__head p {
  font-size: 1.02rem;
  margin-top: 1rem;
}
.sustain-pack__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.sustain-pack__products figure {
  margin: 0;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.sustain-pack__products img {
  max-height: 220px;
  width: auto;
  margin: 0 auto;
  display: block;
}
.sustain-pack__products figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 14px;
  color: var(--ink);
}
@media (max-width: 760px) {
  .sustain-pack__products { grid-template-columns: 1fr; }
}
.sustain-pack__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .sustain-pack__features { grid-template-columns: 1fr; }
}
.sustain-pack__feature {
  background: #fff;
  border-radius: 12px;
  padding: 28px 30px;
  border: 1px solid var(--line);
}
.sustain-pack__feature h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--coral);
  margin: 0 0 .5rem;
}
.sustain-pack__feature p {
  font-size: .98rem;
  margin: 0;
  color: var(--ink-soft);
}

/* PDF download CTA box */
.pdf-cta {
  background: var(--cream);
  padding: 50px 0;
  text-align: center;
}
.pdf-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.btn-coral {
  background: var(--coral);
  color: #fff !important;
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217,104,82,.28);
}
