:root {
  --red:       #BF0A30;
  --red-dark:  #9a0826;
  --blue:      #002868;
  --blue-dark: #001a3d;
  --white:     #ffffff;
  --gray-light:#f4f5f7;
  --text:      #1d2633;
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--blue);
}

.content-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navigation ─────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-nav-secondary {
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.btn-nav-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-name-sub {
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-office {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-donate-nav {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-donate-nav:hover { background: var(--red-dark); color: var(--white); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(84vh, 740px);
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 50%, #1a3a6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-image {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 26, 61, 0.35);
  border: 4px solid var(--white);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Subtle star-field / texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Bottom red stripe accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.hero-name {
  font-size: clamp(1.6rem, 4.6vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

.hero-affiliation {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.hero-tagline {
  grid-column: 1 / -1;
  text-align: center;
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.88);
  margin: 1.25rem 0 0;
}

.content-section {
  padding: 4rem 0;
}

.feature-image-section {
  background: var(--white);
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.feature-image-card {
  margin: 0 auto;
  max-width: 940px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 26, 61, 0.2);
  border: 4px solid var(--white);
}

.feature-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.content-section h2 {
  color: var(--blue);
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

.content-section h3 {
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.biography {
  background: #ffffff;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.bio-card {
  background: var(--gray-light);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 1.25rem;
}

.bio-card.with-image {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 0.95rem 1rem;
  align-items: start;
}

.bio-card.with-image h3 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.bio-card.with-image .bio-photo {
  margin-bottom: 0;
}

.bio-card.with-image p {
  margin: 0;
}

.bio-photo,
.promise-photo {
  margin: 0;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 26, 61, 0.13);
  background: #dfe6f3;
  aspect-ratio: 4 / 3;
}

.bio-photo img,
.promise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.traditional-values-photo img {
  object-position: center 25%;
}

.banner-section {
  background: var(--red);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.letter-section {
  background: #f8f9fc;
}

.letter-card {
  background: var(--white);
  border: 1px solid #dfe5ef;
  border-top: 4px solid var(--blue);
  border-radius: 6px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: 0 12px 30px rgba(0, 26, 61, 0.06);
}

.letter-card p {
  margin-bottom: 1rem;
  font-size: 1.04rem;
}

.btn-donate-inline {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 5px;
  padding: 0.6rem 1rem;
}
.btn-donate-inline:hover {
  background: var(--red-dark);
  color: var(--white);
}

.letter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.letter-photo {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 26, 61, 0.12);
  border: 1px solid #dfe5ef;
}

.letter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.letter-signoff {
  margin-top: 1.1rem;
  margin-bottom: 0;
  font-weight: 700;
}

.letter-signoff-sub {
  margin-top: -0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
}

.promises-section {
  background: var(--white);
}

.donate-section {
  background: #f8f9fc;
  border-top: 1px solid #e4e9f2;
  border-bottom: 1px solid #e4e9f2;
}

.donate-inner {
  text-align: center;
  max-width: 760px;
}

.donate-inner p {
  margin-bottom: 1rem;
}

.promise-group {
  background: var(--gray-light);
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.promise-group.with-image {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 0.95rem 1rem;
  align-items: start;
}

.promise-group.with-image h3 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.promise-group.with-image .promise-photo {
  margin-bottom: 0;
}

.promise-group.with-image ol {
  margin: 0;
}

.promise-group:last-child {
  margin-bottom: 0;
}

.promise-group ol {
  padding-left: 1.25rem;
}

.promise-group li {
  margin-bottom: 0.85rem;
}

.promise-group li:last-child {
  margin-bottom: 0;
}

.contact-section {
  background: #f8f9fc;
  border-top: 1px solid #e4e9f2;
}

.contact-inner {
  text-align: center;
}

.contact-inner p {
  margin-bottom: 0.35rem;
}

.disclaimer-section {
  background: #eff3f9;
  border-top: 1px solid #d7dfeb;
  padding: 1.6rem 0;
}

.disclaimer-section p {
  font-size: 0.92rem;
  color: #364357;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.86);
  font-size: 0.92rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 1.25rem 0;
  border-top: 4px solid var(--red);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-image {
    max-width: 560px;
    margin: 0 auto;
  }

  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-card.with-image {
    grid-template-columns: 1fr;
  }

  .bio-card.with-image h3 {
    margin-bottom: 0.4rem;
  }

  .bio-card.with-image .bio-photo {
    margin-bottom: 0.2rem;
  }

  .letter-layout {
    grid-template-columns: 1fr;
  }

  .letter-photo {
    max-width: 560px;
  }

  .promise-group.with-image {
    grid-template-columns: 1fr;
  }

  .promise-group.with-image h3 {
    margin-bottom: 0.4rem;
  }

  .promise-group.with-image .promise-photo {
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 640px) {
  .site-nav {
    height: auto;
    padding: 0.9rem 1rem;
  }

  .nav-inner {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 70vh;
    padding: 3rem 1rem;
  }

  .hero-label {
    letter-spacing: 0.08em;
  }

  .banner-section {
    font-size: 0.84rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .feature-image-section {
    margin-top: -1.25rem;
  }

  .feature-image-card {
    border-width: 3px;
    border-radius: 8px;
  }
}
