/* ============================================================
   PAYEL — GOLDEN EDITORIAL DESIGN SYSTEM
   Style: Luxury Magazine · Warm Gold · Playfair Serif
   Palette: Deep Black · Rich Gold · Champagne · Off-White
   ============================================================ */

:root {
  --bg:          #080808;
  --bg-2:        #0E0E0E;
  --bg-card:     #121212;
  --bg-hover:    #1A1A1A;

  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #8B6210;
  --gold-dim:    rgba(201,168,76,0.15);
  --champagne:   #F5E6C8;
  --white:       #FAFAF8;
  --muted:       #7A7A7A;
  --dim:         #2A2A2A;
  --border:      rgba(201,168,76,0.18);

  --grad-gold:   linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
  --grad-dark:   linear-gradient(135deg, #0E0E0E 0%, #1A1407 100%);

  --f-display:   'Playfair Display', serif;
  --f-body:      'DM Sans', sans-serif;
  --f-mono:      'DM Mono', monospace;

  --max-w:       1260px;
  --sec-pad:     7rem 0;
  --radius:      2px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

/* Left text panel */
.hero-text-panel {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.kicker-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.kicker-text {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-name {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.88;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hn-fill {
  display: block;
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--champagne);
}
.hn-outline {
  display: block;
  font-size: clamp(5rem, 10vw, 9rem);
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  font-style: italic;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.tag-sep { color: var(--gold); font-size: 0.9rem; }

.hero-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 2rem;
}

.hero-numbers {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}
.hn-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hn-val {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hn-lbl {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.hn-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

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

/* Decorative rotated text */
.hero-deco-text {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--f-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: rgba(201,168,76,0.12);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* Right image panel */
.hero-image-panel {
  position: relative;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-img-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.6) 0%, transparent 40%),
    linear-gradient(to top, rgba(8,8,8,0.4) 0%, transparent 40%);
  pointer-events: none;
}

.hero-badge-float {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  background: rgba(8,8,8,0.75);
  border: 1px solid var(--gold);
  padding: 0.6rem 1rem;
  backdrop-filter: blur(6px);
}
.hbf-year {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hbf-label {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--champagne);
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--grad-gold);
  color: #080808;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-gold i { width: 15px; height: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--champagne);
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost i { width: 15px; height: 15px; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.9rem; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.marquee-row {
  display: flex;
  width: max-content;
  padding: 0.65rem 0;
}
.marquee-row:first-child { border-bottom: 1px solid var(--border); }

.marquee-fwd { animation: mqFwd 30s linear infinite; }
.marquee-rev { animation: mqRev 28s linear infinite; }
@keyframes mqFwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mqRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.mq-item {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 1.5rem;
  white-space: nowrap;
}
.mq-sep { color: var(--gold); font-size: 0.55rem; align-self: center; }
.mq-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(201,168,76,0.6);
}

/* ============================================================
   IDENTITY / ABOUT
   ============================================================ */
/* IDENTITY — diagonal two-tone split + large decorative quote watermark */
.identity-section {
  padding: var(--sec-pad);
  background: linear-gradient(112deg, #0E0C07 44%, #080808 44%);
  position: relative;
  overflow: hidden;
}
.identity-section::before {
  content: '\201C';
  position: absolute;
  right: 3%;
  top: -6%;
  font-family: var(--f-display);
  font-size: clamp(18rem, 30vw, 28rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(201,168,76,0.05);
  pointer-events: none;
  user-select: none;
}
.identity-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dark), transparent 60%);
}

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

.id-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.id-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

/* Left col */
.id-pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--champagne);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.id-cite {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-left: 1.5rem;
  display: block;
  margin-bottom: 2.5rem;
}

.id-img-wrap {
  position: relative;
  margin-bottom: 2rem;
}
.id-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center bottom;
  filter: sepia(0.08) contrast(1.05);
}
.id-img-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #080808;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  font-weight: 500;
}

.id-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.id-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--dim);
  padding: 0.45rem 0.9rem;
  transition: color 0.2s, border-color 0.2s;
}
.id-social-link:hover { color: var(--gold); border-color: var(--gold); }
.id-social-link i, .id-social-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Right col */
.id-headline {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
}
.id-headline em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.id-bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.id-bio-text p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--muted);
}

.id-partner-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  flex-wrap: wrap;
}
.ips-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.ips-brand {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.ips-year {
  margin-left: auto;
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(201,168,76,0.25);
}

/* ============================================================
   NUMBERS / STATS
   ============================================================ */
/* NUMBERS — warm near-black with thick gold top & bottom bars */
.numbers-section {
  padding: 4.5rem 0;
  background: #09080A;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  position: relative;
}
.numbers-section::after {
  content: 'PAYEL';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.numbers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-block:last-child { border-right: none; }

.sb-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb-label {
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.sb-sub {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================
   MILESTONES / HIGHLIGHTS
   ============================================================ */
/* MILESTONES — diagonal stripe pattern with angled top */
.milestones-section {
  padding: var(--sec-pad);
  background-color: #0A0A0A;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(201,168,76,0.03) 28px,
    rgba(201,168,76,0.03) 29px
  );
  overflow: hidden;
  position: relative;
}
.milestones-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
}
.ms-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.ms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.ms-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.ms-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.ms-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ms-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.ms-scroll-hint i { width: 14px; height: 14px; }

.ms-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}
.ms-track::-webkit-scrollbar { height: 3px; }
.ms-track::-webkit-scrollbar-track { background: transparent; }
.ms-track::-webkit-scrollbar-thumb { background: var(--gold-dark); }

.ms-card {
  min-width: 220px;
  max-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--dim);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.25s;
}
.ms-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.25s;
}
.ms-card:hover { border-color: var(--gold-dark); }
.ms-card:hover::before { opacity: 1; }

.ms-year {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
}
.ms-icon { color: var(--gold); }
.ms-icon i { width: 20px; height: 20px; }
.ms-card-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1.2;
}
.ms-card-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   FEATURED VIDEO
   ============================================================ */
/* VIDEO — pure black with radial gold spotlight glow */
.fvideo-section {
  padding: var(--sec-pad);
  background: #020202;
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(201,168,76,0.07) 0%, transparent 70%);
  position: relative;
}
.fvideo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
  opacity: 0.6;
}

.fv-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.fv-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: center;
}
.fv-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
}
.fv-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv-frame-wrap {
  position: relative;
}
.fv-gold-border {
  position: absolute;
  inset: -3px;
  background: var(--grad-gold);
  opacity: 0.4;
  z-index: 0;
  animation: borderPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes borderPulse { 0%,100%{opacity:0.2} 50%{opacity:0.5} }

.fv-video {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 75vh;
  display: block;
  background: #000;
  object-fit: contain;
}

.fv-corner {
  position: absolute;
  width: 22px; height: 22px;
  z-index: 3;
  pointer-events: none;
}
.fv-c-tl { top: 0.5rem; left: 0.5rem; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.fv-c-tr { top: 0.5rem; right: 0.5rem; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.fv-c-bl { bottom: 0.5rem; left: 0.5rem; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.fv-c-br { bottom: 0.5rem; right: 0.5rem; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* ============================================================
   GALLERY (MASONRY)
   ============================================================ */
/* GALLERY — warm sepia dark tone, distinct from all other sections */
.gallery-section {
  padding: var(--sec-pad);
  background: #100D08;
  position: relative;
}
.gallery-section::before {
  content: 'FRAME';
  position: absolute;
  left: -1%;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--f-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(201,168,76,0.03);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.gl-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.gl-header {
  margin-bottom: 3rem;
}
.gl-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.gl-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
}
.gl-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gl-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gl-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
  filter: sepia(0.05);
  opacity: 0;
}
.gl-item img.loaded { opacity: 1; }
.gl-item:hover img { transform: scale(1.04); }
.gl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gl-item:hover .gl-overlay { opacity: 1; }
.gl-caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--champagne);
}

/* ============================================================
   VIDEO CLIPS
   ============================================================ */
/* CLIPS — grid line pattern with left gold accent bar */
.clips-section {
  padding: var(--sec-pad);
  background-color: #0D0D0D;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  border-top: none;
  position: relative;
}
.clips-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.cl-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.cl-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.cl-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
}
.cl-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.cl-card {
  background: var(--bg-card);
  border: 1px solid var(--dim);
  overflow: hidden;
  transition: border-color 0.25s;
  position: relative;
}
.cl-card:hover { border-color: var(--gold-dark); }

.cl-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.cl-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s;
}
.cl-card:hover .cl-thumb { transform: scale(1.04); }

.cl-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.cl-card:hover .cl-overlay { background: rgba(8,8,8,0.15); }

.cl-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #080808;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.cl-play-btn:hover { transform: scale(1.1); background: var(--gold-light); }
.cl-play-btn i { width: 20px; height: 20px; }

.cl-views {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--champagne);
  background: rgba(8,8,8,0.7);
  padding: 0.25rem 0.6rem;
  pointer-events: none;
}
.cl-views i { width: 10px; height: 10px; }

.cl-info {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--dim);
}
.cl-title-card {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--champagne);
}

.cl-video {
  display: none;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ============================================================
   TIMELINE
   ============================================================ */
/* TIMELINE — near-black with large "2025" watermark + right gold edge */
.timeline-section {
  padding: var(--sec-pad);
  background: #040404;
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: '2025';
  position: absolute;
  right: -3%;
  bottom: -5%;
  font-family: var(--f-display);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 900;
  color: rgba(201,168,76,0.035);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
}
.timeline-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
}
.tl-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.tl-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tl-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4rem;
}
.tl-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tl-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}
.tl-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
.tl-item:nth-child(odd) .tl-empty  { grid-column: 3; }
.tl-item:nth-child(even) .tl-empty  { grid-column: 1; }
.tl-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
.tl-dot-wrap { grid-column: 2; display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }

.tl-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  outline: 1px solid var(--gold);
  flex-shrink: 0;
}
.tl-yr-badge {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  background: var(--bg-2);
  padding: 0.15rem 0.4rem;
}

.tl-content { max-width: 360px; }
.tl-item:nth-child(odd) .tl-content { margin-left: auto; }

.tl-ctitle {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--champagne);
  margin-bottom: 0.4rem;
}
.tl-cdesc {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--muted);
}

.tl-empty {}

/* ============================================================
   ACCOLADES / AWARDS
   ============================================================ */
/* ACCOLADES — opposite diagonal stripes + thick top gold border */
.accolades-section {
  padding: var(--sec-pad);
  background-color: #0C0B09;
  background-image: repeating-linear-gradient(
    55deg,
    transparent,
    transparent 28px,
    rgba(201,168,76,0.025) 28px,
    rgba(201,168,76,0.025) 29px
  );
  border-top: 3px solid var(--gold-dark);
}
.ac-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.ac-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.ac-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
}
.ac-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ac-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.25s;
}
.ac-card:hover { background: var(--bg-hover); }

.ac-ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.1rem;
}
.ac-ico i { width: 18px; height: 18px; }

.ac-body { flex: 1; }
.ac-yr {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.ac-name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--champagne);
  margin-bottom: 0.25rem;
}
.ac-org {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   JOIN / CTA
   ============================================================ */
.join-section {
  position: relative;
  padding: 9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.join-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: saturate(0.4) brightness(0.4);
}
.join-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%),
    radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.join-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.join-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.join-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.join-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.join-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.ft-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ft-logo {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.ft-sub {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.ft-link {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.ft-link:hover { border-color: var(--gold); }
.ft-copy {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .id-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ac-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block { border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(3), .stat-block:nth-child(4) { border-bottom: none; }
  .tl-wrap::before { left: 1.5rem; }
  .tl-item { grid-template-columns: 1fr; padding-left: 3.5rem; }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content { grid-column: 1; text-align: left; margin-left: 0; max-width: 100%; }
  .tl-item:nth-child(odd) .tl-empty,
  .tl-item:nth-child(even) .tl-empty { display: none; }
  .tl-dot-wrap { position: absolute; left: 1.5rem; top: 2rem; transform: translateX(-50%); flex-direction: column; }
  .tl-item { position: relative; }
  .cl-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  :root { --sec-pad: 4.5rem 0; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-panel {
    order: -1;
    clip-path: none;
    aspect-ratio: 4/5;
  }
  .hero-portrait {
    object-fit: cover;
    object-position: center bottom;
  }
  .hero-text-panel { padding: 3rem 1.5rem 3.5rem; }
  .hero-deco-text { display: none; }
  .hn-fill, .hn-outline { font-size: clamp(3.5rem, 18vw, 6rem); }

  .id-grid { gap: 2rem; }
  .gl-masonry { columns: 2; }
  .cl-grid { grid-template-columns: 1fr; }
  .ac-grid { grid-template-columns: 1fr; }
  .hero-numbers { gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .ft-inner { flex-direction: column; text-align: center; }

  /* ── Hero text centering ── */
  .hero-text-panel {
    text-align: center;
    align-items: center;
  }
  .hero-kicker { justify-content: center; }
  .hero-tags   { justify-content: center; }
  .hero-bio    { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-numbers { justify-content: center; }
  .id-pullquote { border-left: none; border-top: 3px solid var(--gold); padding-left: 0; padding-top: 1rem; text-align: center; }
  .id-cite { padding-left: 0; text-align: center; }
  .id-socials { justify-content: center; }
  .id-partner-strip { flex-direction: column; align-items: center; text-align: center; }
  .ips-year { margin-left: 0; }

  /* ── Section labels & titles centering ── */
  .id-label,
  .gl-label, .cl-label, .tl-label, .ac-label, .ms-label { text-align: center; }

  .id-headline,
  .gl-title, .cl-title, .tl-title, .ac-title { text-align: center; }

  .gl-header, .id-bio-col { text-align: left; }

  .ms-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ms-scroll-hint { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-image-panel { aspect-ratio: 4/5; }
  .gl-masonry { columns: 1; }
  .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .join-btns { flex-direction: column; align-items: center; }
  .join-btns .btn-gold,
  .join-btns .btn-ghost { width: 100%; justify-content: center; }

  /* ── Timeline dot extra small fix ── */
  .tl-wrap::before { left: 1rem; }
  .tl-item { padding-left: 2.75rem; }
  .tl-dot-wrap { left: 1rem; top: 1.75rem; }
}

/* ============================================================
   FLOATING NEXT AMBASSADOR BUTTON
   ============================================================ */
.fn-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 1000;
  width: 56px;
  height: 110px;
  border-radius: 28px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: fn-float 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(201,168,76,0.45), 0 4px 24px rgba(0,0,0,0.5);
}

.fn-btn:hover {
  box-shadow: 0 0 32px rgba(201,168,76,0.7), 0 4px 32px rgba(0,0,0,0.6);
}

.fn-ring {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 2px solid rgba(201,168,76,0.7);
  animation: fn-wave 2.4s ease-out infinite;
  pointer-events: none;
}

.fn-r1 { animation-delay: 0s; }
.fn-r2 { animation-delay: 0.8s; }
.fn-r3 { animation-delay: 1.6s; }

.fn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  z-index: 1;
}

.fn-icon {
  width: 18px;
  height: 18px;
  color: #080808;
}

.fn-txt {
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  color: #080808;
  text-align: center;
  line-height: 1.15;
  font-weight: 700;
}

@keyframes fn-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes fn-wave {
  0%   { transform: scale(1);    opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 767px) {
  .fn-btn { width: 46px; height: 90px; border-radius: 23px; right: 0.5rem; }
}
