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

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   #8B6914;
  --bg-dark:    #0A0A0A;
  --bg-mid:     #111111;
  --bg-card:    #181818;
  --bg-mid2:    #141414;
  --text:       #F0EBE0;
  --text-dim:   #9A9080;
  --border:     rgba(201,168,76,0.25);
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg-dark);
  font-family: 'Lato', sans-serif;
  color: var(--text);
}

/* ─── Progress Bar ──────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.4s ease;
  z-index: 100;
}

/* ─── Slide Counter ─────────────────────────────────────── */
.slide-counter {
  position: fixed;
  bottom: 28px; right: 32px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-dim);
  z-index: 100;
}

/* ─── Navigation Buttons ────────────────────────────────── */
.nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.nav-btn:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.nav-btn.disabled { opacity: 0.2; pointer-events: none; }
.nav-prev { left: 20px; }
.nav-next { right: 20px; }

/* ─── Dot Navigation ────────────────────────────────────── */
.dots {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 100;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ─── Slides Wrapper ────────────────────────────────────── */
.slides-wrapper {
  width: 100vw; height: 100vh;
  position: relative;
}

/* ─── Slide Base ────────────────────────────────────────── */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.slide.prev {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-dark  { background: var(--bg-dark); }
.slide-mid   { background: var(--bg-mid2); }
.slide-title { background: #000; }

.slide-content {
  max-width: 960px;
  width: 100%;
}
.slide-content.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide-content.center-vert {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─── Tree Background (title slides) ───────────────────── */
.tree-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Section Label ─────────────────────────────────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

/* ─── Slide Titles ──────────────────────────────────────── */
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ─── TITLE SLIDE ───────────────────────────────────────── */
.logo-badge {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 18px;
  margin-bottom: 32px;
  font-weight: 700;
}
.title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  letter-spacing: 12px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 60px rgba(201,168,76,0.3);
}
.title-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  width: 320px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.divider-icon {
  color: var(--gold);
  font-size: 10px;
}
.title-sub {
  font-family: 'Lato', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 24px;
}
.title-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gold-light);
  opacity: 0.8;
}

/* ─── Two Column Cards ──────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.single-col {
  max-width: 480px;
  margin-bottom: 24px;
}
.card {
  padding: 24px 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.card-gold { border-left: 3px solid var(--gold); }
.card-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ─── Highlight Box ─────────────────────────────────────── */
.highlight-box {
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.06);
  padding: 20px 28px;
  border-radius: 4px;
}
.highlight-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}
.highlight-box strong { color: var(--gold-light); }

/* ─── Tag Grid ──────────────────────────────────────────── */
.grid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 2px;
  color: var(--text);
  letter-spacing: 0.3px;
}
.slide-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 15px;
  opacity: 0.8;
}

/* ─── Feature Row ───────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-item {
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 4px;
  text-align: center;
}
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}
.feature-item strong { color: var(--text); }

/* ─── Timeline ──────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: -27px;
  top: 26px;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  flex-shrink: 0;
}
.timeline-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.timeline-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ─── Big Icon + Quote Block ────────────────────────────── */
.big-icon {
  font-size: 56px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}
.quote-block {
  max-width: 640px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 32px 40px;
  border-radius: 4px;
}
.quote-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
}
.quote-block strong { color: var(--gold-light); }
.quote-sep {
  width: 48px; height: 1px;
  background: var(--gold-dim);
  margin: 20px auto;
}

/* ─── Acts ──────────────────────────────────────────────── */
.duration-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 5px 16px;
  margin-bottom: 28px;
}
.acts { display: flex; flex-direction: column; gap: 0; }
.act {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 4px;
}
.act-connector {
  text-align: center;
  color: var(--gold-dim);
  font-size: 14px;
  padding: 4px 0;
}
.act-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  min-width: 48px;
}
.act-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.act-time {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.act-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ─── Slide Intro ───────────────────────────────────────── */
.slide-intro {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* ─── Distribution Grid ─────────────────────────────────── */
.distrib-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.distrib-item {
  flex: 1;
  min-width: 120px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 4px;
  text-align: center;
}
.distrib-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  font-style: normal;
}
.distrib-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.distrib-item p {
  font-size: 12px;
  color: var(--text-dim);
}
.sponsor-note {
  font-size: 13px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.7;
}
.sponsor-note strong { color: var(--gold-light); }

/* ─── Growth Table ──────────────────────────────────────── */
.growth-table {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.growth-header, .growth-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 0;
}
.growth-header {
  background: rgba(201,168,76,0.12);
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.growth-row {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  align-items: center;
  background: var(--bg-card);
}
.growth-row:hover { background: rgba(201,168,76,0.04); }
.growth-label { color: var(--text); font-size: 13px; }
.growth-start {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ─── Why List ──────────────────────────────────────────── */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.why-item:hover {
  border-color: var(--gold-dim);
  background: rgba(201,168,76,0.05);
}
.why-check {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  padding-top: 5px;
}
.why-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}
.why-item strong { color: var(--gold-light); }

/* ─── Closing Slide ─────────────────────────────────────── */
.closing-icon {
  font-size: 52px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 24px rgba(201,168,76,0.4));
}
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 20px;
}
.closing-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--gold-light);
  margin-bottom: 40px;
  opacity: 0.85;
}
.closing-brand {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .slide { padding: 48px 28px; }
  .two-col, .feature-row { grid-template-columns: 1fr; }
  .growth-table { font-size: 11px; }
  .growth-header, .growth-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 10px 12px; }
  .nav-prev { left: 8px; }
  .nav-next { right: 8px; }
  .distrib-grid { gap: 10px; }
}
