/* ============ TOKENS ============ */
:root {
  --navy-950: #0a1f33;
  --navy-900: #0f2a47;
  --navy-800: #16395e;
  --navy-700: #1f4d7a;
  --gold-500: #c9a227;
  --gold-400: #d9b94f;
  --gold-100: #f3e8c8;
  --cream: #f7f4ec;
  --paper: #fcfaf5;
  --ink: #1c1c1c;
  --ink-soft: #4a4a4a;
  --line: rgba(15, 42, 71, 0.12);
  --shadow: 0 12px 32px rgba(15, 42, 71, 0.12);

  --serif: "Playfair Display", "Noto Serif", Georgia, serif;
  --sans: "Inter", "Noto Sans", -apple-system, sans-serif;

  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ SEAL MOTIF (signature element) ============ */
.seal {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.seal path, .seal circle { fill: none; stroke: currentColor; stroke-width: 1.1; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
}
.brand .seal { width: 30px; height: 30px; }
.brand-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
}
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-top: 2px;
}
.navlinks {
  display: flex;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-800);
}
.navlinks a { position: relative; padding: 4px 0; transition: color .2s; }
.navlinks a:hover { color: var(--gold-500); }
.navlinks a.active { color: var(--navy-900); }
.navlinks a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
}
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .navlinks { display: none; }
  .nav-toggle {
    display: block;
    background: none; border: none;
    color: var(--navy-900);
    font-size: 26px;
    cursor: pointer;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--gold-100);
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(201,162,39,0.05) 0px, rgba(201,162,39,0.05) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-400);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  margin: 0 0 22px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
}
.hero-roles {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 32px;
  font-size: 16.5px;
  color: rgba(247, 244, 236, 0.86);
}
.hero-roles span { display: flex; align-items: baseline; gap: 10px; }
.hero-roles span::before {
  content: "—";
  color: var(--gold-500);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 2px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(247,244,236,0.35);
  color: var(--gold-100);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-400); }

.hero-portrait {
  position: relative;
  justify-self: center;
}
.portrait-frame {
  position: relative;
  width: 280px;
  border: 1px solid rgba(201,162,39,0.4);
  padding: 14px;
}
.portrait-frame img {
  width: 100%;
  filter: grayscale(8%) contrast(1.03);
  border: 1px solid rgba(201,162,39,0.25);
}
.portrait-frame::before, .portrait-frame::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1.5px solid var(--gold-500);
}
.portrait-frame::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.portrait-frame::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }
.portrait-cap {
  text-align: center;
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-portrait { justify-self: start; }
}

/* ============ SECTION SCAFFOLDING ============ */
section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-navy { background: var(--navy-900); color: var(--gold-100); }

.section-head { margin-bottom: 56px; max-width: 680px; }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.section-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold-500); }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--navy-950);
}
.section-navy .section-head h2 { color: #fff; }
.section-head p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.section-navy .section-head p { color: rgba(247,244,236,0.75); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-950);
  color: rgba(247,244,236,0.65);
  padding: 56px 0 36px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247,244,236,0.12);
}
.footer-brand { display: flex; gap: 12px; align-items: flex-start; color: var(--gold-100); margin-bottom: 14px; }
.footer-brand .seal { color: var(--gold-500); }
.footer-col h4 {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 16px;
}
.footer-col a, .footer-col p { display: block; margin: 0 0 10px; color: rgba(247,244,236,0.65); transition: color .2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--navy-900);
}

/* Page hero (sub-pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 72px 0 64px;
}
.page-hero .section-eyebrow { color: var(--gold-400); }
.page-hero .section-eyebrow::before { background: var(--gold-400); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 46px);
  margin: 0;
  color: #fff;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(247,244,236,0.55);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--gold-400); }

/* ============ STAT GRID (homepage) ============ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat-card {
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--navy-900);
}
.stat-label {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 860px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ TIMELINE (homepage) ============ */
.timeline {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(247,244,236,0.14);
}
.tl-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(247,244,236,0.14);
}
.tl-year {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-400);
  font-weight: 700;
}
.tl-item p { margin: 0; color: rgba(247,244,236,0.82); }
@media (max-width: 700px) {
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ============ AWARD PREVIEW (homepage) ============ */
.award-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.award-preview {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 26px;
  position: relative;
}
.award-preview-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 12px;
}
.award-preview h3 {
  font-family: var(--serif);
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--navy-950);
}
.award-preview p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
@media (max-width: 860px) {
  .award-preview-grid { grid-template-columns: 1fr; }
}
