/*
Theme Name: Makosee
Theme URI: https://makosee.com
Author: Makosee
Description: Custom theme for Makosee — roasted makhana. Content editable via Flavours, Testimonials, and per-page field groups (ACF).
Version: 1.0.0
Requires PHP: 7.4
Text Domain: makosee
*/

/* ==========================================================================
   Design tokens — sampled directly from the real brand source files
   ========================================================================== */
:root {
  --cream: #f5ecda;
  --cream-50: #fbf6ea;
  --cream-100: #f5ecda;
  --cream-200: #ede0c4;
  --cream-300: #e2d0a9;

  --maroon-50: #f7e9e6;
  --maroon-400: #a3424a;
  --maroon-500: #822d34;
  --maroon-600: #6c232a;
  --maroon-700: #521a1f;
  --maroon-900: #3a1216;

  --terracotta-100: #f1ddc9;
  --terracotta-300: #d9ab7d;
  --terracotta-400: #c8905f;
  --terracotta-500: #b97a48;
  --terracotta-600: #a1673c;
  --terracotta-700: #7d4f2e;

  --forest-500: #1f4a3a;
  --forest-600: #163a2d;
  --forest-700: #10291f;
  --forest-900: #0a1a14;

  --hero-green-1: #06240e;
  --hero-green-2: #11380f;
  --nav-pink: #d11b44;
  --brand-yellow: #f9f04d;
  --brand-lime: #cddb28;
  --lime-text: #0e6634;
  --pink-pill: #f698cd;
  --red-pill: #eb222c;
  --spotlight-yellow: #f2e900;
  --orange-eyebrow: #d9412c;

  --flamingo: #ec5f8e;
  --ember: #e2622a;
  --charcoal: #1c1c1c;
  --teal-deep: #295f5a;
  --crimson: #b23a3a;
  --clover: #3f7a3a;
  --mustard: #d9a441;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-heavy: "Baloo 2", "Poppins", sans-serif;
  --font-script: "Dx Lactos", cursive;

  --container-max: 80rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2rem;
}

@font-face {
  font-family: "Dx Lactos";
  src: url("assets/fonts/dxlactos-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Reset + base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--maroon-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background-color: var(--maroon-500); color: var(--cream-50); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 40rem) { .container { padding-inline: 2rem; } }
@media (min-width: 64rem) { .container { padding-inline: 3rem; } }

.section { padding-block: 4rem; }
@media (min-width: 40rem) { .section { padding-block: 6rem; } }

.text-balance { text-wrap: balance; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-forest { background: var(--forest-500); color: var(--cream-50); }
.btn-forest:hover { background: var(--forest-600); }
.btn-lime { background: var(--brand-lime); color: var(--lime-text); }
.btn-lime:hover { background: #bdc924; }
.btn-yellow { background: var(--brand-yellow); color: var(--forest-900); }
.btn-spotlight-yellow { background: var(--spotlight-yellow); color: var(--lime-text); }
.btn-spotlight-yellow:hover { background: #ddd600; }
.btn-yellow:hover { background: #eee63a; }
.btn-terracotta { background: var(--terracotta-500); color: var(--cream-50); }
.btn-terracotta:hover { background: var(--terracotta-600); }
.btn-dark { background: var(--charcoal); color: var(--cream-50); }
.btn-dark:hover { background: #000; }
.btn-light { background: var(--cream-50); color: var(--maroon-700); }
.btn-light:hover { background: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--maroon-600); color: var(--maroon-600); }
.btn-outline:hover { background: var(--maroon-600); color: var(--cream-50); }

/* ==========================================================================
   Eyebrow / badge
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--terracotta-500);
  color: var(--cream-50);
}
.eyebrow--cream { background: var(--cream-100); color: var(--maroon-700); }
.eyebrow--onwhite { background: rgba(255,255,255,0.15); color: inherit; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-pink);
  color: var(--cream-50);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
@media (min-width: 40rem) { .site-header__inner { height: 5rem; } }
.site-logo img { height: 2.25rem; width: auto; }
@media (min-width: 40rem) { .site-logo img { height: 2.75rem; } }

.main-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 64rem) { .main-nav { display: flex; } }
.main-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,236,218,0.8);
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.current { color: var(--brand-yellow); }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  color: var(--cream-50);
  background: none;
}
@media (min-width: 64rem) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(245,236,218,0.1);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245,236,218,0.8);
}
.mobile-nav a.current { background: var(--forest-700); color: var(--brand-yellow); }
@media (min-width: 64rem) { .mobile-nav { display: none !important; } }

/* ==========================================================================
   Scallop divider
   ========================================================================== */
.scallop { display: block; width: 100%; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--forest-700); color: var(--cream-100); position: relative; }
.footer-inner { padding-block: 2.5rem 2.5rem; }
@media (min-width: 40rem) { .footer-inner { padding-top: 3.5rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 64rem) { .footer-grid { grid-template-columns: 1.3fr 1fr; } }
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 0.95;
  color: var(--cream-50);
  margin-bottom: 1.5rem;
}
@media (min-width: 40rem) { .footer-heading { font-size: 3rem; } }
.footer-form { max-width: 28rem; margin-bottom: 1rem; }
.footer-form label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,236,218,0.5);
  margin-bottom: 0.4rem;
}
.footer-form .row { display: flex; gap: 0.5rem; }
.footer-form input {
  flex: 1;
  background: var(--forest-600);
  border: 1px solid rgba(245,236,218,0.15);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--cream-50);
  outline: none;
}
.footer-form input::placeholder { color: rgba(245,236,218,0.4); }
.footer-form input:focus { border-color: var(--terracotta-300); }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 40rem) { .footer-columns { grid-template-columns: repeat(3, 1fr); } }
.footer-columns h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-50);
  margin-bottom: 1rem;
}
.footer-columns ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-columns a { font-size: 0.875rem; color: rgba(245,236,218,0.6); }
.footer-columns a:hover { color: var(--cream-50); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,236,218,0.1);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 40rem) { .footer-bottom { flex-direction: row; } }
.footer-socials { display: flex; align-items: center; gap: 1rem; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(245,236,218,0.15);
  color: rgba(245,236,218,0.7);
}
.footer-socials a:hover { border-color: rgba(245,236,218,0.4); color: var(--cream-50); }
.footer-legal { font-size: 0.75rem; color: rgba(245,236,218,0.5); text-align: center; }
@media (min-width: 40rem) { .footer-legal { text-align: right; } }

/* ==========================================================================
   Forms (Quote form + contact form)
   ========================================================================== */
.field-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(58,18,22,0.8);
}
.field-input, .field-textarea, .field-select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(58,18,22,0.1);
  background: rgba(251,246,234,0.8);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--maroon-900);
  outline: none;
}
.field-input:focus, .field-textarea:focus, .field-select:focus {
  border-color: var(--maroon-600);
  background: #fff;
}
.field-textarea { min-height: 7rem; resize: vertical; }

/* ==========================================================================
   Generic section heading
   ========================================================================== */
.heading-stack { display: flex; flex-direction: column; gap: 1rem; }
.heading-stack.center { align-items: center; text-align: center; }
.heading-stack h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--maroon-600);
}
@media (min-width: 40rem) { .heading-stack h2 { font-size: 2.5rem; } }
@media (min-width: 64rem) { .heading-stack h2 { font-size: 3rem; } }
.heading-stack p { max-width: 40rem; color: rgba(58,18,22,0.7); font-size: 1rem; }

.split-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
@media (min-width: 40rem) { .split-heading { flex-direction: row; align-items: flex-end; } }
.split-heading h2 { font-size: 2rem; font-weight: 600; color: var(--maroon-600); }
@media (min-width: 40rem) { .split-heading h2 { font-size: 2.5rem; } }
@media (min-width: 64rem) { .split-heading h2 { font-size: 3rem; } }
.split-heading p { max-width: 22rem; font-size: 0.95rem; color: rgba(58,18,22,0.7); }
@media (min-width: 40rem) { .split-heading p { text-align: right; } }

/* Utility grid/flex helpers used throughout templates */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 64rem) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ==========================================================================
   Home hero
   ========================================================================== */
.hero-home {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem 3.5rem;
  background: radial-gradient(circle at 85% 10%, #1f5c2e 0%, transparent 40%),
              linear-gradient(160deg, var(--hero-green-2), var(--hero-green-1));
  color: var(--cream-50);
}
@media (min-width: 40rem) { .hero-home { padding-block: 5rem; } }
.hero-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 64rem) { .hero-home__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-home h1 {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.05;
  color: var(--brand-yellow);
  margin-bottom: 1.5rem;
}
@media (min-width: 40rem) { .hero-home h1 { font-size: 3rem; } }
@media (min-width: 64rem) { .hero-home h1 { font-size: 3.75rem; } }
.hero-home p.lede { max-width: 28rem; font-size: 1rem; color: rgba(245,236,218,0.85); margin-bottom: 1.5rem; }
@media (min-width: 40rem) { .hero-home p.lede { font-size: 1.125rem; } }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 0.6rem 1rem;
  background: var(--pink-pill);
  color: var(--maroon-900);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.hero-stat .num { font-size: 1rem; font-weight: 900; line-height: 1; }
.hero-stat .label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.15rem; }
.hero-stat.red { background: var(--red-pill); color: var(--cream-50); }
.hero-home__image img { border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(0,0,0,0.35); width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee { overflow: hidden; border-top: 1px solid rgba(58,18,22,0.1); border-bottom: 1px solid rgba(58,18,22,0.1); background: rgba(237,224,196,0.6); padding-block: 0.75rem; }
.marquee__track { display: flex; width: max-content; gap: 2rem; animation: makosee-marquee 24s linear infinite; }
.marquee__track span { display: flex; align-items: center; gap: 2rem; white-space: nowrap; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(130,45,52,0.7); }
.marquee__track .dot { color: var(--terracotta-400); }
@keyframes makosee-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Flavour carousel
   ========================================================================== */
.carousel-heading { display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; }
@media (min-width: 48rem) { .carousel-heading { flex-direction: row; align-items: flex-end; } }
.carousel-heading h2 { font-size: 2.5rem; font-weight: 600; color: var(--maroon-600); max-width: 24rem; margin: 0; }
.carousel-heading p { max-width: 22rem; color: rgba(58,18,22,0.7); margin: 0; }
@media (min-width: 48rem) { .carousel-heading p { text-align: right; } }

.carousel-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: background-image 0.3s ease;
}
@media (min-width: 40rem) { .carousel-card { padding: 2.5rem; } }
.carousel-card__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; z-index: 1; }
@media (min-width: 64rem) { .carousel-card__grid { grid-template-columns: 1.2fr 1fr; } }
.carousel-position { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; opacity: 0.7; margin-bottom: 0.75rem; }
.carousel-card__main h3 { font-size: 2.25rem; font-weight: 900; font-style: italic; line-height: 0.95; }
@media (min-width: 40rem) { .carousel-card__main h3 { font-size: 2.75rem; } }
.carousel-card__main p { margin-top: 1rem; max-width: 26rem; font-size: 0.95rem; opacity: 0.9; text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.carousel-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; margin-top: 2rem; }
.carousel-meta .label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; display: block; margin-bottom: 0.35rem; }
.heat-dots { display: flex; gap: 0.4rem; }
.heat-dots span { height: 0.65rem; width: 0.65rem; border-radius: 999px; border: 1.5px solid currentColor; background: transparent; opacity: 0.7; }
.heat-dots span.on { background: currentColor; opacity: 1; }
.carousel-buy { margin-left: auto; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1.5px solid currentColor; background: rgba(0,0,0,0.2); padding: 0.6rem 1.25rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.carousel-buy:hover { background: rgba(0,0,0,0.35); }

.carousel-list { display: flex; flex-direction: column; gap: 0.6rem; }
.carousel-list button {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  text-align: left;
  background: var(--cream-50);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  color: var(--maroon-900);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.carousel-list button:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,0.18); }
.carousel-list button.active { background: var(--brand-yellow); }
.carousel-list .swatch { height: 2.75rem; width: 2.75rem; border-radius: 0.65rem; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.2); background-size: cover; background-position: center; }
.carousel-list .name { display: block; font-size: 0.9rem; font-weight: 700; color: var(--maroon-900); }
.carousel-list .crunch { display: block; font-size: 0.75rem; color: rgba(58,18,22,0.6); }

/* ==========================================================================
   Spotlight section
   ========================================================================== */
.spotlight { position: relative; overflow: hidden; padding-block: 5rem; }
@media (min-width: 40rem) { .spotlight { padding-block: 7rem; } }
.spotlight__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 64rem) { .spotlight__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.spotlight h2 { font-family: var(--font-heavy); font-weight: 800; font-size: 2.25rem; line-height: 1.02; color: var(--brand-yellow); margin-bottom: 1.25rem; }
@media (min-width: 40rem) { .spotlight h2 { font-size: 3rem; } }
.spotlight p.lede { max-width: 28rem; font-size: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 40rem) { .spotlight p.lede { font-size: 1.125rem; } }
.spotlight-pouch {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spotlight-pouch img { width: 100%; height: 100%; object-fit: cover; }
/* Fixed white + text-shadow (not inherited) so this reads on ANY pouch
   colour — the previous version inherited the outer gradient's text
   colour, which went invisible against light pouch swatches (e.g. yellow
   text on a lime pouch). */
.spotlight-pouch__label { text-align: center; padding: 1.5rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4); }
.spotlight-pouch__label .brand { font-family: var(--font-heavy); font-weight: 800; font-size: 1.1rem; display: block; }
.spotlight-pouch__label .name { text-transform: uppercase; font-weight: 900; font-size: 1.5rem; line-height: 1.1; display: block; margin-top: 0.35rem; }

/* ==========================================================================
   Occasions
   ========================================================================== */
.occasion-image img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.occasion-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.occasion-tags button { border-radius: 999px; border: 2px solid rgba(108,35,42,0.2); padding: 0.6rem 1.4rem; font-size: 0.9rem; font-weight: 600; color: var(--maroon-700); }
.occasion-tags button.active, .occasion-tags button:hover { border-color: var(--maroon-600); background: var(--maroon-600); color: var(--cream-50); }

/* ==========================================================================
   Store section
   ========================================================================== */
.store-section { background: rgba(237,224,196,0.7); position: relative; }
.store-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; margin-top: 2.5rem; }
.store-row img { width: 10rem; height: auto; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.2)); }
@media (min-width: 40rem) { .store-row img { width: 12rem; } }
.store-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.store-buttons span { border-radius: 1rem; background: var(--terracotta-500); color: var(--cream-50); padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 700; text-align: center; }

/* ==========================================================================
   Delivery apps
   ========================================================================== */
.delivery-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 40rem) { .delivery-grid { grid-template-columns: repeat(3, 1fr); } }
.delivery-card { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: 0 8px 20px rgba(0,0,0,0.08); min-height: 11rem; }
.delivery-card .brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.delivery-card .shop-now { display: inline-flex; width: fit-content; align-items: center; border-radius: 999px; background: rgba(0,0,0,0.15); padding: 0.55rem 1.1rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 40rem) { .testimonial-strip { gap: 1rem; } }
.testimonial-strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.testimonial-box { position: relative; max-width: 48rem; margin-inline: auto; border-radius: var(--radius-xl); border: 2px solid var(--terracotta-400); padding: 2.5rem 1.5rem; text-align: center; }
@media (min-width: 40rem) { .testimonial-box { padding: 2.5rem 4rem; } }
.testimonial-box .stars { display: flex; justify-content: center; gap: 0.15rem; color: var(--terracotta-500); margin-bottom: 1rem; }
.testimonial-box blockquote { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.7; color: rgba(58,18,22,0.8); margin: 0; }
@media (min-width: 40rem) { .testimonial-box blockquote { font-size: 1rem; } }
.testimonial-box .name { margin-top: 1.5rem; font-size: 0.9rem; font-weight: 700; color: var(--maroon-700); }
.testimonial-nav { position: absolute; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; height: 2rem; width: 2rem; border-radius: 999px; color: var(--terracotta-500); }
.testimonial-nav:hover { background: rgba(217,171,125,0.2); }
.testimonial-nav.prev { left: 0.75rem; }
.testimonial-nav.next { right: 0.75rem; }

/* ==========================================================================
   Process / Pond-to-pack cards
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 22.5rem) { .process-grid.four-col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 40rem) { .process-grid.four-col { grid-template-columns: repeat(4, 1fr); } }
.process-card { border-radius: 1rem; padding: 1.25rem; border: 2px solid rgba(200,144,95,0.4); }
.process-card.filled { background: var(--terracotta-500); color: var(--cream-50); border: none; }
.process-card .step { font-size: 0.75rem; font-weight: 700; font-style: italic; opacity: 0.7; }
.process-card h3 { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 700; margin: 0.5rem 0 0.25rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--maroon-700); }
.process-card.filled h3 { color: var(--cream-50); }
.process-card p { font-size: 0.75rem; line-height: 1.5; color: rgba(58,18,22,0.6); }
.process-card.filled p { color: rgba(245,236,218,0.85); }
.process-card svg { margin-bottom: 0.6rem; color: var(--terracotta-500); }

/* Our Story process rows — horizontal title-left/description-right rows */
.process-rows { display: flex; flex-direction: column; gap: 0.85rem; }
.process-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 1.25rem;
  border: 2px solid rgba(200,144,95,0.4);
  padding: 1.1rem 1.5rem;
}
@media (min-width: 30rem) {
  .process-row { flex-direction: row; align-items: center; gap: 1.5rem; }
  .process-row h3 { flex: 0 0 8rem; }
}
.process-row h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--maroon-700); margin: 0; }
.process-row p { font-size: 0.85rem; line-height: 1.5; color: var(--ember); margin: 0; }

/* ==========================================================================
   Why-choose / Why-B2B cards
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 40rem) { .why-grid.four-col { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 40rem) { .why-grid.three-col { grid-template-columns: repeat(3, 1fr); } }
.why-card { border-radius: 1rem; padding: 1.5rem; text-align: center; border: 2px solid rgba(200,144,95,0.4); }
.why-card.filled { background: var(--terracotta-500); color: var(--cream-50); border: none; text-align: left; }
.why-card svg { color: var(--terracotta-500); margin-bottom: 0.75rem; }
.why-card.filled svg { color: var(--cream-50); }
.why-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--maroon-700); margin-bottom: 0.5rem; }
.why-card.filled h3 { color: var(--cream-50); }
.why-card p { font-size: 0.75rem; line-height: 1.5; color: rgba(58,18,22,0.6); }
.why-card.filled p { color: rgba(245,236,218,0.85); }

/* ==========================================================================
   Banner (Connect With Us / Supplying Premium)
   ========================================================================== */
.cta-banner { border-radius: var(--radius-xl); border: 2px solid var(--terracotta-400); background: var(--cream-50); padding: 2.5rem 1.5rem; text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 40rem) { .cta-banner { padding: 3rem; } }
.cta-banner h2 { font-size: 1.75rem; font-weight: 700; color: var(--maroon-700); margin: 1rem 0 1rem; }
@media (min-width: 40rem) { .cta-banner h2 { font-size: 2.25rem; } }
.cta-banner p { max-width: 34rem; margin-inline: auto; color: rgba(58,18,22,0.7); }

/* ==========================================================================
   Quote / Get Quotes form
   ========================================================================== */
.quote-form { position: relative; border-radius: var(--radius-xl); background: rgba(185,122,72,0.9); padding: 1.5rem; box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
@media (min-width: 40rem) { .quote-form { padding: 2.5rem; } }
.quote-form .fields-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 40rem) { .quote-form .fields-grid { grid-template-columns: 1fr 1fr; } }
.quote-form .span-2 { grid-column: 1 / -1; }
.quote-form .field-label { color: var(--maroon-900); }
.quote-form .radio-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.quote-form .radio-row label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: var(--maroon-900); }
.quote-form button[type="submit"] { margin-top: 1.75rem; }
.quote-form-bowl { display: none; position: absolute; right: 2.5rem; bottom: 2.5rem; width: 8rem; height: 8rem; border-radius: 999px; object-fit: cover; box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
@media (min-width: 48rem) { .quote-form-bowl { display: block; } }
.quote-form-success { display: flex; min-height: 16rem; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; border-radius: var(--radius-xl); background: rgba(185,122,72,0.95); padding: 2.5rem; text-align: center; color: var(--cream-50); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-hero { position: relative; overflow: hidden; padding-block: 4rem; background: var(--flamingo); color: var(--cream-50); }
@media (min-width: 40rem) { .contact-hero { padding-block: 6rem; } }
.contact-hero__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 64rem) { .contact-hero__grid { grid-template-columns: 1fr 1fr; } }
.contact-hero h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.02; }
@media (min-width: 40rem) { .contact-hero h1 { font-size: 3.5rem; } }
.contact-hero p { max-width: 28rem; margin-top: 1.25rem; color: rgba(245,236,218,0.9); }
.pouch-fan { display: flex; align-items: flex-end; justify-content: center; }
.pouch-fan .pouch { height: 10rem; width: 6rem; margin-left: -1rem; border-radius: 1rem; box-shadow: 0 15px 30px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; text-align: center; font-size: 0.55rem; font-weight: 700; text-transform: uppercase; color: rgba(245,236,218,0.85); background-size: cover; background-position: center; }
@media (min-width: 40rem) { .pouch-fan .pouch { height: 13rem; width: 8rem; } }
.pouch-fan .pouch:first-child { margin-left: 0; }

.quick-contact-form { display: flex; flex-direction: column; gap: 0.75rem; border-radius: var(--radius-lg); background: var(--flamingo); padding: 1.5rem; }
@media (min-width: 40rem) { .quick-contact-form { padding: 2rem; } }
.quick-contact-form input, .quick-contact-form textarea { border: none; background: rgba(251,246,234,0.9); border-radius: 0.75rem; padding: 0.85rem 1rem; text-transform: uppercase; font-size: 0.85rem; color: var(--maroon-900); }
.quick-contact-form textarea { min-height: 6rem; resize: vertical; }
.whatsapp-card { border-radius: var(--radius-lg); background: var(--mustard); padding: 1.5rem; color: var(--charcoal); }
@media (min-width: 40rem) { .whatsapp-card { padding: 2rem; } }
.whatsapp-card h3 { font-size: 1.4rem; font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.whatsapp-card .row { display: flex; gap: 0.5rem; }
.whatsapp-card input { flex: 1; border: none; border-radius: 0.75rem; padding: 0.85rem 1rem; background: var(--cream-50); text-transform: uppercase; }
.contact-info { display: flex; flex-direction: column; border-radius: var(--radius-lg); border: 1px solid rgba(108,35,42,0.1); background: var(--cream-50); }
.contact-info .row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; }
.contact-info .row + .row { border-top: 1px solid rgba(108,35,42,0.08); }
.contact-info .row .label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--maroon-700); }
.contact-info .row .value { font-size: 0.875rem; color: rgba(58,18,22,0.7); text-align: right; }

/* ==========================================================================
   Who can partner (list rows)
   ========================================================================== */
.partner-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 42rem; margin-inline: auto; }
.partner-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-radius: 1rem; background: var(--terracotta-500); color: var(--cream-50); padding: 1rem 1.5rem; }
.partner-row .name { font-weight: 700; }
.partner-row .contact-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.partner-row .contact-link:hover { text-decoration: underline; }

/* ==========================================================================
   Specification rows
   ========================================================================== */
.spec-list { display: flex; flex-direction: column; gap: 0.6rem; max-width: 42rem; margin-inline: auto; }
.spec-row { display: flex; flex-direction: column; gap: 0.25rem; border-radius: 1rem; background: var(--terracotta-500); color: var(--cream-50); padding: 1rem 1.5rem; }
@media (min-width: 40rem) { .spec-row { flex-direction: row; align-items: center; justify-content: space-between; } }
.spec-row .k { font-size: 0.9rem; font-weight: 700; }
.spec-row .v { font-size: 0.75rem; opacity: 0.9; }
@media (min-width: 40rem) { .spec-row .v { text-align: right; } }

/* Hero with background photo (Our Story, B2B & Export) */
.hero-photo { position: relative; overflow: hidden; padding-block: 5rem; color: var(--cream-50); }
@media (min-width: 40rem) { .hero-photo { padding-block: 7rem; } }
.hero-photo img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo .overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,26,20,0.85), rgba(10,26,20,0.4) 60%, transparent); }
.hero-photo .content { position: relative; max-width: 40rem; }
.hero-photo h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.05; }
@media (min-width: 40rem) { .hero-photo h1 { font-size: 3rem; } }
@media (min-width: 64rem) { .hero-photo h1 { font-size: 3.75rem; } }
.hero-photo p { margin-top: 1.5rem; max-width: 30rem; font-size: 1rem; color: rgba(245,236,218,0.8); }
@media (min-width: 40rem) { .hero-photo p { font-size: 1.125rem; } }

/* Flavours-page hero (no photo, just cream) */
.hero-plain { padding-block: 3.5rem 1rem; text-align: center; }
@media (min-width: 40rem) { .hero-plain { padding-block: 5rem 1rem; } }
.hero-plain .inner { max-width: 40rem; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-plain h1 { font-size: 2.25rem; font-weight: 700; color: var(--maroon-700); }
@media (min-width: 40rem) { .hero-plain h1 { font-size: 3rem; } }
@media (min-width: 64rem) { .hero-plain h1 { font-size: 3.75rem; } }
.hero-plain p { font-size: 1rem; color: rgba(58,18,22,0.7); }
@media (min-width: 40rem) { .hero-plain p { font-size: 1.125rem; } }

/* Our Story illustration + process */
.story-illustration { display: flex; justify-content: center; }
.story-illustration img { max-width: 20rem; width: 100%; }
.founders-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.founders-quote { max-width: 44rem; margin: 2rem auto 0; text-align: center; }
.founders-quote p { font-size: 1.1rem; font-style: italic; line-height: 1.7; color: rgba(58,18,22,0.75); }
.founders-quote footer { margin-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--maroon-700); }

/* Trust marks (About page) */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 40rem) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-grid .mark { display: flex; align-items: center; justify-content: center; height: 5rem; border-radius: 1rem; border: 1px solid rgba(58,18,22,0.1); background: var(--cream-50); padding: 1rem; text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(58,18,22,0.5); }
