/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #070b16;
  --bg-1:      #0a0f20;
  --bg-2:      #0d1428;
  --bg-3:      #121b34;
  --ink:       #f3f0e8;
  --ink-soft:  rgba(243,240,232,.72);
  --ink-dim:   rgba(243,240,232,.46);
  --gold:      #d7ad63;
  --gold-2:    #f2cf8e;
  --gold-dim:  #8a6f3f;
  --stock-low: #e2795b;
  --line:      rgba(243,240,232,.10);
  --line-strong: rgba(243,240,232,.20);
  --shadow-gold: 0 20px 60px -24px rgba(215,173,99,.4);

  --g-blue:   #4285F4;
  --g-red:    #EA4335;
  --g-yellow: #FBBC05;
  --g-green:  #34A853;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container: 1180px;
  --gutter: 1.25rem;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 {
  text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em;
  font-family: var(--serif); font-weight: 600; color: var(--ink);
}
::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--gold); color: #1a1204;
  z-index: 9999; border-radius: 8px; font-weight: 700;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.text-gold { color: var(--gold-2); font-style: italic; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  max-width: 20ch;
}
.section-lead {
  color: var(--ink-soft);
  max-width: 58ch;
  margin-top: .9rem;
  font-size: 1.05rem;
}
.volume-note {
  margin-top: .8rem;
  font-size: .92rem;
  color: var(--gold-2);
}
.volume-note strong { color: var(--gold); }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a1204;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 70px -20px rgba(215,173,99,.55); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.3rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(7,11,22,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .nav.is-scrolled { background: rgba(7,11,22,0.97); }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.15rem;
  gap: 1rem;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 1.2rem; color: var(--ink);
}
.nav-mark {
  width: 30px; height: 30px; color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: .92rem; color: var(--ink-soft); transition: color .3s var(--ease-out); position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px;
  background: var(--gold); transition: right .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn-primary { display: none; }

.nav-toggle {
  width: 40px; height: 40px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 64px 0 0 0; z-index: 90;
  background: var(--bg-1);
  display: flex; flex-direction: column; gap: 1.6rem;
  padding: 2rem var(--gutter);
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav-mobile.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-mobile a { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.nav-mobile .btn { align-self: flex-start; margin-top: .5rem; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(3.5rem, 8vw, 6rem);
  overflow: clip;
  --mx: 30%; --my: 20%;
}
.hero-mesh {
  position: absolute; inset: -10% -10% -30% -10%; z-index: 0;
  background:
    radial-gradient(45% 40% at var(--mx) var(--my), rgba(215,173,99,.22), transparent 65%),
    radial-gradient(35% 30% at 85% 15%, rgba(66,133,244,.10), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  transition: background .6s var(--ease-soft);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
.hero-copy { max-width: 46ch; }
.hero-title {
  font-size: clamp(2.4rem, 6.4vw, 3.6rem);
  font-style: italic;
}
.hero-sub {
  color: var(--ink-soft);
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 50ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }

.hero-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-trust li { display: flex; flex-direction: column; gap: .25rem; }
.hero-trust strong { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-2); }
.hero-trust span { font-size: .78rem; color: var(--ink-dim); }

/* --- hero visual: 3D NFC card --- */
.hero-visual { display: flex; justify-content: center; }
.hero-tilt { perspective: 1400px; position: relative; }
.hero-card {
  width: min(360px, 82vw);
  aspect-ratio: 1.586 / 1;
  border-radius: 24px;
  background: linear-gradient(150deg, #131c34 0%, #0a0e1c 65%, #0a0e1c 100%);
  border: 1px solid var(--line-strong);
  position: relative;
  transform-style: preserve-3d;
  transition: transform .45s var(--ease-out);
  box-shadow: var(--shadow-gold), 0 40px 90px -20px rgba(0,0,0,.6);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-card-shine {
  position: absolute; inset: -60% -20%;
  background: linear-gradient(115deg, transparent 32%, rgba(242,207,142,.16) 48%, transparent 62%);
  pointer-events: none;
}
.hero-card-top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 1; }
.hero-card-brand { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.25rem; color: var(--gold-2); }

.google-dot {
  width: 14px; height: 14px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--g-blue) 0 25%, var(--g-red) 25% 50%, var(--g-yellow) 50% 75%, var(--g-green) 75% 100%);
  box-shadow: 0 0 0 3px rgba(243,240,232,.06);
}
.google-dot-sm { display: inline-block; width: 10px; height: 10px; margin-left: .5rem; vertical-align: middle; }

.nfc-icon {
  position: relative; width: 56px; height: 56px; color: var(--gold-2);
  display: flex; align-items: center; justify-content: center; align-self: center; z-index: 1;
}
.nfc-icon svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.nfc-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(242,207,142,.5);
  animation: nfcPulse 2.2s var(--ease-out) infinite;
}
.nfc-ring-2 { animation-delay: .5s; }
.nfc-ring-3 { animation-delay: 1s; }
@keyframes nfcPulse {
  0%   { transform: scale(.45); opacity: .9; }
  80%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nfc-ring { animation: none; display: none; }
}

.hero-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; color: var(--ink-dim); position: relative; z-index: 1;
}
.hero-card-stars { color: var(--gold); letter-spacing: 2px; font-size: .85rem; }

.hero-phone {
  position: absolute; right: -8%; bottom: -14%; z-index: -1;
  width: 132px; height: 260px; border-radius: 34px;
  background: linear-gradient(160deg, rgba(243,240,232,.10), rgba(243,240,232,.02));
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(2px);
  transform: rotate(8deg);
}

/* --- trust marquee --- */
.trust-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
  padding-block: .9rem;
}
.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: trustMarqueeScroll 22s linear infinite;
}
.trust-marquee:hover .trust-marquee-track { animation-play-state: paused; }
.trust-marquee-set {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  flex: none;
}
.trust-item {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-sep { color: var(--gold); font-size: .55rem; }
@keyframes trustMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- urgent promo bar (very top of page) --- */
.promo-marquee {
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  overflow: hidden;
  padding-block: .55rem;
}
.promo-marquee .trust-marquee-track { animation-duration: 16s; }
.promo-marquee:hover .trust-marquee-track { animation-play-state: paused; }
.promo-marquee .trust-item { color: #1a1204; font-weight: 700; }
.promo-marquee .trust-sep { color: #1a1204; opacity: .5; }

/* =============================================================
   8. Sections
   ============================================================= */
.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section-alt { background: var(--bg-1); }

/* --- steps --- */
.steps {
  display: grid;
  gap: .7rem;
  margin-top: 2.2rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: .9rem;
  row-gap: .1rem;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out);
}
.step:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.step-num {
  grid-row: 1 / 3;
  font-family: var(--mono); font-size: .8rem; color: var(--gold);
  width: 2.1rem; height: 2.1rem; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 50%;
}
.step h3 { grid-column: 2; font-size: 1rem; display: flex; align-items: center; }
.step p { grid-column: 2; color: var(--ink-soft); font-size: .84rem; line-height: 1.45; }
.steps-note {
  margin-top: 2rem;
  color: var(--ink-dim);
  font-size: .88rem;
  border-left: 2px solid var(--gold-dim);
  padding-left: 1rem;
}

/* --- benefits --- */
.benefits-grid {
  display: grid;
  gap: .7rem;
  margin-top: 2.2rem;
}
.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: .9rem;
  row-gap: .1rem;
  padding: .9rem 1.1rem;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.benefit:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(0,0,0,.6); }
.benefit-icon {
  grid-row: 1 / 3;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; flex: none; border-radius: 10px;
  background: linear-gradient(150deg, rgba(215,173,99,.18), rgba(215,173,99,.04));
  color: var(--gold-2);
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit h3 { grid-column: 2; font-size: .96rem; }
.benefit p { grid-column: 2; color: var(--ink-soft); font-size: .82rem; line-height: 1.45; }

/* --- products --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  margin-top: 2.8rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); }
.product.is-selected .product-card {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
}

.product-visual {
  perspective: 900px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: #1c2745;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.3);
  transform-style: preserve-3d;
  transition: transform .4s var(--ease-out);
}
.product-badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 1;
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  padding: .3rem .6rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1204;
}

.product-body { padding: 1rem 1rem 1.2rem; display: flex; flex-direction: column; gap: .25rem; }
.product-name { font-family: var(--serif); font-size: .96rem; font-style: italic; color: var(--ink); }
.product-desc { font-size: .78rem; color: var(--ink-dim); }
.product-price { font-family: var(--mono); font-size: .92rem; color: var(--gold-2); margin-top: .4rem; }
.price-old { color: var(--ink-dim); text-decoration: line-through; font-size: .76rem; margin-right: .3rem; }
.stock-note {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: .5rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .02em;
  color: var(--stock-low, #e2795b);
}
.stock-note::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex: none;
}

.product-qty { display: flex; align-items: center; gap: .5rem; margin-top: .8rem; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong); font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out);
  flex: none;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold-2); }
.qty-btn:disabled { opacity: .35; cursor: not-allowed; border-color: var(--line); color: inherit; }
.qty-input {
  width: 2.5rem; text-align: center; background: transparent; color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px; padding: .4rem 0; font-family: var(--mono);
  font-size: .9rem;
}

.product-summary {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, var(--bg-2), var(--bg-1));
  margin-top: .6rem;
}
.summary-label { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: .3rem; }
.summary-lines { display: flex; flex-direction: column; gap: .6rem; }
.summary-lines li {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: .95rem; gap: 1rem;
}
.summary-lines li span:first-child { color: var(--ink-soft); }
.summary-lines li span:last-child { font-family: var(--mono); color: var(--gold-2); white-space: nowrap; }
.summary-empty { font-size: .9rem; color: var(--ink-dim); }
.summary-discount-line { border-top: 1px dashed var(--line-strong); padding-top: .6rem; margin-top: .1rem; }
.summary-discount-line span:first-child { color: var(--gold-2) !important; font-style: italic; }
.summary-discount-line span:last-child { color: var(--gold) !important; }
.summary-total-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--line);
}
.summary-total-row .summary-label { margin-bottom: 0; }
.summary-price { font-family: var(--mono); font-size: 1.2rem; color: var(--gold-2); }
.btn:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; transform: none !important; }

.order-summary {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  background: var(--bg-1);
}
.order-summary .summary-empty a { color: var(--gold-2); text-decoration: underline; }
.order-summary-lines { display: flex; flex-direction: column; gap: .5rem; }
.order-summary-lines li {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: .88rem; gap: 1rem;
}
.order-summary-lines li span:first-child { color: var(--ink-soft); }
.order-summary-lines li span:last-child { font-family: var(--mono); color: var(--gold-2); white-space: nowrap; }
.order-summary-total {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .7rem; padding-top: .7rem; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: .95rem; color: var(--gold-2);
}

/* --- testimonials --- */
.testimonials {
  display: flex;
  gap: 1rem;
  margin-top: 2.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding-bottom: .6rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.testimonial {
  scroll-snap-align: start;
  flex: 0 0 84%;
  padding: 2rem;
  border-radius: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.testimonial-stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; }
.testimonial blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.12rem;
  line-height: 1.5; margin-top: 1.1rem; color: var(--ink);
}
.testimonial figcaption { margin-top: 1.4rem; }
.testimonial-name { font-weight: 700; font-size: .92rem; }

/* --- contact --- */
.contact-grid {
  display: grid;
  gap: 3rem;
  position: relative;
}
.contact-list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: .5rem; }
.contact-list a { font-family: var(--mono); font-size: .95rem; color: var(--gold-2); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease-out); }
.contact-list a:hover { border-color: var(--gold-2); }

.contact-note { margin-top: 1rem; font-size: .85rem; color: var(--ink-dim); }

.checkout-panel {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.form-fineprint { font-size: .78rem; color: var(--ink-dim); text-align: center; margin-top: -.3rem; }
.paypal-fallback { font-size: .85rem; color: var(--ink-dim); text-align: center; padding: 1rem 0; }

.contact-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(150deg, var(--bg-2), var(--bg-1));
}
.contact-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a1204; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.2rem;
}
.contact-success h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.contact-success p { color: var(--ink-soft); max-width: 42ch; margin-inline: auto; }

/* --- footer --- */
.footer { border-top: 1px solid var(--line); padding-block: 3rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .7rem; text-align: center; }
.footer-tagline { font-size: .88rem; color: var(--ink-soft); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.2rem; }
.footer-legal a { font-size: .78rem; color: var(--ink-dim); border-bottom: 1px solid transparent; transition: color .3s var(--ease-out), border-color .3s var(--ease-out); }
.footer-legal a:hover { color: var(--gold-2); border-color: var(--gold-2); }
.footer-copy { font-size: .78rem; color: var(--ink-dim); }

/* --- legal pages --- */
.legal-page { padding-block: clamp(3rem, 8vw, 5rem) 5rem; }
.legal-page h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: .5rem; }
.legal-updated { color: var(--ink-dim); font-size: .85rem; margin-bottom: 2.5rem; }
.legal-page section { max-width: 68ch; margin-top: 2.2rem; }
.legal-page h2 { font-size: 1.25rem; margin-bottom: .8rem; color: var(--gold-2); font-style: italic; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: .98rem; line-height: 1.7; }
.legal-page p { margin-bottom: .8rem; }
.legal-page ul { padding-left: 1.3rem; margin-bottom: .8rem; }
.legal-page li { margin-bottom: .4rem; }
.legal-page a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-page strong { color: var(--ink); }
.legal-page .placeholder { background: rgba(215,173,99,.16); padding: .05em .35em; border-radius: 4px; color: var(--gold-2); font-style: normal; }

/* --- cookie banner --- */
.cookie-banner {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 200;
  width: min(400px, calc(100vw - 2rem));
  padding: 1.4rem 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 24px 70px -20px rgba(0,0,0,.7);
}
.cookie-banner h3 {
  font-size: 1.1rem; font-style: italic; color: var(--ink); margin-bottom: .6rem;
}
.cookie-banner p {
  font-size: .85rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 1.2rem;
}
.cookie-banner p a { color: var(--gold-2); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1rem; }
.cookie-manage {
  font-size: .82rem; color: var(--ink-dim); text-decoration: underline;
  text-underline-offset: 2px; margin-right: auto;
}
.cookie-manage:hover { color: var(--gold-2); }
.cookie-actions .btn { flex: none; }

/* =============================================================
   9. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
  .step {
    display: block; padding: 2rem 1.8rem; border-radius: 18px;
  }
  .step-num {
    grid-row: auto; width: auto; height: auto; border: 0; border-radius: 0;
    display: inline-block; font-size: .85rem; margin-bottom: 1rem;
  }
  .step h3 { grid-column: auto; font-size: 1.25rem; margin-bottom: .6rem; }
  .step p { grid-column: auto; font-size: .96rem; }
  .benefits-grid { gap: 1.3rem; }
  .benefit { display: block; padding: 1.9rem; border-radius: 18px; }
  .benefit-icon {
    grid-row: auto; width: 44px; height: 44px; border-radius: 12px;
    margin-bottom: 1.1rem;
  }
  .benefit-icon svg { width: 22px; height: 22px; }
  .benefit h3 { grid-column: auto; font-size: 1.1rem; margin-bottom: .5rem; }
  .benefit p { grid-column: auto; font-size: .93rem; }
  .products-grid { gap: 1.1rem; }
  .product-body { padding: 1.4rem 1.5rem 1.6rem; gap: .3rem; }
  .product-name { font-size: 1.08rem; }
  .product-desc { font-size: .86rem; }
  .product-price { font-size: 1.05rem; margin-top: .5rem; }
  .price-old { font-size: .88rem; margin-right: .4rem; }
  .product-qty { gap: .7rem; margin-top: 1rem; }
  .qty-btn { width: 34px; height: 34px; font-size: 1.1rem; }
  .qty-input { width: 3rem; font-size: 1rem; }
}
@media (min-width: 720px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { gap: 1.3rem; }
  .testimonials {
    display: grid; grid-template-columns: repeat(2, 1fr);
    overflow-x: visible; scroll-snap-type: none;
    margin-inline: 0; padding-inline: 0; padding-bottom: 0;
  }
  .testimonial { flex: none; }
  .summary-total-row { align-items: center; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-actions .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }

  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2rem; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .contact-success { grid-column: 2 / 3; }
}
@media (min-width: 1280px) {
  :root { --gutter: 2rem; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* =============================================================
   10. Reduced-motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { transition: none; }
}
