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

:root {
  --green:  #162d1f;
  --green2: #1b3524;
  --gold:   #b59a55;
  --gold2:  #d4b87a;
  --cream:  #f2ece0;
  --white:  #ffffff;
}

html, body { width: 100%; height: 100%; overflow: hidden; font-family: 'Inter', sans-serif; background: var(--green); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 60px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 32px; width: auto; transition: opacity 0.3s; }
.slide-counter { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }
.slide-counter span { color: var(--gold); }

/* ── SLIDER ── */
.slider { position: relative; width: 100%; height: 100vh; }

.slides {
  display: flex; width: 300%; height: 100%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide { position: relative; width: 33.333%; height: 100%; overflow: hidden; flex-shrink: 0; }

/* ── SLIDE 1 — HERO ── */
#s1 { background: var(--green); }

.s1-bg {
  position: absolute; inset: 0;
  background: url('hero.jpg') center center / cover no-repeat;
  opacity: 0.55;
}


/* ── SLIDE 2 — MARKET ── */
#s2 { background: var(--green); }

.s2-bg {
  position: absolute; inset: 0;
  background: url('hero-2.jpg') center center / cover no-repeat;
  opacity: 0.55;
}

/* ── SLIDE 3 — PARTNER ── */
#s3 { background: var(--green2); }

.s3-bg {
  position: absolute; inset: 0;
  background: url('hero-3.jpg') center center / cover no-repeat;
  opacity: 0.55;
}

/* ── SLIDE CONTENT ── */
.content {
  position: relative; z-index: 2;
  padding: 0 80px;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; width: 60vw;
}

.tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  line-height: 1.05; margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s .1s ease, transform .65s .1s ease;
}
h1 { font-size: clamp(52px, 6.5vw, 86px); color: var(--white); }
h2 { font-size: clamp(44px, 5vw, 68px); color: var(--white); }
h3 { font-size: clamp(44px, 5vw, 68px); color: var(--white); }

h1 em, h2 em, h3 em { font-style: normal; color: var(--gold); }

.stats {
  display: flex; gap: 48px; margin-bottom: 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s .22s ease, transform .65s .22s ease;
}
.stat-n { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold2); line-height: 1; }
.stat-l { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 5px; }
.stat + .stat { padding-left: 48px; border-left: 1px solid rgba(255,255,255,0.1); }

.metrics {
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s .12s ease, transform .65s .12s ease;
}
.metric { padding: 22px 0; border-top: 1px solid rgba(22,45,31,0.1); }
.metric:last-child { border-bottom: 1px solid rgba(22,45,31,0.1); }
.metric-n { font-family: 'Playfair Display', serif; font-size: 46px; color: var(--green); line-height: 1; }
.metric-n b { color: var(--gold); font-weight: 700; }
.metric-l { font-size: 12px; color: rgba(22,45,31,0.4); margin-top: 3px; letter-spacing: 0.03em; }

.points {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 44px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s .12s ease, transform .65s .12s ease;
}
.point { display: flex; align-items: center; gap: 12px; }
.point::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.point span { font-size: 14px; color: rgba(255,255,255,0.45); }

.btn {
  display: inline-block; align-self: flex-start;
  padding: 15px 38px; background: var(--gold);
  color: var(--green); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s;
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s .26s ease, transform .65s .26s ease, background .2s, filter .2s;
}
.btn:hover { background: var(--gold2); transform: translateY(-1px); }

/* Active slide reveals content */
.slide.active .tag,
.slide.active h1,
.slide.active h2,
.slide.active h3,
.slide.active .stats,
.slide.active .metrics,
.slide.active .points,
.slide.active .btn { opacity: 1; transform: translateY(0); }

/* ── ARROWS ── */
.arrow {
  position: fixed; top: 50%; z-index: 100;
  transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(22,45,31,0.4); backdrop-filter: blur(8px);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.arrow:hover { border-color: var(--gold); background: rgba(181,154,85,0.15); }
.arrow svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.arrow-prev { left: 28px; }
.arrow-next { right: 28px; }
.arrow.hidden { opacity: 0; pointer-events: none; }

/* ── DOTS ── */
.dots {
  position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 100;
}
.dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: background .3s, width .3s;
}
.dot.active { background: var(--gold); width: 22px; }

@media (max-width: 768px) {
  nav, .content { padding-left: 28px; padding-right: 28px; }
  .arrow-prev { left: 12px; }
  .arrow-next { right: 12px; }
  .stats { flex-direction: column; gap: 20px; }
  .stat + .stat { padding-left: 0; border-left: none; }
}
