:root {
  --page-max: 1280px;
  --page-gutter: 24px;
  --black: #0B0B0C;
  --black-soft: #15141a;
  --bronze: #B8763E;
  --bronze-light: #D69A5F;
  --stone: #E8E0D3;
  --maroon: #6B1F1F;
  --ivory: #F2EEE6;
  --line: rgba(242, 238, 230, 0.12);
  --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
.display { font-family: 'Fraunces', serif; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; }

::selection { background: var(--bronze); color: var(--black); }

/* ---------- texture ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; letter-spacing: 0.02em;
  color: var(--ivory); text-decoration: none;
}
.logo span { color: var(--bronze); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ivory); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.75; transition: opacity 0.25s, color 0.25s;
}
.nav-links a:hover { opacity: 1; color: var(--bronze-light); }
.nav-cta {
  border: 1px solid var(--bronze); color: var(--bronze-light) !important; padding: 9px 20px; border-radius: 2px; opacity: 1 !important;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--bronze); color: var(--black) !important; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ivory); margin: 5px 0; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 62px; left: 0; right: 0; z-index: 39;
  background: rgba(11, 11, 12, 0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding: 24px 5% 32px;
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ivory); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .nav-cta { text-align: center; margin-top: 8px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- buttons ---------- */
.btn-primary {
  background: var(--bronze); color: var(--black); font-weight: 600; padding: 16px 30px; border-radius: 2px;
  text-decoration: none; font-size: 0.92rem; letter-spacing: 0.03em; transition: transform 0.2s, background 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--bronze-light); transform: translateY(-2px); }
.btn-ghost {
  color: var(--ivory); text-decoration: none; font-size: 0.92rem; padding: 16px 20px;
  border: 1px solid var(--line); border-radius: 2px; transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-light); background: rgba(184, 118, 62, 0.08); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 0; display: flex; align-items: center;
  padding: 112px 5% 64px;
  background:
    radial-gradient(ellipse 70% 60% at 75% 20%, rgba(184, 118, 62, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(107, 31, 31, 0.16), transparent 60%),
    var(--black);
  overflow: hidden;
}
.vein-svg {
  position: absolute; right: -10%; top: 0; height: 140%; width: 70%; opacity: 0.5; z-index: 0;
  animation: drift 30s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(0.6deg); }
}

.hero-grid {
  position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero-inner { max-width: 620px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-light);
  margin-bottom: 24px; padding: 8px 14px; border: 1px solid rgba(184, 118, 62, 0.35); border-radius: 2px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--bronze); }
h1.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.08; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero-subhead {
  font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 500;
  color: var(--bronze-light); letter-spacing: 0.02em; margin-bottom: 20px;
}
.hero-support {
  font-size: 1.02rem; line-height: 1.65; color: rgba(242, 238, 230, 0.72); max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px 28px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(242, 238, 230, 0.65);
  letter-spacing: 0.04em;
}
.hero-trust-item svg { flex-shrink: 0; color: var(--bronze-light); }

.hero-product-preview {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-product-card {
  background: linear-gradient(145deg, rgba(21, 20, 26, 0.9), rgba(11, 11, 12, 0.95));
  border: 1px solid var(--line); border-radius: 4px; padding: 40px 36px; width: 100%; max-width: 380px;
  text-align: center; position: relative;
}
.hero-product-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(184, 118, 62, 0.4), transparent 50%); z-index: -1; opacity: 0.5;
}
.hero-product-visual {
  width: 100%; height: 220px; background: var(--black-soft); border-radius: 2px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.hero-product-visual svg { width: 80%; height: 80%; opacity: 0.85; }
.popular-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--maroon); color: var(--ivory); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 2px;
}
.hero-product-card h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; margin-bottom: 8px; }
.hero-product-card .price { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--bronze-light); margin-bottom: 16px; }
.hero-product-card .btn-primary { width: 100%; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-product-preview { order: -1; }
  .hero-product-card { max-width: 100%; }
}
@media (max-width: 760px) {
  .hero { padding: 88px 5% 40px; }
  section { padding: 56px 5%; }
  .cta { padding: 64px 5%; }
  .section-head { margin-bottom: 24px; }
  .feature-grid--3 { grid-template-columns: 1fr; }
  .hero-actions { margin-bottom: 8px; }
  .buying-visual .product-photo { height: auto; max-height: 280px; }
}

/* ---------- marquee ---------- */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--black-soft); padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.strip-track { display: inline-flex; gap: 60px; animation: scroll 26s linear infinite; }
.strip-track span {
  font-family: 'JetBrains Mono', monospace; font-size: 0.76rem; letter-spacing: 0.12em;
  color: rgba(242, 238, 230, 0.55); text-transform: uppercase;
}
.strip-track span b { color: var(--bronze-light); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections shared ---------- */
section { padding: 72px 5%; position: relative; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.tag {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-light);
  margin-bottom: 16px; display: block;
}
.section-head h2 {
  font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 600; line-height: 1.15;
}
.section-head p { margin-top: 16px; color: rgba(242, 238, 230, 0.65); font-size: 1rem; line-height: 1.6; }

/* ---------- built for / why choose ---------- */
.built-for, .why-choose { background: var(--black-soft); }
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.feature-card {
  background: var(--black-soft); padding: 36px 28px; transition: background 0.3s;
}
.feature-card:hover { background: rgba(21, 20, 26, 0.95); }
.feature-card .icon-wrap {
  width: 48px; height: 48px; border: 1px solid rgba(184, 118, 62, 0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--bronze-light);
}
.feature-card .fnum { font-family: 'JetBrains Mono', monospace; color: var(--bronze-light); font-size: 0.74rem; }
.feature-card h4 { font-family: 'Fraunces', serif; font-size: 1.12rem; font-weight: 600; margin: 12px 0 10px; }
.feature-card p { font-size: 0.86rem; line-height: 1.55; color: rgba(242, 238, 230, 0.58); }

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- most popular spotlight ---------- */
.spotlight {
  background: var(--ivory); color: var(--black); padding: 100px 5%;
}
.spotlight .tag { color: var(--maroon); }
.spotlight .section-head p { color: rgba(11, 11, 12, 0.62); }
.spotlight-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px;
}
.spotlight-visual {
  position: relative; background: var(--black); border-radius: 4px; padding: 48px; text-align: center;
  min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.spotlight-visual .popular-badge { top: 20px; right: 20px; font-size: 0.7rem; padding: 8px 14px; }
.spotlight-visual svg { width: 70%; max-height: 240px; }
.spotlight-content h3 {
  font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 12px;
}
.spotlight-content .price-tag {
  font-family: 'Fraunces', serif; font-size: 2rem; color: var(--maroon); margin-bottom: 24px;
}
.spotlight-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.spotlight-benefit {
  display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: rgba(11, 11, 12, 0.75);
}
.spotlight-benefit svg { color: var(--bronze); flex-shrink: 0; }
.spotlight-content .btn-primary { padding: 18px 40px; font-size: 1rem; }

@media (max-width: 860px) {
  .spotlight-wrap { grid-template-columns: 1fr; }
  .spotlight-benefits { grid-template-columns: 1fr; }
}

/* ---------- products ---------- */
.products { background: var(--black); }
.products .tag { color: var(--bronze-light); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard {
  background: var(--black-soft); border: 1px solid var(--line); padding: 32px 28px 36px;
  display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pcard:hover { border-color: rgba(184, 118, 62, 0.4); transform: translateY(-4px); }
.pcard.featured { border-color: rgba(184, 118, 62, 0.55); }
.pcard .pnum { font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; color: var(--bronze-light); letter-spacing: 0.1em; }
.pcard .popular-badge { position: absolute; top: 16px; right: 16px; }
.pimg-wrap {
  width: 100%; height: 180px; border-radius: 2px; overflow: hidden; background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.pimg-wrap svg { width: 60%; height: 60%; opacity: 0.7; }
.pcard h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; }
.pcard .pdesc { font-size: 0.9rem; line-height: 1.6; color: rgba(242, 238, 230, 0.62); flex-grow: 1; }
.psizes { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--line); padding-top: 14px; }
.psize-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; }
.psize-row span:first-child { color: rgba(242, 238, 230, 0.55); }
.psize-row .pprice { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--bronze-light); }
.pcard .btn-primary { margin-top: 8px; width: 100%; padding: 14px 20px; font-size: 0.85rem; }

@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- customer results ---------- */
.results { background: var(--ivory); color: var(--black); }
.results .tag { color: var(--maroon); }
.results .section-head p { color: rgba(11, 11, 12, 0.62); }

.results-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.results-tab {
  background: transparent; border: 1px solid rgba(11, 11, 12, 0.15); color: rgba(11, 11, 12, 0.65);
  padding: 10px 20px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: all 0.25s; font-family: 'Inter', sans-serif;
}
.results-tab.active, .results-tab:hover {
  background: var(--black); color: var(--ivory); border-color: var(--black);
}

.results-panel { display: none; }
.results-panel.active { display: block; }

.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.result-card {
  background: #fff; border: 1px solid rgba(11, 11, 12, 0.1); border-radius: 2px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11, 11, 12, 0.08); }
.result-media {
  height: 200px; background: var(--black-soft); display: flex; align-items: center; justify-content: center;
  position: relative; color: rgba(242, 238, 230, 0.4); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.result-media.video::after {
  content: ''; position: absolute; width: 52px; height: 52px; border: 2px solid var(--bronze-light);
  border-radius: 50%; background: rgba(11, 11, 12, 0.6);
}
.result-media.video::before {
  content: ''; position: absolute; width: 0; height: 0;
  border-left: 14px solid var(--bronze-light); border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  margin-left: 4px; z-index: 1;
}
.result-media.whatsapp { background: linear-gradient(135deg, #075E54 0%, #128C7E 100%); }
.result-media.whatsapp .wa-placeholder {
  width: 85%; height: 75%; background: #ECE5DD; border-radius: 8px; padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.wa-bubble { background: #fff; border-radius: 6px; padding: 8px 12px; font-size: 0.7rem; color: #333; text-align: left; max-width: 80%; }
.wa-bubble.sent { align-self: flex-end; background: #DCF8C6; }
.result-body { padding: 24px; }
.result-body .verified {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--bronze); margin-bottom: 12px;
}
.result-body p { font-size: 0.92rem; line-height: 1.6; color: rgba(11, 11, 12, 0.72); margin-bottom: 14px; }
.result-body .author { font-size: 0.8rem; color: rgba(11, 11, 12, 0.5); }
.result-body .author b { color: var(--black); font-weight: 600; }

@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr; } }

/* ---------- signature / source ---------- */
.signature {
  background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.sig-visual { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; }
.sig-visual svg { width: 100%; height: 100%; }
.sig-text .tag { color: var(--bronze-light); }
.sig-text h2 {
  font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 600;
  line-height: 1.18; margin-bottom: 20px;
}
.sig-text p { color: rgba(242, 238, 230, 0.68); line-height: 1.7; margin-bottom: 16px; font-size: 0.98rem; }
.sig-list { margin-top: 28px; display: flex; flex-direction: column; }
.sig-list .row {
  display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 0.82rem;
}
.sig-list .row span:first-child { color: rgba(242, 238, 230, 0.5); letter-spacing: 0.05em; }
.sig-list .row span:last-child { color: var(--bronze-light); }

@media (max-width: 900px) {
  .signature { grid-template-columns: 1fr; gap: 40px; }
  .sig-visual { height: 300px; }
}

/* ---------- process ---------- */
.process { background: var(--black-soft); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.proc-item .pline { width: 100%; height: 1px; background: var(--line); margin-bottom: 22px; position: relative; }
.proc-item .pline::before { content: ''; position: absolute; left: 0; top: -1px; width: 36px; height: 3px; background: var(--bronze); }
.proc-item h4 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.proc-item p { color: rgba(242, 238, 230, 0.6); font-size: 0.92rem; line-height: 1.65; }

@media (max-width: 900px) { .proc-grid { grid-template-columns: 1fr; } }

/* ---------- dosage ---------- */
.dosage { background: var(--ivory); color: var(--black); }
.dosage .tag { color: var(--maroon); }
.dosage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dose-card { background: #fff; border: 1px solid rgba(11, 11, 12, 0.1); padding: 30px 26px; border-radius: 2px; }
.dose-card h4 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; color: var(--maroon); }
.dose-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dose-card li { font-size: 0.88rem; color: rgba(11, 11, 12, 0.68); padding-left: 18px; position: relative; line-height: 1.5; }
.dose-card li::before { content: '—'; position: absolute; left: 0; color: var(--bronze); }

@media (max-width: 900px) { .dosage-grid { grid-template-columns: 1fr; } }

/* ---------- trust badges strip ---------- */
.trust-strip { background: var(--ivory); color: var(--black); padding: 60px 5%; }
.trust-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto;
}
.trust-badge-card {
  text-align: center; padding: 28px 20px; border: 1px solid rgba(11, 11, 12, 0.08); border-radius: 2px;
}
.trust-badge-card .badge-icon {
  width: 52px; height: 52px; border: 1px solid rgba(11, 11, 12, 0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--maroon);
}
.trust-badge-card h5 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.trust-badge-card p { font-size: 0.82rem; color: rgba(11, 11, 12, 0.58); line-height: 1.5; }

@media (max-width: 860px) { .trust-strip-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust-strip-grid { grid-template-columns: 1fr; } }

/* ---------- founder ---------- */
.founder { background: var(--black-soft); }
.founder-wrap {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; max-width: 1000px;
}
.founder-image {
  width: 100%; aspect-ratio: 4/5; max-width: 360px; background: var(--black); border: 1px solid var(--line);
  border-radius: 2px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(242, 238, 230, 0.35); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.founder-image::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(184, 118, 62, 0.15), transparent 60%);
}
.founder-image svg { width: 60%; opacity: 0.4; margin-bottom: 16px; }
.founder-content .tag { color: var(--bronze-light); }
.founder-content h2 { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 8px; }
.founder-content .founder-name { font-size: 1rem; color: var(--bronze-light); margin-bottom: 24px; letter-spacing: 0.04em; }
.founder-quote {
  font-family: 'Fraunces', serif; font-size: 1.15rem; line-height: 1.65; font-weight: 500; font-style: italic;
  color: rgba(242, 238, 230, 0.85); padding-left: 24px; border-left: 3px solid var(--bronze); margin-bottom: 28px;
}
.founder-mission { font-size: 0.92rem; line-height: 1.65; color: rgba(242, 238, 230, 0.58); }

@media (max-width: 860px) {
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-image { max-width: 100%; aspect-ratio: 16/10; }
}

/* ---------- stack CTA ---------- */
.bundle {
  background: linear-gradient(135deg, var(--maroon) 0%, #4a1414 100%);
  padding: 80px 5%; text-align: center;
}
.bundle-inner {
  max-width: 700px; margin: 0 auto; padding: 48px 40px;
  border: 1px solid rgba(184, 118, 62, 0.35); border-radius: 4px;
}
.bundle h3 { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 14px; }
.bundle p { color: rgba(242, 238, 230, 0.75); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }
.bundle .btn-ghost { border-color: rgba(242, 238, 230, 0.35); }
.bundle .btn-ghost:hover { background: rgba(242, 238, 230, 0.1); color: var(--ivory); }
.bundle--live .tag { display: inline-block; margin-bottom: 14px; }
.bundle-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bundle-cta-row .btn-primary { padding: 14px 24px; font-size: 0.88rem; }
.bundle-cta-row .btn-ghost { padding: 14px 24px; font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--black); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 24px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; color: var(--ivory);
}
.faq-q .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .icon::before, .faq-q .icon::after {
  content: ''; position: absolute; background: var(--bronze-light); transition: transform 0.3s, opacity 0.3s;
}
.faq-q .icon::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .icon::after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-q .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 14px; color: rgba(242, 238, 230, 0.62); line-height: 1.65; font-size: 0.92rem; max-width: 640px; }
.faq-a p:last-child { padding-bottom: 22px; }
.faq-ingredients {
  list-style: none; padding: 0 0 14px; margin: 0; max-width: 640px;
  display: flex; flex-direction: column; gap: 6px;
}
.faq-ingredients li {
  font-size: 0.88rem; color: rgba(242, 238, 230, 0.58); padding-left: 14px; position: relative; line-height: 1.5;
}
.faq-ingredients li::before { content: '·'; position: absolute; left: 0; color: var(--bronze); }
.faq-ingredients li b { color: rgba(242, 238, 230, 0.75); font-weight: 600; }
.faq-ingredients--grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 20px;
}
@media (max-width: 560px) { .faq-ingredients--grid { grid-template-columns: 1fr; } }
.faq-group-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--bronze-light); margin: 28px 0 8px; padding-top: 8px;
}
.faq-note {
  font-size: 0.78rem !important; color: rgba(242, 238, 230, 0.42) !important;
  padding-bottom: 22px !important; font-style: italic;
}
.faq-cta {
  margin-top: 40px; padding: 28px; background: var(--black-soft); border: 1px solid var(--line); border-radius: 2px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.faq-cta p { font-size: 0.92rem; color: rgba(242, 238, 230, 0.7); max-width: 400px; }
.faq-cta .btn-ghost { white-space: nowrap; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(160deg, var(--maroon) 0%, #4a1414 100%);
  text-align: center; padding: 88px 5%;
}
.cta h2 {
  font-family: 'Fraunces', serif; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600;
  max-width: 700px; margin: 0 auto 20px; line-height: 1.15;
}
.cta p { color: rgba(242, 238, 230, 0.78); max-width: 500px; margin: 0 auto 32px; font-size: 1rem; }
.cta .btn-primary { background: var(--ivory); color: var(--maroon); padding: 18px 44px; font-size: 1rem; }
.cta .btn-primary:hover { background: #fff; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- disclaimer ---------- */
.disclaimer-bar {
  background: var(--black-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 5%; text-align: center;
}
.disclaimer-bar p { font-size: 0.76rem; color: rgba(242, 238, 230, 0.42); line-height: 1.6; max-width: 900px; margin: 0 auto; }

/* ---------- footer ---------- */
footer { background: var(--black); padding: 60px 5% 28px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 24px;
}
.footer-grid h4 { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242, 238, 230, 0.45); margin-bottom: 16px; }
.footer-grid a { display: block; color: rgba(242, 238, 230, 0.65); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-grid a:hover { color: var(--bronze-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(242, 238, 230, 0.4); }
.legal-row { display: flex; gap: 20px; flex-wrap: wrap; }
.legal-row a { color: rgba(242, 238, 230, 0.4); text-decoration: none; font-size: 0.76rem; transition: color 0.2s; }
.legal-row a:hover { color: var(--bronze-light); }

@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- sticky mobile buy ---------- */
.sticky-buy {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
  background: rgba(11, 11, 12, 0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  padding: 12px 4%; align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-buy .sb-text { font-size: 0.78rem; color: rgba(242, 238, 230, 0.65); line-height: 1.3; }
.sticky-buy .sb-text b { display: block; color: var(--ivory); font-family: 'Fraunces', serif; font-size: 0.95rem; }
.sticky-buy .sb-text .popular-tag { font-size: 0.62rem; color: var(--bronze-light); letter-spacing: 0.08em; text-transform: uppercase; }
.sticky-buy .btn-primary { padding: 12px 20px; font-size: 0.82rem; white-space: nowrap; flex-shrink: 0; }

@media (max-width: 760px) {
  .sticky-buy {
    display: flex;
    transform: translateY(100%);
    pointer-events: none;
  }
  body.sticky-buy-on .sticky-buy {
    transform: translateY(0);
    pointer-events: auto;
  }
  body.has-sticky-buy { padding-bottom: 72px; }
}

/* ---------- sticky whatsapp ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 44;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none; transition: transform 0.25s, box-shadow 0.25s, bottom 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 760px) {
  .whatsapp-float { bottom: 16px; right: 12px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  body.sticky-buy-on .whatsapp-float { bottom: 84px; }
}

/* ---------- exit intent popup ---------- */
.exit-overlay {
  position: fixed; inset: 0; z-index: 60; background: rgba(11, 11, 12, 0.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.exit-overlay.show { opacity: 1; visibility: visible; }
.exit-popup {
  background: var(--ivory); color: var(--black); max-width: 480px; width: 100%; padding: 44px 36px;
  border-radius: 4px; position: relative; text-align: center;
  transform: translateY(20px); transition: transform 0.35s;
}
.exit-overlay.show .exit-popup { transform: translateY(0); }
.exit-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: rgba(11, 11, 12, 0.4); line-height: 1; padding: 4px;
}
.exit-close:hover { color: var(--black); }
.exit-popup .tag { color: var(--maroon); }
.exit-popup h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 12px; }
.exit-popup p { font-size: 0.92rem; color: rgba(11, 11, 12, 0.65); line-height: 1.6; margin-bottom: 28px; }
.exit-popup .btn-primary { width: 100%; margin-bottom: 12px; }
.exit-popup .dismiss { background: none; border: none; font-size: 0.82rem; color: rgba(11, 11, 12, 0.45); cursor: pointer; text-decoration: underline; }
.exit-popup .placeholder-note { font-size: 0.72rem; color: rgba(11, 11, 12, 0.35); margin-top: 16px; font-style: italic; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .vein-svg { animation: none; }
  .strip-track { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible { outline: 2px solid var(--bronze-light); outline-offset: 3px; }

/* ---------- product photos ---------- */
.product-photo {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.spotlight-photo { max-height: 340px; width: auto; margin: 0 auto; }
.pimg-wrap .product-photo { object-fit: contain; padding: 12px; }
.hero-product-visual .product-photo { object-fit: contain; padding: 16px; }

/* ---------- variant picker ---------- */
.variant-picker {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.variant-picker--compact { margin-top: 4px; margin-bottom: 12px; }
.variant-btn {
  background: transparent; border: 1px solid var(--line); color: rgba(242, 238, 230, 0.7);
  padding: 10px 14px; font-size: 0.78rem; font-family: 'Inter', sans-serif; font-weight: 500;
  cursor: pointer; border-radius: 2px; transition: all 0.2s; letter-spacing: 0.02em;
}
.variant-btn:hover { border-color: var(--bronze); color: var(--bronze-light); }
.variant-btn.active {
  background: var(--bronze); color: var(--black); border-color: var(--bronze); font-weight: 600;
}
.spotlight .variant-btn {
  border-color: rgba(11, 11, 12, 0.15); color: rgba(11, 11, 12, 0.65);
}
.spotlight .variant-btn.active { background: var(--black); color: var(--ivory); border-color: var(--black); }
.spotlight .variant-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.products .variant-btn { font-size: 0.74rem; padding: 8px 12px; }
.products .btn-ghost--sm {
  border-color: var(--line); color: rgba(242, 238, 230, 0.75); width: 100%;
}
.products .btn-ghost--sm:hover { border-color: var(--bronze); color: var(--bronze-light); }
.btn-ghost--sm {
  font-size: 0.78rem !important; padding: 10px 14px !important; margin-top: 8px; width: 100%;
  justify-content: center; text-align: center;
}

/* ---------- review media with photos ---------- */
.result-media.video,
.result-media.review-photo {
  background-size: cover; background-position: center; color: transparent;
}
.result-media.review-photo { filter: brightness(0.85); }

/* ---------- founder ---------- */
.founder-image .founder-logo {
  width: 55%; max-width: 180px; height: auto; object-fit: contain; position: relative; z-index: 1;
}
.founder-image { justify-content: center; }

/* ---------- accessibility ---------- */
.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;
}

/* ---------- legal pages shared ---------- */
.legal-page { padding: 120px 5% 80px; max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-family: 'Fraunces', serif; font-size: 2rem; margin-bottom: 12px; }
.legal-page .legal-updated { font-size: 0.82rem; color: rgba(242, 238, 230, 0.45); margin-bottom: 32px; }
.legal-page h2 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin: 32px 0 12px; color: var(--bronze-light); }
.legal-page p, .legal-page li { color: rgba(242, 238, 230, 0.68); line-height: 1.7; font-size: 0.94rem; margin-bottom: 14px; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page a { color: var(--bronze-light); }
.legal-back { display: inline-block; margin-bottom: 28px; font-size: 0.82rem; color: rgba(242, 238, 230, 0.55); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; }
.legal-back:hover { color: var(--bronze-light); }
.legal-footer {
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line);
}
.legal-footer h3 {
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242, 238, 230, 0.45); margin-bottom: 14px;
}
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.legal-footer-links a {
  font-size: 0.88rem; color: rgba(242, 238, 230, 0.65); text-decoration: none;
}
.legal-footer-links a:hover { color: var(--bronze-light); }
.legal-footer-links a.active { color: var(--bronze-light); font-weight: 600; }

/* ========== MERGE PREVIEW ONLY ========== */
.preview-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 48;
  background: linear-gradient(90deg, #4a1414, #6B1F1F);
  color: var(--ivory); font-size: 0.78rem;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 5%; gap: 12px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(184, 118, 62, 0.4);
}
.preview-bar a {
  color: var(--bronze-light); text-decoration: none; font-weight: 600;
  white-space: nowrap; font-size: 0.76rem; letter-spacing: 0.04em;
}
.preview-bar a:hover { color: #fff; }
nav.has-preview-bar { top: 40px; }
body.has-preview-bar .mobile-menu { top: 102px; }
body.has-preview-bar .hero { padding-top: 180px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats .stat .num { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; }
.hero-stats .stat .lbl { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(242, 238, 230, 0.5); margin-top: 4px; }
.price-mrp { text-decoration: line-through; color: rgba(242, 238, 230, 0.45); font-size: 0.9em; margin-right: 6px; }

.products--merge { background: var(--ivory); color: var(--black); }
.products--merge .tag { color: var(--maroon); }
.products--merge .section-head p { color: rgba(11, 11, 12, 0.62); }
.products--merge .pcard {
  background: var(--ivory); border: 1px solid rgba(11, 11, 12, 0.1); color: var(--black);
}
.products--merge .pcard:hover { background: #fbf9f4; }
.products--merge .pdesc { color: rgba(11, 11, 12, 0.65); }
.products--merge .pnum { color: var(--maroon); }

.launch-banner {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  background: linear-gradient(90deg, rgba(107, 31, 31, 0.1), rgba(184, 118, 62, 0.1));
  border: 1px solid rgba(184, 118, 62, 0.35); border-radius: 3px;
  padding: 14px 24px; margin-bottom: 40px; flex-wrap: wrap; text-align: center;
}
.lb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bronze-light); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.launch-banner p { font-size: 0.88rem; color: rgba(11, 11, 12, 0.78); }
.launch-banner p b { color: var(--maroon); }

.prating { font-size: 0.78rem; color: var(--bronze); }
.prating span { color: rgba(11, 11, 12, 0.5); margin-left: 4px; }
.pmeta {
  display: flex; gap: 10px; flex-wrap: wrap; font-size: 0.72rem; letter-spacing: 0.04em;
}
.pmeta span {
  color: var(--maroon); background: rgba(107, 31, 31, 0.08);
  border: 1px solid rgba(107, 31, 31, 0.15); padding: 4px 10px; border-radius: 2px;
}
.pmeta span:first-child { color: var(--bronze); background: rgba(184, 118, 62, 0.1); border-color: rgba(184, 118, 62, 0.25); }
.faq-link {
  font-size: 0.78rem; color: var(--maroon); text-decoration: none; margin-bottom: 4px;
  display: inline-block; transition: color 0.2s;
}
.faq-link:hover { color: var(--bronze); }
.pvariant-select { display: flex; gap: 8px; flex-wrap: wrap; }
.pv-btn {
  background: transparent; border: 1px solid rgba(11, 11, 12, 0.2); color: rgba(11, 11, 12, 0.7);
  font-size: 0.78rem; padding: 8px 14px; border-radius: 2px; cursor: pointer; font-family: 'Inter', sans-serif;
}
.pv-btn.active { background: var(--black); color: var(--ivory); border-color: var(--black); }
.pqty-row { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(11, 11, 12, 0.1); padding-top: 14px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid rgba(11, 11, 12, 0.2); border-radius: 2px; }
.qty-btn { background: none; border: none; width: 32px; height: 32px; cursor: pointer; color: var(--black); font-size: 1rem; }
.qty-btn:hover { color: var(--maroon); }
.qty-val { font-family: 'JetBrains Mono', monospace; font-size: 0.88rem; min-width: 24px; text-align: center; }
.pprice-block { display: flex; align-items: baseline; gap: 8px; }
.pprice-strike { font-size: 0.85rem; color: rgba(11, 11, 12, 0.4); text-decoration: line-through; }
.pprice-now { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem; color: var(--maroon); }
.pmini-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.pmini-badges span { font-size: 0.72rem; color: rgba(11, 11, 12, 0.5); }
.btn-buy {
  display: block; text-align: center; background: var(--black); color: var(--ivory); text-decoration: none;
  padding: 14px 0; border-radius: 2px; font-size: 0.88rem; font-weight: 600; transition: background 0.2s, transform 0.2s;
}
.btn-buy:hover { background: var(--maroon); transform: translateY(-1px); }

.bundle-card {
  margin-top: 36px; background: var(--black); color: var(--ivory);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
  padding: 40px 44px; border: 1px solid rgba(184, 118, 62, 0.35); border-radius: 3px;
}
.bundle-left h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; margin: 10px 0; }
.bundle-left p { color: rgba(242, 238, 230, 0.65); font-size: 0.92rem; }
.bundle-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.bundle-badges span { font-size: 0.78rem; color: var(--bronze-light); }
.bundle-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.bundle-price { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--bronze-light); }
.bundle-save { font-size: 0.78rem; color: var(--bronze-light); letter-spacing: 0.04em; }
.bundle-math { font-size: 0.82rem; color: rgba(242, 238, 230, 0.55); margin: 8px 0 0; }
.bundle-math b { color: var(--ivory); font-weight: 600; }
.products--merge .bundle-math { color: rgba(11, 11, 12, 0.55); }
.products--merge .bundle-math b { color: var(--black); }
.bundle-right .btn-buy { width: 220px; background: var(--bronze); color: var(--black); }
.bundle-right .btn-buy:hover { background: var(--bronze-light); }
@media (max-width: 760px) {
  .bundle-card { grid-template-columns: 1fr; }
  .bundle-right { align-items: flex-start; }
  .bundle-right .btn-buy { width: 100%; }
}

.best-results { background: var(--black-soft); }
.results-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px;
}
.timeline-step {
  background: var(--black); border: 1px solid var(--line); padding: 28px 24px; border-radius: 2px;
}
.timeline-step .tnum { font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; color: var(--bronze-light); }
.timeline-step h4 { font-family: 'Fraunces', serif; font-size: 1.1rem; margin: 12px 0 8px; }
.timeline-step p { font-size: 0.86rem; color: rgba(242, 238, 230, 0.6); line-height: 1.55; }
@media (max-width: 860px) { .results-timeline { grid-template-columns: 1fr; } }

.dosage-grid--enhanced .dose-card--featured { border-color: rgba(184, 118, 62, 0.45); }
.dose-badge {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--maroon); color: var(--ivory); padding: 4px 10px; border-radius: 2px; margin-bottom: 12px;
}
.dose-link { font-size: 0.82rem; color: var(--maroon); text-decoration: none; margin-top: 12px; display: inline-block; }
.dose-link:hover { color: var(--bronze); }

.stack-guide {
  margin-top: 48px; padding: 36px; background: var(--black); border: 1px solid var(--line); border-radius: 2px; text-align: center;
}
.stack-guide h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; margin-bottom: 28px; }
.stack-flow { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.stack-item { flex: 1; min-width: 140px; max-width: 200px; padding: 20px 16px; background: var(--black-soft); border: 1px solid var(--line); border-radius: 2px; }
.stack-item span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-light); }
.stack-item strong { display: block; font-family: 'Fraunces', serif; margin: 8px 0 6px; }
.stack-item p { font-size: 0.8rem; color: rgba(242, 238, 230, 0.55); }
.stack-arrow { color: var(--bronze); font-size: 1.4rem; padding-top: 24px; }
.stack-price-note {
  margin-top: 24px; font-size: 0.95rem; color: rgba(242, 238, 230, 0.75);
}
.stack-price-note span { color: rgba(242, 238, 230, 0.45); font-size: 0.85rem; display: block; margin-top: 4px; }
.product-grid--merge { gap: 24px; }
.results-note {
  font-size: 0.85rem; color: rgba(11, 11, 12, 0.55); margin-bottom: 20px; max-width: 640px; line-height: 1.5;
}
.founder-image { position: relative; text-align: center; }
.founder-photo-note {
  display: block; margin-top: 10px; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(242, 238, 230, 0.4);
}

/* ========== V1 Shilajit-first homepage ========== */
.hero-secondary-cta {
  display: inline-block; margin-top: 14px; font-size: 0.82rem; color: var(--bronze-light);
  text-decoration: none; letter-spacing: 0.04em;
}
.hero-secondary-cta:hover { color: var(--ivory); }
.product-duo {
  display: grid; grid-template-columns: 1.35fr 0.85fr; gap: 24px; align-items: stretch;
  width: 82%; max-width: 1480px;
}
.pcard--hero { border-color: rgba(184, 118, 62, 0.45); padding: 40px 32px 44px; }
.pcard--hero .pimg-wrap { height: 180px; }
.pcard--trial { opacity: 0.95; }
.pcard--trial .pimg-wrap { height: 140px; }
.size-badge {
  align-self: flex-start; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px; border: 1px solid var(--line); color: rgba(242, 238, 230, 0.7);
}
.size-badge--value { background: var(--maroon); color: var(--ivory); border-color: var(--maroon); }
.products--v1 .pprice-now { color: var(--bronze-light); font-size: 1.6rem; font-weight: 600; }
.products--v1 .btn-buy {
  display: block; text-align: center; background: transparent; color: var(--ivory); text-decoration: none;
  padding: 14px 0; border-radius: 2px; font-size: 0.88rem; font-weight: 600; border: 1px solid var(--line);
}
.products--v1 .btn-buy:hover { border-color: var(--bronze); color: var(--bronze-light); }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.buying { background: var(--black); }
.buying-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1100px;
}
.buying-visual { background: var(--black-soft); border: 1px solid var(--line); padding: 24px; border-radius: 2px; }
.buying-visual .product-photo { height: auto; max-height: 360px; width: 100%; }
.buying h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0 16px; }
.buying p { color: rgba(242, 238, 230, 0.68); line-height: 1.65; margin-bottom: 20px; }
.buying-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.buying-list li { padding-left: 18px; position: relative; color: rgba(242, 238, 230, 0.72); font-size: 0.95rem; line-height: 1.5; }
.buying-list li::before { content: '—'; position: absolute; left: 0; color: var(--bronze); }
.resin { background: var(--black-soft); }
.resin-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; }
.resin-col { background: var(--black); border: 1px solid var(--line); padding: 32px 28px; border-radius: 2px; }
.resin-col h4 { font-family: 'Fraunces', serif; font-size: 1.15rem; margin-bottom: 12px; }
.resin-col p { font-size: 0.92rem; line-height: 1.6; color: rgba(242, 238, 230, 0.62); }
.resin-col--accent { border-color: rgba(184, 118, 62, 0.45); }
.quality { background: var(--black); }
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; }
.quality-card { border: 1px solid var(--line); padding: 28px 24px; border-radius: 2px; background: var(--black-soft); }
.quality-card h4 { font-family: 'Fraunces', serif; margin-bottom: 10px; }
.quality-card p { font-size: 0.9rem; line-height: 1.6; color: rgba(242, 238, 230, 0.62); }
.dosage-grid--use { max-width: 1000px; }
.founder--text { background: var(--black-soft); }
.founder-text-wrap { max-width: 720px; }
.founder-story { margin: 12px 0 8px; }
.founder-story p {
  font-size: 1.08rem; line-height: 1.8; color: rgba(242, 238, 230, 0.8); margin-bottom: 20px;
  font-family: 'Fraunces', serif; font-weight: 400;
}
.founder-sig { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.founder-sig strong { display: block; font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--ivory); }
.founder-sig span { display: block; margin-top: 4px; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--bronze-light); }
.results--ready { background: var(--ivory); color: var(--black); }
.feedback-ready {
  max-width: 560px; padding: 36px 32px; border: 1px dashed rgba(11, 11, 12, 0.18);
  background: #fff; border-radius: 2px;
}
.feedback-ready p { color: rgba(11, 11, 12, 0.65); line-height: 1.6; margin-bottom: 20px; }
.reviews-slot {
  max-width: 640px; min-height: 0; padding: 24px 28px;
  border: 1px solid rgba(11, 11, 12, 0.1); background: #fff; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.reviews-empty-line { font-size: 0.92rem; color: rgba(11, 11, 12, 0.48); letter-spacing: 0.02em; margin: 0; text-align: center; }
.results--ready .btn-ghost { color: var(--black); border-color: rgba(11, 11, 12, 0.2); }
.results--ready .btn-ghost:hover { border-color: var(--bronze); color: var(--maroon); }
@media (max-width: 900px) {
  .product-duo, .buying-grid, .resin-compare, .quality-grid, .feature-grid--3 { grid-template-columns: 1fr; }
  .product-duo { width: 100%; max-width: none; }
  .pcard--hero .pimg-wrap { height: 160px; }
  .pcard--trial .pimg-wrap { height: 140px; }
}

/* ---------- product pages ---------- */
.pdp-hero { padding: 104px 0 28px; }
.pdp-crumbs { font-size: 0.75rem; color: rgba(242, 238, 230, 0.4); margin-bottom: 20px; }
.pdp-crumbs a { color: rgba(242, 238, 230, 0.55); text-decoration: none; }
.pdp-crumbs a:hover { color: var(--bronze-light); }
.size-compare a { color: rgba(242, 238, 230, 0.55); text-decoration: none; }
.size-compare a:hover { color: var(--bronze-light); }

/* ---------- QR / gym landing ---------- */
.try-page section { padding: 0; }
.try-hero {
  padding: 100px 6% 40px; text-align: center; max-width: 520px; margin: 0 auto;
}
.try-brand {
  font-family: 'Fraunces', serif; font-size: 0.82rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ivory); margin-bottom: 14px;
}
.try-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bronze-light); margin-bottom: 16px;
}
.try-hero h1 {
  font-family: 'Fraunces', serif; font-size: clamp(1.55rem, 6vw, 2.35rem);
  font-weight: 600; line-height: 1.22; margin-bottom: 14px;
}
@media (max-width: 480px) {
  .try-hero h1 { font-size: 1.62rem; max-width: 11.5em; margin-left: auto; margin-right: auto; }
  .try-h1-break { display: block; }
  .try-hero { padding: 92px 5% 28px; }
  .try-hero-img { width: min(210px, 54vw); margin-bottom: 18px; }
}
.try-support {
  font-size: 1rem; line-height: 1.6; color: rgba(242, 238, 230, 0.7); margin-bottom: 24px;
}
.try-hero-img {
  width: min(260px, 70vw); height: auto; margin: 0 auto 28px; display: block;
}
.try-actions { display: flex; flex-direction: column; gap: 10px; }
.try-actions .btn-primary,
.try-actions .btn-ghost { width: 100%; justify-content: center; }
.try-wa-wrap { margin: 18px 0 0; }
.try-wa-wrap .btn-ghost { width: 100%; justify-content: center; }
.try-block {
  padding: 40px 6%; max-width: 560px; margin: 0 auto;
}
.try-block h2 {
  font-family: 'Fraunces', serif; font-size: 1.45rem; font-weight: 600;
  line-height: 1.25; margin: 0 0 14px;
}
.try-block > p { font-size: 0.98rem; line-height: 1.65; color: rgba(242, 238, 230, 0.7); margin-bottom: 16px; }
.try-block a { color: var(--bronze-light); }
.try-packs { display: flex; flex-direction: column; gap: 12px; }
.try-pack {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); padding: 18px 18px 16px; border-radius: 2px; background: var(--black-soft);
}
.try-pack--main { border-color: rgba(184, 118, 62, 0.5); }
.try-pack strong { display: block; font-family: 'Fraunces', serif; font-size: 1.6rem; margin: 8px 0 4px; }
.try-pack span { display: block; font-size: 0.88rem; color: rgba(242, 238, 230, 0.55); }
.try-pack em { display: block; font-style: normal; margin-top: 12px; font-size: 0.82rem; color: var(--bronze-light); }
.try-cta { padding: 56px 6% !important; }
@media (min-width: 760px) {
  .try-hero, .try-block { max-width: 640px; }
  .try-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .try-actions a { width: auto; min-width: 200px; }
  .try-packs { flex-direction: row; }
  .try-pack { flex: 1; }
}
.pdp-crumbs,
.pdp-grid,
.pdp-story {
  width: calc(100% - 48px);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pdp-main-img {
  background: var(--black-soft); border: 1px solid var(--line); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; min-height: 360px; overflow: hidden;
}
.pdp-main-img img { width: 100%; height: auto; max-height: 480px; object-fit: contain; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pdp-thumb {
  width: 72px; height: 72px; padding: 4px; background: var(--black-soft); border: 1px solid var(--line);
  cursor: pointer; border-radius: 2px;
}
.pdp-thumb.active { border-color: var(--bronze); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-buy { padding-top: 0; }
.pdp-buy--primary { border: 1px solid rgba(184, 118, 62, 0.4); padding: 24px 22px; border-radius: 2px; background: var(--black-soft); }
.pdp-buy h1 { font-family: 'Fraunces', serif; font-size: clamp(1.45rem, 2.8vw, 1.95rem); font-weight: 600; line-height: 1.2; margin: 0 0 8px; }
.pdp-pack { font-size: 0.92rem; color: rgba(242, 238, 230, 0.6); margin-bottom: 16px; }
.pdp-price { font-family: 'Fraunces', serif; font-size: 1.85rem; color: var(--bronze-light); margin: 0; }
.pdp-price span { display: block; font-family: 'Inter', sans-serif; font-size: 0.72rem; color: rgba(242, 238, 230, 0.45); margin-top: 2px; letter-spacing: 0.04em; text-transform: none; }
.pdp-checkout-note { font-size: 0.8rem; line-height: 1.5; color: rgba(242, 238, 230, 0.5); margin-bottom: 20px; }
.pdp-cta { width: 100%; margin-top: 14px; margin-bottom: 0; }
.pdp-buy .btn-ghost { width: 100%; justify-content: center; }
.pdp-cross { margin-top: 18px; font-size: 0.88rem; }
.pdp-cross a { color: var(--bronze-light); }
.pdp-lead { margin: 0 0 18px; }
.size-card { border: 1px solid var(--line); border-radius: 2px; padding: 16px 16px 18px; margin-bottom: 10px; }
.size-card--main { border-color: rgba(184, 118, 62, 0.55); background: rgba(184, 118, 62, 0.06); padding: 18px 16px 20px; }
.size-card--trial,
.size-card--alt { opacity: 0.78; padding: 12px 14px 14px; background: transparent; }
.size-card .size-badge { display: inline-block; margin-bottom: 10px; }
.size-badge--pack {
  background: rgba(184, 118, 62, 0.16);
  color: var(--bronze-light);
  border-color: rgba(184, 118, 62, 0.5);
}
.size-card-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.size-weight { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.size-card--trial .size-weight,
.size-card--alt .size-weight { font-size: 1.12rem; }
.size-card--alt .size-price-sm { font-size: 1.1rem; }
.size-note { font-size: 0.75rem; color: rgba(242, 238, 230, 0.5); margin-top: 4px; letter-spacing: 0.02em; }
.size-price-sm { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--bronze-light); text-align: right; margin: 0; }
.size-price-sm span { display: block; font-family: 'Inter', sans-serif; font-size: 0.68rem; color: rgba(242, 238, 230, 0.42); margin-top: 2px; }
.size-trial-cta { margin-top: 12px; padding: 12px 16px; font-size: 0.85rem; }
.size-card--alt .size-trial-cta,
.size-card--trial .size-trial-cta { margin-top: 10px; padding: 10px 14px; font-size: 0.8rem; }
.size-compare {
  font-size: 0.78rem; color: rgba(242, 238, 230, 0.5); letter-spacing: 0.02em;
  margin: 4px 0 12px; line-height: 1.45;
}
.pdp-wa { margin-top: 0; }
.pdp-buy .pdp-help { margin-top: 12px; }
.pdp-body { padding: 40px 5% 80px; max-width: 760px; margin: 0 auto; }
.pdp-block { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.pdp-block h2 { font-family: 'Fraunces', serif; font-size: 1.35rem; margin-bottom: 14px; }
.pdp-block p, .pdp-block li { font-size: 0.95rem; line-height: 1.7; color: rgba(242, 238, 230, 0.68); }
.pdp-block ul { padding-left: 18px; margin: 10px 0; }
.pdp-block li { margin-bottom: 6px; }
.pdp-block a { color: var(--bronze-light); }
.pdp-fine { font-size: 0.82rem !important; color: rgba(242, 238, 230, 0.45) !important; margin-top: 12px; }
.pdp-lead {
  font-size: 1.05rem; line-height: 1.55; color: rgba(242, 238, 230, 0.78); margin: 4px 0 20px;
  font-family: 'Fraunces', serif; font-weight: 400;
}
.pdp-help { font-size: 0.82rem; line-height: 1.5; color: rgba(242, 238, 230, 0.5); margin: 16px 0 0; }
.pdp-story { padding: 40px 0 56px; }
.pdp-chapter {
  padding: 0;
  margin-bottom: 68px;
}
.pdp-chapter:last-child { margin-bottom: 0; }
.pdp-chapter .tag { margin-bottom: 10px; }
.pdp-chapter h2 {
  font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600;
  line-height: 1.25; margin: 0 0 18px;
}
.pdp-chapter > p { font-size: 1.02rem; line-height: 1.75; color: rgba(242, 238, 230, 0.72); margin: 0 0 24px; }
.pdp-chapter > p:last-child { margin-bottom: 0; }
.pdp-chapter a { color: var(--bronze-light); }
.pdp-chapter--quote { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pdp-chapter--quote p {
  font-family: 'Fraunces', serif; font-size: 1.08rem; line-height: 1.7; color: rgba(242, 238, 230, 0.8);
}
.buy-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 8px;
  background: var(--line); border: 1px solid var(--line); border-radius: 2px; overflow: hidden;
}
.buy-facts > div { background: var(--black-soft); padding: 18px 18px 20px; }
.buy-facts h4 {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bronze-light); margin-bottom: 8px; font-weight: 600;
}
.buy-facts p { font-size: 0.95rem !important; line-height: 1.5; color: rgba(242, 238, 230, 0.82) !important; margin: 0 !important; }
.pdp-chapter--resin { padding-top: 8px; }
.resin-note {
  margin-top: 4px !important; padding: 16px 18px;
  border-left: 2px solid var(--bronze); background: rgba(184, 118, 62, 0.07);
  font-size: 0.95rem !important; color: rgba(242, 238, 230, 0.78) !important;
}
.routine-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 8px 0 24px; }
.routine-steps > div { background: var(--black-soft); border: 1px solid var(--line); padding: 20px 18px; border-radius: 2px; }
.routine-steps span { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--bronze-light); letter-spacing: 0.1em; }
.routine-steps h3 { font-family: 'Fraunces', serif; font-size: 1.05rem; margin: 10px 0 8px; }
.routine-steps p { font-size: 0.88rem !important; line-height: 1.55; color: rgba(242, 238, 230, 0.6); margin: 0 !important; }
.pdp-storage { font-size: 0.95rem; color: rgba(242, 238, 230, 0.72); border-left: 2px solid var(--bronze); padding: 14px 0 14px 16px; margin: 0; }
.use-card {
  background: var(--black-soft); border: 1px solid var(--line); border-radius: 2px; padding: 20px 22px;
}
.use-card p { font-size: 1.02rem !important; line-height: 1.65; color: rgba(242, 238, 230, 0.78) !important; margin: 0 0 14px !important; }
.use-card p:last-child { margin-bottom: 0 !important; }
.know-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-top: 4px; }
.know-grid--2 { grid-template-columns: 1fr 1fr; }
.know-grid > div { padding: 16px 0; border-top: 1px solid var(--line); }
.know-grid h4 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 8px; }
.know-grid p { font-size: 0.95rem !important; margin: 0 !important; color: rgba(242, 238, 230, 0.78) !important; line-height: 1.5; }
.reviews-empty {
  margin-top: 4px; padding: 28px 24px; text-align: center;
  border: 1px solid var(--line); border-radius: 2px;
  background: linear-gradient(180deg, var(--black-soft), var(--black));
}
.reviews-empty p { max-width: 420px; margin: 0 auto 24px !important; color: rgba(242, 238, 230, 0.58) !important; }
.reviews-empty .btn-ghost { justify-content: center; }
@media (max-width: 800px) {
  .routine-steps, .know-grid, .know-grid--2, .buy-facts { grid-template-columns: 1fr; }
}
.pdp-details-link { font-size: 0.82rem; color: var(--bronze-light); text-decoration: none; margin-top: 4px; display: inline-block; }
.pdp-details-link:hover { color: var(--ivory); }
@media (max-width: 860px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
  .pdp-hero { padding-top: 88px; padding-bottom: 16px; }
  .pdp-buy--primary { padding: 22px 18px; }
}
@media (max-width: 760px) {
  .pdp-buy--primary { padding-right: 18px; }
  body.hero-in-view .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .try-block { padding-right: calc(6% + 44px); }
}
body.pdp .cta {
  padding-left: 0;
  padding-right: 0;
}
body.pdp .cta h2,
body.pdp .cta p,
body.pdp .cta-actions {
  width: calc(100% - 48px);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
body.pdp .cta p { margin-bottom: 32px; }
@media (max-width: 760px) {
  .pdp-crumbs,
  .pdp-grid,
  .pdp-story,
  body.pdp .cta h2,
  body.pdp .cta p,
  body.pdp .cta-actions {
    width: calc(100% - 32px);
  }
}

/* ---------- homepage global container ---------- */
.container {
  width: calc(100% - 48px);
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}
.page-home nav {
  padding-left: 0;
  padding-right: 0;
}
.page-home nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.page-home > section,
.page-home .hero,
.page-home .cta {
  padding-left: 0;
  padding-right: 0;
}
.page-home .disclaimer-bar {
  padding-left: 0;
  padding-right: 0;
}
.page-home footer {
  padding-left: 0;
  padding-right: 0;
}
.page-home .mobile-menu {
  padding-left: 16px;
  padding-right: 16px;
}
.page-home .hero-grid {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.page-home .product-duo {
  width: 100%;
  max-width: none;
}
.page-home .buying-grid,
.page-home .resin-compare,
.page-home .quality-grid,
.page-home .dosage-grid,
.page-home .dosage-grid--use {
  max-width: none;
  width: 100%;
}
.page-home .hero-product-card { max-width: none; }
.page-home .price-tax {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(242, 238, 230, 0.45);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .container { width: calc(100% - 32px); }
  .page-home > section,
  .page-home .hero,
  .page-home .cta {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ---------- educational guide (scoped) ---------- */
.guide-wrap {
  width: calc(100% - 48px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.guide-hero { padding: 118px 0 28px; }
.guide-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 14px;
}
.guide-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.guide-dek {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(242, 238, 230, 0.74);
  margin-bottom: 18px;
}
.guide-meta {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(242, 238, 230, 0.45);
  margin-bottom: 22px;
}
.guide-toc {
  border: 1px solid var(--line);
  background: var(--black-soft);
  padding: 18px 18px 8px;
  margin: 8px 0 12px;
}
.guide-toc p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 10px;
}
.guide-toc ol { margin: 0 0 10px 1.1rem; }
.guide-toc li { margin-bottom: 6px; }
.guide-toc a {
  color: rgba(242, 238, 230, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.45;
}
.guide-toc a:hover { color: var(--bronze-light); }
.guide-body { padding-bottom: 24px; }
.guide-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 48px 0 14px;
}
.guide-hero .pdp-crumbs {
  width: auto;
  max-width: none;
  margin: 0 0 20px;
}
.guide-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 26px 0 10px;
  color: var(--ivory);
}
.guide-body p,
.guide-body li {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242, 238, 230, 0.74);
}
.guide-body p { margin: 0 0 14px; }
.guide-body ul,
.guide-body ol { margin: 0 0 16px 1.15rem; }
.guide-body li { margin-bottom: 8px; }
.guide-body a { color: var(--bronze-light); }
.guide-body strong { color: var(--ivory); font-weight: 600; }
.guide-note {
  border-left: 2px solid var(--bronze);
  padding: 4px 0 4px 16px;
  margin: 8px 0 18px;
}
.guide-note p { margin-bottom: 0; color: rgba(242, 238, 230, 0.82); }
.guide-table-wrap { overflow-x: auto; margin: 8px 0 20px; }
.guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.92rem;
}
.guide-table th,
.guide-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.guide-table th {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze-light);
  font-weight: 600;
}
.guide-table td { color: rgba(242, 238, 230, 0.78); }
.guide-figure { margin: 18px 0 22px; }
.guide-figure img {
  width: min(100%, 320px);
  height: auto;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.guide-figure figcaption {
  margin-top: 8px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(242, 238, 230, 0.48);
  max-width: 520px;
}
.guide-sources { font-size: 0.88rem; }
.guide-sources li { margin-bottom: 10px; }
.guide-cta h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
@media (max-width: 760px) {
  .guide-wrap { width: calc(100% - 32px); }
  .guide-hero { padding-top: 100px; }
}