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

/* ── TOKENS ── */
:root {
  --sky: #7BC8F0;
  --meadow: #5DAF6A;
  --gold: #F7931A;
  --cream: #FFF8EE;
  --dark: #0D1117;
  --charcoal: #1A1F2E;
  --muted: #6B7280;
  --white: #FFFFFF;
  --border: rgba(247,147,26,0.25);
  --glass: rgba(13,17,23,0.55);
  --glass-light: rgba(255,248,238,0.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: transparent;
  color: #1A0800;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── FIXED VIDEO BACKGROUND ── */
.hero-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,17,23,0.28);
  z-index: -1;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 0 auto 1.5rem;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(247,147,26,0.4);
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #2D1A00;
  text-shadow: none;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #2D1400;
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(247,147,26,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(247,147,26,0.55); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1A0800;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,248,238,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(247,147,26,0.08); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #2D1400;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s;
}
nav.scrolled { background: transparent; }

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #1A0800;
  letter-spacing: 0.08em;
}
.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A0800;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-buy {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
}

/* ── CONTENT OVERLAY (scrolls over fixed video) ── */
.content-overlay {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* ── SECTION BASE ── */
section {
  padding: 7rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Wrapper that gives sections their frosted glass backdrop */
.section-wrap {
  background: rgba(13,17,23,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-wrap-dark {
  background: rgba(10,13,20,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 1rem;
  color: rgba(255,248,238,0.65);
  max-width: 600px;
  line-height: 1.75;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── CA BOX ── */
.ca-section {
  padding: 2rem 1.5rem;
  background: transparent;
}
.ca-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ca-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.ca-address {
  font-family: 'Inter', monospace;
  font-size: 0.82rem;
  color: #1A0800;
  background: rgba(255,240,200,0.55);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
  letter-spacing: 0.04em;
  word-break: break-all;
}
.ca-copy {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
}
.ca-copy:hover { opacity: 0.85; }

/* ── ORIGIN STORY ── */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.origin-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.origin-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.origin-text .section-body { max-width: 100%; }
.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.read-link:hover { border-color: var(--gold); }
.read-link svg { width: 14px; height: 14px; }

/* ── TIMELINE ── */
.timeline-section { padding-top: 0; }
.timeline {
  margin-top: 4rem;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 3.5rem 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.25rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  box-shadow: 0 0 12px rgba(247,147,26,0.6);
}
.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.timeline-body {
  font-size: 0.92rem;
  color: rgba(255,248,238,0.6);
  line-height: 1.7;
  max-width: 560px;
}

/* ── QUOTE ── */
.quote-section {
  padding: 5rem 1.5rem;
  background: transparent;
}
.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: #1A0800;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.quote-attr {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── VIDEOS ── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.video-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,240,200,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(247,147,26,0.15); }
.video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  cursor: pointer;
}
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-info {
  padding: 1rem 1.25rem;
}
.video-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A0800;
  line-height: 1.4;
}

/* ── PRESS ── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.press-card {
  background: rgba(255,240,200,0.45);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.press-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.press-source {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A0800;
  line-height: 1.4;
}
.press-excerpt {
  font-size: 0.85rem;
  color: rgba(255,248,238,0.55);
  line-height: 1.6;
  flex: 1;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap 0.2s;
}
.press-link:hover { gap: 0.6rem; }
.press-link svg { width: 12px; height: 12px; }

/* ── SOCIALS ── */
.socials-section { text-align: center; }
.socials-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  background: rgba(255,240,200,0.45);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A0800;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.social-btn:hover { border-color: var(--gold); background: rgba(247,147,26,0.08); transform: translateY(-2px); }
.social-btn img { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; }
.social-btn .x-icon { width: 20px; height: 20px; fill: #1A0800; }

/* ── FOOTER ── */
footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: transparent;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #1A0800;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(107,114,128,0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 1.5rem;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,248,238,0.45);
  margin-top: 0.35rem;
}

/* ── HAMBURGER / MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .origin-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .videos-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .socials-grid { gap: 0.75rem; }
  .social-btn { padding: 0.7rem 1.25rem; font-size: 0.8rem; }
  .ca-address { font-size: 0.7rem; }
}

/* ── TEXT COLORS ── */
body, 
.section-title,
.section-body,
.timeline-title,
.timeline-body,
.stat-label,
.press-headline,
.press-excerpt,
.video-title,
.quote-text,
.quote-attr,
.footer-tagline,
.footer-disclaimer,
.ca-address,
.nav-brand,
.nav-links a,
.hero-sub,
.social-btn {
  color: #2D1A00;
  text-shadow: none;
}

.section-body { font-weight: 600; }
.timeline-body { color: #2D1A00; font-weight: 600; }
.press-excerpt { color: #2D1A00; font-weight: 600; }
.video-title { color: #2D1A00; font-weight: 700; }
.footer-disclaimer { color: rgba(45,26,0,0.75); }
.muted { color: #2D1A00; }
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
}
