/* ===========================
   IMPORTS & VARIABLES
   =========================== */
:root {
  --navy: #0A192F;
  --navy-light: #112240;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-pale: #F7EFC4;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-100: #F0F2F5;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --text-primary: #0A192F;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --shadow-sm: 0 2px 8px rgba(10,25,47,0.06);
  --shadow-md: 0 8px 32px rgba(10,25,47,0.12);
  --shadow-lg: 0 24px 64px rgba(10,25,47,0.16);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
}

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

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}

/* ===========================
   UTILITIES
   =========================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 100px 0; }
.gold-text { color: var(--gold); }
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

/* ===========================
   FADE IN ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
#navbar .container {
  max-width: 1320px;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(10,25,47,0.1);
  padding: 14px 0;
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: nowrap;
}
.nav-logo {
  display: flex; flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
  word-break: keep-all;
  min-width: max-content;
}
.nav-logo-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; justify-content: flex-end; gap: clamp(14px, 1.7vw, 24px);
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links li {
  flex: 0 0 auto;
  min-width: max-content;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius);
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--navy); transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, #F5F7FA 0%, #EEF1F6 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-bg-dots {
  position: absolute; top: 60px; right: 60px;
  width: 200px; height: 200px;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.25;
  z-index: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-left { padding-right: 20px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-name {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-name span { color: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-300);
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-number span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.hero-right { position: relative; }
.hero-image-wrapper {
  position: relative;
  display: inline-block;
}
.hero-image-frame {
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: 0;
}
.hero-image {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 440px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  filter: contrast(1.05) brightness(1.02) saturate(0.85);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: 32px; left: -28px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-badge-top {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-flag-badge {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
}

/* ===========================
   ABOUT SECTION
   =========================== */
#about {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  position: relative;
  overflow: hidden;
}
.about-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}
.about-story {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(10,25,47,0.08);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.about-story .section-subtitle {
  max-width: 100%;
  color: var(--text-secondary);
}
.about-copy {
  display: grid;
  gap: 18px;
}
.about-copy p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
}
.about-copy > p:nth-child(n + 5) {
  display: none;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.about-fact {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(10,25,47,0.09);
  border-radius: 18px;
  padding: 18px;
  min-height: 120px;
}
.about-fact-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.about-fact-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}
/* ===========================
   EXPERIENCE TIMELINE
   =========================== */
#experience { background: var(--white); }
.timeline-wrapper { position: relative; max-width: 800px; margin: 60px auto 0; }
.timeline-line {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gray-300) 100%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; padding-right: 40px; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; padding-left: 40px; }
.timeline-dot {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 8px;
}
.timeline-dot-inner {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.timeline-item:hover .timeline-dot-inner {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.3);
}
.timeline-year {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-role {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.timeline-org {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}
.timeline-content {
  background: var(--off-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: var(--transition);
}
.timeline-content:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ===========================
   MEDIA SECTION
   =========================== */
#media { background: var(--off-white); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.media-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.media-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(10,25,47,0.14);
  border-color: var(--gold);
}
.media-card:hover::before { transform: scaleX(1); }
.media-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.media-icon svg { color: var(--gold); }
.media-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.media-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.media-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ===========================
   GLOBAL SECTION
   =========================== */
#global { background: var(--navy); color: var(--white); }
.global-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}
.global-left .section-label { color: var(--gold); }
.global-left .section-label::before { background: var(--gold); }
.global-left .section-title { color: var(--white); }
.global-left .section-subtitle { color: rgba(255,255,255,0.65); max-width: 440px; }
.global-stat-row {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.global-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.global-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.global-map-container {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.world-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
}
.map-marker {
  cursor: pointer;
  transition: var(--transition);
}
.map-marker circle { filter: drop-shadow(0 0 6px var(--gold)); }
.map-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  fill: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.map-country { fill: rgba(255,255,255,0.08); stroke: rgba(255,255,255,0.12); stroke-width: 0.5; }
.global-connections {
  display: flex; flex-direction: column; gap: 12px; margin-top: 24px;
}
.global-connection-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.global-connection-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ===========================
   PERSONAL SECTION
   =========================== */
#personal { background: var(--off-white); }
.personal-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.personal-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 24px;
  display: block;
}
.personal-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 32px;
}
.personal-credit {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.personal-divider {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin: 32px auto;
}

body[data-page="home"] #personal {
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.12), transparent 26%),
    linear-gradient(180deg, #f8f6f1 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}
.personal-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10,25,47,0.1);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.personal-feature::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, rgba(212,175,55,0) 72%);
}
.personal-portrait-wrap {
  position: relative;
  max-width: 430px;
}
.personal-portrait-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid rgba(212,175,55,0.55);
  border-radius: 24px;
  z-index: 0;
}
.personal-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.personal-portrait-badge {
  position: absolute;
  left: -24px;
  bottom: 28px;
  z-index: 2;
  max-width: 220px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(10,25,47,0.96);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.personal-badge-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.personal-badge-text {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.personal-content {
  position: relative;
  z-index: 1;
}
.personal-content .section-subtitle {
  max-width: 600px;
  margin-top: 18px;
}
.personal-highlight {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,239,196,0.5));
  border: 1px solid rgba(212,175,55,0.28);
}
.personal-highlight-label,
.personal-meta-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.personal-highlight-text {
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--navy);
}
.personal-story {
  margin-top: 24px;
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(212,175,55,0.65);
}
.personal-story p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.18rem, 2.1vw, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
}
.personal-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.personal-meta-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(10,25,47,0.04);
  border: 1px solid rgba(10,25,47,0.08);
}
.personal-meta-value {
  display: block;
  margin-top: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--navy);
}

/* ===========================
   CONTACT SECTION
   =========================== */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-items { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--off-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-form {
  background: var(--off-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.form-success, .form-error {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.form-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.form-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.contact-socials {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 22px;
}
.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  gap: 14px;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition);
}
.contact-social-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.contact-social-icon {  
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--off-white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-social-link:hover .contact-social-icon {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-md);
}
.contact-social-text {
  font-size: 0.92rem;
  line-height: 1.4;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 24px;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.footer-links {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a.active { color: var(--gold); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; }
.footer-gold { color: var(--gold); }

/* ===========================
   INNER PAGES
   =========================== */
body.inner-page {
  background: var(--white);
}
.page-main {
  padding-top: 108px;
}
.page-banner {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 28%),
    linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 68%);
  border-bottom: 1px solid var(--gray-100);
}
.page-banner-inner {
  max-width: 760px;
}
.page-banner-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.page-banner-text {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
}
.page-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.page-card {
  background: var(--off-white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.page-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.page-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
}
.gallery-video {
  background: #000;
}
.gallery-slider {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.gallery-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}
.gallery-slider-image {
  flex: 0 0 100%;
}
.gallery-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(10,25,47,0.78);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.gallery-slider-prev {
  left: 14px;
}
.gallery-slider-next {
  right: 14px;
}
.gallery-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.gallery-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-slider-dot.is-active {
  background: var(--white);
  transform: scale(1.08);
}
.gallery-caption {
  padding: 18px 20px 20px;
}
.gallery-caption h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.gallery-caption p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1180px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.71rem; letter-spacing: 0.05em; }
  .nav-cta { padding: 10px 16px !important; }
}
@media (max-width: 1024px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.71rem; letter-spacing: 0.06em; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: flex; justify-content: center; }
  .hero-image { max-width: 360px; height: 420px; }
  .hero-image-frame { display: none; }
  .about-shell { grid-template-columns: 1fr; gap: 0; }
  .about-story { padding: 36px; }
  .global-grid { grid-template-columns: 1fr; gap: 48px; }
  .personal-feature { grid-template-columns: 1fr; gap: 40px; }
  .personal-portrait-wrap { max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .page-simple-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 72px 0; }
  .page-main { padding-top: 92px; }
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 16px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.88rem;
    white-space: nowrap;
  }
  .nav-hamburger { display: flex; }
  #navbar { position: fixed; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); }
}
@media (max-width: 768px) {
  .gallery-slider-btn {
    width: 38px;
    height: 38px;
  }
  .about-story { padding: 30px 22px; }
  .about-facts { grid-template-columns: 1fr; }
  .timeline-line { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; gap: 0; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { 
    grid-column: 2; text-align: left; padding-left: 24px; padding-right: 0;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
  .timeline-empty { display: none; }
  .media-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .about-highlights { grid-template-columns: 1fr; }
  .personal-feature { padding: 28px 22px; border-radius: 22px; }
  .personal-portrait { height: 420px; }
  .personal-portrait-frame { inset: 14px -14px -14px 14px; }
  .personal-portrait-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .personal-meta { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .global-stat-row { flex-wrap: wrap; gap: 24px; }
  .global-map-container { padding: 20px; }
  .world-svg { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-image { height: 300px; }
}
.full-image-card .gallery-image {
  height: auto;         
  object-fit: contain;   
}
/* Only for this video card */
.full-video-card .gallery-video {
  width: 100%;
  height: auto;          /* ✅ full video visible */
  object-fit: contain;   /* ✅ no cropping */
  display: block;
}