*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2050;
  --navy-dark: #101435;
  --navy-mid:  #222a6a;
  --gold:      #c9a84c;
  --gold-light:#dfc06a;
  --gold-pale: #f7f1dc;
  --ivory:     #ffffff;
  --stone:     #f0efec;
  --slate:     #111111;
  --white:     #ffffff;
}

html { background: #ffffff; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: #ffffff;
  color: #111111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ══ NAV ══════════════════════════════════════════════════ */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 64px;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.open > button {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav-links > li > button.active { color: var(--gold-light); }
.chevron { font-size: 0.55rem; transition: transform 0.2s; }
.nav-links li.open .chevron { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 210px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  overflow: hidden;
  z-index: 200;
  border-top: 3px solid var(--gold);
}
.dropdown.right { left: auto; right: 0; }
li.open > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 11px 18px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.86rem;
  border-bottom: 1px solid #eee;
  transition: background 0.1s, padding-left 0.12s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #f6f4ef; padding-left: 24px; }
.dropdown a.active { font-weight: 700; color: var(--navy); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
}

/* ══ PAGE HERO BANNER ═══════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg'), url('images/hero-fallback.jpg');
  background-size: cover;
  background-position: center 35%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16,20,53,0.45) 0%,
    rgba(16,20,53,0.80) 100%
  );
}
.page-hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px 36px;
}
.page-hero-text .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.page-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

/* ══ CONTENT ══════════════════════════════════════════════ */
main {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 32px 80px;
  width: 100%;
  background: #ffffff;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

/* Bio card */
.bio-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(26,32,80,0.1);
}
.bio-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bio-photo {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.bio-photo .monogram {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  user-select: none;
}

.bio-photo-link {
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.bio-photo-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.bio-toggle {
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.bio-toggle:hover { color: var(--gold-light); }

.bio-name-link {
  color: #111111;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.bio-name-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Bio text */
.bio-info {}
.bio-info .role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.bio-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.15;
}
.bio-info p {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--slate);
  margin-bottom: 14px;
}
.bio-info p:last-child { margin-bottom: 0; }

/* ══ FOOTER ═══════════════════════════════════════════════ */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}
footer a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 6px;
}
footer a:hover { color: var(--gold-light); text-decoration: underline; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy-dark);
  z-index: 999; overflow-y: auto;
  padding: 80px 32px 40px;
}
.mobile-nav.open { display: block; }
.mobile-nav-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--white); font-size: 1.6rem; cursor: pointer;
}
.mobile-nav a {
  display: block; color: var(--white); text-decoration: none;
  font-size: 1.1rem; font-weight: 600; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.mobile-nav a.sub {
  font-size: 0.9rem; font-weight: 400;
  color: rgba(255,255,255,0.6);
  padding-left: 18px; text-transform: none; letter-spacing: 0;
}
.mobile-nav a.cta {
  color: var(--gold); font-weight: 700;
  margin-top: 16px; border-bottom: none;
}

/* ══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .bio-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bio-photo { width: 160px; height: 160px; }
  main { padding: 48px 20px 60px; }
}
