@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@200;300;400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* ============================================================
   NAGA MATCHA — styles.css
   Brand system per Naga Visual Identity Quick Guide:
   - Martian Mono (ExtraBold headlines, SemiBold sub-heads, Regular body)
   - Palette: Dark Leaf, Misty Mountain, Peaceful Glade, Green Powder
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Official brand palette */
  --dark-leaf: #365b30;
  --misty-mountain: #51714c;
  --peaceful-glade: #85aa73;
  --green-powder: #90c36d;

  /* Semantic aliases */
  --green-dark: var(--dark-leaf);
  --green-mid: var(--misty-mountain);
  --green-light: var(--green-powder);
  --green-pale: var(--peaceful-glade);
  --green-bg-1: #dce8d0;
  --green-bg-2: #c8d8b8;
  --cream: #f4f0e8;
  --warm-white: #fafaf7;
  --dark: #1a1a1a;
  --dark-green: var(--dark-leaf);
  --text-dark: var(--dark-leaf);
  --text-mid: var(--misty-mountain);
  --muted-sage: var(--peaceful-glade);
  --section-1: #dce8d0;
  --section-2: #c8d8b8;
  --section-3: var(--dark-leaf);
  --section-4: #eef4e8;
  --section-5: var(--green-powder);
  --section-join: var(--dark-leaf);
  --section-footer: #1a1a1a;

  --font-brand: 'Martian Mono', monospace;
  --font-display: var(--font-brand);
  --font-body: 'Nunito', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-mono: var(--font-brand);

  --weight-headline: 800;
  --weight-subhead: 600;
  --weight-body: 400;
  --line-height-body: 1.6;
  --tracking-tight: -0.03em;

  --nav-height: 72px;
  --ticker-height: 40px;
  --cookie-banner-offset: 0px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --mobile-chrome-height: 0px;
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--ticker-height) + var(--safe-top));
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  line-height: var(--line-height-body);
  letter-spacing: -0.01em;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Keep body copy readable site-wide while headings remain brand display. */
:where(p, li, label, small, blockquote, figcaption, input, select, textarea, button) {
  font-family: var(--font-body);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-bg-1); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
  padding:
    var(--safe-top)
    max(2.5rem, var(--safe-right))
    0
    max(2.5rem, var(--safe-left));
  min-height: calc(var(--nav-height) + var(--safe-top));
  background: rgba(54, 91, 48, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(144, 195, 109, 0.18);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(54, 91, 48, 1);
}

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

.nav-logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(144, 195, 109, 0.3));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.12em;
  color: var(--warm-white);
  line-height: 1.2;
}

.nav-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(144, 195, 109, 0.65);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

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

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: var(--weight-body);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-powder);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--green-powder); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  color: var(--dark-leaf);
  background: var(--green-powder);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--peaceful-glade);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-white);
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transform: none;
  box-shadow: none;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(54, 91, 48, 0.98);
  border-bottom: 1px solid rgba(144, 195, 109, 0.2);
  padding: 2rem;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a:not(.mobile-menu-cta) {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--weight-subhead);
  color: var(--green-powder);
  letter-spacing: 0.05em;
}

.mobile-menu-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  background: var(--green-powder);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  min-height: 48px;
  transition: background 0.2s, transform 0.2s;
}

a.mobile-menu-cta {
  color: var(--dark-leaf);
}

.mobile-menu-cta:active {
  background: var(--peaceful-glade);
  transform: scale(0.98);
}

/* ============================================================
   FIXED CTA BUTTON
   ============================================================ */
.fixed-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark-leaf);
  color: var(--warm-white);
  padding: 1.5rem 3rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--weight-body);
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s, background 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.fixed-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fixed-cta:hover {
  background: var(--dark-green);
  transform: translateY(0);
  box-shadow: none;
}
.fixed-cta-arrow {
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.fixed-cta:hover .fixed-cta-arrow { transform: translateX(6px); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark-leaf);
  color: var(--warm-white);
  border-top: 3px solid var(--green-powder);
  box-shadow: 0 -12px 40px rgba(26, 26, 26, 0.18);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.is-hiding {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner::before {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -4%;
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  background-image: url('Naga Matcha Branding Package/Logo/PNG/NagaLogo_Full-Alt_Colour-Light_Single_NoBG.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.cookie-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.35rem 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 2.5rem;
  align-items: center;
}

.cookie-banner-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.cookie-banner-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-powder);
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: var(--weight-headline);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--warm-white);
}

.cookie-banner-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(250, 250, 247, 0.82);
  max-width: 52rem;
}

.cookie-banner-text a {
  color: var(--green-powder);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cookie-banner-text a:hover {
  color: var(--warm-white);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.cookie-btn--ghost {
  background: transparent;
  color: rgba(250, 250, 247, 0.9);
  border-color: rgba(144, 195, 109, 0.35);
}

.cookie-btn--ghost:hover {
  background: rgba(144, 195, 109, 0.12);
  border-color: var(--green-powder);
  transform: translateY(-1px);
}

.cookie-btn--accept {
  background: var(--green-powder);
  color: var(--dark-leaf);
  border-color: var(--green-powder);
}

.cookie-btn--accept:hover {
  background: var(--warm-white);
  border-color: var(--warm-white);
  transform: translateY(-1px);
}

body.cookie-banner-open {
  --cookie-banner-offset: 7.5rem;
}

body.cookie-banner-open .fixed-cta.visible {
  bottom: var(--cookie-banner-offset);
}

/* ============================================================
   HERO TICKER — fixed below nav
   ============================================================ */
.hero-bento-ticker {
  position: fixed;
  top: calc(var(--nav-height) + var(--safe-top));
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--green-powder);
  overflow: hidden;
  height: var(--ticker-height);
  display: flex;
  align-items: center;
}
.hero-bento-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: bentoTicker 20s linear infinite;
}
.hero-bento-ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  padding: 0 1.2rem;
}
.hero-bento-ticker-track .sep {
  color: rgba(54, 91, 48, 0.45);
  padding: 0;
}
@keyframes bentoTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION — image background, text overlaid
   ============================================================ */
.hero {
  position: relative;
  margin-top: calc(var(--nav-height) + var(--ticker-height) + var(--safe-top));
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.42) 0%,
    rgba(26, 26, 26, 0.12) 38%,
    rgba(26, 26, 26, 0.28) 72%,
    rgba(26, 26, 26, 0.5) 100%
  );
}

.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.hero::after {
  display: none;
}

.hero-text-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 0 4rem;
}

.hero-logo {
  width: min(640px, 80vw);
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  filter: brightness(0) invert(1) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.hero-headline {
  font-family: 'Canva Sans', var(--font-mono);
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  margin: 0;
}
.hero-headline .hero-dot {
  color: var(--warm-white);
  opacity: 0.6;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2.5vw, 1.6rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.hero-text-block .hero-f4-micro {
  color: rgba(144,195,109,0.7);
  margin-bottom: 0;
}

.hero-text-block .hero-f4-credits {
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
}
.hero-text-block .hero-f4-credits span + span::before {
  color: rgba(255,255,255,0.2);
}

/* ── Splash overlay ── */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(180, 220, 160, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(140, 200, 120, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(160, 210, 140, 0.2) 0%, transparent 55%),
    #f4f9f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.7s ease;
  overflow: hidden;
}

/* Decorative botanical rings */
.splash-overlay::before,
.splash-overlay::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(90, 140, 70, 0.12);
  pointer-events: none;
}

.splash-overlay::before {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 40px rgba(90, 140, 70, 0.06),
    0 0 0 80px rgba(90, 140, 70, 0.04),
    0 0 0 140px rgba(90, 140, 70, 0.03);
}

.splash-overlay::after {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(90, 140, 70, 0.07);
  animation: splashRotate 30s linear infinite;
}

@keyframes splashRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.splash-overlay.hiding {
  opacity: 0;
  pointer-events: none;
}

.splash-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.splash-logo {
  width: 220px;
  animation: splashPulse 2.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(60, 100, 40, 0.18));
}

@keyframes splashPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(0.975); }
}

.splash-tagline {
  font-family: 'Martian Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(50, 90, 40, 0.55);
  text-transform: uppercase;
}

.splash-enter {
  font-family: 'Martian Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: rgba(50, 90, 40, 0.7);
  text-transform: uppercase;
  margin-top: 0.5rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid rgba(80, 130, 60, 0.3);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  animation: splashBlink 1.6s ease-in-out infinite;
}

@keyframes splashBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ── Sound toggle ── */
.hero-sound-btn {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}

.hero-sound-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}

.hero-f4-corner {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hero-inner { display: none; }

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

.hero-f4-glow {
  position: absolute;
  width: 55vw;
  height: 55vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,91,48,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.35s ease-out, top 0.35s ease-out;
}

.hero-f4-line {
  position: relative;
  z-index: 2;
  text-align: center;
  will-change: transform;
  transition: transform 0.12s ease-out;
}

.hero-f4-micro {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(54,91,48,0.45);
  margin-bottom: 2.75rem;
}

.hero-f4-big {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 10vw, 10.5rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.hero-f4-big .ghost {
  color: transparent;
  -webkit-text-stroke: 2px rgba(54,91,48,0.22);
}

.hero-f4-big-r {
  text-align: right;
  margin-top: -0.1em;
}

.hero-f4-medium {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 4.5vw, 4.5rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--misty-mountain);
  margin-top: 0.6rem;
}

.hero-f4-credits {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.38);
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.hero-f4-credits span { position: relative; }

.hero-f4-credits span + span::before {
  content: '·';
  position: absolute;
  left: -0.9rem;
  color: rgba(54,91,48,0.25);
}

.hero-f4-cta-row {
  margin-top: 3.25rem;
  z-index: 2;
  position: relative;
}

.hero-f4-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  background: var(--green-powder);
  padding: 1rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-f4-cta:hover {
  transform: translateY(-2px);
  background: #a0d07d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.hero-f4-corner {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(54,91,48,0.22);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bento-ticker-track { animation: none; }
  .hero-f4-line { transition: none !important; }
}

/* ── 3D Carousel — legacy styles (unused) ─────────────────── */
.scene {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  perspective: 1600px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Parallax vars set by JS */
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) rotateY(var(--parallax-ry, 0deg));
  transition: transform 0.1s ease-out;
}

.carousel {
  position: relative;
  width: 120px;
  height: 190px;
  transform-style: preserve-3d;
  animation: rotateCarousel 40s infinite linear;
  margin-top: 25vh; /* shift cards down to reveal logo above */
  transform: rotateX(-12deg); /* steeper tilt */
}

@keyframes rotateCarousel {
  0% { transform: rotateX(-12deg) rotateY(0deg); }
  100% { transform: rotateX(-12deg) rotateY(-360deg); }
}

.carousel-item {
  position: absolute;
  width: 120px;
  height: 190px;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  color: white;
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-item:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.3);
}

/* Distribute 6 cards in a 360 degree cylinder */
.carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(180px); }
.carousel-item:nth-child(2) { transform: rotateY(60deg) translateZ(180px); }
.carousel-item:nth-child(3) { transform: rotateY(120deg) translateZ(180px); }
.carousel-item:nth-child(4) { transform: rotateY(180deg) translateZ(180px); }
.carousel-item:nth-child(5) { transform: rotateY(240deg) translateZ(180px); }
.carousel-item:nth-child(6) { transform: rotateY(300deg) translateZ(180px); }

/* Card internals */
.card-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--weight-subhead);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.card-meta {
  /* margin-top: auto removed to let it sit below title */
}

.card-meta-role {
  display: block;
  font-size: 0.55rem;
  font-weight: var(--weight-subhead);
  color: var(--green-light);
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-meta-loc {
  display: block;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.45);
}

.card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: auto;
}

.card-profile-wrap {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-profile-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============================================================
   CONTENT WRAP
   ============================================================ */
.content-wrap {
  position: relative;
  background: transparent;
}

/* ============================================================
   SECTION: INTRO / STORY
   ============================================================ */
/* ============================================================
   SECTION: OUR STORY
   ============================================================ */
.section-story {
  position: relative;
  background: var(--warm-white);
  overflow: hidden;
  padding: 8rem 2.5rem;
}

.story-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: var(--weight-headline);
  color: rgba(54, 91, 48, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.story-wrap {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.story-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.story-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.25rem;
}

.story-header {
  max-width: 600px;
}

.story-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  margin-bottom: 1rem;
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: var(--weight-headline);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.story-title span {
  color: var(--dark-leaf);
}

.story-deck {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
  max-width: 480px;
}

/* ---- Photo column ---- */
.story-visual {
  position: sticky;
  top: calc(var(--nav-height) + var(--ticker-height) + 2rem);
  align-self: start;
}

.story-photo-accent {
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  background: linear-gradient(160deg, #c8d8b8 0%, #90c36d 100%);
  border-radius: 6px;
  z-index: 0;
}

.story-photo-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(54, 91, 48, 0.28),
    0 0 0 1px rgba(54, 91, 48, 0.08);
}

.story-photo {
  display: block;
  width: 100%;
  min-height: clamp(420px, 72vh, 720px);
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-visual:hover .story-photo {
  transform: scale(1.03);
}

.story-photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 1.5rem 1.35rem;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.35) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.story-photo-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-powder);
}

.story-photo-mark {
  width: 88px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* ---- Narrative panel ---- */
.story-narrative {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.5rem;
}

.story-chapter {
  position: relative;
}

.story-chapter-head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.story-chapter-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--weight-headline);
  line-height: 1;
  color: rgba(54, 91, 48, 0.18);
  flex-shrink: 0;
  min-width: 2.5rem;
}

.story-chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--weight-headline);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.story-chapter-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  max-width: 540px;
  padding-left: calc(2.5rem + 1.25rem);
}

.story-connector {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0 1.75rem calc(2.5rem + 1.25rem);
  max-width: 540px;
}

.story-connector-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 91, 48, 0.25), transparent);
}

.story-connector-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
}

.story-chapter--two {
  margin-top: 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 1025px) {
  .story-chapter--two {
    margin-left: -2.5rem;
    margin-right: 0.5rem;
  }
}

.story-chapter-inner {
  background: var(--dark-leaf);
  color: var(--warm-white);
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.story-chapter-inner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 220px;
  height: 220px;
  background-image: url('Naga Matcha Branding Package/Logo/PNG/NagaLogo_Full-Alt_Colour-Light_Single_NoBG.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.story-chapter--two .story-chapter-num {
  color: rgba(144, 195, 109, 0.35);
}

.story-chapter--two .story-chapter-title {
  color: var(--green-powder);
}

.story-chapter--two .story-chapter-text,
.story-chapter--two .story-chapter-closer {
  padding-left: 0;
  color: rgba(250, 250, 247, 0.88);
  max-width: none;
}

.story-why-list {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.story-why-list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(250, 250, 247, 0.78);
  padding-left: 1.25rem;
  position: relative;
}

.story-why-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--green-powder);
  font-size: 0.65rem;
  top: 0.35em;
}

.story-why-list li span {
  color: var(--green-powder);
  font-weight: var(--weight-subhead);
}

.story-chapter-closer {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(250, 250, 247, 0.92);
  font-weight: var(--weight-subhead);
  border-top: 1px solid rgba(144, 195, 109, 0.2);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.story-foot {
  margin-top: 2.5rem;
  padding-left: calc(2.5rem + 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.story-pill {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  background: rgba(144, 195, 109, 0.22);
  border: 1px solid rgba(54, 91, 48, 0.12);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: var(--weight-headline);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.06em;
  color: var(--dark);
  background: var(--green-light);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--peaceful-glade);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(54, 91, 48, 0.2);
}

.btn-primary-dark {
  background: var(--dark-leaf);
  color: var(--warm-white);
  padding: 1.2rem 2.5rem;
}

.btn-primary-dark:hover {
  background: var(--misty-mountain);
  color: var(--warm-white);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary-outline {
  background: transparent;
  color: var(--dark-leaf);
  border: 2px solid var(--dark-leaf);
  padding: 1.15rem 2.35rem;
}

.btn-primary-outline:hover {
  background: rgba(54, 91, 48, 0.08);
  color: var(--dark-leaf);
  box-shadow: none;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.06em;
  color: var(--warm-white);
  background: var(--dark-leaf);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}
.btn-join:hover {
  background: var(--misty-mountain);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION: FEATURES
   ============================================================ */
.section-features {
  position: relative;
  background: var(--section-1);
  overflow: hidden;
  padding: 8rem 2.5rem;
  border-top: 1px solid rgba(54, 91, 48, 0.1);
}

.features-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: var(--weight-headline);
  color: rgba(54,91,48,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.features-header {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading-alt {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: var(--weight-headline);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.heading-star {
  display: inline-block;
  color: var(--dark-green);
  font-size: 0.55em;
  vertical-align: super;
  animation: sparkleRotate 5s linear infinite reverse;
}

.features-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(0,0,0,0.7);
  max-width: 320px;
  text-align: right;
  line-height: var(--line-height-body);
}

.features-grid {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(54,91,48,0.1);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 24px 60px rgba(54,91,48,0.12);
}
.feature-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(0,0,0,0.18);
}

.feature-card-inner {
  padding: 2rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--weight-subhead);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(26,26,26,0.65);
  line-height: var(--line-height-body);
}

/* ============================================================
   SECTION: TYPES OF MATCHA (product showcase)
   ============================================================ */
.section-types {
  position: relative;
  background: var(--warm-white);
  overflow: hidden;
  padding: 8rem 2.5rem;
  color: var(--text-dark);
  border-top: 1px solid rgba(54, 91, 48, 0.08);
}

.types-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: var(--weight-headline);
  color: rgba(54, 91, 48, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.types-header {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-types .section-heading-alt {
  color: var(--dark-leaf);
}

.types-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 380px;
  text-align: right;
  line-height: var(--line-height-body);
}

.types-product-grid {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.types-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.types-product-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1rem;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(54, 91, 48, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.types-product-card:not(.types-product-card--soon) .types-product-visual {
  padding: 0;
  overflow: hidden;
}

.types-product-card:not(.types-product-card--soon):hover .types-product-visual {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(54, 91, 48, 0.12);
}

.types-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.types-product-card:not(.types-product-card--soon):hover .types-product-img {
  transform: scale(1.04);
}

.types-product-visual--soon {
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-bg-1) 100%);
  opacity: 0.92;
}

.types-soon-icon {
  width: 56px;
  height: auto;
  opacity: 0.35;
}

.types-soon-flavour {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.types-product-name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: var(--weight-subhead);
  color: var(--dark-leaf);
  line-height: 1.2;
}

.types-product-tag {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: -0.35rem;
}

.types-product-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 220px;
  padding: 0.65rem 1.1rem;
  background: var(--warm-white);
  border: 1.5px solid rgba(54, 91, 48, 0.2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.04em;
  color: var(--dark-leaf);
}

.types-product-pill--muted {
  color: var(--text-mid);
  border-style: dashed;
  opacity: 0.7;
}

.types-product-pill-sep {
  opacity: 0.45;
}

.types-product-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 220px;
  min-height: 44px;
  background: var(--dark-leaf);
  border-radius: 999px;
  overflow: hidden;
}

.types-product-qty {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.types-qty-btn {
  flex: 1;
  min-width: 36px;
  min-height: 44px;
  color: var(--warm-white);
  font-size: 1.1rem;
  font-weight: var(--weight-subhead);
  transition: background 0.2s;
}

.types-qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.types-qty-value {
  flex: 0 0 28px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: var(--weight-subhead);
  color: var(--warm-white);
  text-align: center;
}

.types-product-add {
  flex: 0 0 auto;
  min-width: 72px;
  padding: 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--warm-white);
  transition: background 0.2s;
}

.types-product-add:hover {
  background: var(--misty-mountain);
}

.types-product-bar--soon {
  justify-content: center;
  background: rgba(54, 91, 48, 0.12);
  border: 1.5px dashed rgba(54, 91, 48, 0.2);
}

.types-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.types-product-card--soon {
  opacity: 0.88;
}

/* ============================================================
   SECTION: BREW GUIDE
   ============================================================ */
.section-brew {
  position: relative;
  background: var(--section-4);
  overflow: hidden;
  padding: 8rem 2.5rem;
}

.brew-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 26vw, 24rem);
  font-weight: var(--weight-headline);
  color: rgba(61, 107, 46, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.brew-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.brew-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: var(--weight-headline);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.brew-heading-accent { color: var(--green-dark); }

.brew-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 3rem;
  line-height: var(--line-height-body);
}

.brew-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brew-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(61, 107, 46, 0.15);
}
.brew-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--weight-headline);
  color: var(--dark-leaf);
  min-width: 48px;
  line-height: 1;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: var(--weight-subhead);
  color: var(--dark);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}
.step-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
}

.brew-photo {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  display: block;
}

/* ============================================================
   SECTION: ORDER
   ============================================================ */
.section-order {
  position: relative;
  background: #eef4e8;
  overflow: hidden;
  padding: 8rem 2.5rem;
}

.order-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: var(--weight-headline);
  color: rgba(54,91,48,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.order-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.order-product-image-wrap {
  position: relative;
}

/* Order page product gallery */
.order-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  outline: none;
}

.order-gallery:focus-visible .order-gallery-viewport {
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.18),
    0 0 0 3px rgba(144, 195, 109, 0.45);
}

.order-gallery-stage {
  position: relative;
}

.order-gallery-viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(54, 91, 48, 0.06);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  touch-action: pan-y;
}

.order-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.order-gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.order-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(250, 250, 247, 0.92);
  color: var(--dark-leaf);
  border: 1px solid rgba(54, 91, 48, 0.12);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
  font-family: var(--font-display);
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}

.order-gallery-nav:hover {
  background: var(--warm-white);
  transform: translateY(-50%) scale(1.05);
}

.order-gallery-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.order-gallery-prev { left: 0.85rem; }
.order-gallery-next { right: 0.85rem; }

.order-gallery-counter {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.12em;
  color: var(--warm-white);
  background: rgba(54, 91, 48, 0.82);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.order-gallery-counter-sep {
  opacity: 0.45;
}

.order-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.order-gallery-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem;
  border-radius: 10px;
  border: 2px solid rgba(54, 91, 48, 0.1);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-height: 48px;
}

.order-gallery-thumb:hover {
  border-color: rgba(54, 91, 48, 0.28);
  background: rgba(255, 255, 255, 0.85);
}

.order-gallery-thumb.is-active {
  border-color: var(--dark-leaf);
  background: var(--warm-white);
  box-shadow: 0 8px 20px rgba(54, 91, 48, 0.1);
}

.order-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.order-gallery-thumb-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--misty-mountain);
}

.order-gallery-thumb.is-active .order-gallery-thumb-label {
  color: var(--dark-leaf);
}

.order-product-duo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: end;
}

.order-product-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.order-img-main { aspect-ratio: 3/4; }
.order-img-secondary { aspect-ratio: 4/5; }
.order-product-image:hover { transform: scale(1.02) rotate(-1deg); }

.order-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 90px;
  background: var(--dark-leaf);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatMascot 4s ease-in-out infinite;
}
.order-badge-logo { width: 100%; }

.order-product-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.info-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--dark-green);
  background: rgba(42, 61, 30, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(42, 61, 30, 0.2);
}

.order-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: var(--weight-headline);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.order-heading span { color: var(--dark-green); }

.order-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.order-description {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.order-description p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: var(--line-height-body);
}

.order-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.order-price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: var(--weight-headline);
  color: var(--dark);
  letter-spacing: -0.02em;
}

.price-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--dark-green);
  opacity: 0.7;
}

/* ORDER FORM */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  color: var(--dark);
  text-transform: uppercase;
}

.form-group input {
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(42, 61, 30, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group select {
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(42, 61, 30, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23365b30' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(61, 107, 46, 0.15);
  background: rgba(255,255,255,0.9);
}

.form-group select:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(61, 107, 46, 0.15);
  background-color: rgba(255,255,255,0.9);
}
.form-group input[readonly] {
  opacity: 0.6;
  cursor: default;
}
.form-group input::placeholder { color: rgba(42,61,30,0.4); }

/* Quantity selector */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(42, 61, 30, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 160px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  font-weight: var(--weight-subhead);
  color: var(--dark-green);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: rgba(61, 107, 46, 0.1); }

.quantity-selector input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 2px solid rgba(42, 61, 30, 0.2);
  border-right: 2px solid rgba(42, 61, 30, 0.2);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--weight-subhead);
  padding: 0.5rem;
}
.quantity-selector input:focus {
  outline: none;
  box-shadow: none;
}

/* ORDER BUTTON */
.btn-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-leaf);
  color: var(--warm-white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.btn-order:hover {
  background: var(--misty-mountain);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(54,91,48,0.2);
}

.btn-order-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.btn-order:hover .btn-order-arrow { transform: translateX(4px); }

.btn-order:disabled,
.btn-order.is-sold-out {
  background: rgba(26, 26, 26, 0.25);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-order:disabled:hover,
.btn-order.is-sold-out:hover {
  background: rgba(26, 26, 26, 0.25);
  transform: none;
  box-shadow: none;
}

.qty-btn:disabled,
.types-qty-btn:disabled,
.types-product-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.stock-note {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-leaf);
}
.stock-note:empty { display: none; }
.stock-note.is-out-of-stock { color: #9a3f3f; }

.order-secure-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--dark-green);
  opacity: 0.7;
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   ORDER PAGE
   ============================================================ */
.page-order .hero-bento-ticker,
.page-order .fixed-cta {
  display: none;
}

.page-order-main {
  padding-top: calc(var(--nav-height) + var(--safe-top));
}

.page-order .section-order,
.section-order {
  display: flex;
  align-items: center;
}

.page-order .section-order {
  min-height: calc(100vh - var(--nav-height));
}

.order-page-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  margin-bottom: 0.75rem;
}

.order-checkout-note {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.page-checkout .hero-bento-ticker,
.page-checkout .fixed-cta {
  display: none;
}

.page-checkout-main {
  padding-top: calc(var(--nav-height) + var(--safe-top));
}

.section-checkout {
  position: relative;
  background: #eef4e8;
  overflow: hidden;
  padding: 3rem 2.5rem 5rem;
  min-height: calc(100vh - var(--nav-height) - var(--safe-top));
}

.checkout-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: var(--weight-headline);
  color: rgba(54, 91, 48, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.checkout-steps {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.checkout-page-header {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 1.5rem;
}

.checkout-step {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 91, 48, 0.15);
  background: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

a.checkout-step:hover {
  color: var(--dark-leaf);
  border-color: rgba(54, 91, 48, 0.3);
}

.checkout-step.is-complete {
  color: var(--dark-leaf);
}

.checkout-step.is-active {
  color: var(--warm-white);
  background: var(--dark-leaf);
  border-color: var(--dark-leaf);
}

.checkout-step-sep {
  font-size: 0.75rem;
  color: rgba(54, 91, 48, 0.35);
}

.checkout-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 3rem;
  align-items: start;
}

.checkout-summary-wrap {
  position: sticky;
  top: calc(var(--nav-height) + var(--safe-top) + 1.5rem);
}

.checkout-summary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(54, 91, 48, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(54, 91, 48, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.checkout-summary-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  margin-bottom: 1.25rem;
}

.checkout-summary-product {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(54, 91, 48, 0.1);
}

.checkout-summary-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(54, 91, 48, 0.06);
}

.checkout-summary-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: var(--weight-subhead);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.checkout-summary-meta,
.checkout-summary-unit {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.45;
}

.checkout-summary-qty {
  margin-bottom: 1.25rem;
}

.checkout-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding-top: 0.25rem;
}

.checkout-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-summary-line dt {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-mid);
}

.checkout-summary-line dd {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: var(--weight-subhead);
  color: var(--dark);
}

.checkout-summary-free {
  color: var(--dark-leaf);
}

.checkout-summary-total-row {
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(54, 91, 48, 0.12);
}

.checkout-summary-total-row dt,
.checkout-summary-total-row dd {
  font-size: 0.95rem;
  font-weight: var(--weight-headline);
  color: var(--dark-leaf);
}

.checkout-summary-edit {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  transition: color 0.2s;
}

.checkout-summary-edit:hover {
  color: var(--dark-leaf);
}

.checkout-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: var(--weight-headline);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.checkout-heading span {
  color: var(--dark-leaf);
}

.checkout-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
  margin-bottom: 2rem;
  max-width: 520px;
}

.checkout-form {
  max-width: 640px;
}

.checkout-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(54, 91, 48, 0.12);
}

.checkout-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  margin-bottom: 1.25rem;
}

.checkout-payment-copy {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.checkout-section--payment .btn-order {
  width: 100%;
}

.checkout-trust {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(54, 91, 48, 0.1);
  border-radius: var(--radius);
  text-align: center;
}

.checkout-trust-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  margin-bottom: 0.75rem;
}

.checkout-trust-lead::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23365b30' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.85;
}

.checkout-trust-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-trust-methods li {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  background: rgba(54, 91, 48, 0.05);
  border: 1px solid rgba(54, 91, 48, 0.12);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.checkout-section--payment .order-policy-links {
  margin-top: 1.25rem;
  text-align: left;
}

.checkout-delivery-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  background: rgba(144, 195, 109, 0.14);
  border: 1px solid rgba(54, 91, 48, 0.12);
  border-radius: var(--radius);
}

.checkout-delivery-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--misty-mountain);
}

.checkout-delivery-value {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--dark-leaf);
  font-weight: var(--weight-subhead);
}

.checkout-shipping-note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.45;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

#checkout-shipping.checkout-summary-free {
  color: var(--dark-leaf);
}

/* ============================================================
   STORE LOCATOR PAGE
   ============================================================ */
.page-locator .hero-bento-ticker,
.page-locator .fixed-cta {
  display: none;
}

.page-locator-main {
  padding-top: calc(var(--nav-height) + var(--safe-top));
}

.section-locator {
  position: relative;
  background: var(--section-4);
  overflow: hidden;
  padding: 4rem 2.5rem 6rem;
  min-height: calc(100vh - var(--nav-height));
}

.locator-bg-text {
  position: absolute;
  top: 8%;
  right: -2%;
  font-family: var(--font-display);
  font-size: clamp(10rem, 24vw, 22rem);
  font-weight: var(--weight-headline);
  color: rgba(54,91,48,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.locator-header {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.locator-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  margin-bottom: 0.75rem;
}

.locator-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--weight-headline);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.locator-heading span {
  color: var(--dark-leaf);
}

.locator-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
  max-width: 520px;
}

.locator-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.locator-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.locator-search,
.locator-select {
  background: rgba(255,255,255,0.85);
  border: 2px solid rgba(42, 61, 30, 0.18);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.locator-search:focus,
.locator-select:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(61, 107, 46, 0.15);
}

.locator-select {
  min-width: 150px;
  cursor: pointer;
}

.btn-locate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.06em;
  color: var(--warm-white);
  background: var(--dark-leaf);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}

.btn-locate:hover {
  background: var(--misty-mountain);
  transform: translateY(-2px);
}

.btn-locate.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-locate-icon {
  font-size: 1rem;
  line-height: 1;
}

.locator-status {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
  min-height: 1.2em;
}

.locator-status--success {
  color: var(--dark-leaf);
}

.locator-status--error {
  color: #8b3a3a;
}

.locator-layout {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 1.5rem;
  align-items: stretch;
  min-height: 560px;
}

.locator-list-panel {
  background: var(--warm-white);
  border: 1px solid rgba(54,91,48,0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(54,91,48,0.08);
}

.locator-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(54,91,48,0.1);
}

.locator-list-head h2 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.store-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-mid);
}

.store-list {
  flex: 1;
  overflow-y: auto;
  max-height: 520px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-card {
  background: #fff;
  border: 2px solid rgba(54,91,48,0.08);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.store-card:hover,
.store-card:focus-visible {
  border-color: rgba(54,91,48,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(54,91,48,0.08);
  outline: none;
}

.store-card--active {
  border-color: var(--dark-leaf);
  background: #f7faf4;
  box-shadow: 0 8px 24px rgba(54,91,48,0.12);
}

.store-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.store-type {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  margin-bottom: 0.35rem;
}

.store-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--weight-subhead);
  color: var(--dark);
  line-height: 1.2;
}

.store-distance {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.04em;
  color: var(--dark-leaf);
  background: #e8f0e0;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.store-address {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(26,26,26,0.55);
  margin-bottom: 0.75rem;
}

.store-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.store-product-pill {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  background: rgba(144, 195, 109, 0.22);
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

.store-directions {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.05em;
  color: var(--dark-leaf);
  transition: color 0.2s;
}

.store-directions:hover {
  color: var(--misty-mountain);
}

.store-empty {
  padding: 2rem 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
}

.store-empty a {
  color: var(--dark-leaf);
  text-decoration: underline;
}

.locator-online-fallback {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(54,91,48,0.1);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
}

.locator-online-fallback a {
  color: var(--dark-leaf);
  font-weight: var(--weight-subhead);
}

.locator-map-panel {
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(54,91,48,0.12);
  box-shadow: 0 16px 48px rgba(54,91,48,0.08);
}

.locator-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #dce8d0;
}

.store-marker {
  background: transparent !important;
  border: none !important;
}

.store-marker span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark-leaf);
  color: var(--green-powder);
  font-size: 0.85rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border: 2px solid #fff;
}

.store-marker--active span {
  background: var(--green-powder);
  color: var(--dark-leaf);
  transform: scale(1.15);
}

.store-marker--user span {
  background: var(--warm-white);
  color: var(--dark-leaf);
  font-size: 1rem;
}

.leaflet-popup-content {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0.65rem 0.85rem;
}

/* ============================================================
   HELP / POLICY PAGES
   ============================================================ */
.page-support .hero-bento-ticker,
.page-support .fixed-cta {
  display: none;
}

.page-support-main {
  padding-top: calc(var(--nav-height) + var(--safe-top));
  min-height: calc(100vh - var(--nav-height) - var(--safe-top));
  position: relative;
  isolation: isolate;
}

.page-support-main::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('Naga Matcha Branding Package/Sri Lanka tea.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

.support-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 6rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

.support-sidebar,
.support-content {
  min-width: 0;
}

.support-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.support-sidebar-label,
.support-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--misty-mountain);
  margin-bottom: 1rem;
}

.support-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.support-nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.support-nav-link:hover {
  color: var(--dark-leaf);
  background: rgba(54, 91, 48, 0.06);
}

.support-nav-link.is-active {
  color: var(--dark-leaf);
  font-weight: var(--weight-subhead);
  background: rgba(54, 91, 48, 0.08);
  border-left-color: var(--dark-leaf);
}

.support-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--weight-headline);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.support-updated {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: var(--line-height-body);
}

.support-updated a,
.policy-body a {
  color: var(--dark-leaf);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(54, 91, 48, 0.12);
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--weight-subhead);
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.policy-section p,
.policy-section li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.policy-section p + p,
.policy-section p + ul,
.policy-section ul + p {
  margin-top: 0.75rem;
}

.policy-section ul,
.policy-section ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.policy-section li::marker {
  color: var(--peaceful-glade);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--warm-white);
  border: 1px solid rgba(54, 91, 48, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: var(--weight-subhead);
  color: var(--dark);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--dark-leaf);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: rgba(54, 91, 48, 0.04);
}

.faq-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  padding: 0 1.25rem 1.25rem;
}

.faq-item p a {
  color: var(--dark-leaf);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.order-policy-links {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-mid);
  line-height: 1.6;
  text-align: center;
}

.order-policy-links a {
  color: var(--dark-leaf);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   SECTION: JOIN THE NAGA FAM
   ============================================================ */
.section-join {
  position: relative;
  background: #dce8d0;
  overflow: hidden;
  padding: 8rem 2.5rem;
}

.join-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(14rem, 32vw, 30rem);
  font-weight: var(--weight-headline);
  color: rgba(54,91,48,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.join-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.join-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: var(--weight-headline);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--dark);
}
.join-accent { color: var(--dark-leaf); }

.join-sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(26,26,26,0.55);
  margin-top: 2rem;
  line-height: var(--line-height-body);
}

.join-mascots {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.join-mascot-main {
  width: 200px;
  filter: drop-shadow(0 16px 40px rgba(54,91,48,0.18));
  animation: floatMascot 5s ease-in-out infinite;
}

.join-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(26,26,26,0.65);
  line-height: var(--line-height-body);
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #f0f5ec;
  padding: 4rem 2.5rem;
  border-top: 1px solid rgba(54, 91, 48, 0.1);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo {
  width: 120px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(54, 91, 48, 0.12));
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(26,26,26,0.45);
  margin-bottom: 0.5rem;
}

.footer-instagram a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--dark-leaf);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-instagram a:hover { opacity: 1; }

.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: var(--weight-headline);
  color: var(--dark-leaf);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-origin {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(26,26,26,0.45);
  margin-top: 1rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-right a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(26,26,26,0.55);
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--dark-leaf); }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: var(--weight-subhead);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-leaf);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(26,26,26,0.55);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--dark-leaf); }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-box {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.modal-logo {
  width: 80px;
  margin: 0 auto 1.5rem;
}

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: var(--weight-headline);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.modal-box p {
  font-family: var(--font-body);
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: var(--line-height-body);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --mobile-chrome-height: 3.75rem;
  }

  .nav {
    padding-left: max(1rem, var(--safe-left));
    padding-right: max(1rem, var(--safe-right));
  }

  .nav-logo-img {
    height: 36px;
  }

  .nav-sub {
    display: none;
  }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  body.menu-open .fixed-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  body.menu-open .hero-bento-ticker {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease;
  }

  .mobile-menu {
    top: calc(var(--nav-height) + var(--safe-top));
    bottom: auto;
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--nav-height) - var(--safe-top));
    border-bottom: 1px solid rgba(144, 195, 109, 0.2);
    padding:
      1.25rem
      max(1.25rem, var(--safe-right))
      calc(1.25rem + var(--safe-bottom))
      max(1.25rem, var(--safe-left));
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  body.has-ticker .mobile-menu {
    top: calc(var(--nav-height) + var(--ticker-height) + var(--safe-top));
    max-height: calc(100dvh - var(--nav-height) - var(--ticker-height) - var(--safe-top));
  }

  body.menu-open.has-ticker .mobile-menu {
    top: calc(var(--nav-height) + var(--safe-top));
    max-height: calc(100dvh - var(--nav-height) - var(--safe-top));
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu ul {
    gap: 0;
    width: 100%;
  }

  .mobile-menu li {
    border-bottom: 1px solid rgba(144, 195, 109, 0.14);
    width: 100%;
  }

  .mobile-menu li:last-child {
    border-bottom: none;
  }

  .mobile-menu a:not(.mobile-menu-cta) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
    padding: 0.65rem 0.25rem;
    font-size: 1.2rem;
    text-align: left;
  }

  .mobile-menu-cta {
    display: flex;
    width: 100%;
    margin-top: 1.25rem;
    flex-shrink: 0;
  }

  .hero-floating-cards { display: none; }

  .hero {
    min-height: calc(100dvh - var(--nav-height) - var(--ticker-height) - var(--safe-top));
  }

  .hero-text-block {
    padding: 2.5rem 1.25rem 4.5rem;
  }

  .hero-logo {
    width: min(440px, 86vw);
  }

  .hero-headline {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }

  .hero-f4-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.95rem 1.85rem;
    font-size: 0.68rem;
  }

  .hero-f4-corner {
    bottom: auto;
    top: calc(var(--nav-height) + var(--ticker-height) + var(--safe-top) + 0.75rem);
    right: 1rem;
    left: auto;
    font-size: 0.42rem;
  }

  .hero-f4-credits {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.4rem;
  }

  .section-story,
  .section-features,
  .section-types,
  .section-brew,
  .section-order,
  .section-join,
  .section-locator {
    padding: 4.5rem max(1.25rem, var(--safe-left)) 4.5rem max(1.25rem, var(--safe-right));
  }

  .story-editorial {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-visual {
    position: relative;
    top: auto;
    order: -1;
  }

  .story-photo {
    min-height: clamp(280px, 58vw, 420px);
    object-position: center 22%;
  }

  .story-photo-accent {
    display: none;
  }

  .story-chapter-inner {
    padding: 1.75rem 1.35rem;
  }

  .story-chapter--two {
    margin-left: 0;
    margin-right: 0;
  }

  .story-main {
    gap: 1.75rem;
  }

  .story-chapter-text {
    padding-left: 0;
    font-size: 1rem;
  }

  .story-connector {
    padding-left: 0;
    max-width: none;
  }

  .story-foot {
    padding-left: 0;
  }

  .intro-actions {
    flex-direction: column;
    width: 100%;
  }

  .intro-actions .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 1rem 1.5rem;
  }

  .brew-content,
  .order-content,
  .checkout-content,
  .join-content,
  .locator-header,
  .locator-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .locator-map-panel {
    order: -1;
  }

  .locator-search-row {
    grid-template-columns: 1fr;
  }

  .locator-search,
  .locator-select,
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .btn-locate {
    align-self: stretch;
    width: 100%;
    min-height: 48px;
  }

  .store-list,
  .locator-map,
  .locator-map-panel {
    min-height: 280px;
  }

  .store-list {
    max-height: 42vh;
  }

  .store-card {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card-inner {
    padding: 1.5rem 1.35rem;
  }

  .features-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
  }

  .features-sub,
  .types-sub { text-align: left; }

  .types-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .types-product-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .types-product-card {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
  }

  .types-product-pill,
  .types-product-bar {
    max-width: 100%;
  }

  .order-gallery-nav {
    width: 44px;
    height: 44px;
  }

  .order-gallery-prev { left: 0.65rem; }
  .order-gallery-next { right: 0.65rem; }

  .order-gallery-thumbs {
    gap: 0.5rem;
  }

  .order-gallery-thumb {
    padding: 0.35rem;
  }

  .page-order .section-order {
    min-height: auto;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .page-checkout .section-checkout {
    padding: 2.5rem max(1.25rem, var(--safe-left)) 3rem max(1.25rem, var(--safe-right));
  }

  .checkout-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkout-summary-wrap {
    position: static;
    order: -1;
  }

  .checkout-steps {
    margin-bottom: 1.75rem;
  }

  .checkout-form {
    max-width: none;
  }

  .btn-order {
    min-height: 52px;
    padding: 1.1rem 1.35rem;
  }

  .qty-btn {
    width: 48px;
    height: 48px;
  }

  .quantity-selector {
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
  }

  .footer {
    padding-bottom: calc(4rem + var(--safe-bottom) + var(--mobile-chrome-height));
  }

  body.page-order .footer,
  body.page-checkout .footer,
  body.page-locator .footer,
  body.page-support .footer,
  body.cookie-banner-open .footer {
    padding-bottom: calc(4rem + var(--safe-bottom));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-right { align-items: flex-start; }

  .support-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem max(1.25rem, var(--safe-left)) 4rem max(1.25rem, var(--safe-right));
  }

  .support-sidebar {
    position: static;
  }

  .support-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 0.35rem;
    margin: 0 calc(-1 * max(1.25rem, var(--safe-left)));
    padding-left: max(1.25rem, var(--safe-left));
    padding-right: max(1.25rem, var(--safe-right));
    scrollbar-width: none;
  }

  .support-nav::-webkit-scrollbar {
    display: none;
  }

  .support-nav-link {
    flex-shrink: 0;
    scroll-snap-align: start;
    border-left: none;
    border: 1px solid rgba(54, 91, 48, 0.15);
    font-size: 0.72rem;
    padding: 0.65rem 0.85rem;
    white-space: nowrap;
  }

  .support-nav-link.is-active {
    border-color: var(--dark-leaf);
  }

  .support-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .fixed-cta {
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    gap: 0.65rem;
    padding:
      0.95rem 1.25rem
      calc(0.95rem + var(--safe-bottom));
    padding-left: max(1.25rem, var(--safe-left));
    padding-right: max(1.25rem, var(--safe-right));
    font-size: 0.95rem;
    border-top: 1px solid rgba(144, 195, 109, 0.2);
    box-shadow: 0 -8px 32px rgba(26, 26, 26, 0.14);
  }

  .fixed-cta-arrow {
    font-size: 1.15rem;
  }

  body.cookie-banner-open {
    --cookie-banner-offset: 10.5rem;
    --mobile-chrome-height: 0px;
  }

  body.cookie-banner-open .footer {
    padding-bottom: calc(4rem + var(--safe-bottom) + 9.5rem);
  }

  body.cookie-banner-open .fixed-cta.visible {
    bottom: calc(var(--cookie-banner-offset) + var(--safe-bottom));
    left: auto;
    right: max(1rem, var(--safe-right));
    width: auto;
    border-top: none;
    border-radius: var(--radius);
    padding: 0.85rem 1.15rem calc(0.85rem + var(--safe-bottom));
    box-shadow: 0 8px 28px rgba(26, 26, 26, 0.2);
  }

  .cookie-banner {
    padding-bottom: var(--safe-bottom);
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding:
      1.1rem max(1.15rem, var(--safe-left)) calc(1.1rem + var(--safe-bottom)) max(1.15rem, var(--safe-right));
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
    gap: 0.55rem;
  }

  .cookie-btn {
    width: 100%;
    min-height: 48px;
    flex: none;
    text-align: center;
    white-space: normal;
  }

  .form-row { grid-template-columns: 1fr; }

  .join-heading { font-size: clamp(2.5rem, 14vw, 6rem); }

  .modal-overlay {
    padding: 1rem;
    align-items: flex-end;
  }

  .modal-box {
    padding: 2rem 1.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-width: none;
  }
}

@media (max-width: 480px) {
  :root { --ticker-height: 32px; }

  .section-heading { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .section-heading-alt { font-size: clamp(2.5rem, 13vw, 4rem); }
  .order-heading { font-size: clamp(2rem, 12vw, 3.5rem); }
  .story-title { font-size: clamp(2rem, 10vw, 3rem); }

  .section-intro-bg-text,
  .story-bg-text,
  .features-bg-text,
  .types-bg-text,
  .brew-bg-text,
  .order-bg-text,
  .checkout-bg-text,
  .join-bg-text,
  .locator-bg-text {
    display: none;
  }
}

/* ============================================================
   LOADING STATE
   ============================================================ */
.btn-order.loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn-order.loading .btn-order-text::after {
  content: ' ...';
  animation: dots 1s steps(3, end) infinite;
}
@keyframes dots {
  0%, 20% { content: ' .'; }
  40% { content: ' ..'; }
  60%, 100% { content: ' ...'; }
}

/* ============================================================
   CURSOR GLOW (subtle)
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 91, 48, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}