/* ============================================================
   INDAH DIAN NURANI — Professional Portfolio
   Design: Diplomatic Elegance / Editorial Institutional
   Theme: Light & Dark with semantic CSS variables
   ============================================================ */

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

/* ── THEME TOKENS — LIGHT (default) ───────────────────────── */
:root {
  /* Semantic surface tokens */
  --bg:           #F5F5F4;
  --surface:      #FFFFFF;
  --surface-alt:  #F8FAFC;
  --divider:      #E2E8F0;

  /* Text */
  --text-primary:   #0F172A;
  --text-secondary: #334155;
  --text-muted:     #64748B;

  /* Accent */
  --gold:           #C9A227;
  --gold-hover:     #E2C044;
  --terra:          #C2410C;
  --terra-hover:    #E35D2F;

  /* Fixed (always dark nav/hero) */
  --navy:      #0F172A;
  --navy-mid:  #111827;
  --navy-soft: #1F2937;
  --navy-border: rgba(255,255,255,0.08);
  --nav-text:  rgba(255,255,255,0.75);
  --nav-text-active: #FFFFFF;

  /* Legacy aliases (kept for hero/nav sections that are always dark) */
  --beige:     #F5F5F4;
  --beige-mid: #E2E8F0;
  --white:     #FFFFFF;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  /* Motion */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 12px rgba(15,23,42,0.06);
  --shadow-md:  0 8px 32px rgba(15,23,42,0.12);
  --shadow-lg:  0 24px 64px rgba(15,23,42,0.18);
}

/* ── THEME TOKENS — DARK ───────────────────────────────────── */
[data-theme="dark"] {
  --bg:           #0B1120;
  --surface:      #111827;
  --surface-alt:  #1F2937;
  --divider:      #334155;

  --text-primary:   #F8FAFC;
  --text-secondary: #CBD5F5;
  --text-muted:     #94A3B8;

  --gold:       #C9A227;
  --gold-hover: #E2C044;
  --terra:      #C2410C;
  --terra-hover:#E35D2F;

  /* Dark navy sections shift slightly */
  --navy:      #060D1A;
  --navy-mid:  #0B1120;
  --navy-soft: #111827;
  --navy-border: rgba(255,255,255,0.06);

  --beige:     #1F2937;
  --beige-mid: #334155;
  --white:     #111827;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.25);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.45);
}

/* ── TRANSITION on theme switch ────────────────────────────── */
body, body * {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
/* but keep fast micro-interactions where needed */
.nav__links a, .btn, .card, .event-card, .skill-item,
.event-portfolio-card, .leadership-card, .footer__social {
  transition: var(--transition);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── THEME TOGGLE BUTTON ────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.theme-toggle svg {
  width: 15px;
  height: 15px;
  position: absolute;
  transition: opacity 0.25s ease, transform 0.35s ease;
}
.theme-toggle .icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.7); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

[data-theme="dark"] .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.7); }

/* ── UTILITY ────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section--dark     { background: var(--navy);     color: var(--beige); }
.section--navy-mid { background: var(--navy-mid); color: var(--beige); }
.section--white    { background: var(--surface); }
.section--beige    { background: var(--bg); }

.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  margin-bottom: 1.2rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--gold); }

.section--dark .section-title,
.section--navy-mid .section-title { color: var(--beige); }

.section-intro {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}
.section--dark .section-intro,
.section--navy-mid .section-intro { color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn--outline { background: transparent; color: var(--beige); border-color: rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-dark { background: transparent; color: var(--text-primary); border-color: var(--divider); }
.btn--outline-dark:hover { background: var(--text-primary); color: var(--bg); border-color: var(--text-primary); }
.btn svg { width: 14px; height: 14px; }

.divider { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
}
.nav.scrolled {
  background: rgba(11,17,32,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
[data-theme="dark"] .nav.scrolled { background: rgba(6,13,26,0.98); }

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__logo { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: #FFFFFF; letter-spacing: 0.02em; }
.nav__logo span { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nav-text);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--nav-text-active); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.4);
  padding: 0.5rem 1.2rem;
}
.nav__cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.nav__right { display: flex; align-items: center; gap: 1rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: #FFFFFF; }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 300;
  color: #F5F5F4;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  color: #FFFFFF; font-size: 1.8rem; line-height: 1;
}
.mobile-nav__theme {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.5rem 1.2rem;
}
.mobile-nav__theme svg { width: 14px; color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,162,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(194,65,12,0.04) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero__name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; color: #FFFFFF;
  line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.35s ease forwards;
}
.hero__name em { display: block; font-style: italic; color: var(--gold); font-weight: 300; }
.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero__statement {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300; color: rgba(255,255,255,0.8);
  line-height: 1.65; max-width: 580px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s 0.65s ease forwards;
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s ease forwards;
}
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__image-frame {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 340px; height: 440px;
  opacity: 0; animation: fadeLeft 1s 0.4s ease forwards;
}
.hero__image-frame::before {
  content: ''; position: absolute; top: -16px; right: -16px;
  width: 100%; height: 100%; border: 1px solid rgba(201,162,39,0.25); z-index: 0;
}
.hero__image-frame::after {
  content: ''; position: absolute; bottom: -16px; left: -16px;
  width: 60%; height: 60%; border: 1px solid rgba(201,162,39,0.15); z-index: 0;
}
.hero__image-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.05); }
.hero__image-placeholder {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-family: var(--font-serif);
  font-size: 0.9rem; letter-spacing: 0.1em; text-align: center; gap: 0.5rem;
}
.hero__image-placeholder svg { width: 48px; height: 48px; opacity: 0.2; }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats { background: var(--navy-mid); border-top: 1px solid var(--navy-border); border-bottom: 1px solid var(--navy-border); padding: 2.5rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { text-align: center; padding: 1rem 1.5rem; border-right: 1px solid var(--navy-border); }
.stats__item:last-child { border-right: none; }
.stats__num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.stats__label { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── CARDS ──────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--divider); }
.card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.card:hover::before { width: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon { width: 44px; height: 44px; margin-bottom: 1.5rem; color: var(--gold); }
.card__num { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--text-primary); line-height: 1; margin-bottom: 0.4rem; }
.card__title { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.card__desc { font-family: var(--font-serif); font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ── FEATURED EVENTS ────────────────────────────────────────── */
.events-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--navy-soft); }
.event-card { background: var(--navy-mid); padding: 2.5rem; position: relative; overflow: hidden; cursor: pointer; }
.event-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height var(--transition); }
.event-card:hover { background: rgba(17,24,39,0.9); }
.event-card:hover::before { height: 100%; }
.event-card__year { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.event-card__title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; color: #FFFFFF; margin-bottom: 0.75rem; line-height: 1.3; }
.event-card__role { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.event-card__location { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1.2rem; }
.event-card__location svg { width: 12px; height: 12px; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero__label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero__title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: #FFFFFF; line-height: 1.1; }
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 520px; margin-top: 1rem; line-height: 1.65; }
.page-hero__bg-num {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-serif); font-size: 12rem; font-weight: 300;
  color: rgba(255,255,255,0.025); user-select: none; line-height: 1; letter-spacing: -0.05em;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.about-sidebar { position: sticky; top: 120px; }
.about-sidebar__photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--surface-alt);
  position: relative; overflow: hidden; margin-bottom: 2rem;
}
.about-sidebar__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-sidebar__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface-alt), var(--bg));
  color: var(--text-muted); font-family: var(--font-serif);
  font-size: 0.85rem; letter-spacing: 0.08em;
  text-align: center; flex-direction: column; gap: 0.5rem;
}
.about-sidebar__photo-placeholder svg { width: 36px; opacity: 0.4; }
.about-sidebar__name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.25rem; }
.about-sidebar__role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-sidebar__info { display: flex; flex-direction: column; gap: 0.75rem; }
.about-sidebar__info-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-secondary); }
.about-sidebar__info-item svg { width: 14px; color: var(--gold); flex-shrink: 0; }

.about-body h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--text-primary); margin-bottom: 1rem; margin-top: 2.5rem; }
.about-body h3:first-child { margin-top: 0; }
.about-body p { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 1.2rem; }
.about-body .highlight-quote { border-left: 2px solid var(--gold); padding: 1rem 1.5rem; margin: 2rem 0; background: rgba(201,162,39,0.05); }
.about-body .highlight-quote p { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--text-primary); margin: 0; }

.interests-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.interest-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: var(--surface-alt); border-left: 2px solid var(--gold); }
.interest-item svg { width: 16px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.interest-item span { font-size: 0.88rem; color: var(--text-primary); line-height: 1.5; }

/* ── EXPERIENCE ─────────────────────────────────────────────── */
.experience-timeline { position: relative; padding-left: 2.5rem; }
.experience-timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); }
.exp-entry { position: relative; padding-bottom: 3.5rem; }
.exp-entry:last-child { padding-bottom: 0; }
.exp-entry::before { content: ''; position: absolute; left: -2.5rem; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); border: 2px solid var(--surface); box-shadow: 0 0 0 3px rgba(201,162,39,0.2); }
.exp-period { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.exp-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.2rem; }
.exp-org { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 1.2rem; }
.exp-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.2rem; max-width: 640px; }
.exp-impacts { display: flex; flex-direction: column; gap: 0.6rem; }
.exp-impact { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--text-primary); }
.exp-impact::before { content: '→'; color: var(--gold); flex-shrink: 0; margin-top: 0.1em; }

.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--divider); }
.skill-item { background: var(--surface); padding: 1.75rem; }
.skill-item:hover { background: var(--navy); }
.skill-item:hover .skill-name,
.skill-item:hover .skill-level { color: var(--beige); }
.skill-name { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500; color: var(--text-primary); margin-bottom: 0.5rem; }
.skill-bar-wrap { height: 2px; background: var(--divider); margin-bottom: 0.5rem; }
.skill-bar { height: 100%; background: var(--gold); }
.skill-level { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ── COMMUNITY TABLE ────────────────────────────────────────── */
.community-table { width: 100%; border-collapse: collapse; }
.community-table thead tr { background: var(--navy); color: #FFFFFF; }
.community-table th { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 1rem 1.25rem; text-align: left; }
.community-table th:first-child { padding-left: 2rem; }
.community-table th:last-child { padding-right: 2rem; }
.community-table tbody tr { border-bottom: 1px solid var(--divider); }
.community-table tbody tr:hover { background: rgba(201,162,39,0.04); }
.community-table td { padding: 1.25rem; font-size: 0.9rem; color: var(--text-primary); vertical-align: top; }
.community-table td:first-child { padding-left: 2rem; }
.community-table td:last-child { padding-right: 2rem; }
.comm-event-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.2rem; }
.comm-event-org { font-size: 0.78rem; color: var(--text-muted); }
.comm-role-badge { display: inline-block; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.65rem; background: var(--navy); color: var(--gold); font-weight: 500; }
.comm-impact { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── EVENTS PORTFOLIO ───────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--navy-soft); }
.event-portfolio-card { background: var(--surface); position: relative; overflow: hidden; cursor: pointer; }
.event-portfolio-card:hover .event-portfolio-card__overlay { opacity: 1; }
.event-portfolio-card__img { width: 100%; aspect-ratio: 4/3; background: var(--surface-alt); overflow: hidden; }
.event-portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-portfolio-card:hover .event-portfolio-card__img img { transform: scale(1.05); }
.event-portfolio-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); font-family: var(--font-serif); font-size: 2.5rem; color: rgba(255,255,255,0.08); font-weight: 300; }
.event-portfolio-card__body { padding: 1.5rem; }
.event-portfolio-card__year { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.event-portfolio-card__name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.4rem; line-height: 1.35; }
.event-portfolio-card__meta { font-size: 0.75rem; color: var(--text-muted); }
.event-portfolio-card__overlay { position: absolute; inset: 0; background: rgba(11,17,32,0.92); opacity: 0; transition: opacity var(--transition); display: flex; flex-direction: column; justify-content: center; padding: 2rem; }
.event-portfolio-card__overlay-role { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.event-portfolio-card__overlay-title { font-family: var(--font-serif); font-size: 1.2rem; color: #FFFFFF; line-height: 1.3; margin-bottom: 0.75rem; }
.event-portfolio-card__overlay-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── LEADERSHIP ─────────────────────────────────────────────── */
.leadership-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: var(--divider); }
.leadership-card { background: var(--surface); padding: 2.5rem; border-top: 3px solid transparent; }
.leadership-card:hover { border-top-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.leadership-card__type { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.leadership-card__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.4rem; line-height: 1.3; }
.leadership-card__org { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.leadership-card__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info__item { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.75rem 0; border-bottom: 1px solid var(--divider); }
.contact-info__item:first-child { padding-top: 0; }
.contact-info__icon { width: 40px; height: 40px; background: rgba(201,162,39,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-info__icon svg { width: 18px; }
.contact-info__label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info__value { font-family: var(--font-serif); font-size: 1rem; color: var(--text-primary); }
.contact-info__value a:hover { color: var(--gold); }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-input, .form-textarea {
  width: 100%;
  border: 1px solid var(--divider);
  background: var(--surface);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  border-radius: 0;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 3.5rem 0 2rem; border-top: 1px solid var(--navy-border); }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 2.5rem; border-bottom: 1px solid var(--navy-border); margin-bottom: 2rem; gap: 3rem; }
.footer__name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; color: #FFFFFF; margin-bottom: 0.5rem; }
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer__nav { display: flex; gap: 4rem; }
.footer__nav-group h4 { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__nav-group ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav-group a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer__nav-group a:hover { color: #FFFFFF; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__socials { display: flex; gap: 1rem; }
.footer__social { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); }
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 14px; }

/* ── INLINE DARK-SECTION OVERRIDES ──────────────────────────── */
/* For inline style panels inside dark sections */
[data-theme="dark"] .section--white .section-title { color: var(--text-primary); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translate(24px, -50%); }
  to   { opacity: 1; transform: translate(0, -50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__image-frame { width: 280px; height: 360px; right: 4%; }
  .about-split { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__image-frame { display: none; }
  .hero__name { font-size: 2.8rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: none; border-bottom: 1px solid var(--navy-border); }
  .cards-grid { grid-template-columns: 1fr; }
  .events-featured { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-cards { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { flex-direction: column; }
  .footer__nav { gap: 2rem; flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .community-table { font-size: 0.82rem; }
  .community-table th, .community-table td { padding: 0.75rem; }
  .community-table td:first-child, .community-table th:first-child { padding-left: 0.75rem; }
  /* show theme toggle in nav when burger visible */
  .nav__right .theme-toggle { display: flex; }
}
@media (max-width: 480px) {
  .events-grid { grid-template-columns: 1fr; }
  .interests-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}