:root {
  --navy: #0f2d4a;
  --navy-dark: #0b2237;
  --forest: #2f6f5e;
  --gold: #c6a24d;
  --sand: #f4f1eb;
  --mist: #eef2f4;
  --ink: #1d2125;
  --muted: #5c6670;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(15, 45, 74, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fdfaf3 0%, #f2f5f6 45%, #e8eef2 100%);
}

.page {
  min-height: 100vh;
}

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

a:hover {
  color: var(--forest);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 45, 74, 0.08);
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.logo {
  width: 64px;
  height: 64px;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

.brand-sub {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.solid {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(15, 45, 74, 0.22);
}

.button.solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 45, 74, 0.26);
}

.button.ghost {
  border-color: rgba(15, 45, 74, 0.2);
  color: var(--navy);
  background: var(--white);
}

.button.subtle {
  border-color: rgba(15, 45, 74, 0.15);
  background: var(--mist);
  color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 72px 6vw 48px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--navy);
  margin: 12px 0 16px;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--forest);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-card {
  background: linear-gradient(140deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(198, 162, 77, 0.25);
}

.card-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.card-title {
  font-size: 1.4rem;
  margin: 12px 0 8px;
}

.card-copy {
  color: rgba(255, 255, 255, 0.78);
}

.card-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.section {
  padding: 56px 6vw;
}

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

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
  color: var(--navy);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 45, 74, 0.08);
  border: 1px solid rgba(15, 45, 74, 0.06);
}

.info-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pill {
  background: var(--white);
  border: 1px solid rgba(15, 45, 74, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  color: var(--navy);
}

.stat-stack {
  display: grid;
  gap: 16px;
}

.stat {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
}

.doc-list {
  display: grid;
  gap: 16px;
}

.doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(15, 45, 74, 0.08);
}

.doc h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.board-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 45, 74, 0.1);
}

.meeting-note {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(198, 162, 77, 0.1);
  border-radius: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--white);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 45, 74, 0.08);
}

.site-footer {
  padding: 32px 6vw 48px;
  background: var(--navy-dark);
  color: var(--white);
  display: grid;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.muted {
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 48px;
  }

  .doc {
    flex-direction: column;
    align-items: flex-start;
  }
}
