/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:      #0e1e35;
  --navy-mid:  #162540;
  --navy-soft: #1e3a5f;
  --gold:      #c9a84c;
  --gold-pale: #e8d5a3;
  --white:     #f5f7fa;
  --muted:     #8fa3bc;
  --card-bg:   #132032;

  --display: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 100vh;
  position: relative;
}

/* Photo panel */
.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.6s ease;
}

.hero-photo:hover img {
  transform: scale(1.03);
}

/* Diagonal fade to content panel */
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    var(--navy-mid) 100%
  );
}

/* Content panel */
.hero-content {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  padding: 4rem 5rem 4rem 4rem;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-inner {
  max-width: 520px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}

.name {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.name em {
  font-style: italic;
  color: var(--gold-pale);
}

.title-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.role {
  font-weight: 600;
  color: var(--white);
}

.sep {
  color: var(--gold);
  font-size: 1rem;
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

/* Credentials */
.credentials {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.credential-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.cred-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.15rem;
}

.cred-value {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
}

.cred-sub {
  color: var(--muted);
  font-size: 0.8rem;
}

/* CTA buttons */
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.7rem 1.8rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}

.btn-ghost {
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--navy-soft);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ─── ABOUT ───────────────────────────────────────────── */
.about {
  background: var(--navy);
  padding: 6rem 8vw;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.about-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  padding-top: 0.35rem;
}

.section-tag.light {
  color: var(--gold);
}

.about-lead {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: 1.4rem;
  line-height: 1.45;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── FOCUS CARDS ─────────────────────────────────────── */
.focus {
  background: var(--navy-mid);
  padding: 5rem 8vw;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.focus-header {
  max-width: 960px;
  margin: 0 auto 3rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.focus-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}

.focus-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
}

.focus-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.focus-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.focus-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 2rem 8vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.footer-name {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--gold-pale);
}

.footer-inst {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo {
    height: 55vw;
    min-height: 280px;
  }

  .photo-overlay {
    background: linear-gradient(to bottom, transparent 50%, var(--navy-mid) 100%);
  }

  .hero-content {
    padding: 3rem 2rem 3.5rem;
  }

  .hero-content::before { display: none; }

  .name { font-size: 2.4rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .about { padding: 4rem 6vw; }
  .focus { padding: 4rem 6vw; }
}

@media (max-width: 480px) {
  .credential-item { grid-template-columns: 1fr; gap: 0.2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
