@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg:       #F5F0E8;
  --bg2:      #EDE6D8;
  --bg3:      #E2D9C8;
  --ink:      #1A150C;
  --ink2:     #4A3F30;
  --ink3:     #7A6F60;
  --terra:    #C4581E;
  --terra2:   #E07040;
  --terra3:   #F5A57A;
  --moss:     #2D4A2F;
  --moss2:    #3D6440;
  --gold:     #B8962A;
  --gold2:    #D4AE40;
  --rule:     #D4C8B0;
  --white:    #FDFAF5;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
  --fm: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--fb); background: var(--bg); color: var(--ink); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── READ PROGRESS BAR ─── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
}

/* ─── DISCLAIMER ─── */
.disclaimer-bar {
  background: var(--moss);
  color: rgba(255,255,255,.5);
  text-align: center;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  position: relative;
  z-index: 100;
}

/* ─── NAV — minimal typographic ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.3px;
}
.nav-logo em { font-style: italic; color: var(--terra); }
.nav-center {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--terra); }
.nav-cta {
  background: var(--terra);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--moss); transform: translateY(-1px); color: #fff; }

/* ─── HERO — MAGAZINE COVER ─── */
.hero-magazine {
  display: grid;
  grid-template-columns: 1fr 520px;
  min-height: 96vh;
  overflow: hidden;
}
.hero-content-col {
  padding: 80px 72px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
/* Decorative large background letter */
.hero-bg-letter {
  position: absolute;
  top: -40px;
  left: -30px;
  font-family: var(--fd);
  font-size: 400px;
  font-weight: 900;
  color: rgba(196,88,30,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-meta {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--terra);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.hero-meta::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--terra), transparent);
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 400;
  line-height: .98;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.hero-h1 em { font-style: italic; color: var(--terra); }
.hero-h1 .line-accent {
  display: block;
  position: relative;
}
.hero-h1 .line-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--terra), transparent);
  border-radius: 2px;
}
.hero-deck {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-main {
  background: var(--terra);
  color: #fff;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  transition: all .2s;
  letter-spacing: .03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.btn-main:hover::before { transform: translateX(0); }
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,88,30,.35); color: #fff; }
.hero-price-inline {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}
.hero-price-inline small {
  font-size: 14px;
  color: var(--ink3);
  font-family: var(--fb);
  font-weight: 400;
  margin-left: 4px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink2);
  background: var(--white);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--moss); }

.hero-image-col {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.hero-image-col:hover img { transform: scale(1.03); }
/* Hero image overlay with quote */
.hero-image-caption {
  position: absolute;
  bottom: 32px;
  left: 24px;
  right: 24px;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 14px 18px;
  border-left: 3px solid var(--terra);
}
.hero-image-caption p {
  font-family: var(--fd);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.hero-image-caption span {
  font-size: 11px;
  color: var(--terra);
  font-weight: 600;
  letter-spacing: .05em;
}

/* ─── STATS ROW — animated counters ─── */
.stats-row {
  background: var(--moss);
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--terra);
  transition: width .4s ease;
}
.stat-item.animated::before { width: 60%; }
.stat-num {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.stat-num em { font-style: normal; color: var(--terra3); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ─── HORIZONTAL INGREDIENT SCROLLER ─── */
.ingredients-section {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}
.ingredients-header {
  padding: 0 80px;
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-tag {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--terra);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
}
.section-title em { font-style: italic; }
.ingr-scroll-hint {
  font-size: 12px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.ingr-scroll-hint::after { content: '→'; font-size: 16px; animation: nudge 1.5s infinite; }
@keyframes nudge { 0%,100%{transform:translateX(0)} 50%{transform:translateX(6px)} }

.ingr-track {
  display: flex;
  gap: 20px;
  padding: 0 80px 20px;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ingr-track::-webkit-scrollbar { display: none; }
.ingr-track.grabbing { cursor: grabbing; }
.ingr-card-h {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.ingr-card-h:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,21,12,.12); }
.ingr-card-top {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}
.ingr-card-bg {
  position: absolute;
  inset: 0;
  opacity: .12;
  background: radial-gradient(circle, var(--terra), transparent 70%);
}
.ingr-card-body { padding: 20px 22px; }
.ingr-dose {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--terra);
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.ingr-name-h {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.ingr-latin {
  font-family: var(--fd);
  font-style: italic;
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 10px;
}
.ingr-text { font-size: 13px; color: var(--ink2); line-height: 1.6; }

/* ─── SPLIT EDITORIAL SECTION ─── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.editorial-split.reverse { direction: rtl; }
.editorial-split.reverse > * { direction: ltr; }
.ed-img {
  position: relative;
  overflow: hidden;
}
.ed-img img { width: 100%; height: 100%; object-fit: cover; }
.ed-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,74,47,.6) 0%, transparent 60%);
}
.ed-img-label {
  position: absolute;
  top: 32px; left: 32px;
  font-family: var(--fm);
  font-size: 11px;
  color: rgba(255,255,255,.7);
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(0,0,0,.3);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.ed-content {
  background: var(--bg2);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ed-content.dark {
  background: var(--ink);
  color: #fff;
}
.ed-content.dark .section-title { color: #fff; }
.ed-content.dark .section-tag { color: var(--terra3); }
.ed-content.dark p { color: rgba(255,255,255,.6); }

/* ─── HOW-TO TIMELINE — horizontal ─── */
.howto-section {
  padding: 100px 80px;
  background: var(--bg3);
  overflow: hidden;
}
.howto-timeline {
  display: flex;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.howto-timeline::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--moss));
}
.howto-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.howto-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--terra);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.howto-step:hover .howto-num {
  background: var(--terra);
  color: #fff;
  transform: scale(1.1);
}
.howto-title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.howto-text { font-size: 13px; color: var(--ink2); line-height: 1.6; }
.howto-time {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--terra);
  letter-spacing: .1em;
  margin-top: 10px;
  display: block;
}

/* ─── INTERACTIVE MOLECULE SVG BLOCK ─── */
.molecule-section {
  background: var(--ink);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.molecule-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,88,30,.15), transparent 70%);
  pointer-events: none;
}
.molecule-text .section-tag { color: var(--terra3); }
.molecule-text .section-title { color: #fff; }
.molecule-text p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.8; margin-top: 16px; }

.molecule-svg-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.molecule-svg {
  width: 100%;
  height: auto;
}
/* SVG molecule animations */
.mol-circle { transition: all .3s ease; cursor: pointer; }
.mol-circle:hover { filter: brightness(1.3); }
.mol-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawLine 2s ease forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.mol-pulse {
  animation: molPulse 3s ease-in-out infinite;
}
@keyframes molPulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }
.mol-orbit {
  animation: orbit 8s linear infinite;
  transform-origin: 240px 240px;
}
@keyframes orbit { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.mol-label { font-family: Inter, sans-serif; font-size: 11px; pointer-events: none; }
.mol-tooltip { opacity: 0; transition: opacity .3s; }
.mol-circle:hover + .mol-tooltip { opacity: 1; }

/* ─── ORDER SECTION — dark premium ─── */
.order-section {
  padding: 100px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: 'ORDINA';
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--fd);
  font-size: 200px;
  font-weight: 900;
  color: rgba(196,88,30,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.order-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.order-product-info {}
.order-product-img {
  border-radius: 12px;
  overflow: visible;
  margin-bottom: 28px;
  background: var(--bg2);
  border-radius: 12px;
}
.order-product-img img { width: 100%; height: auto; max-height: 500px; object-fit: contain; background: var(--bg2); padding: 24px; display: block; }
.order-details { display: flex; flex-direction: column; gap: 12px; }
.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.order-detail-row:last-child { border-bottom: none; }
.order-detail-label { color: var(--ink3); }
.order-detail-value { font-weight: 600; color: var(--ink); }
.order-detail-value.price { font-family: var(--fd); font-size: 24px; color: var(--terra); }

.order-form-col {}
.order-form-head { margin-bottom: 24px; }
.order-form-head .section-tag { margin-bottom: 6px; }
.order-form-head h2 {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.order-form-head h2 em { font-style: italic; }

.form-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-field { display: flex; flex-direction: column; gap: 4px; }
.form-field label {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--fm);
}
.form-field input {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: var(--fb);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-field input::placeholder { color: var(--bg3); }
.form-field input:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(196,88,30,.1); }
.form-field input.valid { border-color: var(--moss); }
.form-field input.invalid { border-color: #C41C1C; }
.field-error { font-size: 11px; color: #C41C1C; display: none; font-family: var(--fm); }
.field-error.show { display: block; }
.consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--ink2); line-height: 1.5; margin-top: 4px;
}
.consent-row input { margin-top: 2px; flex-shrink: 0; accent-color: var(--terra); }
.consent-row a { color: var(--terra); text-decoration: underline; }
.btn-order-final {
  width: 100%;
  background: linear-gradient(135deg, var(--terra), #D4602A);
  color: #fff;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 600;
  padding: 18px;
  border-radius: 6px;
  border: none;
  margin-top: 16px;
  transition: all .25s;
  letter-spacing: .03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-order-final::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .4s ease, height .4s ease;
}
.btn-order-final:hover::after { width: 300px; height: 300px; }
.btn-order-final:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,88,30,.4); }
.form-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink3);
}
.form-trust span::before { content: '✓ '; color: var(--moss); font-weight: 700; }

/* ─── REVIEWS — masonry-ish grid ─── */
.reviews-section { padding: 88px 80px; background: var(--bg2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px;
}
.rev-card.featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--moss);
  color: #fff;
  border-color: var(--moss2);
}
.rev-card.featured .rev-stars { color: var(--terra3); }
.rev-card.featured .rev-text { color: rgba(255,255,255,.8); }
.rev-card.featured .rev-meta { color: rgba(255,255,255,.5); }
.rev-stars { color: var(--terra); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.rev-text {
  font-family: var(--fd);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 16px;
}
.rev-card.featured .rev-text { font-size: 19px; }
.rev-meta { display: flex; align-items: center; gap: 10px; }
.rev-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; display: block; flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.rev-city { font-size: 11px; color: var(--ink3); }

/* ─── FAQ — accordion ─── */
.faq-section { padding: 88px 80px; background: var(--bg); }
.faq-layout {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.faq-col { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 0; font-size: 14px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; cursor: pointer; font-family: var(--fb);
}
.faq-ico { font-size: 18px; color: var(--terra); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { font-size: 13px; color: var(--ink2); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 16px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.4); padding: 56px 80px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo-wrap .nav-logo { font-size: 24px; color: #fff; display: block; margin-bottom: 12px; }
.footer-logo-wrap p { font-size: 13px; line-height: 1.75; max-width: 260px; color: rgba(255,255,255,.35); }
.footer-col h4 {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-col ul li a:hover { color: var(--terra2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.25); }
.footer-copy { display: flex; gap: 8px; align-items: center; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,21,12,.75);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  position: relative; z-index: 10000;
  background: var(--white);
  border-radius: 16px;
  padding: 52px 44px;
  max-width: 420px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}
.modal-ico { font-size: 64px; margin-bottom: 16px; }
.modal-title {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.modal-sub { font-size: 15px; color: var(--ink2); line-height: 1.65; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal:nth-child(1){transition-delay:0ms}
.reveal:nth-child(2){transition-delay:80ms}
.reveal:nth-child(3){transition-delay:160ms}
.reveal:nth-child(4){transition-delay:240ms}
.reveal:nth-child(5){transition-delay:320ms}

/* LEGAL PAGES */
.legal-hero { background: var(--bg2); border-bottom: 1px solid var(--rule); padding: 80px 80px 36px; }
.legal-hero h1 { font-family: var(--fd); font-size: clamp(24px, 3.5vw, 40px); font-weight: 400; color: var(--ink); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 48px 80px 72px; }
.legal-body h2 { font-family: var(--fd); font-size: 20px; font-weight: 600; margin: 28px 0 10px; color: var(--ink); }
.legal-body p, .legal-body li { font-size: 15px; color: var(--ink2); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { padding-left: 18px; }
.legal-body a { color: var(--terra); text-decoration: underline; }

/* RESPONSIVE */
@media(max-width:1100px){
  .hero-magazine { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { height: 480px; }
  .hero-content-col { padding: 60px 40px; }
  .editorial-split { grid-template-columns: 1fr; }
  .ed-img { height: 400px; }
  .molecule-section { grid-template-columns: 1fr; gap: 48px; }
  .order-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); padding: 0 40px; }
  .howto-timeline::before { display: none; }
  .howto-section,.ingredients-section,.reviews-section,.faq-section,.order-section { padding: 64px 40px; }
  .ingredients-header { padding: 0 40px; }
  .ingr-track { padding: 0 40px 20px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .rev-card.featured { grid-column: 1/-1; grid-row: auto; }
  .faq-layout { grid-template-columns: 1fr; }
  .legal-hero,.legal-body { padding-left: 40px; padding-right: 40px; }
  .site-footer { padding: 44px 40px 22px; }
  .footer-top { gap: 32px; }
  .hero-bg-letter { font-size: 240px; }
  .nav-center { display: none; }
}
@media(max-width:768px){
  .site-nav { padding: 0 20px; }
  .hero-content-col { padding: 40px 20px; }
  .stats-row { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .howto-section,.ingredients-section,.reviews-section,.faq-section,.order-section { padding: 52px 20px; }
  .ingredients-header { padding: 0 20px; }
  .ingr-track { padding: 0 20px 16px; }
  .form-row2 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 40px 20px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .legal-hero,.legal-body { padding-left: 20px; padding-right: 20px; }
  .molecule-section,.howto-section { padding: 52px 20px; }
  .order-section::before { display: none; }
}
@media(prefers-reduced-motion:reduce){
  .reveal,.reveal-left,.reveal-right { opacity:1; transform:none; transition:none; }
  * { animation-duration:.01ms!important; transition-duration:.01ms!important; }
}
