/* ============================================================
   BANA'A COFFEE — Premium Landing Page Custom Stylesheet
   Pure CSS Cinematic Layout & High-Fidelity Interactivity
   ============================================================ */

/* ---- Google Fonts ----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=DM+Mono:wght@400;500;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---------------------------------------- */
:root {
  --ink: #0A0907;
  --ink2: #111009;
  --parchment: #F5F0E8;
  --cream: #FAF7F2;
  --ash: #9E9488;
  --ember: #E51918;
  --gold: #FF8A00;
  --gold-light: #FFA940;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --sans-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bg-dark: #0A0907;
}

/* ---- Core Base & Grain Overlay ---------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--ink);
}

body {
  font-family: var(--sans);
  background:
    linear-gradient(180deg, rgba(255, 138, 0, 0.025) 0%, transparent 28rem),
    var(--ink);
  color: var(--parchment);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: #2a2620;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ember);
}

/* ---- Ambient Floating Glow Spheres ------------------------- */
.ambient-glow-wrap {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  mix-blend-mode: screen;
  will-change: transform;
}

.glow-sphere-red {
  background: radial-gradient(circle, var(--ember) 0%, transparent 70%);
  animation: floatRed 24s infinite alternate ease-in-out;
}

.glow-sphere-gold {
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: floatGold 28s infinite alternate ease-in-out;
}

@keyframes floatRed {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10%, 15%) scale(1.15); }
  100% { transform: translate(-8%, -6%) scale(0.95); }
}

@keyframes floatGold {
  0% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(-15%, -10%) scale(0.98); }
  100% { transform: translate(6%, 12%) scale(1.1); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- STICKY NAV -------------------------------------------- */
nav.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.72), rgba(10, 9, 7, 0.26));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

nav.nav-bar.scrolled {
  background: rgba(10, 9, 7, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: #fff;
  font-family: var(--sans);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 10px rgba(229, 25, 24, 0.3);
}

.nav-links-wrap {
  display: flex;
  gap: clamp(0.75rem, 1.55vw, 1.7rem);
  list-style: none;
}

.nav-links-wrap a {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color .25s;
}

.nav-links-wrap a:hover {
  color: var(--cream);
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.4vw, 1.5rem);
}

/* Lang switcher buttons inside nav */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 2px;
  background: rgba(255, 255, 255, .03);
  border-radius: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--ash);
  padding: .35rem .65rem;
  cursor: pointer;
  transition: all .25s;
  border-radius: 1px;
}

.lang-btn:hover {
  color: var(--cream);
}

.lang-btn.active-lang {
  background: var(--ember);
  color: #fff;
}

.nav-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 138, 0, 0.3);
  background: rgba(255, 138, 0, 0.05);
  color: var(--gold);
  padding: 0.45rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 0 10px rgba(255, 138, 0, 0.1);
  animation: phonePulse 3s infinite alternate ease-in-out;
}

.nav-phone-badge:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(229, 25, 24, 0.05);
  box-shadow: 0 0 18px rgba(229, 25, 24, 0.3);
}

@keyframes phonePulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 138, 0, 0.1);
  }
  100% {
    box-shadow: 0 0 18px rgba(255, 138, 0, 0.25);
    border-color: rgba(255, 138, 0, 0.6);
  }
}

.nav-cta {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .65rem 1.25rem;
  border: 1px solid rgba(229, 25, 24, .5);
  color: var(--ember);
  text-decoration: none;
  transition: all .25s var(--ease);
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--ember);
  color: #fff;
  border-color: var(--ember);
  box-shadow: 0 0 15px rgba(229, 25, 24, 0.35);
}

/* Mobile Nav Drawer */
.mobile-menu-drawer {
  display: none;
}

/* Hamburger button */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all .3s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ---- HERO SECTION ------------------------------------------ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 7rem 6rem 5rem;
  justify-content: flex-start;
}

.hero-left {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 40%, rgba(229, 25, 24, .12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 65% at 85% 75%, rgba(255, 138, 0, .08) 0%, transparent 55%),
    linear-gradient(to right, rgba(10, 9, 7, 0.92) 0%, rgba(10, 9, 7, 0.72) 43%, rgba(10, 9, 7, 0.36) 74%, rgba(10, 9, 7, 0.62) 100%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.18) 0%, rgba(10, 9, 7, 0.06) 38%, rgba(10, 9, 7, 0.75) 100%),
    linear-gradient(180deg, transparent 75%, var(--ink) 100%);
  pointer-events: none;
}

.hero-right-overlay::after {
  display: none;
}

/* Award highlight on hero */
.hero-award-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(10, 9, 7, 0.38);
  border: 1px solid rgba(255, 138, 0, 0.34);
  padding: .5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 2px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(15px);
  animation: slideUp 800ms var(--ease) 200ms forwards;
}

.hero-award-emoji {
  font-size: 1rem;
}

.hero-award-text {
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ember);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.35vw, 4.95rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 800ms var(--ease) 400ms forwards;
  text-shadow: 0 4px 18px rgba(0,0,0,0.85);
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 169, 64, 0.92);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.86);
  max-width: 620px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 800ms var(--ease) 600ms forwards;
  text-shadow: 0 4px 18px rgba(0,0,0,0.85);
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 800ms var(--ease) 700ms forwards;
  order: 4;
}

.hero-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-feat-icon {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--gold);
  padding-top: .15rem;
}

.hero-feat-text {
  display: flex;
  flex-direction: column;
}

.hero-feat-text strong {
  font-family: var(--sans-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

.hero-feat-text span {
  font-size: 0.68rem;
  color: rgba(250, 247, 242, 0.74);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 800ms var(--ease) 800ms forwards;
  order: 3;
}

/* Button systems matching visual layout direction */
.btn-ember {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--ember);
  color: #fff;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-ember::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
}

.btn-ember:hover::after {
  transform: translateX(100%);
}

.btn-ember:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 25, 24, .35);
  background: #f02423;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: rgba(250, 247, 242, 0.82);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .25s;
}

.btn-ghost:hover {
  color: var(--cream);
}

.btn-ghost svg {
  transition: transform .3s var(--ease);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(158, 148, 136, .5);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(158, 148, 136, .5), transparent);
  margin-top: .75rem;
}

.hero-number {
  position: absolute;
  bottom: 2.5rem;
  left: 6rem;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(158, 148, 136, .3);
  z-index: 10;
}


/* ---- TICKER (Scrolling Banner) ----------------------------- */
.ticker-wrap {
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  padding: .9rem 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .01);
  position: relative;
  z-index: 20;
}

.ticker-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ash);
  flex-shrink: 0;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ---- SECTIONS SHARED ---------------------------------------- */
section {
  padding: 8rem 0;
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-tag {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ember);
}

.section-tag.gold-tag {
  color: var(--gold);
}

.section-tag.gold-tag::before {
  background: var(--gold);
}

.section-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--cream);
}

.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

/* Subtle Layout Lines (Amaya style Grid lines) */
.layout-grid-lines {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
  z-index: 0;
}

.layout-grid-lines div {
  border-right: 1px solid rgba(255, 255, 255, .03);
  height: 100%;
}

.layout-grid-lines div:last-child {
  border-right: none;
}


/* ---- REVEAL ANIMATIONS -------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ---- ABOUT SECTION ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1.1 / 1;
  background: linear-gradient(160deg, #18130e 0%, #0c0a08 50%, #080706 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 2px;
}

.about-visual::before {
  content: "BANA'A";
  position: absolute;
  bottom: -1rem;
  right: -1.5rem;
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.about-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}

.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.05);
  transition: transform .7s var(--ease);
}

.about-visual:hover .about-visual-img {
  transform: scale(1.03);
}

.about-origin-tag {
  position: absolute;
  top: 3rem;
  left: 3rem;
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: .5rem .9rem;
  background: rgba(10, 9, 7, .6);
  backdrop-filter: blur(8px);
  z-index: 20;
}

.about-stat {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  text-align: right;
  z-index: 20;
  background: rgba(10, 9, 7, .6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: .75rem 1.25rem;
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: .25rem;
}

.about-body {
  padding-left: 0.5rem;
}

.about-lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 2rem;
}

.about-text {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ash);
  margin-bottom: 2rem;
}

.origin-manifesto-box {
  border-left: 2px solid var(--gold);
  background: rgba(255, 138, 0, 0.02);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.25rem;
  border-radius: 1px;
}

.manifesto-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
  margin: 0;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .06);
  margin: 2.5rem 0;
}

.about-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.spec-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.spec-label {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: .5rem;
  line-height: 1.4;
}


/* ---- PRODUCTS SECTION (1px Thin-Line Grid) ------------------ */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4.5rem;
  gap: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 2px;
}

.product-cell {
  background: var(--ink2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.product-cell-featured {
  background: linear-gradient(135deg, #141109 0%, #0d0a06 100%);
}

.product-cell:hover {
  background: #15130b;
}

.product-cell-featured:hover {
  background: linear-gradient(135deg, #18140b 0%, #0f0c08 100%);
}

.product-num {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(158, 148, 136, .25);
  margin-bottom: 2.5rem;
}

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.product-icon-ember {
  background: rgba(229, 25, 24, .08);
  border: 1px solid rgba(229, 25, 24, .2);
  color: var(--ember);
}

.product-icon-gold {
  background: rgba(255, 138, 0, .08);
  border: 1px solid rgba(255, 138, 0, .2);
  color: var(--gold);
}

.product-icon-ash {
  background: rgba(158, 148, 136, .05);
  border: 1px solid rgba(158, 148, 136, .15);
  color: var(--ash);
}

.product-origin {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: .75rem;
}

.product-name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.6vw, 1.62rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: .75rem;
}

.product-cell-featured .product-name {
  font-size: 2.2rem;
}

.product-desc {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ash);
  margin-bottom: 2rem;
  max-width: 54ch;
}

.product-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tag {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border: 1px solid rgba(255, 255, 255, .06);
  color: var(--ash);
  border-radius: 1px;
}

.tag-ember {
  border-color: rgba(229, 25, 24, .25);
  color: rgba(229, 25, 24, .8);
}

.product-meta-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-spec-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  gap: 1.25rem;
}

.product-spec-k {
  color: var(--ash);
}

.product-spec-v {
  color: var(--cream);
  font-weight: 500;
}

.product-cta-btn {
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: .9rem;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: all .25s var(--ease);
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
}

.product-cta-btn:hover {
  background: var(--ember);
  color: #fff;
  border-color: var(--ember);
  box-shadow: 0 4px 15px rgba(229, 25, 24, 0.25);
}

.product-arrow {
  position: absolute;
  top: 3rem;
  right: 2.5rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(4px, -4px);
  transition: all .3s var(--ease);
  color: var(--cream);
}

.product-cell:hover .product-arrow {
  opacity: 1;
  transform: translate(0, 0);
  border-color: var(--ember);
  color: var(--ember);
}

.product-bg-text {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .02);
  pointer-events: none;
  line-height: 1;
}


/* ---- CREDENTIALS SECTION (Swipable Slider) ------------------ */
.credentials-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.slider-controls-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.slider-instruction {
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.slider-arrows {
  display: flex;
  gap: .5rem;
}

.slider-arrow-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--ash);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: all .25s var(--ease);
}

.slider-arrow-btn:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(229, 25, 24, .04);
}

.cert-slider-track {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
}

/* Apple Liquid Glass applied to Certificate Card */
.cert-card {
  background: rgba(20, 20, 19, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12),
              0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  width: 306px;
  snap-align: center;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.cert-card:hover {
  background: rgba(25, 25, 24, 0.65);
  border-color: rgba(229, 25, 24, 0.35);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15),
              0 12px 40px rgba(229, 25, 24, 0.12);
  transform: translateY(-4px);
}

.cert-icon-container {
  width: 100%;
  height: 190px;
  border-radius: 2px;
  background: #0E0D0B;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: border-color .3s var(--ease);
  position: relative;
}

.cert-icon-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  transition: transform .4s var(--ease);
  opacity: 0.85;
}

.cert-card:hover .cert-icon-container img {
  transform: scale(1.05);
  opacity: 1;
}

.cert-card:hover .cert-icon-container {
  border-color: rgba(255, 138, 0, 0.3);
}

.cert-card:nth-child(even) .cert-icon-container {
  background: rgba(229, 25, 24, .05);
  border-color: rgba(229, 25, 24, .2);
  color: var(--ember);
}

.cert-card:hover .cert-icon-container {
  transform: scale(1.1);
}

.cert-title {
  font-family: var(--sans-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .75rem;
}

.cert-desc {
  font-size: .72rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ash);
  line-clamp: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.6rem;
}

.cert-zoom-hint {
  font-family: var(--mono);
  font-size: .52rem;
  color: var(--ember);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.cert-card:hover .cert-zoom-hint {
  opacity: 1;
}


/* ---- ZOOM LIGHTBOX MODAL SYSTEM --------------------------- */
.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 7, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 2rem;
}

.zoom-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.zoom-modal-inner {
  position: relative;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zoom-modal-close-btn {
  position: absolute;
  top: -3.5rem;
  right: 0;
  padding: .75rem 1.5rem;
  background: var(--ember);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: background .2s;
  border-radius: 2px;
}

.zoom-modal-close-btn:hover {
  background: #ff2a2a;
}

.zoom-modal-content {
  background: rgba(20, 20, 19, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 35px rgba(229,25,24,0.15);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2px;
  width: 100%;
  transform: scale(0.95);
  transition: transform 300ms var(--ease);
}

.zoom-modal.active .zoom-modal-content {
  transform: scale(1);
}

.zoom-modal-icon-wrap {
  width: 100%;
  max-width: 430px;
  height: auto;
  aspect-ratio: 1 / 1.414;
  border-radius: 2px;
  background: #0A0907;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-modal-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zoom-modal-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.zoom-modal-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}

.zoom-modal-desc {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ash);
  max-width: 400px;
  margin-bottom: 2rem;
}

.zoom-modal-badge {
  font-family: var(--mono);
  font-size: .52rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  border: 1px solid rgba(255, 138, 0, .3);
  padding: .5rem 1rem;
  border-radius: 2px;
  background: rgba(255, 138, 0, .04);
}


/* ---- WHOLESALE ESTIMATOR & POLICY ---------------------- */
.wholesale-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wholesale-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.wholesale-benefit-card {
  background: rgba(20, 20, 19, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12),
              0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all .3s var(--ease);
}

.wholesale-benefit-card:hover {
  background: rgba(25, 25, 24, 0.65);
  border-color: rgba(229, 25, 24, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(229, 25, 24, 0.1);
}

.benefit-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.benefit-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ash);
  margin: 0;
}

.wholesale-calculator-wrap {
  width: 100%;
}

.benefit-icon-container {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(229, 25, 24, .08);
  border: 1px solid rgba(229, 25, 24, .2);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(229, 25, 24, 0.1);
}

.benefit-icon-container svg {
  width: 20px;
  height: 20px;
}

.benefit-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--cream);
  margin-bottom: .5rem;
}

.benefit-desc {
  font-size: .75rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ash);
}

/* Glassmorphism Calculator Card */
.calc-panel {
  background: rgba(20, 20, 19, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12),
              0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 3.5rem 3rem;
  border-radius: 2px;
}

/* 2-Column Calculator Dashboard on Desktop */
@media (min-width: 992px) {
  .calc-panel {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .calc-panel-header {
    grid-column: span 2;
  }
  .calc-playground {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .calc-form-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 4rem;
  }
}

@media (max-width: 991px) {
  .calc-form-wrapper {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
  }
}


.calc-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .5rem;
}

.calc-sub {
  font-size: .75rem;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.calc-row {
  margin-bottom: 2.5rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.calc-label-left {
  color: var(--ember);
}

.calc-label-right {
  color: var(--gold);
}

/* Range input slider styling */
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  border-radius: 2px;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ember);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(229, 25, 24, 0.6);
  transition: transform 120ms var(--ease);
}

.custom-slider::-webkit-slider-thumb:active {
  transform: scale(1.25);
}

.custom-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ember);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(229, 25, 24, 0.6);
  transition: transform 120ms var(--ease);
}

.custom-slider::-moz-range-thumb:active {
  transform: scale(1.25);
}

/* Styled Select */
.calc-select {
  width: 100%;
  background: rgba(8, 8, 7, 0.85);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 1.1rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  color: var(--cream);
  outline: none;
  border-radius: 2px;
  transition: border-color .25s var(--ease);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
}

.calc-select:focus {
  border-color: var(--ember);
}

/* Results panel */
.calc-results-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: rgba(8, 8, 7, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.calc-result-title {
  display: block;
  font-size: .55rem;
  font-weight: 700;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .25rem;
}

.calc-result-value-main {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.calc-result-value-sub {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ember);
}

.calc-result-perks {
  grid-column: span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.calc-result-perks-text {
  font-size: .75rem;
  color: var(--cream);
  font-weight: 500;
}

/* Mini registration form inside card */
.calc-form-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: .75rem;
  margin-bottom: 1.5rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calc-input {
  width: 100%;
  background: rgba(8, 8, 7, 0.85);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 1.1rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  border-radius: 2px;
  transition: border-color .25s var(--ease);
}

.calc-input::placeholder {
  color: rgba(158, 148, 136, 0.5);
}

.calc-input:focus {
  border-color: var(--ember);
}

.calc-textarea {
  min-height: 100px;
  resize: vertical;
}

.calc-actions-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.calc-submit-btn-glow {
  padding: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold), var(--ember));
  background-size: 200% auto;
  animation: borderGlowShift 4s linear infinite;
  box-shadow: 0 4px 15px rgba(229, 25, 24, 0.2);
  transition: box-shadow .3s;
}

.calc-submit-btn-glow:hover {
  box-shadow: 0 6px 20px rgba(229, 25, 24, 0.35);
}

.calc-submit-btn {
  width: 100%;
  height: 100%;
  background: #080807;
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: 1.1rem 0;
  cursor: pointer;
  transition: background .25s;
  border-radius: 1px;
}

.calc-submit-btn:hover {
  background: rgba(229, 25, 24, .1);
}

.calc-zalo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  background: rgba(255, 138, 0, .05);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  text-decoration: none;
  border-radius: 2px;
  transition: all .25s var(--ease);
}

.calc-zalo-btn:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(229, 25, 24, .05);
}


/* ---- PROCESS SECTION (8-Step Scientific Pipeline) ---------- */
.process-timeline-wrap {
  margin-top: 4.5rem;
}

.process-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Apple Liquid Glass applied to 8 Process Blocks */
.process-block {
  background: rgba(20, 20, 19, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12),
              0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 2.25rem 1.75rem;
  border-radius: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.process-block:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 25, 24, .35);
  box-shadow: 0 10px 25px rgba(229, 25, 24, 0.12);
}

.process-step-num-badge {
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .15em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.process-vector-icon {
  width: 44px;
  height: 44px;
  color: var(--ember);
  margin-bottom: 1.5rem;
  transition: transform .3s var(--ease);
}

.process-block:hover .process-vector-icon {
  transform: scale(1.1);
}

.process-block-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--cream);
  margin-bottom: .75rem;
}

.process-block-desc {
  font-size: .68rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ash);
}


/* ---- SENSORY EXPERIENCE SECTION (Sync RADAR Chart HUD) ------- */
.sensory-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .sensory-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.radar-chart-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.radar-pulse-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.05) 0%, rgba(229, 25, 24, 0.01) 60%, transparent 80%);
  width: 360px;
  height: 360px;
  margin: auto;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(35px);
  z-index: 1;
}

.radar-wrap {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  position: relative;
  z-index: 10;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  padding: 10px;
}

/* Radar SVG Elements styling */
.radar-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.035);
  stroke-width: 1;
  transition: stroke 0.3s, stroke-width 0.3s;
}

.radar-grid-line.active {
  stroke: rgba(255, 138, 0, 0.15);
  stroke-width: 1.5;
}

.radar-axis-line {
  stroke: rgba(255, 255, 255, 0.045);
  stroke-dasharray: 4, 4;
  stroke-width: 1;
  transition: stroke .3s var(--ease), stroke-width .3s var(--ease), filter .3s var(--ease);
}

.radar-axis-line.active {
  stroke: var(--ember);
  stroke-width: 1.5;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px var(--ember));
}

.radar-poly {
  fill: url(#rg);
  fill-opacity: 0.55;
  stroke: var(--gold);
  stroke-width: 1.8;
  transition: all .5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.radar-poly.active {
  fill-opacity: 0.65;
  stroke: var(--ember);
  filter: drop-shadow(0 0 12px rgba(229, 25, 24, 0.4)) drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}

.radar-marker {
  fill: var(--gold);
  stroke: var(--ink);
  stroke-width: 1.5;
  transition: r .25s var(--ease), fill .25s var(--ease), stroke .25s var(--ease), filter .25s var(--ease);
  cursor: pointer;
}

@keyframes markerPulse {
  0% {
    r: 4.5;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 2px var(--ember));
  }
  50% {
    r: 6.5;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 8px var(--ember));
  }
  100% {
    r: 4.5;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 2px var(--ember));
  }
}

.radar-marker.active {
  fill: #ffffff;
  stroke: var(--ember);
  animation: markerPulse 2s infinite ease-in-out;
}

.radar-labels-svg {
  fill: rgba(158, 148, 136, .5);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .08em;
  font-weight: 500;
  transition: fill .25s var(--ease), font-weight .25s var(--ease), filter .25s var(--ease);
  cursor: pointer;
  user-select: none;
}

.radar-labels-svg.active {
  fill: var(--cream);
  font-weight: 700;
  filter: drop-shadow(0 0 3px var(--gold));
}

.flavor-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 1.5rem;
  max-height: 430px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom scrollbar for flavor-stack */
.flavor-stack::-webkit-scrollbar {
  width: 3px;
}
.flavor-stack::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
}
.flavor-stack::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}
.flavor-stack::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.flavor-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  background: var(--ink2);
  cursor: pointer;
  transition: all .25s var(--ease);
  border-left: 2px solid transparent;
  border-radius: 1px;
}

.flavor-row:hover, .flavor-row.active {
  background: #141208;
}

.flavor-row.active {
  border-left-color: var(--ember);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.02),
              0 6px 15px rgba(255,138,0,0.06);
}

.flavor-name {
  font-family: var(--sans-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color .25s;
}

.flavor-row.active .flavor-name {
  color: var(--cream);
}

.flavor-bar {
  height: 3px;
  background: rgba(255, 255, 255, .04);
  border-radius: 2px;
  overflow: hidden;
}

.flavor-bar-fill {
  height: 100%;
  background: rgba(229, 25, 24, .35);
  transition: width .6s var(--ease), background .3s;
}

.flavor-row.active .flavor-bar-fill {
  background: var(--gold);
}

.flavor-score {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--ash);
  text-align: right;
}

.flavor-desc {
  font-family: var(--serif);
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ash);
  margin-top: 0.25rem;
  font-weight: 300;
  transition: color 250ms var(--ease);
}

.flavor-row.active .flavor-desc {
  color: var(--cream);
}/* ---- ORIGIN TABS STYLE ------------------------------------ */
.origin-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 3.5rem;
}

.origin-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 1.25rem 2.25rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .25s var(--ease);
}

.origin-tab-btn:hover:not(.active) {
  color: var(--cream);
}

.origin-tab-btn.active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}


/* ---- BREW GUIDE SECTION ------------------------------------ */
.brew-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 3.5rem;
}

.brew-tab {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 1.25rem 2.25rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .25s var(--ease);
}

.brew-tab:hover:not(.active) {
  color: var(--cream);
}

.brew-tab.active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.brew-content-panel {
  display: none;
}

.brew-content-panel.active {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

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

.brew-step-row {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.brew-step-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.brew-step-index {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--ember);
  flex-shrink: 0;
  padding-top: .15rem;
  font-weight: 700;
}

.brew-step-text {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ash);
}

.brew-step-text strong {
  color: var(--cream);
  font-weight: 500;
}

.brew-specs-card {
  background: var(--ink2);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 2px;
}

.brew-specs-title {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brew-specs-title::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ash);
}

.brew-param-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.brew-param-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.brew-param-key {
  font-size: .78rem;
  font-weight: 300;
  color: var(--ash);
}

.brew-param-val {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}

.brew-param-unit {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--ash);
  margin-left: .35rem;
}


/* ---- ORIGIN MAP SECTION ------------------------------------ */
.origin-outer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #0f0b07 0%, #0a0806 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.origin-outer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 0, .07) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.origin-map-frame {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, .01);
  border: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}

.origin-map-svg {
  width: 100%;
  height: 100%;
}

.origin-manifesto {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--parchment);
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--ember);
}

.origin-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2.5rem;
  border-radius: 2px;
}

.origin-fact-cell {
  padding: 1.75rem 1.5rem;
  background: var(--ink2);
}

.origin-fact-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.origin-fact-label {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: .5rem;
}


/* ---- NEWSLETTER & FOOTER ------------------------------------ */
.newsletter-outer {
  background: radial-gradient(circle at 50% 50%, rgba(229, 25, 24, 0.04) 0%, var(--ink2) 100%);
  border-top: 1px solid rgba(255, 255, 255, .04);
  padding: 5rem 0;
}

.newsletter-inner-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-heading {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.newsletter-sub {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  border-radius: 2px;
}

.newsletter-form:focus-within {
  border-color: var(--ember);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1.1rem 1.5rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  min-height: 48px;
}

.newsletter-input::placeholder {
  color: rgba(158, 148, 136, .5);
}

.newsletter-btn {
  background: var(--ember);
  border: none;
  padding: 1.1rem 2rem;
  color: #fff;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
  border-radius: 1px;
}

.newsletter-btn:hover {
  background: #ff2a2a;
}

/* FOOTER */
footer.footer-container {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .04);
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

footer.footer-container::after {
  display: none;
  content: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2.5rem, 4vw, 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  margin-bottom: 2.5rem;
}

.footer-brand-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand-tagline {
  font-size: .8rem;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.footer-social-links {
  display: flex;
  gap: .75rem;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
  text-decoration: none;
  font-size: .75rem;
  transition: all .25s var(--ease);
}

.footer-social-links a:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(229, 25, 24, .04);
}

.footer-col-title {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer-links-list a {
  font-size: .78rem;
  font-weight: 300;
  color: var(--ash);
  text-decoration: none;
  transition: color .25s;
}

.footer-links-list a:hover {
  color: var(--cream);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  color: rgba(158, 148, 136, .35);
}

.footer-certs-wrap {
  display: flex;
  gap: 1rem;
}

.footer-cert-tag {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border: 1px solid rgba(255, 255, 255, .04);
  color: rgba(158, 148, 136, .4);
}

/* ---- PRODUCT DETAIL SUBPAGES -------------------------------- */
.product-detail-hero {
  min-height: 86vh;
  padding: 9rem 0 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.product-detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.58) contrast(1.05) saturate(.92);
  transform: scale(1.03);
}

.product-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,9,7,.94), rgba(10,9,7,.68) 44%, rgba(10,9,7,.2)),
    linear-gradient(180deg, rgba(10,9,7,.2), rgba(10,9,7,.88));
  pointer-events: none;
}

.product-detail-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.product-detail-kicker {
  display: inline-flex;
  border: 1px solid rgba(255, 138, 0, .35);
  background: rgba(10, 9, 7, .42);
  color: var(--gold);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .55rem .9rem;
  margin-bottom: 1.75rem;
}

.product-detail-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.product-detail-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.product-detail-lead {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250,247,242,.82);
  margin-bottom: 2.25rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-detail-section {
  padding: 6rem 0;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: start;
}

.detail-panel {
  background: rgba(20, 20, 19, .58);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2.25rem;
  border-radius: 2px;
}

.detail-panel h2,
.detail-panel h3 {
  font-family: var(--serif);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1rem;
}

.detail-panel p {
  color: var(--ash);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.detail-spec-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}

.detail-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--ink2);
}

.detail-spec-row span:first-child {
  color: var(--ash);
  font-size: .75rem;
}

.detail-spec-row span:last-child {
  color: var(--cream);
  text-align: right;
  font-weight: 600;
  font-size: .78rem;
}

.detail-image-card {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: #0e0d0b;
}

.detail-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.detail-section-heading {
  max-width: 780px;
  margin-bottom: 3rem;
}

.detail-section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.detail-section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1rem;
}

.detail-section-heading p {
  color: var(--ash);
  line-height: 1.8;
  font-size: .95rem;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.detail-info-card {
  background: rgba(20, 20, 19, .62);
  border: 1px solid rgba(255,255,255,.07);
  padding: 1.65rem;
  min-height: 220px;
}

.detail-info-card .detail-card-num {
  font-family: var(--mono);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.detail-info-card h3 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: .8rem;
}

.detail-info-card p,
.detail-info-card li {
  color: var(--ash);
  font-size: .85rem;
  line-height: 1.75;
}

.detail-info-card ul {
  list-style: none;
  display: grid;
  gap: .55rem;
}

.detail-info-card li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: .65rem;
  background: var(--gold);
  vertical-align: middle;
}

.detail-process-list {
  display: grid;
  gap: 1rem;
  counter-reset: detail-step;
}

.detail-process-item {
  counter-increment: detail-step;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.4rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
}

.detail-process-item::before {
  content: counter(detail-step, decimal-leading-zero);
  font-family: var(--mono);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .08em;
}

.detail-process-item h3 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.detail-process-item p {
  color: var(--ash);
  font-size: .88rem;
  line-height: 1.75;
}

.detail-split-band {
  background: var(--ink2);
}

.detail-quote-panel {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 0 1.5rem 1.5rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.detail-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.detail-related-card {
  display: flex;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  align-items: flex-end;
  padding: 1.25rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.06);
  background: #0e0d0b;
}

.detail-related-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}

.detail-related-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10,9,7,.9));
}

.detail-related-card span {
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.detail-related-card:hover img {
  transform: scale(1.06);
  opacity: .78;
}

.detail-cta-band {
  padding: 6rem 0;
  background:
    linear-gradient(135deg, rgba(255,138,0,.07), rgba(229,25,24,.035)),
    var(--ink);
  text-align: center;
}

.detail-cta-band p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--ash);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .product-detail-hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-card-grid,
  .detail-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .detail-card-grid,
  .detail-related-grid {
    grid-template-columns: 1fr;
  }
  .detail-process-item {
    grid-template-columns: 1fr;
  }
}


/* ---- TOAST NOTIFICATION SYSTEM ----------------------------- */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(20, 20, 19, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--ember);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(229, 25, 24, 0.2);
  color: var(--cream);
  padding: 1rem 1.75rem;
  border-radius: 2px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 600;
  transform: translateY(150%);
  transition: transform 400ms var(--ease);
  pointer-events: none;
}

.cart-toast.show {
  transform: translateY(0);
}

.cart-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--ember);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: .65rem;
}


/* ============================================================
   RESPONSIVE DESIGN Breakpoints (Mobile First)
   ============================================================ */
@media (max-width: 1100px) {
  .hero-left {
    padding: 8rem 4rem 5rem 4rem;
  }
  .about-grid, .sensory-grid, .origin-grid {
    gap: 4rem;
  }
  .product-cell-featured {
    grid-column: span 2;
  }
  .process-grid-8 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  nav.nav-bar {
    padding: 1.25rem 2rem;
  }
  nav.nav-bar.scrolled {
    padding: .85rem 2rem;
  }
  .nav-links-wrap {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-phone-badge {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  
  /* Mobile Menu Drawer */
  .mobile-menu-drawer {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 280px;
    background: rgba(10, 9, 7, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, .08);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 99;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 2.5rem 3rem;
  }
  
  .mobile-menu-drawer.translate-x-0 {
    transform: translateX(0);
  }
  
  .mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .mobile-links a {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color .2s;
  }
  
  .mobile-links a:hover {
    color: var(--cream);
  }
  
  .mobile-footer-text {
    font-size: .7rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .05em;
  }

  /* Hero Section Mobile split */
  .hero {
    min-height: 100svh;
    position: relative;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-left {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    margin-top: 6rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
  }
  .hero-h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }
  .hero-sub {
    max-width: 100%;
    color: rgba(250, 247, 242, 0.82);
  }
  .hero-actions {
    gap: 1rem;
  }
  .btn-ember {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.25rem;
  }
  .hero-features-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1.5rem;
    margin-bottom: 2rem;
  }
  .hero-feat-item {
    gap: 0.6rem;
  }
  .hero-feat-text strong {
    font-size: 0.75rem;
  }
  .hero-feat-text span {
    font-size: 0.62rem;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
  }
  
  /* Sourcing Map Mobile Optimizations */
  .about-visual {
    aspect-ratio: 1 / 1 !important;
    padding: 1rem !important;
  }
  .about-origin-tag {
    top: 1rem !important;
    left: 1rem !important;
    font-size: .5rem !important;
    padding: .35rem .7rem !important;
  }
  .about-stat {
    bottom: 1rem !important;
    right: 1rem !important;
    padding: .5rem 1rem !important;
  }
  .about-stat-num {
    font-size: 1.8rem !important;
  }
  
  .container {
    padding: 0 2rem;
  }
  section {
    padding: 5rem 0;
  }
  
  .about-grid, .sensory-grid, .origin-grid, .brew-content-panel.active {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  .wholesale-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }
  .about-body {
    padding-left: 0;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 3rem;
  }
  .product-cell-featured {
    grid-column: span 1;
  }
  .product-cell {
    padding: 2.5rem 2rem;
    min-height: auto;
  }
  
  .process-grid-8 {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  nav.nav-bar {
    padding: 1.25rem 1.5rem;
  }
  .container {
    padding: 0 1.5rem;
  }
  .lang-switcher {
    display: none;
  }
  .hero {
    padding: 6.5rem 1.25rem 4.5rem;
  }
  .hero-arrow-btn {
    display: none;
  }
  .hero-indicators {
    bottom: 1rem;
  }
  .hero-number,
  .hero-scroll {
    display: none;
  }
  .hero-features-list {
    grid-template-columns: 1fr;
  }
  .section-heading {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
  .slider-controls-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .slider-arrow-btn {
    width: auto;
    padding: 0 1rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
  }
  .radar-labels-svg {
    font-size: 10px !important;
  }
  
  .about-specs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-grid-8 {
    grid-template-columns: 1fr;
  }
  
  .calc-panel {
    padding: 2.5rem 1.5rem;
  }
  .calc-results-panel {
    grid-template-columns: 1fr;
  }
  .calc-result-perks {
    grid-column: span 1;
  }
  .calc-actions-grid {
    grid-template-columns: 1fr;
  }
  .calc-zalo-btn {
    padding: 1.1rem 0;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .origin-tabs {
    flex-wrap: wrap;
  }
  .origin-tab-btn {
    padding: 1rem 1.5rem;
  }
  
  .brew-tabs {
    flex-wrap: wrap;
  }
  .brew-tab {
    padding: 1rem 1.5rem;
  }
  
  .origin-facts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-certs-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---- PRODUCTS VISUAL UPGRADES ---- */
.product-visual-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 2rem;
  background: #0E0D0B;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  opacity: 0.95;
}

.product-cell:hover .product-img {
  transform: scale(1.05);
  opacity: 1;
}



/* ---- INTERACTIVE SVG SOURCING MAP STYLING ---- */
.origin-map-frame {
  background:
    linear-gradient(rgba(10, 9, 7, 0.52), rgba(10, 9, 7, 0.72)),
    url('map_mangen_reference.jpg') center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .06);
  aspect-ratio: 4 / 3.5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.origin-map-svg {
  width: 100%;
  height: 100%;
}

.map-border-kontum {
  stroke: rgba(255, 138, 0, 0.45);
  stroke-width: 1.5;
  fill: rgba(255, 138, 0, 0.03);
  stroke-dasharray: 6, 4;
  filter: drop-shadow(0 0 8px rgba(255, 138, 0, 0.15));
  transition: all 0.3s ease;
}

.origin-map-svg:hover .map-border-kontum {
  stroke: rgba(255, 138, 0, 0.8);
  fill: rgba(255, 138, 0, 0.06);
  stroke-dasharray: 8, 4;
}

.map-dot {
  fill: var(--ember);
  stroke: #fff;
  stroke-width: 1.5;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.map-dot:hover, .map-dot.active {
  fill: #fff;
  stroke: var(--ember);
  r: 6;
  filter: drop-shadow(0 0 8px var(--ember));
}

.map-pulse-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  pointer-events: none;
  transform-origin: center;
  animation: mapPulseRadial 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.map-dot.active + .map-pulse-ring,
.map-dot.active + .map-pulse-ring + .map-pulse-ring {
  display: block;
}

/* Offset animations so they don't pulse in sync */
#map-pulse-dakglei-1 { animation-delay: 0s; }
#map-pulse-dakglei-2 { animation-delay: 1.5s; }

#map-pulse-tumorong-1 { animation-delay: 0.75s; }
#map-pulse-tumorong-2 { animation-delay: 2.25s; }

#map-pulse-dakha-1 { animation-delay: 1.5s; }
#map-pulse-dakha-2 { animation-delay: 3s; }

#map-pulse-mangden-1 { animation-delay: 2.25s; }
#map-pulse-mangden-2 { animation-delay: 3.75s; }

@keyframes mapPulseRadial {
  0% {
    r: 4px;
    opacity: 0.9;
    stroke-width: 2px;
  }
  100% {
    r: 32px;
    opacity: 0;
    stroke-width: 0.5px;
  }
}

.map-label {
  fill: rgba(158, 148, 136, 0.6);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  transition: fill .25s var(--ease), font-weight .25s var(--ease), filter .25s var(--ease);
  user-select: none;
}

.map-label:hover, .map-label.active {
  fill: var(--cream);
  font-weight: 700;
  filter: drop-shadow(0 0 3px var(--gold));
}

/* ---- HERO BACKGROUND FADE SLIDESHOW ------------------------- */
.hero-slideshow-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 12s ease-in-out;
  transform: scale(1.03);
  filter: brightness(0.58) contrast(1.06) saturate(0.92);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-slide:nth-child(1) {
  background-image: url('farm_real_flowering_rows.jpg');
}

.hero-slide:nth-child(2) {
  background-image: url('product_real_bags_display.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('farm_real_misty_highland.jpg');
}

.hero-slide:nth-child(4) {
  background-image: url('culture_real_xodang.jpg');
}

/* Slideshow Navigation Controls */
.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 9, 7, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-arrow-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0907;
  box-shadow: 0 0 15px rgba(255, 138, 0, 0.4);
}

.hero-arrow-btn.prev {
  left: 2rem;
}

.hero-arrow-btn.next {
  right: 2rem;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--gold);
}

@media (max-width: 768px) {
  .hero-arrow-btn {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
  .hero-arrow-btn.prev { left: 1rem; }
  .hero-arrow-btn.next { right: 1rem; }
}

/* Floating Brand Particles in Hero Background */
.hero-particles-wrap {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.12) 0%, rgba(229, 25, 24, 0.03) 60%, transparent 80%);
  filter: blur(20px);
  animation: floatingParticle 12s infinite ease-in-out;
}

.hero-p-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.hero-p-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 15%;
  animation-delay: -4s;
}

.hero-p-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 60%;
  animation-delay: -8s;
}

@keyframes floatingParticle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Call Badge in Mobile Drawer Menu */
.mobile-menu-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid var(--gold);
  background: rgba(255, 138, 0, 0.08);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 0;
  text-decoration: none;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  transition: all .25s var(--ease);
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.1);
}

.mobile-menu-phone-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Footer Map Iframe Frame */
.footer-map-container {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #0D0C0A;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1rem;
}

.footer-map-container iframe {
  filter: grayscale(1) invert(0.9) contrast(1.1);
  opacity: 0.7;
  transition: opacity .3s, filter .3s;
}

.footer-map-container:hover iframe {
  opacity: 0.9;
  filter: grayscale(0.2) invert(0) contrast(1);
}

/* Traditional Bana brocade border pattern divider (subtle monochrome version) */
.bana-brocade-divider {
  width: 100%;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='12' viewBox='0 0 40 12'%3E%3Cpolygon points='20,1 24,6 20,11 16,6' fill='none' stroke='rgba(255,138,0,0.18)' stroke-width='1'/%3E%3Cpolygon points='0,6 4,1 8,6 4,11' fill='none' stroke='rgba(255,138,0,0.18)' stroke-width='1'/%3E%3Cpolygon points='40,6 36,1 32,6 36,11' fill='none' stroke='rgba(255,138,0,0.18)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  border: none;
  margin: 0;
  padding: 0;
  opacity: 0.6;
}

/* Traditional Bana geometric emblem icon */
.bana-emblem-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bana-emblem-svg {
  width: 130px;
  height: auto;
  opacity: 0.06; /* Extremely faint, blurry watermark */
  filter: blur(0.5px);
  transition: all 0.5s ease;
}
.bana-emblem-svg:hover {
  opacity: 0.12;
}

/* ============================================================
   Founder Story Page
   ============================================================ */
.founder-hero {
  position: relative;
  min-height: 92vh;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.founder-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 9, 7, 0.92), rgba(10, 9, 7, 0.28)),
    url('farm_real_misty_highland.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}

.founder-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.98) 0%, rgba(10, 9, 7, 0.92) 45%, rgba(10, 9, 7, 0.5) 72%, rgba(10, 9, 7, 0.82) 100%),
    linear-gradient(0deg, rgba(10, 9, 7, 0.96) 0%, rgba(10, 9, 7, 0.22) 48%, rgba(10, 9, 7, 0.45) 100%);
}

.founder-hero-portrait {
  position: absolute;
  z-index: 1;
  top: clamp(7rem, 9vw, 8.5rem);
  right: clamp(2rem, 6vw, 7rem);
  bottom: clamp(2.2rem, 5vw, 4rem);
  width: min(36vw, 34rem);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2.2rem 5rem rgba(0, 0, 0, 0.42);
}

.founder-hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(250, 247, 242, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.founder-hero-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 25%;
}

.founder-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 92vh;
  padding-top: 10rem;
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(19rem, 0.44fr);
  gap: 1.5rem clamp(2.5rem, 7vw, 6rem);
  align-content: end;
  align-items: end;
}

.founder-hero-copy {
  grid-column: 1;
  max-width: 50rem;
}

.founder-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.founder-kicker.dark {
  color: var(--ember);
}

.founder-hero h1 {
  font-family: var(--serif);
  font-size: clamp(4.1rem, 8vw, 7.45rem);
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--cream);
  max-width: 9.5ch;
  margin-bottom: 1.4rem;
}

.founder-lead {
  max-width: 40rem;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.82);
}

.founder-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.founder-hero-actions .btn-ghost {
  min-height: 3.05rem;
  padding: 1rem 1.35rem;
  border: 1px solid rgba(250, 247, 242, 0.32);
  border-radius: 2px;
  justify-content: center;
}

.founder-hero-actions .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.founder-hero-proof {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 47rem;
}

.founder-hero-proof div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1rem;
}

.founder-hero-proof span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.founder-hero-proof small {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.62);
}

.founder-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: var(--cream);
  color: var(--ink);
}

.founder-story-grid,
.founder-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.founder-story-copy h2,
.founder-section-heading h2,
.founder-proof-copy h2,
.founder-final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 1.35rem;
}

.founder-story-copy p,
.founder-proof-copy p,
.founder-chapter-copy p,
.founder-principles-grid p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(10, 9, 7, 0.72);
}

.founder-story-copy p + p {
  margin-top: 1rem;
}

.founder-portrait-frame {
  position: relative;
  margin: 0;
}

.founder-portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 8px;
  box-shadow: 0 2rem 4rem rgba(10, 9, 7, 0.18);
}

.founder-portrait-frame figcaption,
.founder-gallery figcaption {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(10, 9, 7, 0.54);
  margin-top: 0.85rem;
}

.founder-quote-band {
  background: #17120e;
  color: var(--cream);
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.founder-quote-band blockquote {
  max-width: 76rem;
  margin: 0 auto;
}

.founder-quote-band p {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.founder-quote-band cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.founder-section-heading {
  max-width: 62rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.founder-section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.founder-timeline {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.founder-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.82fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.founder-chapter.reverse .founder-chapter-media {
  order: 2;
}

.founder-chapter-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1.5rem 3rem rgba(10, 9, 7, 0.16);
}

.founder-chapter-copy {
  border-left: 1px solid rgba(229, 25, 24, 0.25);
  padding-left: clamp(1.2rem, 2vw, 1.8rem);
}

.founder-chapter-copy span,
.founder-principles-grid span {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--ember);
  margin-bottom: 0.9rem;
}

.founder-chapter-copy h3,
.founder-principles-grid h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.founder-principles-band {
  background: #eee4d7;
}

.founder-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(10, 9, 7, 0.13);
  border: 1px solid rgba(10, 9, 7, 0.13);
}

.founder-principles-grid article {
  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: #f7f0e7;
}

.founder-proof-section {
  background: var(--cream);
}

.founder-score-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.founder-score-list div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(10, 9, 7, 0.12);
}

.founder-score-list strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ember);
}

.founder-score-list span {
  color: rgba(10, 9, 7, 0.7);
  line-height: 1.55;
}

.founder-cert-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.founder-cert-stack img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1.5rem 3rem rgba(10, 9, 7, 0.15);
}

.founder-cert-stack img:first-child {
  aspect-ratio: 0.72 / 1;
}

.founder-cert-stack img:last-child {
  aspect-ratio: 0.72 / 1;
  transform: translateY(2rem);
}

.founder-gallery-section {
  background: #17120e;
  color: var(--cream);
}

.founder-gallery-section .founder-kicker.dark {
  color: var(--gold);
}

.founder-gallery-section .founder-section-heading h2 {
  color: var(--cream);
}

.founder-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 15rem;
  gap: 0.8rem;
}

.founder-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0d0c0a;
}

.founder-gallery figure.wide {
  grid-column: span 2;
}

.founder-gallery figure.tall {
  grid-row: span 2;
}

.founder-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.founder-gallery figure:hover img {
  transform: scale(1.04);
}

.founder-gallery figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.8rem;
  margin: 0;
  color: rgba(250, 247, 242, 0.85);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.founder-final-cta {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.9), rgba(10, 9, 7, 0.58)),
    url('journey_real_drying_red_cherries_2.jpg') center / cover;
  color: var(--cream);
}

.founder-final-cta .container {
  max-width: 76rem;
}

.founder-final-cta h2 {
  max-width: 14ch;
  color: var(--cream);
}

@media (max-width: 1100px) {
  .founder-hero {
    min-height: auto;
    padding-top: 6.5rem;
  }

  .founder-hero-bg {
    opacity: 0.3;
  }

  .founder-hero-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(88vw, 30rem);
    height: clamp(24rem, 62vw, 34rem);
    margin: 0 auto;
  }

  .founder-hero-inner,
  .founder-story-grid,
  .founder-proof-grid,
  .founder-chapter {
    grid-template-columns: 1fr;
  }

  .founder-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .founder-hero-inner {
    min-height: 0;
    padding-top: 2.5rem;
  }

  .founder-chapter.reverse .founder-chapter-media {
    order: 0;
  }

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

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

@media (max-width: 720px) {
  .founder-hero {
    padding-top: 5.8rem;
  }

  .founder-hero-portrait {
    width: calc(100% - 2rem);
    height: 28rem;
  }

  .founder-hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 9, 7, 0.96) 0%, rgba(10, 9, 7, 0.72) 44%, rgba(10, 9, 7, 0.22) 100%);
  }

  .founder-hero-inner {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .founder-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .founder-hero-proof,
  .founder-principles-grid,
  .founder-gallery,
  .founder-cert-stack {
    grid-template-columns: 1fr;
  }

  .founder-principles-grid article {
    min-height: 0;
  }

  .founder-gallery {
    grid-auto-rows: 14rem;
  }

  .founder-gallery figure.wide,
  .founder-gallery figure.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .founder-score-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .founder-hero-actions .btn-ghost {
    width: 100%;
  }

  .founder-cert-stack img:last-child {
    transform: none;
  }
}
