/* ===================================================================
   ARVIND SHRIVASTAVA — Digital Institution
   Ultra-premium, typography-driven, governance aesthetic
   =================================================================== */

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

/* --- CUSTOM PROPERTIES --- */
:root {
  --navy-deep: #070e1a;
  --navy: #0f1b2d;
  --navy-mid: #162540;
  --charcoal: #1e2d3d;
  --slate: #2a3f54;
  --gold: #c4a35a;
  --gold-muted: #b8943f;
  --gold-light: #d4b96a;
  --ivory: #f7f3eb;
  --ivory-warm: #efe8da;
  --cream: #e8dfd0;
  --text-primary: #f0ebe3;
  --text-secondary: rgba(240, 235, 227, 0.65);
  --text-dark: #0f1b2d;
  --text-dark-secondary: rgba(15, 27, 45, 0.6);
  --border-subtle: rgba(196, 163, 90, 0.15);
  --border-gold: rgba(196, 163, 90, 0.3);
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-elegant: cubic-bezier(0.19, 1, 0.22, 1);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--navy-deep); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--transition-smooth); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* --- UTILITY --- */
.container { max-width: 1340px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 60px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- PAGE TRANSITION OVERLAY --- */
.page-transition {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy-deep);
  transform: scaleY(1);
  transform-origin: top;
  animation: pageReveal 0.8s var(--transition-elegant) forwards;
}
@keyframes pageReveal {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* --- ENTRY GATE --- */
.gate-wrapper {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep);
  z-index: 9999;
}
.gate-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(196,163,90,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 600px 800px at 80% 30%, rgba(15,27,45,0.8) 0%, transparent 70%);
}
.gate-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.gate-lines::before, .gate-lines::after {
  content: ''; position: absolute;
  background: var(--border-subtle);
}
.gate-lines::before {
  width: 1px; height: 100%; left: 15%; top: 0;
}
.gate-lines::after {
  width: 1px; height: 100%; right: 15%; top: 0;
}
.gate-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 440px; width: 90%;
}
.gate-emblem {
  width: 60px; height: 60px;
  margin: 0 auto 40px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 300;
  color: var(--gold);
  letter-spacing: 2px;
  opacity: 0;
  animation: gateFadeIn 1s 0.3s var(--transition-smooth) forwards;
}
.gate-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
  opacity: 0;
  animation: gateFadeIn 1s 0.5s var(--transition-smooth) forwards;
}
.gate-subtitle {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 50px;
  opacity: 0;
  animation: gateFadeIn 1s 0.7s var(--transition-smooth) forwards;
}
.gate-input-group {
  position: relative;
  margin-bottom: 24px;
  opacity: 0;
  animation: gateFadeIn 1s 0.9s var(--transition-smooth) forwards;
}
.gate-input {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 8px;
  text-align: center;
  text-transform: lowercase;
  outline: none;
  transition: all 0.4s var(--transition-smooth);
}
.gate-input::placeholder {
  color: var(--text-secondary);
  letter-spacing: 3px;
  font-size: 12px;
}
.gate-input:focus {
  border-color: var(--gold-muted);
  background: rgba(196,163,90,0.03);
  box-shadow: 0 0 40px rgba(196,163,90,0.05);
}
.gate-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 40px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s var(--transition-smooth);
  opacity: 0;
  animation: gateFadeIn 1s 1.1s var(--transition-smooth) forwards;
}
.gate-submit:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.gate-submit svg { width: 16px; height: 16px; transition: transform 0.3s; }
.gate-submit:hover svg { transform: translateX(4px); }
.gate-error {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  color: #c0392b;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gate-error.visible { opacity: 1; }
.gate-unlock {
  animation: gateUnlock 1.2s var(--transition-elegant) forwards;
}
@keyframes gateFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gateUnlock {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* --- NAVIGATION --- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 4vw, 60px);
  transition: all 0.5s var(--transition-smooth);
}
.site-nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(7,14,26,0.95) 60%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.5s;
}
.site-nav.scrolled::before {
  background: rgba(7,14,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
  border-bottom: 1px solid var(--border-subtle);
}
.nav-brand {
  display: flex; align-items: center; gap: 16px;
}
.nav-monogram {
  width: 42px; height: 42px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  transition: all 0.3s;
}
.nav-brand:hover .nav-monogram {
  background: var(--gold);
  color: var(--navy-deep);
}
.nav-brand-text {
  display: flex; flex-direction: column;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.nav-brand-title {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 0;
}
.nav-links a {
  position: relative;
  padding: 8px 18px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--transition-smooth);
  transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 60%;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 6px;
  width: 28px; height: 28px;
  justify-content: center;
  z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 1px;
  background: var(--text-primary);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(7,14,26,0.98);
  backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--transition-smooth);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 0;
  transition: color 0.3s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(20px, 4vw, 60px) 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1200px 900px at 50% 30%, rgba(196,163,90,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 800px 1000px at 50% 80%, rgba(22,37,64,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-portrait-frame {
  position: relative;
  width: clamp(200px, 32vw, 320px);
  aspect-ratio: 1 / 1;
  margin: 0 auto clamp(32px, 5vw, 56px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero-portrait-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  pointer-events: none;
}
.hero-portrait-frame::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(196,163,90,0.12);
  pointer-events: none;
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 24px;
}
.hero-label::before,
.hero-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-muted);
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin: 0 0 16px;
  word-wrap: break-word;
}
.hero-name strong {
  font-weight: 600;
  color: var(--gold);
}
.hero-designation {
  font-family: var(--font-accent);
  font-size: clamp(11px, 1.4vw, 15px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero-description {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 60px);
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 600px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 90px;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 10px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .hero-portrait-frame {
    width: clamp(180px, 55vw, 240px);
    margin-bottom: 32px;
  }
  .hero-label {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }
  .hero-label::before,
  .hero-label::after { width: 24px; }
  .hero-name { margin-bottom: 12px; letter-spacing: 1px; }
  .hero-designation { margin-bottom: 24px; letter-spacing: 3px; }
  .hero-description { margin-bottom: 36px; }
  .hero-stats { gap: 24px; padding-top: 28px; }
}

@media (max-width: 420px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hero-stats > div { width: 100%; }
}

/* --- SECTION COMMON --- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section-light {
  background: var(--ivory);
  color: var(--text-dark);
}
.section-light .text-secondary { color: var(--text-dark-secondary); }
.section-dark {
  background: var(--navy);
}
.section-deep {
  background: var(--navy-deep);
}
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-muted);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 60px;
}

/* --- CONTENT GRID LAYOUTS --- */
.content-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.content-duo.reverse .content-text { order: -1; }

@media (max-width: 768px) {
  .content-duo {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-duo.reverse .content-text { order: 0; }
}

.content-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.content-text p:last-child { margin-bottom: 0; }

.content-image {
  position: relative;
  overflow: hidden;
}
.content-image img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  padding-left: 60px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border-gold);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px; top: 8px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.timeline-role {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}
.timeline-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 540px;
}

/* --- CARD GRID --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.card {
  position: relative;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--transition-smooth);
}
.card:hover {
  border-color: var(--border-gold);
  background: rgba(196,163,90,0.03);
  transform: translateY(-4px);
}
.section-light .card {
  background: #fff;
  border-color: rgba(15,27,45,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.section-light .card:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.card-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.3;
}
.card-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --- HIGHLIGHT STRIP --- */
.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.highlight-item {
  padding: 48px 32px;
  border-right: 1px solid var(--border-subtle);
  text-align: center;
  transition: background 0.3s;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(196,163,90,0.03); }
.highlight-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.highlight-text {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .highlight-strip { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .highlight-strip { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .highlight-item:last-child { border-bottom: none; }
}

/* --- QUOTE BLOCK --- */
.quote-block {
  position: relative;
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-block::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  position: relative;
}
.quote-attr {
  margin-top: 24px;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* --- IMAGE GALLERY GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--transition-smooth), filter 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 24px;
  background: linear-gradient(transparent 50%, rgba(7,14,26,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9998;
  background: rgba(7,14,26,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(20px);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 32px; right: 32px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* --- CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 10px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}
.form-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s var(--transition-smooth);
  cursor: pointer;
  background: transparent;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.contact-info-block {
  padding-left: 40px;
  border-left: 1px solid var(--border-subtle);
}
.contact-info-item {
  margin-bottom: 40px;
}
.contact-info-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
}
.contact-info-value a { color: var(--text-primary); transition: color 0.3s; }
.contact-info-value a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-info-block { padding-left: 0; border-left: none; padding-top: 40px; border-top: 1px solid var(--border-subtle); }
}

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
  background: var(--navy-deep);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  display: flex; align-items: center; gap: 16px;
}
.footer-monogram {
  width: 42px; height: 42px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--gold);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-social {
  display: flex; gap: 16px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,163,90,0.05);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-credit {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.footer-credit a { color: var(--gold-muted); transition: color 0.3s; }
.footer-credit a:hover { color: var(--gold); }
.footer-contact-line {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.footer-contact-line a { color: var(--text-secondary); }
.footer-contact-line a:hover { color: var(--gold); }

/* --- CTA SECTION --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(196,163,90,0.05) 0%, transparent 70%);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 32px;
  position: relative;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 52px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
}
.cta-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* --- MEDIA / ARTICLES LIST --- */
.article-list {
  display: flex;
  flex-direction: column;
}
.article-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
  cursor: pointer;
}
.article-item:hover { background: rgba(196,163,90,0.02); padding-left: 16px; padding-right: 16px; }
.article-date {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold-muted);
}
.article-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
.article-arrow {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
}
.article-item:hover .article-arrow { transform: translateX(6px); }

@media (max-width: 600px) {
  .article-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .article-arrow { display: none; }
}

/* --- MEDIA GRID --- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--transition-smooth);
}
.media-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.media-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top center;
}
.media-card-body {
  padding: 28px;
}
.media-card-tag {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
}
.media-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}
.media-card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .media-grid { grid-template-columns: 1fr; }
}

/* --- PAGE HEADER --- */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 30% 60%, rgba(196,163,90,0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.page-header-content {
  position: relative; z-index: 2;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header-title em { font-style: italic; color: var(--gold); }
.page-header-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
}
.page-header-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-top: 32px;
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.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; }

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-secondary); }

/* --- INSIGHTS / VALUES GRID --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-subtle);
}
.value-cell {
  padding: 48px 36px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
.value-cell:nth-child(3n) { border-right: none; }
.value-cell:nth-last-child(-n+3) { border-bottom: none; }
.value-cell:hover { background: rgba(196,163,90,0.03); }
.value-cell-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.value-cell-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-cell:nth-child(3n) { border-right: 1px solid var(--border-subtle); }
  .value-cell:nth-child(2n) { border-right: none; }
  .value-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border-subtle); }
  .value-cell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-cell { border-right: none !important; }
  .value-cell:last-child { border-bottom: none; }
}

/* --- SPEECHES / VIDEO SECTION --- */
.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.5);
}
.video-play-btn {
  position: absolute;
  width: 72px; height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 24px;
  transition: all 0.3s;
  cursor: pointer;
}
.video-play-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.1);
}

/* --- ABOUT SECTION SPECIFIC --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}
.about-image-stack {
  position: relative;
}
.about-image-primary {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.about-image-badge img {
  display: none;
}
.about-image-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 20px 28px;
  text-align: center;
}
.about-image-badge-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
.about-image-badge-label {
  font-family: var(--font-accent);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-stack { max-width: 360px; margin: 0 auto; }
}

/* --- SVG ICONS (inline) --- */
.icon-svg { width: 20px; height: 20px; fill: currentColor; }

/* --- SMOOTH SCROLL INDICATOR --- */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--text-secondary);
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold-muted), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- RESPONSIVE FINE-TUNING --- */
@media (max-width: 768px) {
  .page-header { padding: 120px 0 60px; }
  .nav-brand-title { display: none; }
  .nav-brand-name { font-size: 14px; letter-spacing: 2px; }
  .nav-monogram { width: 36px; height: 36px; font-size: 16px; }
  .nav-inner { height: 72px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-contact-line { word-break: break-word; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .card { padding: 28px; }
  .form-submit { width: 100%; justify-content: center; }
}

/* Image safety — ensure faces are not cut */
img { max-width: 100%; height: auto; }
.gallery-item img, .media-card-image, .hero-portrait { display: block; }

/* --- PRINT --- */
@media print {
  .site-nav, .site-footer, .scroll-indicator { display: none; }
  body { background: #fff; color: #000; }
}
