:root {
  --navy: #16365D;
  --gold: #C4922A;
  --gold-light: rgba(196, 146, 42, 0.12);
  --white: #ffffff;
  --light-grey: #f6f7f9;
  --text-grey: #BFC7D1;
  --max: 1100px;
  --pad: 22px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* RESET */
html, body { height: 100%; margin: 0; padding: 0; }
* { box-sizing: border-box; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--white);
  color: #0f1b2a;
  line-height: 1.6;
}

.site-main { flex: 1; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: 'EB Garamond', Georgia, serif;
}

/* CONTAINER */
.container {
  width: min(var(--max), calc(100% - (2 * var(--pad))));
  margin-left: auto;
  margin-right: auto;
}

/* HEADER / NAV */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
}

.brand img { height: 42px; width: auto; }

.brand span {
  font-size: 14px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  opacity: .8;
  transition: opacity .2s ease, color .2s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-links a[aria-current="page"] {
  color: var(--gold);
  opacity: 1;
  font-weight: 700;
}

.nav-cta {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-cta:hover {
  background: rgba(255,255,255,.22);
  opacity: 1;
}

.nav-cta[aria-current="page"] {
  background: var(--gold-light);
  border-color: var(--gold);
  color: var(--gold);
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 14, 28, 0.93) 0%,
    rgba(8, 18, 36, 0.72) 55%,
    rgba(8, 18, 36, 0.22) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 60px 0;
}

/* Kicker */
.hero-kicker {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px 0;
  opacity: 0;
  animation: heroFadeUp 0.5s ease 0.1s both;
}

/* Headline */
.hero-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.1;
  margin: 0 0 20px 0;
  max-width: 20ch;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.22s both;
}

/* Subtext */
.hero-sub {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
  max-width: 44ch;
  margin: 0 0 36px 0;
  line-height: 1.7;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.36s both;
}

/* CTAs */
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.48s both;
}

.hero-btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--gold);
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 3px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero-btn-secondary {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 11px 24px;
  border-radius: 3px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.22);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}

/* Stats bar */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.6s both;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 36px;
}

.hero-stat-value {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-stat-label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.35);
}

.hero-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
  margin-right: 36px;
  flex-shrink: 0;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.button {
  display: inline-block;
  text-decoration: none;
  background: var(--white);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid #dfe6ef;
}

/* SECTIONS */
.section { padding: 70px 0; }

.section.alt { background: var(--light-grey); }

.h2 {
  font-size: 30px;
  margin: 0 0 14px 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.muted { color: #3b4757; }

/* ABOUT POSTER */
.about-poster {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.about-top { padding-top: 60px; }

.about-title {
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.02em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 40px 0 70px 0;
}

.about-left {
  position: relative;
  min-height: 420px;
}

.about-left::before {
  content: "";
  position: absolute;
  left: -30%;
  bottom: -30%;
  width: 120%;
  height: 120%;
  background: var(--light-grey);
  border-radius: 60%;
}

.logo-ring {
  position: absolute;
  left: 6%;
  bottom: 10%;
  width: min(360px, 80vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.logo-ring-inner {
  width: 86%;
  height: 86%;
  border-radius: 999px;
  background: var(--navy);
  display: grid;
  place-items: center;
  border: 6px solid rgba(255,255,255,.95);
  overflow: hidden;
}

.logo-ring-inner img {
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.15));
}

.about-right h3 {
  font-size: clamp(32px, 3.5vw, 50px);
  margin: 0 0 10px 0;
  font-weight: 900;
}

.about-right p {
  margin: 0 0 34px 0;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  max-width: 44ch;
}

/* COMMITTEE CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: 1px solid #eee;
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-bottom: 1px solid #eee;
}

.card-body { padding: 18px; }

.card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin: 0 0 8px 0;
}

.bio {
  font-size: 14px;
  color: #506075;
  margin: 0;
  line-height: 1.5;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

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

/* Card stagger delays (reveal) — reset to 0 on hover so hover is instant */
.cards .card:nth-child(2) { transition-delay: 80ms; }
.cards .card:nth-child(3) { transition-delay: 160ms; }
.cards .card:nth-child(4) { transition-delay: 240ms; }
.cards .card:nth-child(5) { transition-delay: 320ms; }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  transition: transform .2s ease, box-shadow .2s ease;
  transition-delay: 0ms;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: var(--text-grey);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img {
  height: 36px;
  width: auto;
  flex: 0 0 auto;
  max-height: 36px;
}

.footer-left p { margin: 0; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: var(--navy);
  transform: translateY(-2px);
}

/* CONTACT FORM */
.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.contact-title {
  margin: 0 0 18px 0;
  font-size: clamp(34px, 4vw, 44px);
  color: var(--navy);
  letter-spacing: -0.02em;
  font-weight: 900;
}

.contact-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full { grid-column: 1 / -1; }

.contact-form label {
  font-size: 14px;
  font-weight: 700;
  color: #1c2d47;
}

.contact-form label span { margin-left: 2px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #dfe6ef;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #152338;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(22,54,93,.55);
  box-shadow: 0 0 0 4px rgba(22,54,93,.12);
}

.submit-btn {
  margin-top: 14px;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22,54,93,.25);
}

.form-note {
  margin: 10px 0 0 0;
  color: #506075;
  font-size: 13px;
}

.honeypot { display: none; }

/* SOON CARD (coming soon pages) */
.soon-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}

.soon-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 12px 0;
}

.soon-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.soon-text {
  color: #3b4757;
  margin: 0 0 12px 0;
}

.soon-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.soon-note {
  margin: 16px 0 0 0;
  font-size: 13px;
  color: #506075;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 26px; padding: 24px 0 56px 0; }
  .about-left { min-height: 300px; }
  .logo-ring { position: relative; left: 0; bottom: 0; margin: 0 auto; }
  .about-right h3 { font-size: 28px; }
  .about-right p { font-size: 16px; }
  .brand span { white-space: normal; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 901px) {
  .card--research { grid-column: 1; }
}

@media (max-width: 768px) {
  .nav { flex-wrap: wrap; row-gap: 10px; }
  .brand { flex: 1 1 100%; }
  .brand span { white-space: normal; font-size: 13px; line-height: 1.2; }
  .nav-links { flex: 1 1 100%; justify-content: flex-start; gap: 14px; }
  .hero { min-height: 100svh; background-attachment: scroll; }
  .hero-content { padding: 100px 0 48px 0; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-stats-inner { flex-wrap: wrap; gap: 20px 0; padding: 20px 0; }
  .hero-stat { padding-right: 28px; }
  .hero-stat-divider { margin-right: 28px; }
}

@media (max-width: 700px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-left { flex-direction: column; }
}

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

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .cards { grid-template-columns: 1fr; }
  .soon-card { padding: 20px; }
  .soon-title { font-size: 26px; }
  .contact-form { padding: 18px; }
  .contact-form input,
  .contact-form textarea { font-size: 14px; }
}
