
/* ================================================================
   AUREUM COFFEE, LUXURY SPECIALTY COFFEE PROTOTYPE
   Aesthetic: Dark editorial luxury · Gold on espresso · Cinematic
   Inspired by: Hermès editorial restraint + Specialty coffee
   transparency + Direct-to-purchase conversion architecture
================================================================ */
:root {
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --gold-dk:  #9A7A2A;
  --gold-dim: #B8A46A;
  --esp:      #080604;
  --esp2:     #0E0A06;
  --esp3:     #160D07;
  --esp4:     #1E1309;
  --esp5:     #261A0C;
  --cr:       #F5EDD6;
  --cr2:      #E2C98A;
  --cr3:      #C9A84C;
  --grn:      #2D5016;
  --grn2:     #5AAA35;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Montserrat', Arial, sans-serif;
  --brd:      rgba(201,168,76,.18);
  --brd2:     rgba(201,168,76,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--esp);
  color: var(--cr);
  font-family: var(--serif);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--esp); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .1s ease, width .2s ease, height .2s ease, opacity .2s ease;
  mix-blend-mode: normal;
}
.cursor.big { width: 40px; height: 40px; background: transparent; border: 1px solid var(--gold); }
body:not(:hover) .cursor { opacity: 0; }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:none} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes float    { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-16px) rotate(-2deg)} }
@keyframes floatR   { 0%,100%{transform:translateY(0) rotate(1.5deg)} 50%{transform:translateY(-12px) rotate(1.5deg)} }
@keyframes marquee  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulse    { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,.4)} 60%{box-shadow:0 0 0 10px rgba(201,168,76,0)} }
@keyframes shimmer  { 0%,100%{opacity:.7} 50%{opacity:1} }
@keyframes drawLine { from{width:0;opacity:0} to{width:100%;opacity:1} }
@keyframes scaleIn  { from{transform:scale(.92);opacity:0} to{transform:scale(1);opacity:1} }
@keyframes spin     { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes barFill  { from{width:0} to{width:var(--target)} }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ================================================================
   ANNOUNCEMENT BAR
================================================================ */
.announce {
  height: 40px; background: var(--gold); overflow: hidden;
  display: flex; align-items: center;
}
.announce-track {
  display: flex; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announce-item {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: var(--esp);
  padding: 0 52px;
}
.announce-sep { color: rgba(8,6,4,.3); margin-right: 52px; }

/* ================================================================
   NAV
================================================================ */
nav {
  position: sticky; top: 0; z-index: 900;
  height: 92px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 56px;
  background: rgba(8,6,4,.97);
  border-bottom: 1px solid rgba(201,168,76,.3);
  backdrop-filter: blur(16px);
  transition: border-color .3s;
}
.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 16px;
  color: #ffffff;
  white-space: nowrap;
  display: block;
  line-height: 1.0;
  /* Strong gold glow — lifts AUREUM clearly off dark background */
  text-shadow:
    0 0 30px rgba(201,168,76,.55),
    0 0 60px rgba(201,168,76,.25),
    0 0 100px rgba(201,168,76,.10),
    0 2px 4px rgba(0,0,0,.9);
}
.nav-tagline {
  display: block; text-align: center;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 6px; color: var(--gold);
  margin-top: 6px; white-space: nowrap;
  width: 100%;
}
.nav-logo span { color: var(--gold); }
.nav-logo::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  height: 1px; background: var(--gold);
  animation: drawLine .8s .3s ease forwards;
  width: 0; opacity: 0;
}
.nav-links { display: flex; gap: 0; list-style: none; justify-content: center; }
.nav-links li { flex: 1; text-align: center; }
.nav-links a { display: block; padding: 0 14px; }
.nav-links a {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; color: var(--cr2);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav-ghost {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; padding: 9px 20px; color: var(--cr2);
  border: 1px solid rgba(245,237,214,.2);
  transition: all .2s;
}
.btn-nav-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav-cta {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; padding: 11px 28px;
  background: var(--gold); color: var(--esp);
  animation: pulse 3s ease-in-out infinite;
  transition: background .2s, transform .15s;
}
.btn-nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }
.mob-toggle {
  display: none; font-size: 22px; color: var(--gold);
  background: none; border: none;
}

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: calc(100vh - 112px);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

/* Left: copy */
.hero-copy {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 64px 140px;
  position: relative; z-index: 2;
  background: var(--esp);
}
/* Inset decorative border, bag-derived */
.hero-copy::before {
  content: ''; position: absolute;
  inset: 18px; border: 1px solid rgba(201,168,76,.09);
  pointer-events: none;
}
/* Corner marks */
.hero-copy::after {
  content: ''; position: absolute;
  inset: 22px; border: 1px solid rgba(201,168,76,.04);
  pointer-events: none;
}
.h-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 7px; color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.h-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
}
.h1 {
  font-size: clamp(60px, 6.8vw, 94px);
  font-weight: 300; line-height: .96; color: var(--cr);
  letter-spacing: -2px; margin-bottom: 8px;
  animation: fadeUp .7s .08s ease both;
}
.h1 em {
  color: var(--gold); font-style: italic; display: block;
  font-size: 1.1em; letter-spacing: -3px;
}
.h-rule {
  display: flex; align-items: center; gap: 14px;
  margin: 28px 0;
  animation: fadeUp .7s .16s ease both;
}
.h-rule-line { flex: 1; height: 1px; background: rgba(201,168,76,.35); }
.h-rule-diamond {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}
.h-sub {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 3px; color: var(--cr2);
  line-height: 2.2; margin-bottom: 44px;
  animation: fadeUp .7s .22s ease both;
}
.h-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeUp .7s .3s ease both;
}
.btn-primary {
  padding: 16px 48px; background: var(--gold); color: var(--esp);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 3px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-secondary {
  padding: 16px 36px; background: transparent; color: var(--cr);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; border: 1px solid rgba(245,237,214,.28);
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.h-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  animation: fadeUp .7s .38s ease both;
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 1px; color: var(--cr2);
}
.trust-pip { color: var(--gold); font-size: 10px; }

/* Right: bag */
.hero-visual {
  background: transparent;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 46%, rgba(201,168,76,.12) 0%, transparent 65%);
}
/* Corner accent marks on visual panel */
.vc { position: absolute; width: 24px; height: 24px; z-index: 3; }
.vc-tl { top:18px; left:18px; border-top:1.5px solid rgba(201,168,76,.55); border-left:1.5px solid rgba(201,168,76,.55); }
.vc-tr { top:18px; right:18px; border-top:1.5px solid rgba(201,168,76,.55); border-right:1.5px solid rgba(201,168,76,.55); }
.vc-bl { bottom:90px; left:18px; border-bottom:1.5px solid rgba(201,168,76,.55); border-left:1.5px solid rgba(201,168,76,.55); }
.vc-br { bottom:90px; right:18px; border-bottom:1.5px solid rgba(201,168,76,.55); border-right:1.5px solid rgba(201,168,76,.55); }

.bag-wrap {
  position: relative; z-index: 2;
  animation: float 6.5s ease-in-out infinite;
  filter: drop-shadow(0 44px 64px rgba(0,0,0,.75)) drop-shadow(0 8px 20px rgba(201,168,76,.1));
}
.bag-nobg {
  width: 340px; max-width: 90%;
  height: auto; display: block;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 32px 56px rgba(0,0,0,.7))
          drop-shadow(0 8px 16px rgba(201,168,76,.12));
}
.bag-origin-label-static {
  text-align: center;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.bag-origin-loc {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  letter-spacing: 7px; color: var(--gold);
  margin-bottom: 7px; text-align: center;
}
.bag-origin-est {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 6px; color: rgba(201,168,76,.7);
  text-align: center;
}


/* Data strip */
.h-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(8,6,4,.9); backdrop-filter: blur(12px);
  border-top: 1px solid var(--brd);
}
.hs { padding: 18px 28px; border-right: 1px solid var(--brd2); }
.hs:last-child { border-right: none; }
.hs-l {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); margin-bottom: 5px;
}
.hs-v { font-size: 20px; font-weight: 300; color: var(--cr); }

/* ================================================================
   FLAVOR MARQUEE
================================================================ */
.flavor-strip {
  height: 52px; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  background: var(--esp2);
  display: flex; align-items: center;
}
.flavor-track {
  display: flex; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.flavor-note {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  font-style: italic; color: var(--cr2); padding: 0 24px;
  display: flex; align-items: center; gap: 0;
}
.flavor-note::before {
  content: '\00B7'; font-style: normal; color: var(--gold);
  font-size: 14px; margin-right: 24px;
}

/* ================================================================
   SHARED SECTION STYLES
================================================================ */
.section { padding: 120px 64px; }
.inner { max-width: 1260px; margin: 0 auto; }
.s-eye {
  display: block;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 7px; color: var(--gold);
  margin-bottom: 18px;
}
.s-h {
  font-size: clamp(44px, 4.5vw, 66px); font-weight: 300;
  color: var(--cr); line-height: 1.06;
}
.s-h em { color: var(--gold); font-style: italic; }
.s-sub {
  font-family: var(--sans); font-size: 18px;
  letter-spacing: 2px; color: var(--cr2);
  margin-top: 8px;
}
.body-p {
  font-size: 21px; line-height: 2.2;
  color: var(--cr2); margin-bottom: 32px;
}
.body-p strong { color: var(--cr); font-weight: 400; }
.body-p em { color: var(--gold); font-style: italic; }
.divider {
  display: flex; align-items: center; gap: 14px; margin: 44px 0;
}
.div-line { flex: 1; height: 1px; background: rgba(201,168,76,.2); }
.div-diamond {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ================================================================
   SHOP SECTION
================================================================ */
.shop-section { background: var(--esp2); border-top: 1px solid var(--brd2); }
.shop-head { text-align: center; margin-bottom: 64px; }
.shop-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; max-width: 1260px; margin: 0 auto;
}
.prod {
  background: var(--esp); padding: 44px 36px 40px;
  border: 1px solid rgba(201,168,76,.1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .28s, transform .25s;
}
.prod:hover { border-color: rgba(201,168,76,.55); transform: translateY(-6px); }
.prod::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.prod:hover::before { transform: scaleX(1); }
.prod-badge {
  align-self: flex-start;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; color: var(--cr);
  border: 1px solid rgba(245,237,214,.3);
  padding: 5px 12px; margin-bottom: 22px;
}
.prod-badge.green { color: var(--grn2); border-color: rgba(90,170,53,.35); }
.prod-name {
  font-size: 30px; font-weight: 300; color: var(--cr);
  margin-bottom: 6px; line-height: 1.1;
}
.prod-format {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 20px;
}
/* Flavor bars, Onyx-style visual profiling */
.bars { margin-bottom: 24px; }
.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.bar-lbl {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 1px; color: var(--cr2); width: 88px; flex-shrink: 0;
}
.bar-track {
  flex: 1; height: 3px;
  background: rgba(201,168,76,.12); border-radius: 2px; overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold));
  width: 0; transition: width 1.2s .4s cubic-bezier(.4,0,.2,1);
}
.bar-fill.green {
  background: linear-gradient(to right, #2D5016, var(--grn2));
}
.reveal.visible .bar-fill { width: var(--w); }
.prod-notes {
  font-size: 15px; font-style: italic;
  color: var(--cr2); line-height: 1.9; margin-bottom: 22px; flex: 1;
}
.prod-price {
  font-size: 40px; font-weight: 300; color: var(--gold);
  margin-bottom: 8px;
}
.prod-price sup { font-size: 18px; }
.prod-price .cents { font-size: 16px; color: var(--gold-dim); }
.prod-desc {
  font-family: var(--sans); font-size: 15px; color: var(--cr2);
  line-height: 1.85; margin-bottom: 28px;
}
.btn-add {
  width: 100%; padding: 14px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; color: var(--gold);
  border: 1px solid rgba(201,168,76,.35);
  transition: all .22s; margin-top: auto;
}
.btn-add:hover { background: var(--gold); color: var(--esp); border-color: var(--gold); }
.btn-add.green { color: var(--grn2); border-color: rgba(90,170,53,.35); }
.btn-add.green:hover { background: var(--grn); color: var(--cr); border-color: var(--grn); }
.btn-add.highlight {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.4);
}

/* ================================================================
   GUARANTEE BAND
================================================================ */
.guar-band {
  background: var(--esp3);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid rgba(201,168,76,.3);
}
.guar-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  max-width: 1260px; margin: 0 auto; padding: 0 64px;
}
.guar-cell {
  background: var(--esp); padding: 32px 28px;
  border: 1px solid rgba(201,168,76,.08);
  display: flex; align-items: flex-start; gap: 18px;
}
.guar-icon {
  font-size: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.guar-h { font-size: 20px; color: var(--cr); margin-bottom: 8px; font-weight: 300; }
.guar-p { font-family: var(--sans); font-size: 15px; color: var(--cr2); line-height: 1.8; }

/* ================================================================
   ORIGIN SECTION
================================================================ */
.origin-section { background: var(--esp); border-top: 1px solid var(--brd2); }
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.origin-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 36px;
}
.of {
  background: var(--esp2); padding: 24px 22px;
  border: 1px solid rgba(201,168,76,.1);
}
.of-l {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); margin-bottom: 8px;
}
.of-v { font-size: 22px; font-weight: 300; color: var(--cr); }
.of-s { font-family: var(--sans); font-size: 12px; color: var(--cr2); margin-top: 4px; }

/* ================================================================
   STORY SECTION
================================================================ */
.story-section {
  background: var(--esp3);
  border-top: 1px solid var(--brd2);
  border-bottom: 1px solid var(--brd2);
}
.story-inner { max-width: 900px; margin: 0 auto; }
.story-inner .s-eye, .story-inner .s-h { text-align: center; }
.story-inner .s-h { margin-bottom: 56px; }
.sp { margin-bottom: 54px; padding-left: 32px; position: relative; }
.sp::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}
.sp-n {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 5px; color: var(--gold); margin-bottom: 12px;
}
.sp-h { font-size: 26px; font-weight: 300; color: var(--cr); margin-bottom: 16px; }
.sp-b { font-size: 20px; line-height: 2.3; color: var(--cr2); margin-bottom: 8px; }
.sp-b strong { color: var(--cr); font-weight: 400; }
.sp-b em { color: var(--gold); font-style: italic; }
.blockquote {
  margin: 52px 0; padding: 44px 52px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,.05);
  position: relative;
}
.blockquote::before {
  content: '\201C'; position: absolute;
  top: 12px; left: 20px;
  font-size: 80px; color: var(--gold); opacity: .15;
  font-family: var(--serif); line-height: 1;
}
.bq-text {
  font-size: 22px; font-style: italic; color: var(--cr);
  line-height: 1.65; margin-bottom: 16px;
}
.bq-cite {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); font-style: normal;
}
/* Friends list — vertical rows */
.friends-list { margin-top: 44px; }
.fc-card {
  padding: 40px 0 32px;
  display: block;
}
.fc-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.fc-initial {
  display: block;
  font-family: var(--serif);
  font-size: 58px;
  color: var(--gold);
  opacity: .22;
  line-height: .9;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  padding-top: 2px;
}
.fc-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.fc-name {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cr);
  font-style: italic;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-origin {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: .7;
  text-transform: uppercase;
}
.fc-body {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2.1;
  color: var(--cr2);
  max-width: 780px;
  margin: 0;
  padding: 0;
}
.fc-divider {
  display: block;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,.35), rgba(201,168,76,.05));
  margin: 0;
}
.friends-cards {
  margin-top: 44px;
  display: block;
}

/* ================================================================
   JOURNEY TABLE
================================================================ */
.journey-section { background: var(--esp); border-top: 1px solid var(--brd2); }
.journey-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 3px; margin-top: 48px;
}
.jc {
  background: var(--esp2); padding: 28px 20px;
  border: 1px solid rgba(201,168,76,.1);
  position: relative;
  transition: border-color .25s, transform .2s;
}
.jc:hover { border-color: rgba(201,168,76,.4); transform: translateY(-4px); }
.jc.winner { border-color: rgba(201,168,76,.35); }
.jc.winner::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.jc-flag {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 8px;
}
.jc-name { font-size: 19px; font-weight: 300; color: var(--cr); margin-bottom: 8px; line-height: 1.25; }
.jc-notes {
  font-family: var(--sans); font-size: 14px; color: var(--cr2);
  line-height: 1.85; margin-bottom: 16px;
}
.jbadge {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; padding: 4px 10px; display: inline-block;
}
.jb-os { color: #5AAA35; border: 1px solid rgba(90,170,53,.4); }
.jb-rm { color: #5DCAA5; border: 1px solid rgba(93,202,165,.4); }
.jb-ex { color: var(--gold); border: 1px solid rgba(201,168,76,.4); }
.jb-fs { color: #85B7EB; border: 1px solid rgba(133,183,235,.4); }
.jb-un { color: var(--gold-lt); border: 1px solid rgba(232,201,106,.55); background: rgba(201,168,76,.07); }

/* ================================================================
   QUIZ SECTION
================================================================ */
.quiz-section {
  background: var(--esp4);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}
.quiz-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quiz-inner .s-h { margin-bottom: 12px; }
.quiz-intro {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--cr2);
  margin-bottom: 48px;
  line-height: 1.85;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
/* Brew method buttons */
.quiz-opts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.q-opt {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 18px 32px;
  color: var(--cr2);
  border: 1px solid rgba(201,168,76,.22);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
}
.q-opt:hover, .q-opt.picked {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
  color: var(--cr);
}

/* Quiz result panel */
.quiz-result {
  animation: scaleIn .4s ease both;
  background: var(--esp2);
  border: 1px solid rgba(201,168,76,.28);
  padding: 44px;
  margin-bottom: 40px;
  text-align: center;
}
.qr-eye {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 14px;
}
.qr-product {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--cr);
  margin-bottom: 16px;
}
.qr-reason {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--cr2);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.qr-price {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
}
.qr-price sup { font-size: 18px; }
.qr-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.quiz-restart {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(201,168,76,.6);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
}
.quiz-restart:hover { color: var(--gold); }

/* ── PREP GUIDE CONTAINER ─────────────────────────────────── */
.prep-guide {
  text-align: left;
  margin-top: 8px;
}
.prep-guide-header {
  text-align: center;
  margin-bottom: 36px;
}
.prep-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--cr);
  margin-bottom: 10px;
  line-height: 1.2;
}
.prep-guide-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(201,168,76,.45);
  text-transform: uppercase;
}

/* ── ACCORDION — shared styles ────────────────────────────── */
.prep-accordion,
.prep-steps-accordion,
.roast-accordion {
  margin-bottom: 12px;
}
.acc-item { border-bottom: 1px solid rgba(201,168,76,.08); }
.acc-item:first-child { border-top: 1px solid rgba(201,168,76,.08); }

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .18s;
}
.acc-header:hover { background: rgba(201,168,76,.04); }
.acc-header.acc-open { background: rgba(201,168,76,.06); }

.acc-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.acc-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--cr);
  text-transform: uppercase;
  flex: 1;
}
.acc-value-peek {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  margin-right: 8px;
}
.acc-chevron {
  font-size: 18px;
  color: rgba(201,168,76,.5);
  transition: transform .25s;
  flex-shrink: 0;
  line-height: 1;
}

/* Accordion body */
.acc-body {
  padding: 4px 24px 28px 68px;
  animation: fadeDown .25s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.acc-value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.1;
}
.acc-note {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--cr2);
  line-height: 1.85;
}

/* ── STEPS ACCORDION ──────────────────────────────────────── */
.prep-steps-accordion {
  border-top: 1px solid rgba(201,168,76,.12);
  margin-top: 4px;
}
.acc-steps-toggle,
.acc-roast-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(201,168,76,.03);
  border: 1px solid rgba(201,168,76,.1);
  border-bottom: none;
  cursor: pointer;
  text-align: left;
  transition: background .18s;
}
.acc-steps-toggle:hover,
.acc-roast-toggle:hover { background: rgba(201,168,76,.07); }
.acc-steps-toggle.acc-open,
.acc-roast-toggle.acc-open { background: rgba(201,168,76,.08); }

.acc-steps-body,
.acc-roast-body {
  border: 1px solid rgba(201,168,76,.1);
  border-top: none;
  padding: 28px 28px 32px;
  animation: fadeDown .25s ease;
}

/* Step rows */
.prep-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,.06);
}
.prep-step:last-child { border-bottom: none; padding-bottom: 0; }

.prep-step-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  opacity: .35;
  flex-shrink: 0;
  width: 32px;
  text-align: right;
  padding-top: 2px;
  line-height: 1;
}
.prep-step-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--cr2);
  line-height: 1.9;
  flex: 1;
}
.prep-step-text strong { color: var(--cr); font-weight: 400; }

/* ── ROAST CARDS (inside accordion) ──────────────────────── */
.roast-accordion { margin-top: 12px; }
.acc-roast-body { display: flex; flex-direction: column; gap: 0; padding: 0; }
.roast-card {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(201,168,76,.06);
}
.roast-card:last-child { border-bottom: none; }
.roast-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.roast-h {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--cr);
  margin-bottom: 10px;
}
.roast-p {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--cr2);
  line-height: 1.85;
}

/* ── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .quiz-intro { font-size: 18px; margin-bottom: 36px; }
  .q-opt {
    padding: 16px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    min-height: 52px;
    width: 100%;
    text-align: center;
  }
  .quiz-result { padding: 28px 20px; }
  .qr-product { font-size: 26px; }
  .qr-reason { font-size: 17px; }

  .acc-header { padding: 18px 16px; gap: 12px; }
  .acc-label { font-size: 12px; letter-spacing: 2px; }
  .acc-value-peek { font-size: 15px; }
  .acc-body { padding: 4px 16px 24px 16px; }
  .acc-value { font-size: 24px; }
  .acc-note { font-size: 16px; line-height: 1.8; }
  .acc-steps-toggle, .acc-roast-toggle { padding: 18px 16px; }
  .acc-steps-body, .acc-roast-body { padding: 20px 16px 24px; }
  .prep-step { gap: 14px; padding: 16px 0; }
  .prep-step-num { font-size: 18px; width: 26px; }
  .prep-step-text { font-size: 16px; line-height: 1.8; }
  .roast-h { font-size: 18px; }
  .roast-p { font-size: 15px; }
  .prep-title { font-size: 22px; }
}

/* ================================================================
   SUBSCRIBE SECTION
================================================================ */
.sub-section {
  background: var(--esp); text-align: center;
  border-top: 1px solid var(--brd2);
}
.sub-section .s-h { margin: 0 auto 12px; max-width: 600px; }
.sub-body {
  font-size: 19px; color: var(--cr2); line-height: 2.1;
  max-width: 560px; margin: 0 auto 44px;
}
.sub-form { display: flex; max-width: 500px; margin: 0 auto; }
.sub-email {
  flex: 1; padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.28); border-right: none;
  font-family: var(--sans); font-size: 13px; color: var(--cr); outline: none;
  transition: border-color .2s;
}
.sub-email::placeholder { color: rgba(245,237,214,.3); font-size: 12px; letter-spacing: 2px; }
.sub-email:focus { border-color: var(--gold); }
.sub-btn {
  padding: 16px 28px; background: var(--gold);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: var(--esp);
  white-space: nowrap; transition: background .2s;
}
.sub-btn:hover { background: var(--gold-lt); }
.sub-perks {
  display: flex; justify-content: center;
  gap: 44px; margin-top: 32px; flex-wrap: wrap;
}
.sub-perk {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; color: var(--cr2);
  display: flex; align-items: center; gap: 10px;
}
.sub-perk::before {
  content: ''; display: block; width: 5px; height: 5px;
  background: var(--gold); transform: rotate(45deg);
}

/* ================================================================
   REVIEWS
================================================================ */
.reviews-section { background: var(--esp2); border-top: 1px solid var(--brd2); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; margin-top: 48px; max-width: 1260px; margin: 48px auto 0;
}
.rv {
  background: var(--esp); padding: 36px 32px;
  border: 1px solid rgba(201,168,76,.1);
  transition: border-color .2s;
}
.rv:hover { border-color: rgba(201,168,76,.35); }
.stars { display: flex; gap: 4px; margin-bottom: 18px; }
.star {
  width: 12px; height: 12px; background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.rv-text { font-size: 18px; font-style: italic; color: var(--cr); line-height: 1.95; margin-bottom: 18px; }
.rv-attr {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; color: var(--gold);
}

/* ================================================================
   ORDER FORM
================================================================ */
.order-section { background: var(--esp3); border-top: 1px solid var(--brd2); }
.order-inner { max-width: 820px; margin: 0 auto; }
.order-inner .s-eye, .order-inner .s-h { text-align: center; }
.order-inner .s-h { margin-bottom: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.full { grid-column: 1/-1; }
.form-section-head {
  grid-column: 1/-1;
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 5px; color: var(--gold);
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
label {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 3px; color: var(--cr2);
}
input, select, textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.22);
  color: var(--cr); font-family: var(--sans); font-size: 13px;
  padding: 12px 14px; outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder {
  color: rgba(245,237,214,.22); font-size: 12px; letter-spacing: 1px;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select option { background: var(--esp2); color: var(--cr); }
textarea { resize: vertical; min-height: 88px; }
.order-summary {
  background: var(--esp); border: 1px solid rgba(201,168,76,.18);
  padding: 28px 30px; margin-top: 24px;
}
.sum-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,.08);
  font-size: 15px; color: var(--cr2);
}
.sum-row:last-child { border-bottom: none; padding-top: 16px; }
.sum-total { color: var(--gold); font-size: 26px; }
.btn-order-submit {
  width: 100%; padding: 18px; margin-top: 22px;
  background: var(--gold); color: var(--esp);
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; transition: background .2s, transform .15s;
}
.btn-order-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.secure-note {
  text-align: center; margin-top: 14px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; color: var(--cr2);
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--esp2);
  border-top: 1px solid rgba(201,168,76,.22);
  padding: 64px 64px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.f-logo {
  font-family: var(--serif); font-size: 30px; font-weight: 400;
  letter-spacing: 12px; color: var(--cr); margin-bottom: 12px;
}
.f-logo span { color: var(--gold); }
.f-tag {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 4px; color: var(--cr2); margin-bottom: 18px;
}
.f-about {
  font-family: var(--sans); font-size: 13px; color: var(--cr2);
  line-height: 1.9; max-width: 260px;
}
.f-col-h {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); margin-bottom: 20px;
}
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a {
  font-family: var(--sans); font-size: 13px; color: var(--cr2);
  transition: color .2s;
}
.f-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,.1);
  flex-wrap: wrap; gap: 12px;
}
.f-copy { font-family: var(--sans); font-size: 12px; color: var(--cr2); letter-spacing: 1px; }
.f-origin {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold);
}
.f-social { display: flex; gap: 18px; }
.f-social a {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; color: var(--cr2); transition: color .2s;
}
.f-social a:hover { color: var(--gold); }

/* ================================================================
   TOAST
================================================================ */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--gold); color: var(--esp);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; padding: 14px 22px;
  transform: translateY(72px); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ================================================================
   MOBILE DRAWER
================================================================ */
.mob-drawer {
  position: fixed; top: 112px; left: 0; right: 0; bottom: 0;
  z-index: 888; background: var(--esp2);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
  transform: translateX(100%); transition: transform .35s ease;
  border-top: 1px solid var(--brd);
}
.mob-drawer.open { transform: translateX(0); }
.mob-drawer a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 4px; color: var(--cr2); transition: color .2s;
}
.mob-drawer a:hover { color: var(--gold); }

/* ================================================================
   RESPONSIVE
================================================================ */

/* ════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE STYLES
   Breakpoints:
     1060px — tablet landscape
      820px — tablet portrait / large phone landscape
      600px — phone landscape / small tablet
      480px — standard phone portrait
      360px — small phone (minimum supported)
   Standards: WCAG 2.1 AA, 44px minimum touch targets,
   16px minimum body text, adequate line-height for readability
════════════════════════════════════════════════════════════════ */

/* ── 1060px TABLET ──────────────────────────────────────────── */
@media (max-width: 1060px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 0 10px; font-size: 10px; letter-spacing: 2px; }
  .section { padding: 80px 40px; }
  .hero-copy { padding: 60px 40px 160px; }
  .journey-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blockquote { padding: 36px 40px; }
  .origin-grid { gap: 48px; }
}

/* ── 820px TABLET PORTRAIT ──────────────────────────────────── */
@media (max-width: 820px) {
  /* NAV */
  nav { padding: 0 20px; height: 76px; }
  .nav-logo { font-size: 38px; letter-spacing: 10px; }
  .nav-tagline { font-size: 9px; letter-spacing: 4px; }
  .nav-links, .nav-actions { display: none; }
  .mob-toggle { display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; }

  /* ANNOUNCE */
  .announce-item { font-size: 10px; letter-spacing: 2px; padding: 0 32px; }

  /* HERO — single column, visual hidden */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-copy {
    padding: 48px 20px 160px;
    min-height: 100svh;
  }
  .h-eyebrow { font-size: 10px; letter-spacing: 4px; }
  .h-est { font-size: 10px; letter-spacing: 4px; }
  .h1 {
    font-size: clamp(44px, 11vw, 60px);
    letter-spacing: -1px;
    line-height: 1.0;
  }
  .h-rule { margin: 20px 0; }
  .h-sub {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 2.0;
  }
  .h-btns { gap: 10px; }
  .btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 11px;
    width: 100%;
    text-align: center;
  }
  .h-trust { gap: 14px; margin-top: 24px; }
  .trust-pill { font-size: 12px; }

  /* HERO DATA STRIP */
  .h-strip { grid-template-columns: repeat(2, 1fr); }
  .hs { padding: 14px 18px; }
  .hs-l { font-size: 8px; letter-spacing: 3px; }
  .hs-v { font-size: 17px; }

  /* SECTIONS */
  .section { padding: 64px 20px; }
  .s-eye { font-size: 10px; letter-spacing: 5px; }
  .s-h { font-size: clamp(32px, 8vw, 48px); }
  .s-sub { font-size: 18px; }
  .body-p { font-size: 17px; line-height: 2.0; }

  /* SHOP */
  .shop-grid { grid-template-columns: 1fr; gap: 3px; }
  .shop-head { margin-bottom: 40px; }
  .prod { padding: 32px 24px; }
  .prod-name { font-size: 26px; }
  .prod-format { font-size: 9px; letter-spacing: 2px; }
  .prod-price { font-size: 34px; }
  .prod-desc { font-size: 14px; }
  .btn-add { padding: 14px; font-size: 11px; min-height: 44px; }

  /* GUARANTEE */
  .guar-band { padding: 0; }
  .guar-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 2px; }
  .guar-cell { padding: 24px 20px; }
  .guar-h { font-size: 18px; }
  .guar-p { font-size: 14px; }

  /* ORIGIN */
  .origin-grid { grid-template-columns: 1fr; gap: 48px; }
  .origin-facts { grid-template-columns: 1fr 1fr; }
  .of-v { font-size: 20px; }

  /* STORY */
  .story-inner { padding: 0; }
  .sp { padding-left: 20px; margin-bottom: 40px; }
  .sp-h { font-size: 22px; }
  .sp-b { font-size: 16px; line-height: 2.1; }
  .blockquote { padding: 28px 24px; margin: 36px 0; }
  .bq-text { font-size: 18px; line-height: 1.6; }
  .bq-cite { font-size: 10px; letter-spacing: 3px; }
  .blockquote::before { font-size: 60px; top: 8px; left: 12px; }

/* JOURNEY */
  .journey-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .jc { padding: 22px 16px; }
  .jc-name { font-size: 16px; }
  .jc-notes { font-size: 13px; }

  /* QUIZ */
  .quiz-inner { text-align: center; }
  .quiz-question { font-size: 22px; }
  .quiz-opts { gap: 14px; }
  .q-opt {
    padding: 13px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    min-height: 44px;
    width: 100%;
    text-align: center;
  }
  .quiz-result { padding: 28px 20px; }
  .qr-product { font-size: 26px; }
  .qr-reason { font-size: 16px; }
  /* prep guide mobile — see quiz section above */

  /* SUBSCRIBE */
  .sub-section .s-h { font-size: clamp(30px, 8vw, 44px); }
  .sub-body { font-size: 16px; }
  .sub-form { flex-direction: column; }
  .sub-email {
    border-right: 1px solid rgba(201,168,76,.28);
    border-bottom: none;
    padding: 14px 16px;
    font-size: 14px;
  }
  .sub-btn { padding: 14px; font-size: 11px; min-height: 44px; }
  .sub-perks { gap: 16px; flex-direction: column; align-items: center; }
  .sub-perk { font-size: 12px; }

  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; }
  .rv { padding: 28px 20px; }
  .rv-text { font-size: 16px; }
  .rv-attr { font-size: 10px; }

  /* ORDER FORM */
  .order-inner { padding: 0; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .fg.full { grid-column: 1; }
  input, select, textarea { font-size: 16px; padding: 12px 14px; } /* 16px prevents iOS zoom */
  label { font-size: 9px; }
  .form-section-head { font-size: 9px; letter-spacing: 4px; }
  .order-summary { padding: 20px 16px; }
  .sum-total { font-size: 22px; }
  .btn-order-submit { padding: 16px; font-size: 11px; letter-spacing: 3px; min-height: 52px; }
  .secure-note { font-size: 10px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .f-logo { font-size: 26px; letter-spacing: 8px; }
  .f-about { font-size: 13px; max-width: 100%; }
  .f-links a { font-size: 14px; }
  footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* FRIENDS CARDS — mobile */
  .fc-card {
    display: block;
    padding: 24px 0 18px;
  }
  .fc-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,.15);
  }
  .fc-initial {
    display: block;
    font-size: 40px;
    width: 32px;
    flex-shrink: 0;
    padding-top: 2px;
  }
  .fc-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px;
    flex: 1;
    min-width: 0;
  }
  .fc-name {
    display: block;
    font-size: 22px;
    white-space: normal;
  }
  .fc-origin {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
  }
  .fc-body {
    display: block;
    font-size: 16px;
    line-height: 1.9;
    max-width: 100%;
    width: 100%;
  }

}


/* ── 600px PHONE LANDSCAPE / SMALL TABLET ────────────────── */
@media (max-width: 600px) {
  .h1 { font-size: clamp(40px, 10.5vw, 54px); }
  .h-sub { font-size: 10px; letter-spacing: 1.5px; }
  .h-btns { flex-direction: column; }
  .journey-grid { grid-template-columns: 1fr; }
  .origin-facts { grid-template-columns: 1fr 1fr; }
  .friends-grid { grid-template-columns: 1fr; }
  .s-h { font-size: clamp(28px, 8.5vw, 44px); }
  .h-strip { grid-template-columns: repeat(2, 1fr); }
  .hs-v { font-size: 16px; }
  /* prep grid mobile — handled in quiz section */
}

/* ── 480px STANDARD PHONE PORTRAIT ─────────────────────── */
@media (max-width: 480px) {
  .h1 { font-size: clamp(36px, 10vw, 50px); letter-spacing: -0.5px; }
  nav { height: 68px; }
  .nav-logo { font-size: 32px; letter-spacing: 8px; }
  .nav-tagline { font-size: 8px; letter-spacing: 3px; }
  .section { padding: 52px 16px; }
  .s-h { font-size: clamp(26px, 8vw, 40px); }
  .sp-h { font-size: 20px; }
  .sp-b { font-size: 15px; }
  .bq-text { font-size: 16px; }
  .body-p { font-size: 16px; }
  .prod-name { font-size: 24px; }
  .prod-price { font-size: 30px; }
  .of-v { font-size: 18px; }
  .hs-v { font-size: 15px; }
  .hs-l { font-size: 7px; letter-spacing: 2px; }
  .announce-item { font-size: 9px; letter-spacing: 1px; padding: 0 22px; }
  .guar-cell { padding: 20px 16px; }
  .rv { padding: 24px 16px; }
  .rv-text { font-size: 15px; }
  .order-summary { padding: 16px 14px; }
  .blockquote { padding: 24px 18px; }
  .quiz-question { font-size: 20px; }


  .fc-body { font-size: 15px; line-height: 1.85; }
  .fc-name { font-size: 20px; }
}

/* ── 360px SMALL PHONE MINIMUM ──────────────────────────── */
@media (max-width: 360px) {
  .h1 { font-size: 32px; letter-spacing: 0; }
  nav { height: 60px; }
  .nav-logo { font-size: 26px; letter-spacing: 5px; }
  .nav-tagline { display: none; }
  .section { padding: 44px 14px; }
  .btn-primary, .btn-secondary { font-size: 10px; letter-spacing: 2px; padding: 13px 20px; }
  .q-opt { font-size: 11px; padding: 12px 14px; }
  .h-sub { font-size: 9px; }
}

/* ── TOUCH TARGETS — all interactive elements ≥ 44px ─────── */
@media (max-width: 820px) {
  button, a, select, input[type="submit"],
  .q-opt, .btn-add, .btn-primary, .btn-secondary,
  .btn-nav-cta, .sub-btn, .btn-order-submit,
  .nav-links a, .f-links a {
    min-height: 44px;
  }
  .f-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
  }
}

/* ── PREVENT iOS FONT ZOOM on form inputs ────────────────── */
@media (max-width: 820px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ── PREVENT HORIZONTAL OVERFLOW ────────────────────────── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  height: auto;
}
.inner {
  max-width: 100%;
  overflow-x: hidden;
}
.prod:hover
.prod:hover
@media (max-width: 820px) {
}

/* ── PRODUCT CARD THUMBNAIL ─────────────────────────────── */
.prod-img-block {
  width: 100%;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.prod-img {
  height: 170px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  display: block;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.5));
}
/* Green bean images have white bg — multiply blends white to transparent */
/* Green bean image: white background — show in light-tinted block */
.prod.green-prod .prod-img-block {
  background: rgba(245,237,214,.08);
  border-bottom-color: rgba(201,168,76,.15);
}
.prod.green-prod .prod-img {
  mix-blend-mode: normal;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
  max-width: 70%;
  height: auto;
  max-height: 140px;
}
@media (max-width: 820px) {
  .prod-img-block { height: 160px; }
  .prod-img { height: 146px; }
}

/* ── STRIPE ELEMENTS ─────────────────────────────────────── */
.stripe-card-element {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color .2s;
  /* Stripe injects an iframe here — min-height keeps it stable */
  min-height: 46px;
}
.stripe-card-element.StripeElement--focus {
  border-color: rgba(201,168,76,.7);
  outline: none;
}
.stripe-card-element.StripeElement--invalid {
  border-color: #e05252;
}
.stripe-card-errors {
  color: #e05252;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 6px;
  min-height: 16px;
}
/* Processing state — button shows spinner */
.btn-order-submit.processing {
  opacity: .7;
  pointer-events: none;
  cursor: not-allowed;
}

/* ════════════════════════════════════════════════════════════════
   ORDER SECTION — STEP 1: PRODUCT SELECTION + CART BAR
                   STEP 2: CHECKOUT FORM
════════════════════════════════════════════════════════════════ */

/* ── OUTER WRAP ──────────────────────────────────────────────── */
.order-section { background: var(--esp3); border-top: 1px solid var(--brd2); }
.order-wrap    { max-width: 760px; margin: 0 auto; }
.order-header  { text-align: center; margin-bottom: 48px; }
.order-subhead {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 3px; color: rgba(201,168,76,.5);
  text-transform: uppercase; margin-top: 10px;
}

/* ── STEP LABELS ─────────────────────────────────────────────── */
.order-step { margin-bottom: 0; }
.step-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.step-num {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--gold); flex-shrink: 0;
}
.step-title {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; color: var(--cr); text-transform: uppercase;
}
.step-back {
  background: none; border: none; cursor: pointer;
  color: rgba(201,168,76,.6); font-size: 20px;
  padding: 4px 8px 4px 0; line-height: 1;
  transition: color .2s;
}
.step-back:hover { color: var(--gold); }

/* ── PRODUCT SELECTION GRID ──────────────────────────────────── */
.product-select-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid rgba(201,168,76,.1);
}
.psg-row {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: background .18s;
  gap: 20px;
}
.psg-row:last-child { border-bottom: none; }
.psg-row.in-cart {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.18);
}
.psg-row.in-cart .psg-name { color: #fff; }
.psg-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.psg-name {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: var(--cr); line-height: 1.2;
}
.psg-detail {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; color: rgba(201,168,76,.55);
  text-transform: uppercase;
}
.psg-notes {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 1px; color: rgba(245,237,214,.35);
  margin-top: 2px;
}
.psg-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.psg-price {
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px;
  min-width: 48px; text-align: right;
}
.psg-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201,168,76,.3);
}
.qty-btn {
  width: 44px; height: 44px; min-height: 44px;
  background: transparent; border: none;
  color: var(--gold); font-size: 20px;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .15s; line-height: 1;
  font-family: var(--sans);
}
.qty-btn:hover, .qty-btn:active { background: rgba(201,168,76,.12); }
.qty-val {
  min-width: 40px; text-align: center;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  color: var(--cr);
}

/* ── CART BAR ────────────────────────────────────────────────── */
.cart-bar {
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.2);
  padding: 24px 28px;
  margin-top: 8px;
}
.cbi-row {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: 16px; font-weight: 300;
  color: var(--cr); padding: 6px 0;
}
.cart-bar-totals { margin-top: 16px; border-top: 1px solid rgba(201,168,76,.12); padding-top: 14px; }
.cart-bar-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 12px; letter-spacing: 2px;
  color: rgba(245,237,214,.6); padding: 7px 0;
}
.cart-bar-total {
  font-weight: 700; color: var(--cr);
  font-size: 14px; letter-spacing: 3px;
  border-top: 1px solid rgba(201,168,76,.15);
  margin-top: 6px; padding-top: 12px;
}
.cart-bar-total strong { color: var(--gold); font-size: 22px; }
.cart-checkout-btn {
  width: 100%; margin-top: 20px;
  padding: 18px; font-size: 12px; letter-spacing: 4px;
}
.cart-bar-hint {
  font-family: var(--sans); font-size: 11px; letter-spacing: 2px;
  color: rgba(201,168,76,.45); text-align: center;
  margin-top: 12px; text-transform: uppercase;
}

/* ── CHECKOUT FORM (step 2) ──────────────────────────────────── */
.checkout-form { padding-top: 0; }

.checkout-recap {
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 1px;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.recap-items {}
.recap-row {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: 15px; font-weight: 300;
  color: rgba(245,237,214,.8); padding: 5px 0;
}

.checkout-section-label {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 5px; color: var(--gold);
  text-transform: uppercase;
  margin: 32px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.checkout-fields { display: flex; flex-direction: column; gap: 16px; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf { display: flex; flex-direction: column; gap: 7px; }
.cf-full { width: 100%; }
.cf-narrow { width: 140px; }
.cf-quarter { width: 200px; }
.cf-optional { font-weight: 400; color: rgba(245,237,214,.35); font-size: 11px; }

/* ── ORDER TOTAL BAR (in step 2) ─────────────────────────────── */
.checkout-total-bar {
  background: var(--esp);
  border: 1px solid rgba(201,168,76,.15);
  padding: 20px 24px;
  margin: 28px 0 20px;
}
.ctb-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 12px; letter-spacing: 2px;
  color: rgba(245,237,214,.6); padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,.07);
}
.ctb-row:last-child { border-bottom: none; }
.ctb-total {
  color: var(--cr); font-weight: 700; font-size: 13px; letter-spacing: 3px;
  padding-top: 14px; margin-top: 6px;
  border-top: 1px solid rgba(201,168,76,.2) !important;
}
.ctb-total strong { color: var(--gold); font-size: 22px; }

/* ── FORM INPUTS (shared) ────────────────────────────────────── */
.cf label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; color: rgba(245,237,214,.5);
  text-transform: uppercase;
}
.cf input, .cf select, .cf textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--cr); padding: 13px 16px;
  font-family: var(--sans); font-size: 15px;
  width: 100%; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.cf input:focus, .cf select:focus, .cf textarea:focus {
  outline: none; border-color: rgba(201,168,76,.55);
}
.cf textarea { resize: vertical; min-height: 72px; }

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .order-wrap { padding: 0; }
  .order-header { margin-bottom: 36px; }

  /* Product rows: stack vertically */
  .psg-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 18px;
  }
  .psg-info { gap: 5px; }
  .psg-name { font-size: 20px; }
  .psg-detail { font-size: 11px; }
  .psg-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201,168,76,.1);
    padding-top: 16px;
  }
  .psg-price { font-size: 20px; min-width: auto; }
  .qty-btn { width: 52px; height: 52px; min-height: 52px; font-size: 24px; }
  .qty-val { min-width: 44px; font-size: 20px; }

  /* Cart bar */
  .cart-bar { padding: 20px 18px; }
  .cart-checkout-btn { padding: 20px; font-size: 12px; }

  /* Checkout form */
  .cf-row { grid-template-columns: 1fr; gap: 16px; }
  .cf-narrow, .cf-quarter { width: 100%; }
  .checkout-total-bar { padding: 18px; }
}

@media (max-width: 480px) {
  .psg-row { padding: 18px 14px; }
  .psg-name { font-size: 18px; }
  .qty-btn { width: 48px; height: 48px; min-height: 48px; }
  .cart-bar { padding: 16px 14px; }
}


@media (max-width: 480px) {
  .cart-prod-row { flex-wrap: wrap; }
  .cart-prod-price { order: 3; }
  .cart-qty-wrap { order: 4; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SOCIAL PROOF + VALUE PROP + GUARANTEE STRIP
═══════════════════════════════════════════════════════════════ */
.h-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.h-stars {
  color: #C9A84C;
  font-size: 22px;
  letter-spacing: 3px;
  flex-shrink: 0;
}
.h-proof-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: rgba(245,237,214,.9);
  line-height: 1.3;
}
.h-proof-text em {
  font-style: italic;
  color: #ffffff;
  font-family: var(--serif);
  font-weight: 400;
}
.h-value-prop {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: rgba(245,237,214,.9);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.h-hook {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  color: rgba(201,168,76,.6);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.h-guarantee-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.hg-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(245,237,214,.7);
  text-transform: uppercase;
}
.hg-icon {
  color: #C9A84C;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARD GUARANTEE LINE
═══════════════════════════════════════════════════════════════ */
.prod-guarantee {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(201,168,76,.55);
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SUBSCRIPTION VALUE ROW
═══════════════════════════════════════════════════════════════ */
.sub-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,.2);
  background: rgba(201,168,76,.04);
}
.sub-val-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px;
  gap: 4px;
}
.sub-val-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  text-align: center;
  width: 100%;
  display: block;
}
.sub-val-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(245,237,214,.5);
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  display: block;
}
.sub-val-div {
  width: 1px;
  height: 48px;
  background: rgba(201,168,76,.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDER VIDEO SECTION
═══════════════════════════════════════════════════════════════ */
.founder-video-wrap {
  margin: 48px 0;
}
.founder-video-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(8,6,4,.85);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,.06) 0%, transparent 70%);
}
.video-placeholder:hover { border-color: rgba(201,168,76,.5); }
.vp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.vp-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  padding-left: 5px;
  transition: all .25s;
  background: rgba(201,168,76,.08);
}
.video-placeholder:hover .vp-play {
  background: rgba(201,168,76,.2);
  border-color: var(--gold);
  transform: scale(1.08);
}
.vp-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.vp-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(245,237,214,.45);
  text-align: center;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 820px) {
  .h-value-prop { font-size: 17px; }
  
.h-hook {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  color: rgba(201,168,76,.6);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.h-guarantee-strip { gap: 12px; }
  .sub-value { max-width: 100%; }
  .sub-val-num { font-size: 24px; }
  .vp-play { width: 56px; height: 56px; font-size: 20px; }
  .h-social-proof { margin-bottom: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   SHOP TRUST BAR
════════════════════════════════════════════════════════════════ */
.shop-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 18px 24px;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.12);
  margin-bottom: 56px;
}
.stb-item {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(245,237,214,.65);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}
.stb-icon { color: var(--gold); font-size: 13px; }
.stb-sep { color: rgba(201,168,76,.25); font-size: 16px; }

/* ════════════════════════════════════════════════════════════════
   HERO SPECIFICS BAR
════════════════════════════════════════════════════════════════ */
.h-specifics {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 28px;
}
.h-specifics span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(201,168,76,.55);
  text-transform: uppercase;
}
.hs-sep {
  color: rgba(201,168,76,.25) !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
}

/* ════════════════════════════════════════════════════════════════
   WHY IT COSTS MORE
════════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--esp);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.why-head { text-align: center; margin-bottom: 12px; }
.why-intro {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,237,214,.6);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.8;
}
.why-intro-sub {
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(201,168,76,.55);
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
}
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.why-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  text-align: right;
  padding-top: 4px;
}
.why-body { flex: 1; }
.why-h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cr);
  margin-bottom: 12px;
  line-height: 1.2;
}
.why-p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2.0;
  color: var(--cr2);
}
.why-close {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(201,168,76,.7);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,.12);
}

/* ════════════════════════════════════════════════════════════════
   MORNING RITUAL SECTION
════════════════════════════════════════════════════════════════ */
.ritual-section {
  background: linear-gradient(to bottom, var(--esp) 0%, rgba(14,10,6,1) 100%);
}
.ritual-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ritual-head { margin-bottom: 16px; }
.ritual-sub {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,237,214,.6);
  line-height: 1.65;
  margin-bottom: 64px;
}
.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: left;
  margin-bottom: 52px;
}
.ritual-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.ritual-step:last-child { border-bottom: none; padding-bottom: 0; }
.rs-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: .18;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  padding-top: 2px;
}
.rs-content { flex: 1; }
.rs-h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cr);
  margin-bottom: 14px;
  line-height: 1.2;
}
.rs-p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2.0;
  color: var(--cr2);
}
.ritual-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ── MOBILE OVERRIDES ────────────────────────────────────── */
@media (max-width: 820px) {
  .shop-trust-bar { gap: 10px 16px; padding: 14px 16px; }
  .stb-item { font-size: 10px; letter-spacing: 1px; }
  .stb-sep { display: none; }
  .h-specifics { gap: 8px; }
  .h-specifics span { font-size: 10px; }
  .hs-sep { display: none !important; }
  .why-intro { font-size: 17px; margin-bottom: 36px; }
  .why-grid { gap: 36px; }
  .why-item { gap: 20px; }
  .why-num { font-size: 36px; width: 36px; }
  .why-h { font-size: 20px; }
  .why-p { font-size: 16px; line-height: 1.9; }
  .ritual-sub { font-size: 17px; margin-bottom: 44px; }
  .ritual-steps { gap: 36px; }
  .ritual-step { gap: 18px; padding-bottom: 36px; }
  .rs-num { font-size: 34px; width: 32px; }
  .rs-h { font-size: 20px; }
  .rs-p { font-size: 16px; line-height: 1.9; }
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT IMAGE ZOOM PANEL + LIGHTBOX
════════════════════════════════════════════════════════════════ */

/* Image block — hover trigger zone */
.prod-img-block {
  position: relative;
  cursor: zoom-in;
  overflow: visible !important; /* allow zoom panel to escape */
}

/* Small "zoom" hint text */
.prod-img-block .mag-hint {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(201,168,76,.4);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  transition: opacity .2s;
}
.prod-img-block:hover .mag-hint { opacity: 0; }

/* Highlight box — shows the zoomed region on the original image */
.zoom-highlight {
  position: absolute;
  border: 1px solid rgba(201,168,76,.6);
  background: rgba(201,168,76,.08);
  pointer-events: none;
  display: none;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(0,0,0,.3);
}

/* Zoom panel — appears to the right of the card */
.zoom-panel {
  position: fixed;
  width: 380px;
  height: 380px;
  background: #0E0A06;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  display: none;
  overflow: hidden;
  z-index: 9000;
  pointer-events: none;
}
.zoom-panel-img {
  position: absolute;
  background-repeat: no-repeat;
  background-color: #0E0A06;
  width: 100%;
  height: 100%;
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
#bagLightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
  animation: lbIn .25s ease;
}
#bagLightbox.open { display: flex; }
@keyframes lbIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#bagLightbox img {
  max-height: 82vh;
  max-width: 88vw;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.8));
  animation: lbImgIn .3s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
@keyframes lbImgIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
#bagLightbox .lb-close {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; color: rgba(201,168,76,.5);
  cursor: pointer; text-transform: uppercase;
  transition: color .2s; z-index: 10;
}
#bagLightbox .lb-close:hover { color: var(--gold); }
#bagLightbox .lb-name {
  position: absolute; bottom: 28px;
  left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  letter-spacing: 4px; color: rgba(245,237,214,.6);
  white-space: nowrap; text-align: center;
}
#bagLightbox .lb-sub {
  position: absolute; bottom: 10px;
  left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; color: rgba(201,168,76,.4);
  white-space: nowrap; text-transform: uppercase;
}

/* Hide zoom panel on mobile — tap opens lightbox instead */
@media (max-width: 820px) {
  .zoom-panel { display: none !important; }
  .zoom-highlight { display: none !important; }
  .prod-img-block { cursor: zoom-in; }
}
