/* ============================================================
   NIHA — ROSE LUXE EDITORIAL DESIGN SYSTEM
   Color: Deep Rose + Crimson + Blush Pink
   Fonts: Cormorant Garamond (display) + Inter (body)
   Vibe: High-Fashion / Magazine Editorial / Glamour
   ============================================================ */

:root {
  --bg:          #080408;
  --bg-surf:     #0F080C;
  --bg-card:     #150A10;
  --bg-hover:    #1C0F16;

  --rose:        #FF2D55;
  --rose-deep:   #C2185B;
  --blush:       #FF8FA3;
  --gold:        #F5C842;
  --gold-dim:    #B8922C;
  --white:       #FAF0F4;
  --white-dim:   #D4B8C2;
  --muted:       #7A5566;
  --dim:         #3D2230;

  --grad-rose:   linear-gradient(135deg, #FF2D55 0%, #C2185B 100%);
  --grad-warm:   linear-gradient(135deg, #FF8FA3 0%, #FF2D55 100%);
  --grad-gold:   linear-gradient(135deg, #F5C842 0%, #FF2D55 100%);
  --grad-dark:   linear-gradient(180deg, #080408 0%, #150A10 100%);

  --glow-rose:   0 0 30px rgba(255,45,85,0.5), 0 0 80px rgba(255,45,85,0.15);
  --glow-gold:   0 0 20px rgba(245,200,66,0.4);
  --glow-blush:  0 0 20px rgba(255,143,163,0.3);

  --f-display:   'Cormorant Garamond', serif;
  --f-body:      'Inter', sans-serif;
  --f-mono:      'Space Mono', monospace;

  --max-w:       1200px;
  --sec-pad:     7rem 0;
  --radius:      12px;
  --radius-lg:   20px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-tap-highlight-color: transparent;
}

/* Larger tap targets on mobile */
a, button { touch-action: manipulation; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.rose-text {
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-c { text-align: center; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-rose {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--grad-rose);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}
.btn-rose:hover {
  box-shadow: var(--glow-rose);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--muted);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(255,45,85,0.08);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

/* Background layers */
.hero-bg-left {
  position: absolute;
  inset: 0 50% 0 0;
  background: var(--bg);
  z-index: 0;
}
.hero-bg-right {
  position: absolute;
  inset: 0 0 0 50%;
  background: var(--bg-surf);
  z-index: 0;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(255,45,85,0.2);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(194,24,91,0.15);
  bottom: -50px; left: 200px;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: rgba(245,200,66,0.08);
  top: 30%; right: 10%;
}

/* Left panel — text */
.hero-left {
  position: relative;
  z-index: 2;
  padding: 6rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.kicker-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--grad-rose);
}
.kicker-text {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--rose);
  text-transform: uppercase;
}

.hero-name {
  font-family: var(--f-display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-name .first {
  display: block;
  color: var(--white);
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}
.hero-name .last {
  display: block;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.hero-tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--dim);
  border-radius: 2px;
  color: var(--white-dim);
}
.hero-tag.active {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(255,45,85,0.1);
}

.hero-bio {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.hs-item { display: flex; flex-direction: column; }
.hs-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.hs-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.hs-sep {
  width: 1px;
  background: var(--dim);
  align-self: stretch;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right panel — image */
.hero-right {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%),
              linear-gradient(to top, rgba(8,4,8,0.7) 0%, transparent 40%);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: rgba(8,4,8,0.85);
  border: 1px solid var(--rose);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
}
.hb-year {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hb-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.2rem;
}

.hero-img-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 3;
}
.hero-img-corner.tl { top: 1.5rem; left: 1.5rem; border-top: 2px solid var(--rose); border-left: 2px solid var(--rose); }
.hero-img-corner.tr { top: 1.5rem; right: 1.5rem; border-top: 2px solid var(--rose); border-right: 2px solid var(--rose); }
.hero-img-corner.br { bottom: 1.5rem; right: 1.5rem; border-bottom: 2px solid var(--rose); border-right: 2px solid var(--rose); }

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.hs-bar {
  width: 40px;
  height: 2px;
  background: var(--dim);
  position: relative;
  overflow: hidden;
}
.hs-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--rose);
  animation: scanBar 1.8s ease-in-out infinite;
}
@keyframes scanBar {
  to { left: 100%; }
}
.hs-text {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
  padding: 0.6rem 0;
}

.marquee-row {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.marquee-fwd { animation: marqueeF 30s linear infinite; }
.marquee-rev { animation: marqueeR 30s linear infinite; }

@keyframes marqueeF { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.mq-item {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0 1.5rem;
}
.mq-sep {
  color: var(--rose);
  font-size: 0.5rem;
  padding: 0 0.25rem;
  line-height: 1.4;
}
.mq-italic {
  font-style: italic;
  color: var(--muted);
}

/* ============================================================
   9WICKETS PARTNERSHIP SECTION
   ============================================================ */
.partnership-section {
  position: relative;
  padding: 6rem 0 5rem;
  background: #060208;
  overflow: hidden;
}

.pship-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(255,45,85,0.12) 0%,
    rgba(194,24,91,0.06) 40%,
    transparent 70%);
  pointer-events: none;
}

/* Eyebrow */
.pship-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.pship-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.pship-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  white-space: nowrap;
}

/* Headline block */
.pship-headline {
  text-align: center;
  margin-bottom: 4rem;
}
.pship-h-sub {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  display: block;
  margin-bottom: 0.6rem;
}
.pship-h-main {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.pship-h-main em {
  font-style: italic;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pship-h-desc {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.75;
}

/* Cards grid */
.pship-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pship-card {
  background: var(--bg-card);
  border: 1px solid var(--dim);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pship-card:hover {
  border-color: rgba(255,45,85,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,45,85,0.1);
}
.pship-card--accent {
  background: linear-gradient(135deg, rgba(255,45,85,0.12) 0%, rgba(194,24,91,0.06) 100%);
  border-color: rgba(255,45,85,0.3);
}
.pship-card--accent:hover {
  border-color: var(--rose);
  box-shadow: 0 12px 40px rgba(255,45,85,0.2);
}

.pship-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,45,85,0.12);
  border: 1px solid rgba(255,45,85,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--rose);
}
.pship-card-icon svg { width: 20px; height: 20px; }

.pship-card h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.pship-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Pull quote */
.pship-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255,45,85,0.06) 0%, rgba(8,4,8,0) 100%);
  border-top: 1px solid rgba(255,45,85,0.2);
  border-bottom: 1px solid rgba(255,45,85,0.2);
  position: relative;
}
.pship-quote-bar {
  width: 3px;
  height: 40px;
  background: var(--grad-rose);
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.pship-quote-text {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 720px;
  line-height: 1.5;
  quotes: "\201C" "\201D";
}
.pship-quote-text::before { content: open-quote; color: var(--rose); }
.pship-quote-text::after  { content: close-quote; color: var(--rose); }
.pship-quote-cite {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
}

/* Stats strip */
.pship-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.pship-strip-div {
  width: 1px;
  height: 40px;
  background: var(--dim);
}
.pship-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.psis-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.psis-lbl {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .pship-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pship-cards { grid-template-columns: 1fr; }
  .pship-strip { gap: 1.5rem; }
  .pship-strip-div { display: none; }
}

/* ============================================================
   PROFILE / ABOUT
   ============================================================ */
.profile-section {
  padding: var(--sec-pad);
  position: relative;
}

.profile-section::before {
  content: 'NIHA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(255,45,85,0.03);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.profile-img-wrap {
  position: relative;
}

.profile-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.profile-img-frame:hover .profile-img {
  transform: scale(1.04);
}

.profile-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,45,85,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.profile-img-tag {
  position: absolute;
  top: 1.5rem;
  right: -1px;
  background: var(--grad-rose);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px 0 0 4px;
}

.profile-img-accent {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(255,45,85,0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
}

/* Text col */
.profile-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.profile-headline {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.profile-headline em {
  font-style: italic;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-quote {
  border-left: 3px solid var(--rose);
  padding: 1rem 1.5rem;
  margin-bottom: 1.8rem;
  background: rgba(255,45,85,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.profile-quote blockquote {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.profile-bio p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.profile-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.8rem 0;
}

.pm-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pm-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.pm-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.profile-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--dim);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-dim);
  transition: all 0.25s;
}
.social-pill:hover { border-color: var(--rose); color: var(--white); }
.social-pill.facebook:hover { background: rgba(24,119,242,0.15); border-color: #1877f2; }
.social-pill.instagram:hover { background: rgba(225,48,108,0.15); border-color: #e1306c; }
.social-pill.tiktok:hover { background: rgba(0,0,0,0.3); border-color: #69C9D0; }
.social-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.stats-section {
  padding: 4rem 0;
  background: var(--bg-surf);
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--dim);
  position: relative;
  transition: background 0.3s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--bg-card); }

.sc-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}
.sc-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.sc-sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   MILESTONES / HIGHLIGHTS
   ============================================================ */
.milestones-section { padding: var(--sec-pad); }

.ms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.ms-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.ms-track-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--rose) var(--bg-card);
  padding-bottom: 1rem;
}
.ms-track-wrap::-webkit-scrollbar { height: 3px; }
.ms-track-wrap::-webkit-scrollbar-track { background: var(--bg-card); }
.ms-track-wrap::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }

.ms-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
  min-width: max-content;
}

.ms-card {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--dim);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ms-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,45,85,0.15);
}

.ms-year {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.ms-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,45,85,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--rose);
}
.ms-icon svg { width: 18px; height: 18px; }
.ms-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.ms-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   VIDEO SECTION — CINEMATIC REDESIGN
   ============================================================ */
.video-section {
  position: relative;
  padding: 4rem 0 3.5rem;
  background: #040206;
  overflow: hidden;
}

/* Background radial glow */
.vs-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,45,85,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(194,24,91,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle dot-grid overlay */
.vs-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,45,85,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* Two-column layout */
.vs-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

/* ── LEFT INFO PANEL ── */
.vs-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.vs-eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--grad-rose);
  flex-shrink: 0;
}

.vs-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}

.vs-desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.vs-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.vs-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.vs-di {
  width: 18px;
  height: 18px;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-dl-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.vs-dl-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.vs-cta-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.vs-views {
  display: flex;
  flex-direction: column;
}
.vs-views-num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vs-views-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ── RIGHT PLAYER PANEL ── */
.vs-player {
  position: relative;
}

/* Glow blob behind the whole player */
.vs-player-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(ellipse at center,
    rgba(255,45,85,0.22) 0%,
    rgba(194,24,91,0.1) 40%,
    transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Cinematic video frame */
.vs-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  /* layered box-shadow: soft rose glow + hard drop shadow */
  box-shadow:
    0 0 0 1px rgba(255,45,85,0.35),
    0 0 40px rgba(255,45,85,0.25),
    0 0 100px rgba(255,45,85,0.1),
    0 40px 80px rgba(0,0,0,0.7);
  cursor: pointer;
  transition: box-shadow 0.4s;
}
.vs-frame:hover {
  box-shadow:
    0 0 0 1px rgba(255,45,85,0.55),
    0 0 60px rgba(255,45,85,0.35),
    0 0 120px rgba(255,45,85,0.15),
    0 40px 80px rgba(0,0,0,0.7);
}

.vs-frame video {
  width: 100%;
  height: 380px;
  object-fit: contain;
  background: #000;
  display: block;
  border-radius: var(--radius-lg);
}

/* Corner brackets */
.vfc {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 4;
  transition: width 0.3s, height 0.3s;
}
.vs-frame:hover .vfc { width: 28px; height: 28px; }
.vfc-tl { top: 10px; left: 10px;   border-top: 2px solid var(--rose); border-left: 2px solid var(--rose); }
.vfc-tr { top: 10px; right: 10px;  border-top: 2px solid var(--rose); border-right: 2px solid var(--rose); }
.vfc-bl { bottom: 10px; left: 10px;  border-bottom: 2px solid rgba(255,45,85,0.5); border-left: 2px solid rgba(255,45,85,0.5); }
.vfc-br { bottom: 10px; right: 10px; border-bottom: 2px solid rgba(255,45,85,0.5); border-right: 2px solid rgba(255,45,85,0.5); }

/* Moving scan line */
.vs-scan {
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,45,85,0.6) 40%,
    rgba(255,143,163,0.9) 50%,
    rgba(255,45,85,0.6) 60%,
    transparent 100%);
  z-index: 5;
  animation: scanDown 4s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
}
.vs-frame:hover .vs-scan { opacity: 1; }
@keyframes scanDown {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Custom play/pause overlay */
.vs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(4,2,6,0.55);
  backdrop-filter: blur(2px);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.35s;
  border-radius: var(--radius-lg);
}
.vs-overlay.hidden { opacity: 0; pointer-events: none; }

.vs-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: rgba(255,45,85,0.25);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  color: #fff;
}
.vs-play-btn:hover {
  background: var(--rose);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255,45,85,0.6);
  border-color: var(--rose);
}
.vs-play-icon {
  width: 26px;
  height: 26px;
  transform: translateX(2px);
}

.vs-overlay-title {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Floating live badge */
.vs-live-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  background: rgba(4,2,6,0.8);
  border: 1px solid rgba(255,45,85,0.6);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 4;
}
.vs-live-dot {
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,45,85,0.7); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 4px rgba(255,45,85,0); }
}
.vs-live-text {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Duration badge */
.vs-dur-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: rgba(4,2,6,0.8);
  border: 1px solid var(--dim);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 4;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 0.6rem;
}
.vs-dur-badge svg { width: 12px; height: 12px; }

/* ── PROGRESS / CONTROLS BAR ── */
.vs-progress-wrap {
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
}

.vs-progress-track {
  width: 100%;
  height: 3px;
  background: var(--dim);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 0.75rem;
  position: relative;
}
.vs-progress-track:hover { height: 5px; }
.vs-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-rose);
  border-radius: 2px;
  transition: width 0.1s linear;
  position: relative;
}
.vs-progress-fill::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,45,85,0.8);
  opacity: 0;
  transition: opacity 0.2s;
}
.vs-progress-track:hover .vs-progress-fill::after { opacity: 1; }

.vs-progress-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vs-ctrl-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--dim);
  background: var(--bg-card);
  color: var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.vs-ctrl-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(255,45,85,0.1);
}
.vs-ctrl-btn svg { width: 14px; height: 14px; }

.vs-time-display {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.vs-ctrl-spacer { flex: 1; }

/* ── FILMSTRIP FOOTER ── */
.vs-filmstrip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--dim);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* filmstrip perforations */
.vs-filmstrip::before,
.vs-filmstrip::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 80%;
  background: repeating-linear-gradient(
    to bottom,
    var(--dim) 0px,
    var(--dim) 6px,
    transparent 6px,
    transparent 10px
  );
}
.vs-filmstrip::before { left: 0; }
.vs-filmstrip::after  { right: 0; }

.vs-fs-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1rem;
}
.vs-fs-tag {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}
.vs-fs-dot {
  font-size: 0.4rem;
  color: var(--dim);
}
.vs-fs-name {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.vs-fs-right { padding: 0 1rem; }
.vs-fs-year {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vs-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vs-title { font-size: 2.4rem; }
}

@media (max-width: 600px) {
  .vs-cta-row { flex-wrap: wrap; gap: 1rem; }
  .vs-play-btn { width: 58px; height: 58px; }
  .vs-play-icon { width: 20px; height: 20px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: var(--sec-pad); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gf-btn {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  border: 1px solid var(--dim);
  color: var(--muted);
  cursor: pointer;
  background: none;
  transition: all 0.2s;
}
.gf-btn:hover, .gf-btn.active {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(255,45,85,0.08);
}

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,4,8,0.88) 0%,
    rgba(194,24,91,0.18) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1rem;
  border-radius: var(--radius);
}

.gallery-item:hover {
  border-color: rgba(255,45,85,0.4);
  box-shadow: 0 0 24px rgba(255,45,85,0.15);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gi-caption {
  font-size: 0.72rem;
  font-family: var(--f-mono);
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gi-cat-tag {
  font-size: 0.6rem;
  font-family: var(--f-mono);
  color: var(--rose);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(255,45,85,0.2);
}

.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,45,85,0.2);
  border-radius: 50%;
  border: 1px solid var(--rose);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: var(--rose); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--rose); border-color: var(--rose); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  padding: var(--sec-pad);
  background: var(--bg-surf);
}

/* ── Central spine ── */
.timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--rose) 8%,
    var(--rose) 92%,
    transparent 100%);
}

/* ── Each item alternates sides ── */
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 3.5rem;
  gap: 0;
}

/* Card on left side */
.tl-item:nth-child(odd) .tl-card {
  grid-column: 1;
  text-align: right;
  padding-right: 2.5rem;
}
.tl-item:nth-child(odd) .tl-center { grid-column: 2; }
.tl-item:nth-child(odd) .tl-spacer { grid-column: 3; }

/* Card on right side */
.tl-item:nth-child(even) .tl-spacer { grid-column: 1; }
.tl-item:nth-child(even) .tl-center { grid-column: 2; }
.tl-item:nth-child(even) .tl-card {
  grid-column: 3;
  text-align: left;
  padding-left: 2.5rem;
}

/* ── Card box ── */
.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--dim);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.tl-item:hover .tl-card {
  border-color: rgba(255,45,85,0.4);
  box-shadow: 0 8px 32px rgba(255,45,85,0.1);
  transform: translateY(-3px);
}

/* ── Center dot + year ── */
.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.tl-dot {
  width: 18px;
  height: 18px;
  background: var(--bg);
  border: 2px solid var(--rose);
  border-radius: 50%;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.tl-item:hover .tl-dot {
  background: var(--rose);
  box-shadow: var(--glow-rose);
  transform: scale(1.3);
}

.tl-year {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

/* ── Card text ── */
.tl-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.tl-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Responsive: single column (handled in main @media blocks below) ── */

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section { padding: var(--sec-pad); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.award-card {
  background: var(--bg-card);
  border: 1px solid var(--dim);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.award-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,200,66,0.1);
}

.award-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.award-icon svg { width: 22px; height: 22px; }

.award-year {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.award-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.award-org {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.25) saturate(0.5);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,45,85,0.15) 0%, rgba(8,4,8,0.6) 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--dim);
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-logo {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}

.footer-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--rose); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--dim);
}

/* ============================================================
   FLOATING NEXT BUTTON
   ============================================================ */
.fn-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fn-inner {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: var(--grad-rose);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: var(--glow-rose);
  transition: transform 0.2s;
}
.fn-btn:hover .fn-inner { transform: scale(1.1); }

.fn-icon { color: #fff; }
.fn-icon svg { width: 20px; height: 20px; }

.fn-txt {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  line-height: 1.2;
  text-align: center;
}

.fn-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,45,85,0.4);
  animation: ringPulse 2s ease-out infinite;
}
.fn-r1 { width: 70px; height: 70px; animation-delay: 0s; }
.fn-r2 { width: 86px; height: 86px; animation-delay: 0.5s; }
.fn-r3 { width: 102px; height: 102px; animation-delay: 1s; }

@keyframes ringPulse {
  0% { opacity: 0.8; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sec-pad: 5rem 0; }

  /* Hero: full-screen portrait with overlay text */
  .hero {
    display: block;
    position: relative;
    min-height: 100vh;
  }
  .hero-bg-left,
  .hero-bg-right { display: none; }

  .hero-right {
    position: absolute;
    inset: 0;
    height: 100%;
    order: unset;
    z-index: 0;
  }
  .hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .hero-img-overlay {
    background:
      linear-gradient(to top,
        rgba(8,4,8,1)    0%,
        rgba(8,4,8,0.85) 35%,
        rgba(8,4,8,0.3)  65%,
        rgba(8,4,8,0.1)  100%);
  }
  /* Hide corner decorations on mobile */
  .hero-img-corner,
  .hero-badge { display: none; }

  .hero-left {
    position: relative;
    z-index: 2;
    padding: 0 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
  }

  .vs-inner { grid-template-columns: 1fr; gap: 2rem; }
  .vs-info { order: 2; }
  .vs-player { order: 1; }

  .profile-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-img-frame { max-width: 380px; margin: 0 auto; }

  .pship-cards { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 3; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sec-pad: 4rem 0; }

  .container { padding: 0 1.2rem; }

  /* ── Hero ── */
  .hero-left { padding: 0 1.2rem 4.5rem; }
  .hero-kicker { margin-bottom: 0.8rem; }
  .kicker-text { font-size: 0.58rem; }
  .hero-name { font-size: clamp(2.8rem, 12vw, 4.5rem); margin-bottom: 1rem; }
  .hero-tags { gap: 0.35rem; margin-bottom: 1rem; }
  .hero-tag { font-size: 0.58rem; padding: 0.25rem 0.65rem; }
  .hero-bio { font-size: 0.88rem; margin-bottom: 1.5rem; max-width: 100%; }
  .hero-stats { gap: 1rem; margin-bottom: 1.5rem; }
  .hs-num { font-size: 1.5rem; }
  .hero-btns { flex-direction: column; gap: 0.75rem; }
  .hero-btns .btn-rose,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .hero-scroll {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
  }

  /* ── Marquee ── */
  .mq-item { font-size: 0.65rem; }

  /* ── Partnership ── */
  .pship-cards { grid-template-columns: 1fr; gap: 1rem; }
  .pship-h-main { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .pship-h-desc { font-size: 0.9rem; }
  .pship-quote-text { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }
  .pship-strip { gap: 1.2rem; }
  .pship-strip-div { display: none; }
  .psis-num { font-size: 1.6rem; }

  /* ── Video ── */
  .vs-inner { padding: 0 1.2rem; gap: 1.5rem; }
  .vs-title { font-size: clamp(2rem, 8vw, 3rem); }
  .vs-desc { font-size: 0.88rem; }
  .vs-frame video { height: 52vw; min-height: 200px; }
  .vs-detail-list { gap: 0.8rem; }
  .vs-cta-row { flex-wrap: wrap; gap: 1rem; }

  /* ── Profile ── */
  .profile-img-frame { max-width: 300px; }
  .profile-meta-grid { grid-template-columns: 1fr; gap: 0.6rem; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* ── Milestones ── */
  .ms-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .ms-card { min-width: 220px; padding: 1.4rem; }

  /* ── Gallery ── */
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .gallery-filter { flex-wrap: wrap; gap: 0.4rem; }
  .gf-btn { font-size: 0.6rem; padding: 0.38rem 0.8rem; }
  .gallery-masonry { columns: 2; column-gap: 0.6rem; }
  .gallery-item { margin-bottom: 0.6rem; }

  /* ── Timeline ── */
  .timeline-wrap::before { left: 20px; transform: none; width: 2px; }
  .tl-item {
    display: block;
    padding-left: 52px;
    margin-bottom: 1.8rem;
  }
  .tl-item:nth-child(odd) .tl-card,
  .tl-item:nth-child(even) .tl-card {
    grid-column: unset;
    text-align: left;
    padding: 1.2rem 1.2rem;
  }
  .tl-spacer { display: none; }
  .tl-center {
    position: absolute;
    left: 0;
    width: 40px;
    top: 1.2rem;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
  }
  /* dot 16px wide, centered in 40px col → center = 20px = line left:20px ✓ */
  .tl-dot { width: 16px; height: 16px; }
  .tl-year { font-size: 0.72rem; }
  .tl-title { font-size: 0.98rem; }

  /* ── Awards ── */
  .awards-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── Section titles ── */
  .section-title { font-size: clamp(2rem, 8vw, 3.5rem); margin-bottom: 2rem; }

  /* ── CTA ── */
  .cta-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-btns .btn-rose,
  .cta-btns .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; text-align: center; align-items: center; gap: 1.5rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; }

  /* ── Floating button ── */
  .fn-btn { bottom: 1.2rem; right: 1.2rem; }
  .fn-inner { width: 54px; height: 54px; }
  .fn-r1 { width: 62px; height: 62px; }
  .fn-r2 { width: 76px; height: 76px; }
  .fn-r3 { width: 90px; height: 90px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --sec-pad: 3rem 0; }

  .container { padding: 0 1rem; }

  /* ── Hero ── */
  .hero-left { padding: 0 1rem 2.2rem; }
  .hero-name { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .hero-stats { gap: 0.75rem; }
  .hs-num { font-size: 1.3rem; }
  .hero-bio { display: none; } /* hide bio on very small screens, keep it clean */

  /* ── Partnership ── */
  .pship-eyebrow { gap: 0.75rem; }
  .pship-line { max-width: 50px; }
  .pship-card { padding: 1.4rem 1.2rem; }

  /* ── Video ── */
  .vs-frame video { height: 56vw; }
  .vs-progress-controls { gap: 0.3rem; }
  .vs-ctrl-btn { width: 28px; height: 28px; }
  .vs-time-display { font-size: 0.65rem; }

  /* ── Gallery ── */
  .gallery-masonry { columns: 2; }

  /* ── Stats ── */
  .stat-card { padding: 1.4rem 1rem; }
  .sc-num { font-size: 2rem; }

  /* ── Milestones ── */
  .ms-card { min-width: 180px; }

  /* ── Pship strip ── */
  .pship-strip { gap: 1rem; }
  .psis-num { font-size: 1.4rem; }

  /* ── Buttons ── */
  .btn-lg { padding: 0.9rem 1.6rem; font-size: 0.85rem; }

  /* ── Floating button ── */
  .fn-inner { width: 50px; height: 50px; }
  .fn-txt { font-size: 0.45rem; }
  .fn-icon svg { width: 16px; height: 16px; }
  .fn-r1 { width: 58px; height: 58px; }
  .fn-r2 { width: 70px; height: 70px; }
  .fn-r3 { display: none; }
}
