/* --- The African Pantry - brand bible tokens --- */
:root {
  --forest: #142920;
  --forest-mid: #1a3c2a;
  --forest-deep: #0c1a14;
  --leaf: #3d6b4a;
  --leaf-bright: #4a8c5c;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --ink: #1a1612;
  --muted: #5c564c;
  --white: #ffffff;
  --pan-red: #b91c3c;
  --pan-gold: #e5c04b;
  --pan-green: #2f9d5a;
  --gold-soft: rgba(229, 192, 75, 0.18);
  --border: rgba(26, 60, 42, 0.14);
  --border-light: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 28px 70px rgba(12, 26, 20, 0.35);
  --shadow-soft: 0 12px 40px rgba(12, 26, 20, 0.12);
  --shadow-elevated: 0 20px 56px rgba(12, 26, 20, 0.14);
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-ui: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 76rem;
  --prose-width: 38rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --duration: 0.2s;
  --focus-ring: 0 0 0 3px rgba(61, 107, 74, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  font-feature-settings: "kern" 1, "onum" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-color: #e8dfd0;
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -5%, rgba(12, 26, 20, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 115% 95% at 0% -10%, rgba(229, 192, 75, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 100% 88% at 100% 6%, rgba(61, 107, 74, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 75% 55% at 88% 92%, rgba(185, 28, 60, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at 8% 88%, rgba(47, 157, 90, 0.09) 0%, transparent 50%),
    linear-gradient(172deg, #fcf9f4 0%, var(--cream) 36%, #e2d5c4 100%);
}

/* Paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.55'/%3E%3C/svg%3E");
}

/* Woven mesh + vignette (brand red / gold / green / forest) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      122deg,
      rgba(20, 41, 32, 0) 0 10px,
      rgba(20, 41, 32, 0.045) 10px 11px
    ),
    repeating-linear-gradient(
      58deg,
      rgba(229, 192, 75, 0) 0 14px,
      rgba(229, 192, 75, 0.065) 14px 15px
    ),
    linear-gradient(180deg, rgba(12, 26, 20, 0.045) 0%, transparent 22%, transparent 78%, rgba(26, 60, 42, 0.065) 100%);
}

body > * {
  position: relative;
  z-index: 1;
}

/* Soft gold wash behind page content (all pages) */
main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(42rem, 92vh);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 95% 100% at 50% -8%, rgba(229, 192, 75, 0.15) 0%, transparent 56%),
    radial-gradient(ellipse 75% 65% at 12% 18%, rgba(61, 107, 74, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 92% 25%, rgba(20, 41, 32, 0.05) 0%, transparent 50%);
}

main > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  body {
    background-image: linear-gradient(180deg, #faf7f1 0%, var(--cream) 55%, #ebe4d6 100%);
  }

  body::before {
    opacity: 0.07;
  }

  body::after {
    opacity: 0.45;
  }
}

::selection {
  background: rgba(61, 107, 74, 0.22);
  color: var(--forest-deep);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--pan-gold);
  outline-offset: 3px;
}

.site-header :focus-visible,
.hero :focus-visible {
  outline-color: var(--pan-gold);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--leaf);
  font-weight: 500;
}

a:hover {
  color: var(--forest-mid);
}

/* --- Header (forest bar) --- */
.site-header--forest {
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 100%);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 50px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-line {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.brand-line--strong {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: rgba(247, 243, 235, 0.78);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: color var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}

.nav a:hover {
  color: var(--pan-gold);
}

.nav a[aria-current="page"] {
  color: var(--pan-gold);
  font-weight: 600;
}

.nav-cta {
  background: linear-gradient(135deg, var(--pan-gold) 0%, #c9a227 100%) !important;
  color: var(--forest-deep) !important;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(229, 192, 75, 0.35);
}

.nav-cta:hover {
  color: var(--forest-deep) !important;
  filter: brightness(1.06);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 1.4rem;
  background: var(--cream);
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 4.1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    gap: 0;
    background: var(--forest-deep);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .brand-text {
    display: none;
  }
}

/* --- Hero: home (background slider) --- */
.hero--home {
  position: relative;
  min-height: min(88vh, 820px);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider__track {
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.hero-slider__slide {
  height: 100%;
  background-size: 112%;
  background-position: center;
  background-repeat: no-repeat;
  will-change: background-size;
}

.hero-slider__slide--active {
  animation: heroKenBurns 16s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    background-size: 112%;
  }
  100% {
    background-size: 124%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide--active {
    animation: none;
  }

  .hero-slider__slide {
    background-size: cover;
  }

  .hero-slider__track {
    transition: transform 0.35s ease;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(229, 192, 75, 0.07) 0%, transparent 55%),
    linear-gradient(
      105deg,
      rgba(8, 18, 14, 0.94) 0%,
      rgba(12, 26, 20, 0.78) 38%,
      rgba(12, 26, 20, 0.42) 72%,
      rgba(12, 26, 20, 0.25) 100%
    );
  pointer-events: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.orb--red {
  width: min(45vw, 320px);
  height: min(45vw, 320px);
  background: var(--pan-red);
  top: -5%;
  right: -5%;
}

.orb--gold {
  width: min(38vw, 280px);
  height: min(38vw, 280px);
  background: var(--pan-gold);
  bottom: 10%;
  left: -8%;
  opacity: 0.22;
}

.orb--leaf {
  width: min(50vw, 360px);
  height: min(50vw, 360px);
  background: var(--leaf-bright);
  bottom: -15%;
  right: 15%;
  opacity: 0.2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(5rem, 12vw, 7rem);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-inner--home {
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding-bottom: clamp(5.5rem, 12vw, 7.5rem);
}

@media (max-width: 960px) {
  .hero-inner {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

.hero-copy {
  max-width: 38rem;
}

.hero-copy--glass {
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(12, 26, 20, 0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 28px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (min-width: 961px) {
  .hero-inner--home .hero-copy {
    max-width: 32rem;
  }
}

.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.hero-slider__btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.06);
}

.hero-slider__prev {
  left: 1rem;
}

.hero-slider__prev::after {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(45deg);
  margin: 0 auto;
}

.hero-slider__next {
  right: 1rem;
}

.hero-slider__next::after {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--cream);
  border-top: 2px solid var(--cream);
  transform: rotate(45deg);
  margin: 0 auto;
}

.hero-slider__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-slider__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--pan-gold);
  border-color: var(--pan-gold);
}

.hero-slider__dot:focus-visible {
  outline: 2px solid var(--pan-gold);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .hero-slider__btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-slider__prev {
    left: 0.5rem;
  }

  .hero-slider__next {
    right: 0.5rem;
  }
}

.eyebrow--on-dark {
  margin: 0 0 1rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--pan-gold);
}

.hero--home h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero--home h1 em {
  font-style: italic;
  color: rgba(247, 243, 235, 0.88);
}

.lead--on-dark {
  margin: 0 0 2rem;
  color: rgba(247, 243, 235, 0.82);
  font-size: 1.125rem;
  max-width: 36rem;
}

@media (max-width: 960px) {
  .lead--on-dark {
    margin-left: auto;
    margin-right: auto;
  }
}

.lead--on-dark strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* --- Interior page hero --- */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 100% 120% at 100% 0%, rgba(229, 192, 75, 0.09) 0%, transparent 45%),
    linear-gradient(165deg, var(--forest-deep) 0%, var(--forest) 55%, #152e22 100%);
  color: var(--cream);
  padding: clamp(2.25rem, 5vw, 3.25rem) 1.5rem;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.page-hero__lead {
  margin: 0;
  font-size: 1.125rem;
  color: rgba(247, 243, 235, 0.85);
  max-width: 36rem;
}

.section-label--on-dark {
  color: var(--pan-gold);
}

/* --- Home hub cards --- */
.home-hub {
  background: transparent;
}

.home-hub__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.home-hub h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--forest);
  text-align: center;
}

.home-hub__lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.home-hub__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .home-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .home-hub__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-hub__card {
  display: block;
  height: 100%;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}

.home-hub__card:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

.home-hub__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(12, 26, 20, 0.14);
  border-color: rgba(26, 60, 42, 0.28);
}

.home-hub__card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
}

.home-hub__card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}

.home-hub__card--accent {
  background: linear-gradient(135deg, rgba(229, 192, 75, 0.2) 0%, var(--white) 60%);
  border-color: rgba(229, 192, 75, 0.45);
}

.home-hub__card--accent h3 {
  color: var(--forest-deep);
}

.home-showcase-section {
  position: relative;
  isolation: isolate;
  padding: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(229, 192, 75, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 0% 60%, rgba(61, 107, 74, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse 65% 50% at 100% 40%, rgba(20, 41, 32, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(252, 249, 244, 0.9) 0%, transparent 45%);
}

.home-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: radial-gradient(circle at 1px 1px, rgba(26, 60, 42, 0.055) 1px, transparent 0);
  background-size: 22px 22px;
}

.home-showcase-section > * {
  position: relative;
  z-index: 1;
}

/* Home: Nigerian crayfish spotlight */
.home-showcase {
  position: relative;
  isolation: isolate;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) 1.5rem;
  background:
    radial-gradient(ellipse 85% 60% at 15% 20%, rgba(255, 255, 255, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 80%, rgba(61, 107, 74, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 42%),
    linear-gradient(165deg, rgba(26, 60, 42, 0.06) 0%, rgba(247, 243, 235, 0.45) 60%);
  border-bottom: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 24px 60px rgba(12, 26, 20, 0.06);
}

.home-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(229, 192, 75, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 40% 70% at 100% 25%, rgba(20, 41, 32, 0.06) 0%, transparent 55%);
}

.home-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  z-index: 1;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--pan-gold) 0%, var(--leaf) 45%, var(--forest-mid) 100%);
  opacity: 0.9;
}

.home-showcase > * {
  position: relative;
  z-index: 2;
}

.home-showcase__layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 900px) {
  .home-showcase__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2.5rem 3rem;
  }
}

.home-showcase__copy {
  text-align: center;
}

@media (min-width: 900px) {
  .home-showcase__copy {
    text-align: left;
  }
}

.home-showcase__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.home-showcase__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.15;
}

.home-showcase__lead {
  margin: 0 0 1.35rem;
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.65;
}

.home-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .home-showcase__chips {
    justify-content: flex-start;
  }
}

.showcase-chip {
  display: inline-block;
  padding: 0.5rem 1.15rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(229, 192, 75, 0.55);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.home-showcase__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .home-showcase__photos {
    gap: 1rem;
  }
}

.home-showcase__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(12, 26, 20, 0.12);
  background: var(--white);
}

.home-showcase__figure img {
  display: block;
  width: 100%;
  height: clamp(200px, 32vw, 280px);
  object-fit: cover;
}

.home-showcase__caption {
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest-mid);
  background: linear-gradient(180deg, var(--white), var(--cream));
  border-top: 1px solid var(--border);
  line-height: 1.35;
}

/* Home hub: premium layout */
.home-hub--premium {
  position: relative;
  isolation: isolate;
  padding: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(61, 107, 74, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(229, 192, 75, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(252, 249, 244, 0.65) 0%, transparent 40%);
}

.home-hub--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(circle at 1px 1px, rgba(26, 60, 42, 0.04) 1px, transparent 0);
  background-size: 26px 26px;
}

.home-hub--premium > * {
  position: relative;
  z-index: 1;
}

.home-hub__band {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(229, 192, 75, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(61, 107, 74, 0.08) 0%, transparent 55%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.78) 48%,
      rgba(247, 243, 235, 0.5) 100%
    );
  border-top: 1px solid rgba(26, 60, 42, 0.1);
  box-shadow:
    0 -28px 70px rgba(12, 26, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.home-hub__band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--pan-red) 0%,
    var(--pan-red) 26%,
    var(--pan-gold) 26%,
    var(--pan-gold) 58%,
    var(--pan-green) 58%,
    var(--pan-green) 100%
  );
  opacity: 0.88;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-hub--premium .home-hub__inner {
  padding: 0 1.5rem;
}

.home-hub__header {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

@media (min-width: 900px) {
  .home-hub__header {
    text-align: left;
    max-width: 28rem;
  }

  .home-hub--premium .home-hub__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
    gap: 2rem 3rem;
    align-items: start;
  }

  .home-hub__grid--bento {
    grid-column: 1 / -1;
  }
}

.home-hub--premium h2 {
  text-align: inherit;
  margin-bottom: 0.65rem;
}

.home-hub--premium .home-hub__lead {
  text-align: inherit;
  margin: 0 0 0;
  max-width: 32rem;
}

.home-hub__grid--bento {
  gap: 1.15rem;
}

@media (min-width: 600px) {
  .home-hub__grid--bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .home-hub__grid--bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-hub__card-meta {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.45rem;
}

.home-hub__card--feature {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--pan-gold);
  padding-left: 1.35rem;
}

@media (min-width: 900px) {
  .home-hub__card--span2 {
    grid-column: span 2;
  }
}

.home-hub__card--feature::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 192, 75, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Pantry: editorial menu list */
.pantry-offer__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--forest);
  margin: 0.35rem 0 0.75rem;
}

.pantry-menu {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin: 2rem 0 2.5rem;
}

.pantry-menu__crayfish-block {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(145deg, rgba(229, 192, 75, 0.14) 0%, var(--white) 55%);
  border: 1px solid rgba(229, 192, 75, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(12, 26, 20, 0.06);
}

.pantry-menu__head {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-deep);
}

.pantry-menu__sub {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.pantry-menu__crayfish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .pantry-menu__crayfish-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pantry-menu__crayfish-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pantry-menu__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
}

.pantry-menu__tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-mid);
  padding: 0.25rem 0.6rem;
  background: var(--cream-dark);
  border-radius: 999px;
}

.pantry-menu__full {
  padding: 0;
}

.pantry-menu__columns {
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 2px solid rgba(26, 60, 42, 0.12);
  columns: 1;
  column-gap: 2rem;
}

@media (min-width: 560px) {
  .pantry-menu__columns {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .pantry-menu__columns {
    columns: 3;
  }
}

.pantry-menu__columns li {
  break-inside: avoid;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0 0.65rem 1.1rem;
  border-left: 3px solid var(--leaf);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

.pantry-menu__columns .pantry-menu__hint {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Where we ship: destination cards */
.section-delivery-premium {
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.55) 0%, rgba(235, 228, 214, 0.75) 100%);
  border-top: 1px solid var(--border);
}

.delivery-premium__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem clamp(2.5rem, 6vw, 3.5rem);
}

.delivery-premium__title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--forest);
}

.delivery-premium__lead {
  max-width: 40rem;
  margin: 0.75rem 0 0;
}

.delivery-premium__actions {
  margin-top: 2rem;
}

.delivery-cards {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .delivery-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.delivery-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 36px rgba(12, 26, 20, 0.07);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.delivery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(12, 26, 20, 0.1);
}

.delivery-card__abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-mid), var(--leaf));
  border-radius: 50%;
}

.delivery-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
}

.delivery-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* --- Page back links --- */
.page-back {
  margin: 2rem 0 0;
}

.page-back--center {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* --- Pantry brand checklist --- */
.section-pantry__head--wide {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.section-pantry__head--wide .section-pantry__intro {
  text-align: left;
}

.pantry-brand-panel {
  margin: 1.75rem 0 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 5px solid var(--leaf);
  box-shadow: var(--shadow-soft);
}

.pantry-brand-panel__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
}

.pantry-brand-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .pantry-brand-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pantry-brand-list li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}

.pantry-brand-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

.pantry-brand-list__hint {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
}

.section-regions--page {
  background: transparent;
}

.section-regions--page .section-inner {
  max-width: 40rem;
}

.section-order--page {
  padding-top: 0;
}

.section-manifesto--page .section-manifesto__inner {
  max-width: 50rem;
}

.section-inner--wide {
  max-width: var(--max);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.55rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    transform 0.15s var(--ease-spring),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--pan-gold);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.52rem 1.15rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--pan-gold) 0%, #c9a227 100%);
  color: var(--forest-deep);
  box-shadow: 0 6px 28px rgba(229, 192, 75, 0.35);
}

.btn-gold:hover {
  color: var(--forest-deep);
  filter: brightness(1.05);
  box-shadow: 0 10px 36px rgba(229, 192, 75, 0.42);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 235, 0.45);
}

.btn-ghost-light:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-mid) 0%, var(--forest) 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(26, 60, 42, 0.28);
}

.btn-primary:hover {
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(12, 26, 20, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--forest-mid);
  border-color: rgba(26, 60, 42, 0.28);
}

.btn-ghost:hover {
  border-color: var(--forest-mid);
  background: rgba(26, 60, 42, 0.06);
}

.btn-block {
  width: 100%;
}

button.btn-primary {
  border: none;
}

/* --- Manifesto --- */
.section-manifesto {
  position: relative;
  background: linear-gradient(90deg, var(--leaf) 0%, var(--leaf) 6px, var(--forest-mid) 6px);
  color: rgba(255, 255, 255, 0.94);
  padding: clamp(3.5rem, 8vw, 5rem) 1.5rem;
  padding-left: max(1.5rem, calc(50% - var(--max) / 2));
  padding-right: max(1.5rem, calc(50% - var(--max) / 2));
}

.section-manifesto__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding-left: clamp(0.5rem, 3vw, 2rem);
}

.section-label--light {
  color: var(--pan-gold);
}

.manifesto-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
}

.manifesto-quote p {
  margin: 0;
}

.manifesto-quote strong {
  color: var(--pan-gold);
  font-weight: 700;
}

.manifesto-follow {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 243, 235, 0.82);
}

.manifesto-follow strong {
  color: var(--white);
}

/* --- Product pantry grid --- */
.section-pantry {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(247, 243, 235, 0.65) 0%,
    rgba(235, 228, 214, 0.85) 55%,
    rgba(247, 243, 235, 0.5) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-pantry--page {
  position: relative;
  isolation: isolate;
  padding-top: clamp(2.75rem, 7vw, 4.5rem);
  background:
    radial-gradient(ellipse 85% 55% at 0% 12%, rgba(229, 192, 75, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 75% 50% at 100% 0%, rgba(61, 107, 74, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(12, 26, 20, 0.07) 0%, transparent 55%),
    linear-gradient(
      185deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(237, 229, 216, 0.92) 42%,
      rgba(247, 243, 235, 0.75) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 32px 80px rgba(12, 26, 20, 0.06);
}

.section-pantry--page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(26, 60, 42, 0.05) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.65;
  mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
}

.section-pantry--page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--pan-red) 0%,
    var(--pan-red) 26%,
    var(--pan-gold) 26%,
    var(--pan-gold) 58%,
    var(--pan-green) 58%,
    var(--pan-green) 100%
  );
  opacity: 0.75;
}

.section-pantry--page > * {
  position: relative;
  z-index: 2;
}

.section-pantry__head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-pantry__head .section-label {
  color: var(--leaf);
}

.section-pantry__head h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 700;
  color: var(--forest);
}

.section-pantry__intro {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.section-pantry__intro strong {
  color: var(--forest-mid);
}

/* Pantry: editorial rails (category chapters + CTAs) */
.pantry-galleries {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: 0.5rem;
}

.pantry-rail {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  border-top: 1px solid rgba(26, 60, 42, 0.1);
  scroll-margin-top: 5rem;
}

.pantry-rail:first-child {
  border-top: none;
  padding-top: 0;
}

.pantry-rail__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4) var(--space-6);
  margin-bottom: var(--space-6);
}

.pantry-rail__text {
  flex: 1 1 14rem;
  min-width: min(100%, 12rem);
}

.pantry-rail__eyebrow {
  margin: 0 0 var(--space-2);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.pantry-rail__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pantry-rail__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 36rem;
}

.pantry-rail__cta {
  flex-shrink: 0;
}

.product-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--max);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .product-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
  }

  .product-card--tall {
    grid-row: span 2;
  }

  .product-card--wide {
    grid-column: span 2;
  }
}

.product-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(12, 26, 20, 0.15);
}

.product-card--featured {
  border: 2px solid rgba(229, 192, 75, 0.65);
  box-shadow: 0 14px 44px rgba(229, 192, 75, 0.14);
}

.product-card figure {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.product-card__media {
  flex: 1 1 auto;
  min-height: 200px;
  overflow: hidden;
  display: block;
}

.product-card__media img {
  min-height: 200px;
  height: 100%;
}

.product-card__media--cashew img {
  object-position: 50% 70%;
  transform: scale(1.04);
}

@media (min-width: 1024px) {
  .product-card--tall .product-card__media--cashew img {
    object-position: 50% 65%;
  }
}

.product-card--tall img {
  min-height: 100%;
}

.product-card--wide img {
  min-height: 220px;
}

@media (min-width: 1024px) {
  .product-card:not(.product-card--tall) figure {
    height: 100%;
  }

  .product-card--tall img {
    min-height: 420px;
  }
}

.product-card figcaption {
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-top: 1px solid var(--border);
}

.product-card .fig-note {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.35;
}

/* --- Sections (shared) --- */
.section {
  padding: clamp(3.25rem, 8vw, 5.5rem) 1.5rem;
}

.section-inner {
  max-width: 44rem;
  margin: 0 auto;
}

.section-label {
  margin: 0 0 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
}

.section h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
}

.prose {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose:last-of-type {
  margin-bottom: 0;
}

.prose.muted {
  margin-bottom: 1.5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(232, 239, 233, 0.88) 0%, rgba(247, 243, 235, 0.55) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt .section-inner {
  max-width: var(--max);
}

/* --- Steps --- */
.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.step:hover {
  box-shadow: var(--shadow-elevated);
  border-color: rgba(26, 60, 42, 0.18);
  transform: translateY(-2px);
}

.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-mid), var(--leaf));
  border-radius: 50%;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* --- Promise + Pan-African ribbon --- */
.section-promise {
  position: relative;
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
  padding-bottom: clamp(4rem, 9vw, 5.5rem);
}

.promise-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promise-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  transition: background var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.promise-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.promise-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.promise-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(247, 243, 235, 0.84);
  line-height: 1.65;
}

/* Pan-African accent: refined ribbon (replaces overlapping circles) */
.pan-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--pan-red) 0%,
    var(--pan-red) 30%,
    var(--pan-gold) 30%,
    var(--pan-gold) 58%,
    var(--pan-green) 58%,
    var(--pan-green) 100%
  );
  opacity: 0.92;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.pan-ribbon__glow {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 24px;
  background: linear-gradient(
    90deg,
    rgba(185, 28, 60, 0.12),
    rgba(229, 192, 75, 0.1),
    rgba(47, 157, 90, 0.12)
  );
  filter: blur(16px);
  pointer-events: none;
}

/* --- Regions --- */
.section-regions {
  text-align: center;
}

.section-regions .section-inner {
  max-width: 40rem;
}

.section-regions .prose {
  text-align: center;
}

.region-flags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.region-name {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}

/* --- Order --- */
.section-order {
  background: linear-gradient(180deg, rgba(235, 228, 214, 0.65) 0%, rgba(247, 243, 235, 0.4) 100%);
  border-top: 1px solid var(--border);
}

.order-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 960px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
}

.order-intro .prose a {
  word-break: break-word;
}

.order-note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--gold-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(229, 192, 75, 0.35);
  font-size: 0.9375rem;
  color: var(--ink);
}

.order-form-wrap {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 60, 42, 0.1);
  box-shadow: var(--shadow-elevated);
}

.order-form .field-group {
  margin-bottom: 1.15rem;
}

.order-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.req {
  color: var(--pan-red);
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}

.order-form input:hover,
.order-form select:hover,
.order-form textarea:hover {
  border-color: rgba(26, 60, 42, 0.22);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
}

.order-form input:focus-visible,
.order-form select:focus-visible,
.order-form textarea:focus-visible {
  border-color: var(--leaf);
  box-shadow: var(--focus-ring);
}

.order-form textarea {
  resize: vertical;
  min-height: 5rem;
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9375rem;
  cursor: pointer;
}

.checkbox input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--forest-mid);
}

.checkbox input:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 2px;
}

.form-footnote {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.order-form {
  position: relative;
}

.form-status {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.form-status--pending {
  background: #e8f0ec;
  border: 1px solid rgba(26, 60, 42, 0.2);
  color: var(--forest-mid);
}

.form-status--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(3rem, 7vw, 4rem) 1.5rem;
  text-align: center;
  overflow: hidden;
}

.footer-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.2;
}

.footer-orb--red {
  width: 180px;
  height: 180px;
  background: var(--pan-red);
  top: -40px;
  left: 10%;
}

.footer-orb--gold {
  width: 200px;
  height: 200px;
  background: var(--pan-gold);
  bottom: -60px;
  left: 40%;
}

.footer-orb--leaf {
  width: 160px;
  height: 160px;
  background: var(--pan-green);
  top: 20%;
  right: 8%;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: min(40rem, 100%);
  margin: 0 auto;
}

.footer-logo {
  width: 72px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  opacity: 0.95;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-tagline strong {
  font-weight: 700;
  color: var(--pan-gold);
}

.footer-email {
  margin: 0 0 1.25rem;
}

.footer-email a {
  color: #b8dcc8;
  font-weight: 600;
  text-decoration: none;
}

.footer-email a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-email a:focus-visible {
  outline: 2px solid var(--pan-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Footer & light surfaces: social (A+ touch targets, focus, motion) */
.footer-social {
  margin: 0 0 1.35rem;
}

.footer-social__label {
  margin: 0 0 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-social__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition:
    background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-spring),
    box-shadow var(--duration) var(--ease-out);
}

.footer-social__link:hover {
  color: var(--pan-gold);
  background: rgba(229, 192, 75, 0.12);
  border-color: rgba(229, 192, 75, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.footer-social__link:focus-visible {
  outline: 2px solid var(--pan-gold);
  outline-offset: 3px;
}

.footer-social__link svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.footer-social--on-light {
  margin: 1.5rem 0 0;
}

.footer-social--on-light .footer-social__label {
  color: var(--muted);
}

.footer-social--on-light .footer-social__link {
  color: var(--forest-mid);
  background: var(--cream);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.footer-social--on-light .footer-social__link:hover {
  color: var(--forest-deep);
  background: rgba(229, 192, 75, 0.14);
  border-color: rgba(229, 192, 75, 0.45);
  box-shadow: 0 14px 32px rgba(12, 26, 20, 0.1);
}

.footer-social--on-light .footer-social__link:focus-visible {
  outline-color: var(--leaf);
}

.footer-media {
  margin: 0 auto 1rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
  max-width: 36rem;
}

.footer-media a {
  color: rgba(184, 220, 200, 0.95);
  font-weight: 500;
}

.footer-media a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Thank you page --- */
.page-thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.thanks-card {
  max-width: 26rem;
  text-align: center;
  background: var(--white);
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.thanks-logo {
  width: 88px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.thanks-card h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
}

.thanks-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.thanks-muted {
  font-size: 0.9375rem !important;
  margin-bottom: 1.5rem !important;
}

.thanks-card .footer-social--on-light {
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
}

.thanks-card .btn {
  margin-top: 1.15rem;
}
