/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #fdf8f2;
  --navy-mid: #f5ede0;
  --navy-light: #ede3d4;
  --gold: #4a6fa5;
  --gold-light: #6b8fbf;
  --cream: #1e2d42;
  --white: #162032;
  --text-muted: #6b7e96;
  --border: rgba(74,111,165,0.22);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(253,248,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── SECTIONS ── */
section { padding: 6rem 4rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.divider {
  width: 3rem; height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  max-width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,111,165,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(237,227,212,0.8) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text { animation: fadeUp 0.9s ease both; }
.hero-greeting {
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-name span { color: var(--gold); }
.hero-role {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy);
  border: none; border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-photo-wrap {
  animation: fadeUp 0.9s 0.2s ease both;
  display: flex; justify-content: center;
}
.hero-photo {
  width: 320px; height: 380px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
  filter: grayscale(20%);
}
.hero-photo-placeholder {
  width: 320px; height: 380px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
  gap: 0.5rem;
}
.hero-photo-placeholder svg { opacity: 0.4; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem; color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── ABOUT ── */
#about { border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag {
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.info-list { display: flex; flex-direction: column; gap: 1rem; }
.info-item {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.info-key { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.info-val { font-size: 0.95rem; color: var(--cream); }

/* ── EDUCATION ── */
#education { border-top: 1px solid var(--border); }
.edu-list { display: flex; flex-direction: column; gap: 1.5rem; }
.edu-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 1rem;
  transition: border-color 0.2s;
}
.edu-card:hover { border-color: var(--gold); }
.edu-degree {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--white);
  margin-bottom: 0.25rem;
}
.edu-school { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }
.edu-desc { color: var(--text-muted); font-size: 0.9rem; }
.edu-year {
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--text-muted); text-align: right;
  white-space: nowrap;
}

/* ── JOURNEY ── */
#journey { border-top: 1px solid var(--border); }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -2.45rem; top: 0.4rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--navy);
}
.timeline-year {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.35rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--white);
  margin-bottom: 0.35rem;
}
.timeline-org { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.5rem; }
.timeline-desc { color: var(--text-muted); font-size: 0.9rem; }

/* ── GALLERY ── */
#gallery { border-top: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.78rem;
  gap: 0.5rem;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(253,248,242,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── ACTIVITIES ── */
#activities { border-top: 1px solid var(--border); }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.activity-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.activity-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.activity-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.activity-title {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--white);
  margin-bottom: 0.5rem;
}
.activity-desc { font-size: 0.88rem; color: var(--text-muted); }

/* ── CONTACT ── */
#contact { border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
}
.contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.contact-value { font-size: 0.95rem; color: var(--cream); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.form-group input, .form-group textarea {
  background: #fff8ee;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted); font-size: 0.82rem;
}
.social-links { display: flex; gap: 1.25rem; }
.social-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal { opacity: 0; transform: translateY(20px); }
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .hero-content { grid-template-columns: 1fr; padding: 0 1.5rem; text-align: center; }
  .hero-photo-wrap { order: -1; }
  .hero-btns { justify-content: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .activity-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; }
}
