:root {
  --navy: #10202f;
  --navy-light: #1c3348;
  --charcoal: #232a30;
  --cream: #f6f3ec;
  --gold: #b98a3b;
  --gold-light: #d9ab5c;
  --text-muted: #5c6570;
  --border: #e3ded2;
  --max-width: 1120px;
  --radius: 6px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.5;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 32, 47, 0.96);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.main-nav {
  display: none;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: #d7dde3;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--gold-light); }

.header-call { display: none; }

.nav-toggle {
  background: none;
  border: none;
  width: 32px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

@media (min-width: 800px) {
  .main-nav { display: flex; }
  .header-call { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Icons */
.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(185, 138, 59, 0.12);
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.icon-badge .icon { width: 20px; height: 20px; }

.icon-badge-lg {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.icon-badge-lg .icon { width: 26px; height: 26px; }

.raise .icon-badge, .ask .icon-badge {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
}

.heading-icon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.heading-icon-row h2 { margin: 0; }

.heading-icon-row .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}

.btn .icon { width: 1rem; height: 1rem; }

.btn-primary, .btn-call {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover, .btn-call:hover { background: var(--gold-light); }

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

.btn-secondary:hover { border-color: #fff; }

.section .btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
}

.section .btn-secondary:hover { background: var(--navy); color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,32,47,0.35) 0%, rgba(16,32,47,0.55) 55%, rgba(16,32,47,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-subhead {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: #dfe3e8;
  margin: 0 0 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: #efe9db; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.kicker-invert { color: var(--gold-light); }

.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0 0 1.5rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: -0.75rem 0 2rem;
  max-width: 620px;
}

.hero-stat {
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
  line-height: 1;
}

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.stat-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16,32,47,0.1);
}

.section-alt .stat-tile { background: var(--cream); }

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.stat-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Split layout */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split { grid-template-columns: 1fr 1fr; }
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.detail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.detail-list li .icon {
  color: var(--gold);
  width: 1.05rem;
  height: 1.05rem;
}

.detail-list li span {
  font-weight: 600;
  color: var(--navy);
  min-width: 6.5rem;
}

.detail-list-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.detail-list-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: none;
  padding: 0;
  min-width: 0;
  color: var(--text-muted);
  font-weight: 500;
}

.detail-list-inline .icon {
  color: var(--gold-light);
  width: 1rem;
  height: 1rem;
}

.split-media img {
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16,32,47,0.14);
}

/* Image pair */
.image-pair {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .image-pair { grid-template-columns: 1fr 1fr; }
}

.image-pair figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.image-pair figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .timeline { grid-template-columns: repeat(3, 1fr); }
}

.timeline-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16,32,47,0.1);
}

.timeline-phase {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.timeline-title { margin: 0 0 0.5rem; font-weight: 600; color: var(--navy); }

.timeline-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* Raise / Ask (dark bands) */
.raise, .ask {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.raise h2, .ask h2 { color: #fff; }
.raise .section-lede, .ask .section-lede { color: #c6ccd4; margin-left: auto; margin-right: auto; }
.raise .kicker, .ask .kicker { text-align: center; }

.ask-figure {
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.ask .hero-ctas { justify-content: center; margin-top: 1.5rem; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

.gallery img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #aab2bc;
  padding: 3rem 0 2.5rem;
}

.footer-brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.footer-disclaimer {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 0 1.25rem;
}

.footer-contact {
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact .icon { width: 0.95rem; height: 0.95rem; color: var(--gold-light); }

/* Mobile nav */
body.nav-open .main-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
}

body.nav-open .header-call {
  display: inline-flex;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
