:root {
  --navy: #061b3e;
  --blue: #0b2d65;
  --red: #b50f19;
  --cream: #f8f1e6;
  --white: #ffffff;
  --ink: #061225;
  --muted: #5d6573;
  --gold: #e3b04b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
}

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

a { color: inherit; }

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(4, 18, 42, .94);
  border-bottom: 2px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 15px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .1em;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 999px;
}

.nav-links a:hover { background: rgba(255,255,255,.12); }

.nav-toggle {
  display: none;
  color: white;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 10px;
  font-size: 24px;
  padding: 6px 12px;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,12,31,.92) 0%, rgba(2,12,31,.65) 40%, rgba(2,12,31,.15) 100%),
    linear-gradient(0deg, rgba(2,12,31,.72), rgba(2,12,31,.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  padding-top: 90px;
  color: white;
}

.page-hero {
  padding: 160px 0 82px;
  background:
    linear-gradient(135deg, rgba(6,27,62,.96), rgba(11,45,101,.9)),
    url("assets/hero-banner.png") center/cover;
  color: white;
}

.join-hero {
  background:
    linear-gradient(135deg, rgba(6,27,62,.96), rgba(181,15,25,.72)),
    url("assets/hero-banner.png") center/cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 14px;
}

.eyebrow.red { color: var(--red); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .025em;
  margin-bottom: 22px;
  text-shadow: 0 5px 20px rgba(0,0,0,.35);
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .025em;
  margin-bottom: 22px;
  color: var(--navy);
}

h3 {
  font-size: 25px;
  text-transform: uppercase;
  color: var(--navy);
}

.hero p,
.page-hero p {
  font-size: 21px;
  line-height: 1.55;
  max-width: 720px;
}

.hero-actions,
.membership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
  border: 2px solid transparent;
}

.btn.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 28px rgba(181,15,25,.3);
}

.btn.secondary {
  background: white;
  color: var(--navy);
}

.btn.light {
  background: white;
  color: var(--navy);
  margin-top: 18px;
}

.intro-card {
  padding: 80px 0;
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.intro-grid p,
.newsletter p,
.contact-card p,
.section-lead,
.form-intro p,
.event-card p {
  font-size: 18px;
  line-height: 1.7;
}

.mission {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(181,15,25,.14), transparent 35%),
    linear-gradient(135deg, #061b3e, #0b2d65);
  color: white;
}

.mission h2,
.panel.dark h2 {
  color: white;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.cards article {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  padding: 28px;
  min-height: 230px;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--red);
  font-size: 28px;
  margin-bottom: 18px;
}

.cards h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
}

.cards p {
  line-height: 1.6;
  color: rgba(255,255,255,.86);
}

.split,
.events-page,
.join-page,
.newsletter,
.contact {
  padding: 90px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.panel,
.event-card,
.form-card,
.contact-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(6, 18, 37, .18);
}

.panel.dark {
  padding: 44px;
  background: var(--navy);
  color: white;
}

.panel.dark p {
  font-size: 18px;
  line-height: 1.65;
}

.panel.photo {
  background: white;
  display: grid;
  place-items: center;
}

.panel.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-card {
  background: white;
  padding: 30px;
}

.event-card.featured {
  grid-column: span 3;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,241,230,.98)),
    url("assets/hero-banner.png") center/cover;
  border: 2px solid rgba(181,15,25,.15);
}

.newsletter {
  background: white;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.newsletter img {
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(6, 18, 37, .18);
}

.form-wrap {
  max-width: 980px;
}

.form-intro {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 780px;
}

.form-card {
  background: white;
  padding: 22px;
}

.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-card {
  background: var(--navy);
  color: white;
  padding: 32px;
}

.contact-card a {
  color: white;
  font-weight: 800;
}

footer {
  background: #031029;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer img {
  width: 90px;
  margin: 0 auto 16px;
}

footer p {
  margin: 8px 0;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav { min-height: 70px; }

  .brand span { font-size: 12px; }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4,18,42,.98);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 12px;
  }

  .nav-links.open { display: flex; }

  .nav-links a { text-align: center; }

  .hero { min-height: 720px; }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(2,12,31,.88), rgba(2,12,31,.32)),
      linear-gradient(90deg, rgba(2,12,31,.85), rgba(2,12,31,.25));
  }

  .hero-content { margin: 0 auto; }

  .intro-grid,
  .split-grid,
  .newsletter-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-card.featured {
    grid-column: span 2;
  }

  .panel.photo img { height: auto; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1160px); }

  h1 { font-size: 43px; }

  h2 { font-size: 34px; }

  .hero { min-height: 680px; }

  .hero-content p,
  .page-hero p {
    font-size: 18px;
  }

  .page-hero {
    padding: 132px 0 58px;
  }

  .cards,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card.featured {
    grid-column: span 1;
  }

  .intro-card,
  .mission,
  .split,
  .events-page,
  .newsletter,
  .join-page,
  .contact {
    padding: 58px 0;
  }

  .panel.dark,
  .event-card,
  .contact-card {
    padding: 28px;
  }

  .form-card {
    padding: 12px;
    border-radius: 18px;
  }

  .hero-actions,
  .membership-actions {
    flex-direction: column;
  }

  .btn { width: 100%; }

  .newsletter img {
    border-radius: 18px;
  }
}

.who-elks { padding: 90px 0; background: white; }
.who-elks .wrap { max-width: 1160px; }
.who-elks h2 { max-width: 900px; }
.who-elks p { font-size: 18px; line-height: 1.7; max-width: 920px; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.impact-grid article { background: var(--cream); border: 1px solid rgba(181,15,25,.18); border-radius: 24px; padding: 26px; box-shadow: 0 14px 34px rgba(6,18,37,.08); }
.impact-grid h3 { margin-bottom: 10px; }
@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .who-elks { padding: 58px 0; } }
