/* ============================================================
   The Scoop — Design System
   Brand: #1F1F1F charcoal · #E0B776 gold · Poppins + DM Sans
   Theme: dark default, system-responsive, manual override via
   data-theme on <html>.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { margin: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; }

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — only two official colors */
  --gold: #E0B776;
  --gold-hover: #CAA56B; /* Shopify embed hover, used sitewide for consistency */
  --ink: #1F1F1F;

  /* Derived neutrals */
  --paper: #FAF7F1;
  --cream: #F4ECDC;

  /* Theme — dark default (no media query override needed) */
  --bg: var(--ink);
  --surface: var(--ink);
  --text: var(--paper);
  --text-muted: rgba(250, 247, 241, 0.62);
  --text-dim: rgba(250, 247, 241, 0.4);
  --text-inverse: var(--ink);
  --rule: rgba(250, 247, 241, 0.14);
  --rule-strong: rgba(250, 247, 241, 0.28);
  --rule-gold: rgba(224, 183, 118, 0.22);
  --ghost-gold: rgba(224, 183, 118, 0.06);
  --ghost-ink: rgba(31, 31, 31, 0.04);
  --card-bg: #262626; /* derived: tints of ink for card fills on dark */

  /* Spacing scale — responsive via clamp in container */
  --section-y: 72px;
  --section-x: 20px;
  --container-max: 1312px;

  /* Radii */
  --r-sm: 2px;
  --r-md: 4px;
  --r-btn: 10px;

  /* Fonts */
  --f-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.3,1);
  --d-fast: 0.15s;
  --d-med: 0.25s;
}

@media (min-width: 600px) {
  :root { --section-y: 96px; --section-x: 32px; }
}
@media (min-width: 900px) {
  :root { --section-y: 120px; --section-x: 48px; }
}
@media (min-width: 1200px) {
  :root { --section-y: 140px; --section-x: 64px; }
}

/* Light-mode mapping — flips when system is light UNLESS
   a manual data-theme="dark" override is set on <html>. */
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) {
    --bg: var(--paper);
    --surface: var(--paper);
    --text: var(--ink);
    --text-muted: rgba(31, 31, 31, 0.62);
    --text-dim: rgba(31, 31, 31, 0.4);
    --text-inverse: var(--paper);
    --rule: rgba(31, 31, 31, 0.14);
    --rule-strong: rgba(31, 31, 31, 0.28);
    --rule-gold: rgba(31, 31, 31, 0.22);
    --ghost-gold: rgba(224, 183, 118, 0.14);
    --ghost-ink: rgba(31, 31, 31, 0.04);
    --card-bg: #FFFFFF;
  }
}
html[data-theme="light"] {
  --bg: var(--paper);
  --surface: var(--paper);
  --text: var(--ink);
  --text-muted: rgba(31, 31, 31, 0.62);
  --text-dim: rgba(31, 31, 31, 0.4);
  --text-inverse: var(--paper);
  --rule: rgba(31, 31, 31, 0.14);
  --rule-strong: rgba(31, 31, 31, 0.28);
  --rule-gold: rgba(31, 31, 31, 0.22);
  --ghost-gold: rgba(224, 183, 118, 0.14);
  --ghost-ink: rgba(31, 31, 31, 0.04);
  --card-bg: #FFFFFF;
}

html[data-theme="dark"] { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }

/* ---------- Base ---------- */
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Type scale ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0;
  line-height: 0.95;
}

.h-hero   { font-family: var(--f-heading); font-weight: 600; letter-spacing: -0.045em; line-height: 0.88; font-size: clamp(56px, 13vw, 148px); }
.h-1      { font-family: var(--f-heading); font-weight: 600; letter-spacing: -0.035em; line-height: 0.9;  font-size: clamp(44px, 9vw, 108px); }
.h-2      { font-family: var(--f-heading); font-weight: 600; letter-spacing: -0.035em; line-height: 0.9;  font-size: clamp(36px, 7vw, 86px); }
.h-3      { font-family: var(--f-heading); font-weight: 600; letter-spacing: -0.03em;  line-height: 1.05; font-size: clamp(28px, 4vw, 44px); }
.h-4      { font-family: var(--f-heading); font-weight: 600; letter-spacing: -0.02em;  line-height: 1.2;  font-size: clamp(22px, 2.8vw, 28px); }

.lead     { font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: var(--text-muted); }
.body     { font-size: 16px; line-height: 1.6; }
.small    { font-size: 14px; line-height: 1.55; color: var(--text-muted); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.eyebrow.with-rule::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.chapter {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
/* In light mode, gold on cream/paper is low-contrast — switch to dark muted. */
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .chapter { color: rgba(31, 31, 31, 0.7); }
}
html[data-theme="light"] .chapter { color: rgba(31, 31, 31, 0.7); }

.italic-accent { font-style: italic; font-weight: 500; }
.gold { color: var(--gold); }
.muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: background-color var(--d-fast) var(--ease),
              color var(--d-fast) var(--ease),
              border-color var(--d-fast) var(--ease),
              transform var(--d-fast) var(--ease);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--gold-hover); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--text); color: var(--bg); }

.btn-invert { background: var(--text); color: var(--bg); }
.btn-invert:hover, .btn-invert:focus-visible { background: var(--gold); color: var(--ink); }

.btn-link {
  background: transparent;
  color: var(--text);
  padding: 4px 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.btn-link:hover { color: var(--gold); }

.btn-lg { padding: 20px 36px; font-size: 14px; letter-spacing: 0.1em; }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; }

.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: progress;
  pointer-events: none;
}
.btn.is-sold-out,
.btn.is-sold-out:hover {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.section { padding: var(--section-y) var(--section-x); }
.section--flush { padding-left: 0; padding-right: 0; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--cream .chapter,
.section--cream .eyebrow { color: rgba(31,31,31,0.7); }
.section--cream .eyebrow.with-rule::before,
.section--cream .chapter::before { background: rgba(31,31,31,0.7); }
.section--cream .muted { color: rgba(31,31,31,0.62); }
.section--gold { background: var(--gold); color: var(--ink); }

.rule { height: 1px; background: var(--rule); border: none; margin: 0; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--section-x);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 50;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; transition: opacity var(--d-fast) var(--ease); }
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: none;
  gap: 32px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color var(--d-fast) var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cart {
  display: none;
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--d-fast) var(--ease);
}
.nav-cart:hover { color: var(--text); }

.nav-cta { display: none; }

.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background-color var(--d-fast) var(--ease);
}
.nav-toggle:hover { background: var(--rule); }

@media (min-width: 768px) {
  .nav { padding: 20px var(--section-x); }
  .nav-logo img { height: 56px; }
  .nav-cart { display: inline; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}
@media (min-width: 1200px) {
  .nav-logo img { height: 72px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  padding: 20px var(--section-x) 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--d-med) var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu-head img { height: 44px; width: auto; }
.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.mobile-menu-close:hover { background: var(--rule); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 48px;
}
.mobile-menu-links a {
  display: block;
  padding: 12px 0;
  transition: color var(--d-fast) var(--ease);
  border-bottom: 1px solid var(--rule);
}
.mobile-menu-links a:hover,
.mobile-menu-links a[aria-current="page"] { color: var(--gold); }

.mobile-menu-meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.8;
}

@media (min-width: 900px) {
  .mobile-menu { display: none; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 72px var(--section-x) 40px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 18px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.footer-signup {
  display: flex;
  gap: 8px;
  max-width: 400px;
  flex-wrap: wrap;
}
.footer-signup input {
  flex: 1;
  min-width: 180px;
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--text);
  padding: 12px 16px;
  font-size: 13px;
  border-radius: var(--r-btn);
  outline: none;
  transition: border-color var(--d-fast) var(--ease);
}
.footer-signup input::placeholder { color: var(--text-dim); }
.footer-signup input:focus { border-color: var(--gold); }

.footer-col h4 {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--d-fast) var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-social:hover { color: var(--text); }

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; gap: 24px; }
}

/* ---------- Ticker / marquee ---------- */
.ticker {
  background: var(--gold);
  color: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ticker-track .sep { font-size: 12px; opacity: 0.7; }
@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (min-width: 768px) {
  .ticker { padding: 18px 0; }
  .ticker-track { font-size: 22px; gap: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Section label / chapter rule ---------- */
.section-header {
  display: grid;
  gap: 32px;
  margin-bottom: 56px;
}
.section-header__intro { max-width: 580px; }
@media (min-width: 900px) {
  .section-header { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 64px; align-items: end; }
  .section-header--split { grid-template-columns: 1fr auto; align-items: baseline; }
  .section-header { margin-bottom: 72px; }
}

/* ---------- Cards / chips / specs ---------- */
.step-card {
  background: var(--card-bg);
  color: var(--text);
  padding: 28px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--rule);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--d-med) var(--ease), transform var(--d-med) var(--ease);
}
.step-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.step-card__num {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.step-card__title {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--text);
}
.step-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
@media (min-width: 768px) {
  .step-card { padding: 32px 28px; min-height: 280px; }
  .step-card__num { font-size: 64px; margin-bottom: 32px; }
  .step-card__title { font-size: 28px; }
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(31,31,31,0.12);
  border: 1px solid rgba(31,31,31,0.12);
}
.spec-grid__cell {
  background: var(--cream);
  padding: 20px 22px;
}
.spec-grid__big {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.spec-grid__small {
  font-size: 11px;
  color: rgba(31,31,31,0.62);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .spec-grid__big { font-size: 22px; }
  .spec-grid__small { font-size: 12px; }
  .spec-grid__cell { padding: 22px 24px; }
}

/* Floating sticker */
.sticker {
  background: var(--gold);
  color: var(--ink);
  padding: 12px 16px;
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  border-radius: var(--r-sm);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.sticker--rotate { transform: rotate(4deg); }
@media (min-width: 768px) {
  .sticker { padding: 14px 18px; font-size: 13px; }
}

.chip {
  background: var(--paper);
  color: var(--ink);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--r-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.chip__num {
  font-family: var(--f-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.chip__body { line-height: 1.3; font-size: 13px; }
.chip__body .muted { color: rgba(31,31,31,0.62); display: block; }
@media (min-width: 768px) {
  .chip { padding: 18px 22px; }
  .chip__num { font-size: 28px; }
}

/* ---------- Comparison table ---------- */
.compare {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-md);
  border: 1px solid rgba(250,247,241,0.14);
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(250,247,241,0.14);
  align-items: center;
  font-size: 14px;
  gap: 12px;
}
.compare__row:last-child { border-bottom: none; }
.compare__row--head {
  font-family: var(--f-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 22px 20px;
}
.compare__row--head span:first-child { color: rgba(250,247,241,0.62); }
.compare__row--head .compare__scoop { color: var(--gold); }
.compare__row--head .compare__alt { color: rgba(250,247,241,0.62); }
.compare__icon { display: inline-flex; align-items: center; }
.compare__maybe { font-family: var(--f-heading); font-weight: 600; font-size: 13px; color: var(--gold); letter-spacing: 0.04em; }
@media (min-width: 768px) {
  .compare__row { padding: 22px 32px; font-size: 16px; }
  .compare__row--head { padding: 24px 32px; font-size: 14px; letter-spacing: 0.08em; }
}

/* ---------- Utility ---------- */
.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--stack, 16px); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--cluster, 16px); align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
@media (min-width: 1200px) {
  .grid-2 { gap: 64px; }
}

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

.skip-link {
  position: absolute; top: 8px; left: 8px; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 10px 16px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  transform: translateY(-200%);
  transition: transform var(--d-fast) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   PAGE: Home
   ============================================================ */

.hero {
  position: relative;
  padding: 48px var(--section-x) 40px;
  overflow: hidden;
}
.hero__ghost {
  position: absolute;
  top: 56%;
  left: -4%;
  right: -4%;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: clamp(140px, 36vw, 360px);
  line-height: 0.85;
  color: var(--ghost-gold);
  letter-spacing: -0.06em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  transform: translateY(-50%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
  max-width: var(--container-max);
  margin: 0 auto;
}
.hero__head .eyebrow {
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-size: clamp(64px, 16vw, 148px);
  margin: 0;
}
.hero__title span { display: block; }
.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 480px;
  margin: 28px 0 0;
}
.hero__media {
  position: relative;
}
.hero__image {
  aspect-ratio: 1 / 1.1;
  background: var(--ink);
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hero__image:hover img { transform: scale(1.02); }
.hero__sticker {
  position: absolute;
  top: 16px;
  right: -10px;
}
.hero__chip {
  position: absolute;
  bottom: -16px;
  left: -16px;
  max-width: 85%;
}
.hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  align-items: flex-start;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
.hero__cta-row .meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.8;
}

@media (min-width: 600px) {
  .hero { padding: 64px var(--section-x) 56px; }
  .hero__cta-row { flex-direction: row; align-items: center; gap: 24px; }
  .hero__cta-row .meta { margin-left: auto; text-align: right; }
  .hero__sticker { right: -16px; }
  .hero__chip { bottom: -20px; left: -20px; }
}
@media (min-width: 900px) {
  .hero { padding: 80px var(--section-x) 56px; }
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (min-width: 1200px) {
  .hero { padding: 80px var(--section-x) 64px; }
  .hero__inner { gap: 64px; }
}

/* Problem strip */
.problem {
  padding: 56px var(--section-x);
  border-bottom: 1px solid var(--rule);
}
.problem__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: baseline;
}
.problem__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 0.95;
  margin: 0;
}
.problem__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.problem__body { color: var(--text-muted); max-width: 460px; font-size: 16px; line-height: 1.6; margin: 0; }
@media (min-width: 768px) {
  .problem { padding: 80px var(--section-x); }
  .problem__inner { grid-template-columns: 1.6fr 1fr; gap: 64px; }
}
@media (min-width: 1200px) {
  .problem { padding: 100px var(--section-x); }
}

/* Showcase (cream inset) */
.showcase {
  position: relative;
  overflow: hidden;
}
.showcase__ghost {
  position: absolute;
  top: -40px;
  right: -60px;
  font-family: var(--f-heading);
  font-weight: 700;
  color: var(--ghost-ink);
  font-size: clamp(180px, 38vw, 380px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.showcase__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}
.showcase__media {
  position: relative;
  order: -1;
}
.showcase__media-frame {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px rgba(31,31,31,0.2);
}
.showcase__media-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transform: scale(1.05);
}
.showcase__media-sticker {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--ink);
  color: var(--gold);
  padding: 14px 18px;
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.showcase__body .chapter { color: rgba(31,31,31,0.62); font-size: 12px; margin: 0 0 18px; max-width: none; }
.showcase__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.9;
  font-size: clamp(42px, 8vw, 96px);
  color: var(--ink);
  margin: 0 0 28px;
}
.showcase__body p {
  color: rgba(31,31,31,0.62);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 40px;
}
@media (min-width: 900px) {
  .showcase__inner { grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
  .showcase__media { order: 0; display: flex; }
  .showcase__media-frame { aspect-ratio: unset; flex: 1; }
}
@media (min-width: 1200px) {
  .showcase__inner { gap: 64px; }
}

/* Story / founder */
.story {
  padding: var(--section-y) var(--section-x);
  border-top: 1px solid var(--rule);
}
.story__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.story__chapter { margin-bottom: 36px; }
.story__quote {
  font-family: var(--f-heading);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-size: clamp(28px, 5vw, 52px);
  margin: 0 0 40px;
}
.story__quote em {
  color: var(--gold);
  font-style: italic;
}
.story__attr {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.story__attr strong { color: var(--text); font-weight: 600; margin-right: 6px; }

/* Big gold CTA section */
.buy-cta {
  padding: var(--section-y) var(--section-x);
  position: relative;
  overflow: hidden;
}
.buy-cta__ghost {
  position: absolute;
  top: -40px;
  left: -40px;
  font-family: var(--f-heading);
  font-weight: 700;
  color: rgba(31,31,31,0.08);
  font-size: clamp(200px, 44vw, 440px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.buy-cta__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.buy-cta__head .eyebrow { color: rgba(31,31,31,0.8); }
.buy-cta__head .eyebrow.with-rule::before { background: rgba(31,31,31,0.8); }
.buy-cta__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.88;
  font-size: clamp(52px, 11vw, 128px);
  margin: 20px 0 0;
  color: var(--ink);
}
.buy-cta__body p {
  color: var(--ink);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.55;
  margin: 0 0 24px;
}
.buy-cta__body .btn { width: 100%; margin-bottom: 12px; }
.buy-cta__body .btn-invert { background: var(--ink); color: var(--gold); }
.buy-cta__body .btn-invert:hover { background: #2d2d2d; color: var(--gold); }
.buy-cta__body .btn-ghost { border-color: var(--ink); color: var(--ink); }
.buy-cta__body .btn-ghost:hover { background: var(--ink); color: var(--gold); }
@media (min-width: 900px) {
  .buy-cta__inner { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}

/* How it works section */
.how {
  padding: var(--section-y) var(--section-x);
}
.how__inner { max-width: var(--container-max); margin: 0 auto; }
.how__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .how__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .how__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* Compare section wrapper */
.compare-section {
  padding: var(--section-y) var(--section-x);
}
.compare-section__inner { max-width: var(--container-max); margin: 0 auto; }
.compare-section__header { margin-bottom: 40px; }
.compare-section__title { font-family: var(--f-heading); font-weight: 600; letter-spacing: -0.035em; line-height: 0.9; font-size: clamp(36px, 7vw, 86px); margin: 0; }
.compare-section__meta { color: var(--text-muted); font-size: 14px; max-width: 320px; }
@media (min-width: 900px) {
  .compare-section__header { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 48px; margin-bottom: 56px; }
  .compare-section__meta { text-align: right; }
}

/* ============================================================
   PAGE: Product
   ============================================================ */

.pdp {
  padding: 40px var(--section-x) 64px;
}
.pdp__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.pdp__media {
  position: relative;
  order: -1;
}
.pdp__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.pdp__image img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.pdp__thumbs[hidden] { display: none; }
.pdp__thumb {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--ghost-gold);
  position: relative;
  cursor: pointer;
  transition: border-color var(--d-fast) var(--ease);
}
.pdp__thumb:hover,
.pdp__thumb.is-active { border-color: var(--gold); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__body .eyebrow { margin-bottom: 20px; }
.pdp__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(40px, 7vw, 72px);
  margin: 0 0 16px;
}
.pdp__tagline {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 520px;
}
.pdp__tagline > :first-child { margin-top: 0; }
.pdp__tagline > :last-child { margin-bottom: 0; }
.pdp__tagline p { margin: 0 0 1em; }
.pdp__tagline ul, .pdp__tagline ol { margin: 0 0 1em; padding-left: 1.25em; }
.pdp__tagline li + li { margin-top: 0.3em; }
.pdp__tagline a { color: var(--gold); border-bottom: 1px solid currentColor; }
.pdp__tagline a:hover { color: var(--gold-hover); }
.pdp__tagline strong { color: var(--text); font-weight: 600; }
.pdp__tagline em { font-style: italic; }
.pdp__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.pdp__price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.pdp__price {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}
[data-out-of-stock] .pdp__price { color: var(--text-muted); }
.pdp__stock {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--rule);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.pdp__stock[hidden] { display: none; }
.pdp__price-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: right;
}

/* Wrapper around the Shopify-generated node */
.pdp__buy {
  margin-bottom: 28px;
}
.pdp__buy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}
.pdp__buy-note svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.pdp__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.pdp__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}
.pdp__feature svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pdp__feature strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; font-size: 14px; }
.pdp__feature span { color: var(--text-muted); display: block; }

@media (min-width: 600px) {
  .pdp__features { grid-template-columns: 1fr 1fr; gap: 16px 28px; }
}
@media (min-width: 900px) {
  .pdp { padding: 56px var(--section-x) 96px; }
  .pdp__inner { grid-template-columns: 1.1fr 1fr; gap: 56px; }
  .pdp__media { order: 0; position: sticky; top: 96px; align-self: start; }
}
@media (min-width: 1200px) {
  .pdp { padding: 72px var(--section-x) 120px; }
  .pdp__inner { grid-template-columns: 1.2fr 1fr; gap: 72px; }
}

/* Product info strip below the buy box */
.pdp-info {
  padding: var(--section-y) var(--section-x);
  border-top: 1px solid var(--rule);
}
.pdp-info__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.pdp-info__card {
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 28px;
  transition: border-color var(--d-fast) var(--ease);
}
.pdp-info__card:hover { border-color: var(--gold); }
.pdp-info__card h3 {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}
.pdp-info__card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.pdp-info__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(224,183,118,0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 600px) { .pdp-info__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pdp-info__inner { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ============================================================
   PAGE: About
   ============================================================ */

.about-hero {
  padding: 56px var(--section-x) 72px;
  position: relative;
  overflow: hidden;
}
.about-hero__ghost {
  position: absolute;
  top: 40%;
  right: -8%;
  font-family: var(--f-heading);
  font-weight: 700;
  color: var(--ghost-gold);
  font-size: clamp(160px, 32vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  transform: translateY(-50%);
}
.about-hero__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
}
.about-hero__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-size: clamp(52px, 11vw, 128px);
  max-width: 14ch;
  margin: 24px 0 0;
}
.about-hero__lead {
  max-width: 560px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 40px 0 0;
}

.about-section {
  padding: var(--section-y) var(--section-x);
  border-top: 1px solid var(--rule);
}
.about-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.about-section__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .about-section__label { color: rgba(31, 31, 31, 0.7); }
}
html[data-theme="light"] .about-section__label { color: rgba(31, 31, 31, 0.7); }
.about-section__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(32px, 5vw, 56px);
  margin: 12px 0 0;
}
.about-section__body p {
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 20px;
  max-width: 640px;
}
.about-section__body p.lede { color: var(--text); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
@media (min-width: 900px) {
  .about-section__inner { grid-template-columns: 1fr 2fr; gap: 64px; }
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.about-pillar {
  padding: 28px 24px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: border-color var(--d-fast) var(--ease);
}
.about-pillar:hover { border-color: var(--gold); }
.about-pillar__num {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.about-pillar h3 {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.about-pillar p { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin: 0; }
@media (min-width: 600px) { .about-pillars { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   PAGE: FAQ
   ============================================================ */

.faq-hero {
  padding: 56px var(--section-x) 48px;
}
.faq-hero__inner { max-width: var(--container-max); margin: 0 auto; }
.faq-hero__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-size: clamp(48px, 10vw, 108px);
  margin: 16px 0 0;
}
.faq-hero__lead {
  max-width: 560px;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-muted);
  margin: 28px 0 0;
  line-height: 1.6;
}

.faq-body {
  padding: 32px var(--section-x) var(--section-y);
}
.faq-body__inner { max-width: 960px; margin: 0 auto; }
.faq-body__group {
  margin-bottom: 56px;
}
.faq-body__group:last-child { margin-bottom: 0; }
.faq-body__group-label {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.faq-contact {
  margin-top: 64px;
  padding: 40px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  text-align: center;
}
.faq-contact h3 {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.faq-contact p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* ---------- FAQ accordion ---------- */
.faq {
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__trigger {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  transition: color var(--d-fast) var(--ease);
}
.faq__trigger:hover { color: var(--gold); }
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--d-fast) var(--ease),
              border-color var(--d-fast) var(--ease),
              transform var(--d-med) var(--ease);
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after {
  width: 1.5px; height: 12px;
  transition: transform var(--d-med) var(--ease);
}
.faq__item[data-open] .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.faq__item[data-open] .faq__icon::after { transform: scaleY(0); }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--d-med) var(--ease);
}
.faq__item[data-open] .faq__panel {
  grid-template-rows: 1fr;
}
.faq__panel > div {
  overflow: hidden;
}
.faq__body {
  padding-bottom: 28px;
  padding-right: 48px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}
.faq__body a { color: var(--gold); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.faq__body a:hover { color: var(--gold-hover); }
@media (min-width: 768px) {
  .faq__trigger { font-size: 26px; padding: 32px 0; }
}
@media (min-width: 1200px) {
  .faq__trigger { font-size: 30px; }
}

/* ============================================================
   Cart — nav button + drawer (injected by js/shop.js)
   ============================================================ */

/* Nav cart button (replaces the static $19.99 price link) */
.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text);
  transition: background-color var(--d-fast) var(--ease),
              color var(--d-fast) var(--ease);
}
.nav-cart-btn:hover { background: var(--rule); color: var(--gold); }
.nav-cart-btn__icon { display: inline-flex; }
.nav-cart-btn__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: scale(1);
  transition: transform var(--d-fast) var(--ease), opacity var(--d-fast) var(--ease);
}
.nav-cart-btn__count.is-empty { opacity: 0; transform: scale(0.5); pointer-events: none; }

/* Drawer — full-viewport overlay, right-side panel */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.is-open { pointer-events: auto; visibility: visible; }

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--d-med) var(--ease);
}
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--d-med) var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  border-left: 1px solid var(--rule);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__head {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.cart-drawer__eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.cart-drawer__title {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  padding-right: 40px;
}
.cart-drawer__close {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background-color var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}
.cart-drawer__close:hover { background: var(--rule); color: var(--gold); }
.cart-drawer__close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

.cart-drawer__empty {
  padding: 56px 4px 40px;
  text-align: center;
}
.cart-drawer__empty-msg {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.cart-drawer__empty-sub {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 32px;
  line-height: 1.5;
}

.cart-drawer__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.cart-line:last-child { border-bottom: none; }
.cart-line__image {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--ghost-gold);
}
.cart-line__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cart-line__title {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}
.cart-line__variant {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.cart-line__price {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  margin: 2px 0 6px;
}
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  padding: 2px;
  align-self: flex-start;
}
.cart-line__qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text);
  transition: background-color var(--d-fast) var(--ease);
}
.cart-line__qty-btn:hover { background: var(--rule); }
.cart-line__qty-val {
  min-width: 22px;
  text-align: center;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
}
.cart-line__remove {
  align-self: start;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background-color var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}
.cart-line__remove:hover { background: var(--rule); color: var(--text); }

.cart-drawer__foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.cart-drawer__subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 16px;
}
.cart-drawer__subtotal-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-drawer__subtotal-val {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cart-drawer__checkout { margin-bottom: 10px; }
.cart-drawer__note {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer__backdrop,
  .cart-drawer__panel { transition: none; }
}

/* Buy-row: Add to cart + Buy now side-by-side on wider PDP columns */
.pdp__buy {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.pdp__buy .btn.is-loading { opacity: 0.7; cursor: progress; }
@media (min-width: 600px) {
  .pdp__buy { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Policy reader — privacy, terms, refund, shipping, contact
   ============================================================ */
.policy-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--section-x) clamp(40px, 6vw, 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.policy-hero__ghost {
  position: absolute;
  top: -40px;
  right: -40px;
  font-family: var(--f-heading);
  font-weight: 700;
  color: var(--ghost-gold);
  font-size: clamp(160px, 32vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.policy-hero__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
}
.policy-hero__title {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(44px, 8vw, 88px);
  color: var(--text);
  margin: 24px 0 18px;
}
.policy-hero__meta {
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.policy-body {
  padding: clamp(48px, 8vw, 96px) var(--section-x) clamp(80px, 12vw, 140px);
}
.policy-body__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* The actual long-form policy content */
.policy {
  color: var(--text);
  font-family: var(--f-body);
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.75;
}
.policy > p:first-child { margin-top: 0; }
.policy p {
  margin: 0 0 1.2em;
  color: var(--text);
}
.policy h2 {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  color: var(--text);
  margin: 2.4em 0 0.8em;
  padding-top: 0.6em;
  border-top: 1px solid var(--rule);
}
.policy h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy strong {
  font-weight: 600;
  color: var(--text);
}
.policy a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 183, 118, 0.4);
  transition: border-color 0.15s, color 0.15s;
}
.policy a:hover {
  border-bottom-color: var(--gold);
  color: var(--gold-hover);
}
.policy ul {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}
.policy li {
  margin: 0 0 0.7em;
  color: var(--text);
}
.policy li::marker {
  color: var(--gold);
}

/* Contact page — large tappable links */
.contact-methods {
  display: grid;
  gap: 18px;
  margin: 40px 0 0;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
}
.contact-method:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.contact-method__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ghost-gold);
  color: var(--gold);
}
.contact-method__main { display: flex; flex-direction: column; gap: 2px; }
.contact-method__label {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-method__val {
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text);
  letter-spacing: -0.01em;
}
