:root {
  --navy-950: #041a39;
  --navy-900: #062552;
  --navy-800: #0a376e;
  --orange: #f36a10;
  --orange-dark: #d95400;
  --cream: #f7f0e4;
  --paper: #fffdf9;
  --ink: #13213a;
  --muted: #5d687a;
  --line: rgba(6, 37, 82, 0.14);
  --shadow: 0 22px 60px rgba(4, 26, 57, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: #fff;
  padding: .7rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(1180px, calc(100% - 2rem));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.brand span { display: grid; line-height: 1.05; }
.brand strong {
  color: var(--navy-900);
  font-size: 1.25rem;
  letter-spacing: .08em;
}
.brand small {
  margin-top: .25rem;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.site-nav a:not(.nav-cta):hover { color: var(--orange-dark); }
.nav-cta {
  color: #fff;
  background: var(--navy-900);
  padding: .68rem 1rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--orange-dark); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 99px;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 85%, rgba(243,106,16,.17), transparent 26rem),
    var(--cream);
}
.hero-banner {
  background: var(--navy-950);
}
.hero-banner img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.4rem) 0;
}
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: .9;
  letter-spacing: -.05em;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: #334155;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button-primary {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 10px 24px rgba(217, 84, 0, .22);
}
.button-primary:hover { background: #b94700; }
.button-secondary {
  color: var(--navy-900);
  background: transparent;
  border: 2px solid var(--navy-900);
}
.button-secondary:hover { color: #fff; background: var(--navy-900); }

.section {
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100% - 1180px) / 2));
}
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading h2,
.split-copy h2,
.join-card h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.section-heading > p:last-child,
.split-copy > p,
.join-card > div > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value-card {
  min-height: 290px;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(6, 37, 82, .06);
}
.value-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-900);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.2rem;
}
.value-card h3 {
  margin: 1.4rem 0 .45rem;
  color: var(--navy-900);
  font-size: 1.5rem;
}
.value-card p { margin: 0; color: var(--muted); }

.section-navy {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(243,106,16,.12), transparent 40%),
    var(--navy-950);
}
.section-navy .eyebrow { color: #ff9a56; }
.section-navy .section-heading h2,
.section-navy .section-heading p { color: #fff; }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
}
.activity-grid article {
  position: relative;
  min-height: 240px;
  padding: 2rem 2rem 2rem 4.3rem;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.activity-grid span {
  position: absolute;
  left: 1rem;
  top: 2rem;
  color: #ff9a56;
  font-weight: 900;
}
.activity-grid h3 { margin: 0 0 .6rem; font-size: 1.45rem; }
.activity-grid p { margin: 0; color: rgba(255,255,255,.72); }

.section-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  background: var(--cream);
}
.check-list {
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-dark);
}
.split-art {
  padding: clamp(1rem, 4vw, 3rem);
}
.split-art img {
  width: min(100%, 520px);
  margin: auto;
  filter: drop-shadow(0 22px 38px rgba(6, 37, 82, .22));
}

.join-section {
  background:
    radial-gradient(circle at 10% 0, rgba(243,106,16,.13), transparent 26rem),
    #fff;
}
.join-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(1.5rem, 5vw, 4.5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.interest-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.interest-form label {
  display: grid;
  gap: .35rem;
  color: var(--navy-900);
  font-weight: 800;
  font-size: .9rem;
}
.interest-form label span { color: var(--muted); font-weight: 400; }
.interest-form input,
.interest-form select {
  width: 100%;
  min-height: 48px;
  padding: .65rem .75rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
}
.interest-form input:focus,
.interest-form select:focus {
  outline: 3px solid rgba(243,106,16,.25);
  border-color: var(--orange-dark);
}
.interest-form .button,
.form-note { grid-column: 1 / -1; }
.form-note { margin: 0; color: var(--muted); font-size: .82rem; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 2.2rem max(1rem, calc((100% - 1180px) / 2));
  color: #fff;
  background: var(--navy-950);
}
.site-footer img { border-radius: 50%; }
.site-footer strong { font-size: 1.05rem; }
.site-footer p { margin: .15rem 0 0; color: rgba(255,255,255,.68); }
.footer-note { text-align: right; }

@media (max-width: 850px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .7rem; }
  .value-grid,
  .section-split,
  .join-card { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-grid article { border-right: 0; }
  .split-art img { max-width: 390px; }
}

@media (max-width: 620px) {
  .brand small { display: none; }
  .hero-banner img { min-height: 205px; object-fit: cover; object-position: center; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero-actions .button { width: 100%; }
  .interest-form { grid-template-columns: 1fr; }
  .interest-form label,
  .interest-form .button,
  .form-note { grid-column: 1; }
  .site-footer {
    grid-template-columns: auto 1fr;
  }
  .footer-note {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}