/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ─── VARIABLES ─── */
:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --gold: #c9a96e;
  --gold2: #e8d5a3;
  --gold-light: rgba(201, 169, 110, 0.12);
  --text: #f2ede4;
  --text2: #a09880;
  --border: rgba(201, 169, 110, 0.18);
  --white: #ffffff;
  --max: 1100px;
}

/* ─── BASE ─── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── MUSHROOM LINE-ART BACKGROUND ─── */
.bg-art {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.03;
}

.bg-art svg {
  width: 100%;
  height: 100%;
}

/* ─── WRAPPER ─── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: up 0.9s ease forwards 0.1s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 6.5vw, 80px);
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 820px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.9s ease forwards 0.3s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 52px;
  font-weight: 300;
  opacity: 0;
  animation: up 0.9s ease forwards 0.5s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: up 0.9s ease forwards 0.7s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #080808;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-light);
}

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: up 0.9s ease forwards 1.1s;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text2);
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  font-weight: 300;
}

.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.h2 em {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
  opacity: 0.5;
}

/* ─── PAIN BLOCK ─── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 60px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pain-item {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.25s;
}

.pain-item:hover {
  background: var(--bg2);
}

.pain-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}

.pain-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.pain-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.pain-note {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── BRIDGE ─── */
.bridge {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.bridge-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bridge-stat {
  border-left: 2px solid var(--border);
  padding-left: 24px;
}

.bridge-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.bridge-stat-label {
  font-size: 12px;
  color: var(--text2);
  margin-top: 6px;
  letter-spacing: 1px;
}

/* ─── MUSHROOMS ─── */
.mushrooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.mush {
  background: var(--bg);
  padding: 44px 36px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.mush:hover {
  background: var(--bg2);
}

.mush::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

.mush:hover::after {
  opacity: 1;
}

.mush-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: brightness(0.9);
  border-radius: 8px;
}

.mush-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.mush-latin {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}

.mush-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

.mush-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--gold);
  font-weight: 300;
}

/* ─── STATS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.stat {
  background: var(--bg);
  padding: 44px 36px;
  text-align: center;
  transition: background 0.25s;
}

.stat:hover {
  background: var(--bg2);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 1px;
  line-height: 1.5;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px;
}

.cta-band .h2 {
  margin-bottom: 16px;
}

.cta-band .body-text {
  margin: 0 auto 40px;
  max-width: 460px;
}

.cta-band .cta-action {
  margin-top: 40px;
}

.cta-band .label {
  text-align: center;
}

.cta-band .body-text--centered {
  margin: 16px auto 40px;
  max-width: 480px;
  text-align: center;
}

/* ─── REVIEWS SLIDER ─── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  touch-action: pan-y;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex-shrink: 0;
  width: calc(50% - 8px);
  height: 420px;
  margin-right: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
}

.slide:last-child {
  margin-right: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 18px;
}

.slider-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 20px;
  height: 1px;
  background: var(--border);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 32px;
}

/* ─── PRODUCTS SLIDER (inside expert-visual) ─── */
.products-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.products-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-slide {
  flex-shrink: 0;
  width: 100%;
}

.products-slide img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
}

.products-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

/* ─── HOW IT WORKS ─── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.step {
  background: var(--bg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  transition: background 0.25s;
}

.step:hover {
  background: var(--bg2);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.step-title {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 6px;
}

.step-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

/* ─── EXPERT / QUALITY BLOCK ─── */
.expert {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.expert-text {
  background: var(--bg);
  padding: 56px 48px;
}

.expert-cta {
  margin-top: 40px;
}

.expert-visual {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
}

.expert-visual img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 0;
}

/* ─── FINAL CTA ─── */
.final {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final .label {
  text-align: center;
}

.final .h2 {
  font-size: clamp(32px, 5vw, 64px);
  max-width: 600px;
  margin: 0 auto 20px;
}

.final .body-text {
  margin: 0 auto;
  text-align: center;
  max-width: 440px;
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
}

.benefit {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  display: block;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

/* ─── SECTION BACKGROUNDS ─── */
.section--dark {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── FADE IN ON SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── ANIMATIONS ─── */
@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .hero { padding: 80px 24px 60px; }
  .bridge-inner { grid-template-columns: 1fr; gap: 40px; }
  .slide { width: 100% !important; margin-right: 0 !important; height: 480px; }
  .slider-nav { gap: 12px; padding: 0 8px; }
  .slider-btn { width: 36px; height: 36px; font-size: 14px; flex-shrink: 0; }
  .slider-dots { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .dot { width: 14px; }
  .dot.active { width: 24px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 28px; }
  .expert { grid-template-columns: 1fr; }
  .expert-text { padding: 40px 28px; }
  .expert-visual { padding: 32px 24px; }
  .stats-row { grid-template-columns: 1fr; }
}
