/* ============================================
   GEETHA GAMANA — ULTRA Premium Cinematic Styles
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #050507;
  --bg2: #0a0a0f;
  --bg3: #101018;
  --card: #0f0f16;
  --card2: #16161f;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.10);
  --accent: #e8964b;
  --accent2: #f0b97a;
  --accent3: #d4793a;
  --accent-bg: rgba(232,150,75,0.08);
  --accent-glow: rgba(232,150,75,0.20);
  --gold-gradient: linear-gradient(135deg, #e8964b, #f0b97a, #d4793a);
  --text: #f0f0f2;
  --text2: #9898a4;
  --text3: #5a5a68;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; }

/* ---------- Shared Components ---------- */
.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.section-title--center {
  text-align: center;
}

.section-title em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.pill {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: var(--accent2);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--accent-bg);
  transition: all 0.3s var(--ease);
}

.pill:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
}

.btn--lg {
  padding: 16px 44px;
  font-size: 1rem;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #1a0f05;
  border: 1px solid var(--accent);
}

.btn--gold:hover {
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--accent2);
  border: 1px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.45);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.5) 50%, rgba(5,5,7,0.3) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent2);
  opacity: 0;
  box-shadow: 0 0 6px var(--accent);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.5);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) translateX(var(--drift, 30px)) scale(1);
  }
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 900px;
}

.hero__overline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px rgba(232,150,75,0.15);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.hero__subtitle em {
  color: var(--accent2);
}

.hero__tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text2);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.hero__cta {
  margin-bottom: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
}

.scroll-dot {
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(12px); opacity: 1; }
}

/* ============================================
   SECTION 2 — CONCEPT
   ============================================ */
.concept {
  padding: 8rem 2rem;
  position: relative;
}

.concept__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.concept__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.concept__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept__visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,150,75,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all 0.35s var(--ease);
}

.pillar:hover {
  border-color: var(--accent-glow);
  background: var(--card2);
  box-shadow: 0 0 40px rgba(232,150,75,0.06);
  transform: translateY(-3px);
}

.pillar__icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.pillar__desc {
  color: var(--text2);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   SECTION 3 — STORY TIMELINE
   ============================================ */
.story {
  padding: 8rem 2rem;
  background: var(--bg2);
  position: relative;
}

.story__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.story__timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(232,150,75,0.15) 100%);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem 1.5rem 0;
}

.timeline-item--right {
  margin-left: 50%;
  padding: 1.5rem 0 1.5rem 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow), 0 0 0 4px var(--bg2);
  z-index: 1;
}

.timeline-item:not(.timeline-item--right)::before {
  right: -7px;
}

.timeline-item--right::before {
  left: -7px;
}

.timeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

.timeline-card:hover {
  transform: translateY(-4px);
}

.timeline-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.timeline-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.timeline-card:hover .timeline-card__image img {
  transform: scale(1.05);
}

.timeline-card__content {
  padding: 1.75rem;
}

.timeline-card__step {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.timeline-card__text {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.7;
}

.timeline-card__text em {
  color: var(--accent2);
}

/* Card variants */
.timeline-card--gold {
  border-left: 3px solid var(--accent);
}

.timeline-card--glitch {
  border-left: 3px solid #b86fc6;
  box-shadow: -3px 0 20px rgba(184,111,198,0.15);
  animation: glitchPulse 3s ease-in-out infinite;
}

@keyframes glitchPulse {
  0%, 100% { box-shadow: -3px 0 20px rgba(184,111,198,0.15); }
  50% { box-shadow: -3px 0 30px rgba(184,111,198,0.35); }
}

.timeline-card--journey {
  border: 1px solid var(--accent-glow);
  box-shadow: 0 0 30px rgba(232,150,75,0.08);
}

.timeline-card--return {
  border: 1px solid var(--accent-glow);
  box-shadow: 0 0 40px rgba(232,150,75,0.12);
}

/* ============================================
   SECTION 4 — ERAS (Horizontal Scroll)
   ============================================ */
.eras {
  padding: 8rem 0 0;
  position: relative;
  overflow: hidden;
}

.eras__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.eras__pin {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.eras__track {
  display: flex;
  gap: 2rem;
  padding: 0 10vw;
  will-change: transform;
}

.eras__poster {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.eras__poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.era-card {
  position: relative;
  flex-shrink: 0;
  width: 70vw;
  max-width: 800px;
  height: 60vh;
  max-height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.era-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.era-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,7,0.95) 10%, rgba(5,5,7,0.4) 50%, rgba(5,5,7,0.2) 100%);
}

.era-card__num {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(255,255,255,0.04);
  line-height: 1;
  z-index: 1;
}

.era-card__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  max-width: 500px;
}

.era-card__period {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.era-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.1;
}

.era-card__desc {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 400px;
}

.era-card__artists {
  font-size: 0.85rem;
  color: var(--accent2);
  font-weight: 500;
}

/* Progress indicator */
.eras__progress {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.eras__progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.eras__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.eras__dots {
  display: flex;
  gap: 0.5rem;
}

.eras__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.eras__dot.active {
  transform: scale(1.5);
}

/* ============================================
   SECTION 5 — IMMERSIVE EXPERIENCE
   ============================================ */
.experience {
  padding: 8rem 2rem;
  position: relative;
}

.experience__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.experience__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.moment {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.moment:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(232,150,75,0.15);
}

.moment__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease);
}

.moment:hover .moment__bg {
  transform: scale(1.08);
}

.moment__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,7,0.95) 5%, rgba(5,5,7,0.3) 50%, transparent 100%);
}

.moment__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
}

.moment__icon {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.moment__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.moment__desc {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.5;
}

/* ============================================
   SECTION 6 — VENUE
   ============================================ */
.venue {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.venue__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.venue__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5,5,7,0.85) 0%, rgba(5,5,7,0.65) 50%, rgba(5,5,7,0.9) 100%);
}

.venue__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.venue__stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text2);
}

/* ============================================
   SECTION 7 — TEAM
   ============================================ */
.team {
  padding: 8rem 2rem;
  background: var(--bg2);
  text-align: center;
}

.team__header {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.team__grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  min-width: 200px;
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 2px solid var(--border2);
  position: relative;
  background: var(--card);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__avatar--placeholder {
  background: var(--card2);
  border: 2px dashed var(--border2);
  color: var(--text3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.team-card--open .team-card__avatar {
  border-style: dashed;
  border-color: var(--accent-glow);
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--text2);
}

.team__note {
  margin-top: 3rem;
  color: var(--text3);
  font-style: italic;
  font-size: 0.95rem;
}

/* ============================================
   SECTION 8 — CTA + FAQ
   ============================================ */
.cta-faq {
  position: relative;
}

.cta-final {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(232,150,75,0.05) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,150,75,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.cta-final__title em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-final__subtitle {
  font-size: 1.15rem;
  color: var(--text2);
  margin-bottom: 2.5rem;
}

.cta-final__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ */
.faq {
  padding: 6rem 2rem 8rem;
  background: var(--bg);
}

.faq__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-item[open] {
  border-color: var(--accent-glow);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3.5rem;
  user-select: none;
  transition: color 0.2s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent2);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border2);
  color: var(--text2);
  transition: all 0.3s var(--ease);
}

.footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-bg);
  transform: translateY(-2px);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text3);
}

.footer__made {
  font-size: 0.85rem;
  color: var(--text2);
}

/* ============================================
   REVEAL CLASSES (GSAP targets)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-stagger {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.reveal-hero {
  opacity: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .concept__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .concept__visual {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 3/4;
  }
}

@media (max-width: 768px) {
  .concept,
  .story,
  .experience,
  .cta-final,
  .team {
    padding: 5rem 1.5rem;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  /* Timeline becomes linear */
  .timeline-line {
    left: 20px;
    transform: translateX(0) scaleY(0);
  }

  .timeline-item,
  .timeline-item--right {
    width: 100%;
    margin-left: 0;
    padding: 1rem 0 1rem 3rem;
  }

  .timeline-item::before,
  .timeline-item--right::before {
    left: 13px;
    right: auto;
  }

  /* Eras: native horizontal scroll */
  .eras__pin {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2rem;
  }

  .eras__pin::-webkit-scrollbar {
    display: none;
  }

  .eras__track {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .era-card {
    width: 85vw;
    height: 450px;
  }

  .eras__progress {
    display: none;
  }

  /* Experience grid: 1 col */
  .experience__grid {
    grid-template-columns: 1fr;
  }

  .moment {
    aspect-ratio: 16/10;
  }

  /* Venue stats */
  .venue__stats {
    gap: 2rem;
  }

  /* Team */
  .team__grid {
    gap: 2rem;
  }

  /* CTA buttons stack */
  .cta-final__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-final__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .era-card__content {
    padding: 1.5rem;
  }

  .venue__stats {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-stagger,
  .reveal-hero {
    opacity: 1 !important;
    transform: none !important;
  }

  .particle {
    display: none;
  }
}
