:root {
  --blue: #87CEEB;
  --blue-dark: #287FA6;
  --ink: #111111;
  --paper: #F8F9FB;
  --white: #FFFFFF;
  --muted: #5F6670;
  --line: #D8DDE5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 4vw;
  background: rgba(248, 249, 251, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--blue);
  color: white;
  font-size: .82rem;
  letter-spacing: .08em;
}

.brand-text { font-size: .95rem; }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
}
.site-nav a:hover { color: var(--blue); }
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9vw 8vw 7vw;
  border-bottom: 1px solid var(--line);
}

.eyebrow, .section-number {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
}

.hero h1,
.section h2,
.closing-large,
.big-statement {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 1100px;
  margin: 0 0 3rem;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: .98;
}
.hero h1 em { color: var(--blue); }
.hero-copy {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: #252A31;
}
.hero-copy p { margin: 0 0 1.1rem; }
.text-link {
  margin-top: 2rem;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
  color: var(--blue);
}

.statement-band {
  background: var(--blue);
  color: white;
  padding: 2.2rem 5vw;
  text-align: center;
  font-weight: 700;
  letter-spacing: .02em;
}
.statement-band p { margin: 0; }

.section { padding: 8vw; }
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 8vw;
  align-items: start;
}
.section h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 1.02;
}
.body-copy {
  max-width: 700px;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}
.body-copy p { margin-top: 0; margin-bottom: 1.2rem; }
.big-statement {
  margin-top: 8vw;
  padding-top: 4vw;
  border-top: 1px solid var(--line);
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 1;
  color: var(--blue);
}

.section-christ {
  background: var(--ink);
  color: var(--white);
}
.light { color: #8EB7EB; }
.light-copy { color: #E7EAF0; }
blockquote {
  margin: 8vw 0 0;
  padding: 4vw 0 0;
  border-top: 1px solid #3B3F45;
  max-width: 1050px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
  line-height: 1.15;
}
blockquote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #AAB1BA;
}

.socials {
  margin-top: 6vw;
  border-top: 1px solid var(--line);
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}
.socials a:hover { color: var(--blue); }
.socials span { font-size: .9em; }

.closing {
  background: var(--blue);
  color: white;
  padding: 9vw 8vw;
}
.closing-small {
  margin: 0 0 1rem;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.closing-large {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: .98;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  padding: 2rem 4vw;
  background: #090909;
  color: #B8BDC4;
  font-size: .8rem;
}

@media (max-width: 800px) {
  .site-header { align-items: flex-start; }
  .brand-text { max-width: 170px; line-height: 1.2; }
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 4vw 1.4rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }
  .site-nav.open { display: flex; }
  .hero { padding: 8rem 6vw 5rem; min-height: auto; }
  .section { padding: 5rem 6vw; }
  .section-grid { grid-template-columns: 1fr; gap: 2rem; }
  .big-statement { margin-top: 4rem; padding-top: 2rem; }
  blockquote { margin-top: 4rem; padding-top: 2rem; }
  .socials { margin-top: 4rem; }
  .closing { padding: 5rem 6vw; }
  footer { grid-template-columns: 1fr; gap: .6rem; }
}

/* Meet the Leaders */
.leaders-hero {
  padding: 8vw;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leaders-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: 7vw;
  align-items: center;
}
.leaders-photo-wrap {
  background: var(--blue);
  padding: clamp(.7rem, 1.2vw, 1.1rem);
}
.leaders-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: cover;
  object-position: center;
}
.leaders-copy h1 {
  margin: 0 0 2rem;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}
.leaders-copy p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: #252A31;
}
.leaders-copy .text-link {
  display: inline-block;
}
.leaders-closing {
  background: var(--blue);
  color: var(--ink);
  padding: 7vw 8vw;
}
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

@media (max-width: 800px) {
  .leaders-hero { padding: 7rem 6vw 5rem; min-height: auto; }
  .leaders-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .leaders-photo { max-height: none; }
  .leaders-closing { padding: 5rem 6vw; }
}
