/* ============================================================
   OH MY HECK! — MORMON COFFEE
   Premium + bold (Liquid Death energy × Everyday Dose polish)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Brand palette */
  --bg:        #14100c;      /* near-black roast */
  --bg-2:      #1d1610;      /* lifted panel */
  --bg-3:      #271d15;      /* card */
  --cream:     #f5ede0;      /* powder cream text */
  --cream-dim: #c9bca7;
  --gold:      #d9a441;      /* sanction gold */
  --gold-2:    #f0c25c;
  --rust:      #b34a1f;      /* roasted rust accent */
  --leaf:      #6f9c4b;      /* capomo leaf green */
  --ink:       #0a0705;
  --line:      rgba(245,237,224,0.12);
  --line-2:    rgba(245,237,224,0.22);

  /* Type */
  --ff-display: 'Anton', 'Arial Narrow', sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --sh-1: 0 4px 18px rgba(0,0,0,0.35);
  --sh-2: 0 18px 60px rgba(0,0,0,0.55);
  --sh-glow: 0 0 50px rgba(217,164,65,0.35);

  /* Layout */
  --container: 1240px;
  --header-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 880px; }
section { position: relative; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.display, .section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
.display { font-size: clamp(3rem, 9vw, 7.2rem); }
.section-title { font-size: clamp(2.2rem, 5.5vw, 4.4rem); }
.section-title.light { color: var(--cream); }
.section-title.small { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.hl { color: var(--gold); }
.hl-stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-stroke: 2px var(--gold);
}
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 12px;
}
.eyebrow.light { color: var(--gold-2); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-sub { font-size: 1.05rem; color: var(--cream-dim); margin-top: 16px; }
.section-sub.light { color: var(--cream-dim); }

/* ---------- BUTTONS ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 6px 20px rgba(217,164,65,0.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217,164,65,0.45); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-2); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--line-2);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(217,164,65,0.06); }

/* ---------- ANNOUNCE BAR ---------- */
.announce {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.announce-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollX 36s linear infinite;
}
.announce-track span { margin: 0 22px; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,16,12,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.site-header.scrolled { background: rgba(20,16,12,0.96); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.brand-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
}
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  transition: color .15s ease;
  position: relative;
}
.main-nav a:hover { color: var(--cream); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--cream);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: border-color .15s ease, color .15s ease;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 4px;
}
.menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--cream); display: block; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 28px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 1.4rem; font-family: var(--ff-display); text-transform: uppercase; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 40px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 78% 18%, rgba(217,164,65,0.22), transparent 60%),
    radial-gradient(900px 500px at 8% 90%, rgba(179,74,31,0.22), transparent 60%),
    linear-gradient(180deg, #1a130d 0%, #0e0a07 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,237,224,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: center;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--cream-dim);
  max-width: 540px;
  margin: 24px 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--ff-display); font-size: 1.7rem; color: var(--cream); }
.trust-item span { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }
.trust-divider { width: 1px; height: 38px; background: var(--line-2); }

.hero-visual { display: grid; place-items: center; position: relative; align-self: start; padding-top: 60px; }
.bag-float { position: relative; }
.hero-bag {
  width: min(520px, 95%);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.splash {
  position: absolute;
  top: -18px; right: -28px;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold);
  transform: rotate(8deg);
  background: var(--ink);
  border: 2px solid var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--sh-glow);
}

/* Marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  padding: 14px 0;
}
.bottom-marquee { margin-top: 70px; }
.marquee-track {
  display: inline-block;
  animation: scrollX 30s linear infinite;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.marquee-track span { color: var(--cream); margin: 0 6px; }
.marquee-track .dot { color: var(--gold); }

/* ---------- PROOF BAR ---------- */
.proof-bar { padding: 36px 0; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.proof-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.proof-num { font-family: var(--ff-display); font-size: 1.5rem; color: var(--gold); }
.proof-label { font-size: 0.82rem; color: var(--cream-dim); }

/* ---------- WHY MORMON COFFEE ---------- */
.why-section { padding: 110px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 980px; margin: 0 auto; }
.why-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 42px 36px; transition: transform .2s ease, border-color .2s ease; }
.why-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.why-badge { display: inline-block; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; background: rgba(217,164,65,0.14); color: var(--gold); border: 1px solid rgba(217,164,65,0.4); margin-bottom: 18px; }
.why-badge.alt { background: rgba(111,156,75,0.14); color: var(--leaf); border-color: rgba(111,156,75,0.4); }
.why-card h3 { font-family: var(--ff-display); font-size: 1.7rem; margin: 0 0 12px; text-transform: uppercase; line-height: 1.05; }
.why-card p { color: var(--cream-dim); margin: 0; font-size: 1.02rem; }

/* ---------- PRODUCT ---------- */
.product-section { padding: 110px 0; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-gallery { position: sticky; top: 100px; align-self: stretch; display: flex; flex-direction: column; }
.gallery-main {
  flex: 1;
  background: radial-gradient(circle at 50% 40%, rgba(217,164,65,0.15), transparent 65%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px;
  display: grid;
  place-items: center;
  min-height: 400px;
}
.gallery-main img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; border-radius: var(--r-lg); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)); }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 18px; justify-content: center; }
.thumb {
  width: 78px; height: 78px;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--bg-3);
  padding: 0;
  transition: border-color .15s ease, transform .15s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--gold); transform: translateY(-2px); }

.product-tagline { font-size: 1.25rem; color: var(--gold-2); font-weight: 600; margin: 6px 0 18px; }
.product-desc { color: var(--cream-dim); font-size: 1.05rem; }
.feature-list { margin: 26px 0; display: grid; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; }
.check {
  color: var(--ink);
  background: var(--gold);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 900;
  flex-shrink: 0; margin-top: 2px;
}
.product-price-row { display: flex; align-items: baseline; gap: 12px; margin: 26px 0 22px; flex-wrap: wrap; }
.price { font-family: var(--ff-display); font-size: 3rem; color: var(--cream); }
.price-sub { color: var(--cream-dim); }
.price-note { color: var(--gold); font-weight: 600; font-size: 0.92rem; }
.ship-note { text-align: center; color: var(--cream-dim); font-size: 0.85rem; margin-top: 12px; }

/* ---------- CAFFEINE SELECTOR ---------- */
.caffeine-section {
  padding: 110px 0;
  background:
    radial-gradient(800px 500px at 80% 20%, rgba(179,74,31,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.caffeine-builder {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.cafdial-wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cafdial {
  position: relative;
  width: 260px; height: 260px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.cafdial-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 14px solid rgba(245,237,224,0.07);
}
.cafdial-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--caf-pct,0%) * 1%), rgba(245,237,224,0.07) 0);
  -webkit-mask: radial-gradient(circle, transparent 56%, #000 57%);
          mask: radial-gradient(circle, transparent 56%, #000 57%);
  transition: background .25s ease;
}
.cafdial-center { text-align: center; z-index: 2; }
.caf-value { display: block; font-family: var(--ff-display); font-size: 4rem; color: var(--cream); line-height: 1; }
.caf-unit { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); }
.caf-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 380px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cream-dim), var(--gold));
  outline: none;
}
.caf-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--gold);
  box-shadow: var(--sh-1);
  cursor: pointer;
}
.caf-slider::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--gold);
  cursor: pointer;
}
.caf-modes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.caf-mode {
  text-align: left;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 18px 16px;
  color: var(--cream);
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.caf-mode strong { display: block; font-family: var(--ff-display); font-size: 1.7rem; color: var(--gold); }
.caf-mode span { display: block; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; margin: 4px 0 6px; }
.caf-mode em { font-style: normal; font-size: 0.82rem; color: var(--cream-dim); }
.caf-mode:hover { transform: translateY(-3px); border-color: var(--line-2); }
.caf-mode.active { border-color: var(--gold); background: linear-gradient(180deg, rgba(217,164,65,0.12), rgba(217,164,65,0.03)); }
.caf-result {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.caf-result-label { margin: 0; color: var(--cream-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.caf-result-name { margin: 0; font-family: var(--ff-display); font-size: 1.4rem; color: var(--cream); }

/* ---------- TASTE CARDS ---------- */
.taste-section { padding: 100px 0; }
.taste-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.taste-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  transition: transform .2s ease, border-color .2s ease;
}
.taste-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.taste-icon { font-size: 2.4rem; margin-bottom: 12px; }
.taste-card h3 { font-family: var(--ff-display); font-size: 1.35rem; margin: 0 0 8px; text-transform: uppercase; }
.taste-card p { color: var(--cream-dim); font-size: 0.95rem; margin: 0; }

/* ---------- STORY ---------- */
.story-section { padding: 110px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.story-visual { position: relative; }
.story-visual img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
}
.story-stamp {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--ff-display);
  background: var(--ink);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  letter-spacing: 0.1em;
}
.story-lead { font-size: 1.2rem; color: var(--cream); }
.story-copy p { color: var(--cream-dim); }
.story-signoff { color: var(--cream) !important; margin-top: 24px; }

/* ---------- HEALTH ---------- */
.health-section {
  padding: 110px 0;
  background:
    radial-gradient(700px 500px at 15% 30%, rgba(111,156,75,0.16), transparent 60%),
    var(--bg);
}
.health-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.health-col {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
}
.health-col h3 { font-family: var(--ff-display); font-size: 1.6rem; margin: 0 0 22px; text-transform: uppercase; }
.health-col ul { display: grid; gap: 14px; }
.health-col li { padding-left: 26px; position: relative; color: var(--cream-dim); }
.health-col li::before { content: '✓'; position: absolute; left: 0; top: 2px; color: var(--leaf); font-weight: 900; }
.health-col li strong { color: var(--cream); }

/* ---------- HOW TO ---------- */
.how-section { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-step {
  text-align: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 28px;
}
.step-num { font-family: var(--ff-display); font-size: 3rem; color: var(--gold); margin-bottom: 10px; }
.how-step h3 { font-family: var(--ff-display); font-size: 1.6rem; margin: 0 0 8px; text-transform: uppercase; }
.how-step p { color: var(--cream-dim); margin: 0; }

/* ---------- REVIEWS ---------- */
.reviews-section { padding: 110px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  margin: 0;
}
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 18px; font-size: 1.05rem; line-height: 1.5; color: var(--cream); }
.review-card figcaption { color: var(--cream-dim); font-size: 0.88rem; }

/* ---------- SHOP ---------- */
.shop-section { padding: 110px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 40px; }
.shop-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, border-color .2s ease;
}
.shop-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.shop-card.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(217,164,65,0.1), rgba(217,164,65,0.02)); }
.shop-badge {
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.shop-card img { width: 100%; max-width: 150px; margin: 0 auto; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.5)); }
.shop-card h3 { font-family: var(--ff-display); font-size: 1.3rem; margin: 0; text-transform: uppercase; }
.shop-card .caf-tag { color: var(--gold); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; }
.shop-card .shop-price { font-family: var(--ff-display); font-size: 1.8rem; color: var(--cream); }
.shop-card .shop-price s { color: var(--cream-dim); font-size: 1rem; margin-left: 8px; opacity: 0.7; }
.shop-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.shop-qty button {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--cream);
  font-size: 1.1rem;
  display: grid; place-items: center;
}
.shop-qty button:hover { border-color: var(--gold); color: var(--gold); }
.shop-qty span { min-width: 28px; text-align: center; font-weight: 700; }
.shop-card .btn { margin-top: auto; }

.subscribe-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--bg-3);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  padding: 26px;
}
.subscribe-cta h3 { margin: 0; font-family: var(--ff-display); font-size: 1.4rem; }
.subscribe-cta p { margin: 4px 0 0; color: var(--cream-dim); font-size: 0.9rem; }
.subscribe-save { color: var(--leaf); font-weight: 800; font-size: 0.9rem; }
.switch { position: relative; display: inline-block; width: 56px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: .2s;
}
.switch-slider::before {
  content: ''; position: absolute;
  height: 22px; width: 22px;
  left: 3px; top: 3px;
  background: var(--cream-dim);
  border-radius: 50%;
  transition: .2s;
}
.switch input:checked + .switch-slider { background: rgba(217,164,65,0.25); border-color: var(--gold); }
.switch input:checked + .switch-slider::before { transform: translateX(26px); background: var(--gold); }

/* ---------- UGC ---------- */
.ugc-section { padding: 100px 0; }
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.ugc-tile {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.ugc-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.ugc-tile:hover img { transform: scale(1.08); }
.social-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(217,164,65,0.06); }
.social-link svg { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */
.faq-section { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 4px 22px;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; color: var(--cream-dim); }
.faq-a p { margin: 0; }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  padding: 70px 0;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(217,164,65,0.18), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--line);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--cream);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 1rem;
  min-width: 260px;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); padding: 64px 0 28px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 44px;
}
.footer-logo { width: 56px; height: 56px; border-radius: 10px; margin-bottom: 14px; }
.footer-tagline { color: var(--cream-dim); max-width: 280px; margin: 0 0 18px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream-dim);
  transition: border-color .15s, color .15s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.footer-col a { display: block; color: var(--cream-dim); margin-bottom: 10px; font-size: 0.92rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--cream-dim);
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--cream); }
.pay-badge {
  background: rgba(217,164,65,0.12);
  color: var(--gold);
  border: 1px solid rgba(217,164,65,0.3);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
}

/* ---------- CART DRAWER ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 200;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { margin: 0; font-family: var(--ff-display); font-size: 1.5rem; text-transform: uppercase; }
.cart-close { background: none; border: none; color: var(--cream); font-size: 1.8rem; line-height: 1; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { color: var(--cream-dim); text-align: center; margin-top: 40px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--line); }
.cart-item h4 { margin: 0; font-size: 0.95rem; }
.cart-item .ci-sub { font-size: 0.8rem; color: var(--cream-dim); }
.cart-item .ci-price { font-weight: 700; color: var(--gold); }
.ci-controls { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.ci-controls button {
  width: 26px; height: 26px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 6px;
}
.ci-controls button:hover { border-color: var(--gold); color: var(--gold); }
.ci-remove { background: none !important; border: none !important; color: var(--cream-dim) !important; font-size: 0.78rem; margin-left: 8px; text-decoration: underline; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.cart-subtotal span:last-child { color: var(--gold); }
.cart-ship { font-size: 0.82rem; color: var(--cream-dim); margin: 0 0 14px; }
.cart-secure { text-align: center; color: var(--cream-dim); font-size: 0.78rem; margin: 10px 0 0; }

/* ---------- PAYMENT MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.pay-modal {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 460px;
  padding: 32px;
  position: relative;
  box-shadow: var(--sh-2);
}
.pay-close { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--cream); font-size: 1.6rem; }
.pay-head { text-align: center; margin-bottom: 24px; }
.pay-head img { width: 50px; height: 50px; border-radius: 10px; margin: 0 auto 12px; }
.pay-head h3 { margin: 0 0 4px; font-family: var(--ff-display); font-size: 1.5rem; text-transform: uppercase; }
.pay-total { color: var(--cream-dim); margin: 8px 0 0; }
.pay-total strong { color: var(--gold); }
#card-container { margin-bottom: 18px; }
#payment-status { margin-top: 14px; font-size: 0.9rem; text-align: center; min-height: 20px; }
#payment-status.success { color: var(--leaf); }
#payment-status.error { color: var(--rust); }
.pay-foot { text-align: center; color: var(--cream-dim); font-size: 0.78rem; margin: 16px 0 0; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translate(-50%, 120%);
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 400;
  box-shadow: var(--sh-2);
  transition: transform .3s ease;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-bag { width: min(380px, 80%); }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .caffeine-builder { grid-template-columns: 1fr; gap: 36px; }
  .taste-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .health-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .display { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .caf-modes { grid-template-columns: 1fr; }
  .taste-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 0; width: 100%; }
  .cart-drawer { width: 100%; }
  .hero-trust { gap: 14px; }
  .trust-divider { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}