:root {
  --navy: #163b56;
  --navy-deep: #0b2234;
  --blue: #2b6f94;
  --gold: #d6a84f;
  --cream: #f7f2e8;
  --mist: #eef5f7;
  --pine: #1f4c3b;
  --text: #1f2933;
  --muted: #5f6f7a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 34, 52, .16);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }
.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 {
  min-height: 92vh;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 168, 79, .32), transparent 28%),
    linear-gradient(135deg, rgba(11, 34, 52, .96), rgba(22, 59, 86, .92)),
    url("mountains-pattern.svg");
  background-size: auto, auto, cover;
  overflow: hidden;
}
.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: .01em;
}
.brand-mark { width: 58px; height: 58px; }
.brand strong { display: block; font-size: 1.02rem; line-height: 1.1; }
.brand em { display: block; font-size: .84rem; color: rgba(255,255,255,.76); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 650;
  font-size: .94rem;
}
.nav-links a { text-decoration: none; color: rgba(255,255,255,.86); }
.nav-links a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.34);
  background: transparent;
  border-radius: 12px;
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(92vh - 104px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 54px;
  padding: 50px 0 88px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 { font-size: clamp(2.8rem, 6vw, 5.85rem); letter-spacing: -.055em; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.04em; }
h3 { font-size: 1.2rem; }
p { margin: 0; }
.hero-text {
  margin-top: 22px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.82);
  max-width: 720px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
.button:hover { transform: translateY(-1px); }
.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  box-shadow: none;
}
.button-small { min-height: 38px; padding: 7px 14px; color: var(--navy-deep) !important; }
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-emblem { width: min(360px, 100%); margin: 0 auto 22px; }
.hero-card h2 { font-size: 2rem; margin-bottom: 10px; }
.hero-card p { color: rgba(255,255,255,.76); }
.section { padding: 92px 0; }
.section-light { background: var(--mist); }
.section-dark { background: var(--navy-deep); color: var(--white); }
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}
.statement-card, .mission-box, .contact-card, .membership-cards article {
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.statement-card p { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #263746; }
.mission-box { background: var(--cream); }
.mission-box p:not(.eyebrow), .section-heading p, .membership-cards p { color: var(--muted); margin-top: 18px; }
.feature-list { display: grid; gap: 18px; }
.feature-list article {
  padding: 24px;
  border: 1px solid #dfe9ed;
  border-radius: var(--radius);
  background: var(--white);
}
.feature-list .icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}
.feature-list h3, .card h3, .founder-card h3, .membership-cards h3 { margin-bottom: 10px; }
.feature-list p, .card p, .founder-card p { color: var(--muted); }
.scenic {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,242,232,.95)),
    url("mountains-pattern.svg");
  background-size: cover;
}
.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  min-height: 220px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #efe5d2;
  box-shadow: 0 10px 36px rgba(31, 76, 59, .09);
}
.section-heading { max-width: 760px; margin-bottom: 34px; }
.founder-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}
.avatar {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}
.founder-card strong { color: var(--pine); }
.membership-cards { display: grid; gap: 18px; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.contact-card { color: var(--text); }
.contact-card a { color: var(--navy); font-weight: 800; }
.fine-print { font-size: .9rem; color: rgba(95,111,122,.9); margin-top: 14px; }
.section-dark .fine-print { color: rgba(255,255,255,.68); }
.site-footer {
  background: #071724;
  color: rgba(255,255,255,.72);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr auto;
  gap: 24px;
  align-items: center;
}
.footer-logo { width: 74px; margin-bottom: 10px; }
.back-to-top { color: var(--gold); font-weight: 800; text-decoration: none; }
code { background: rgba(22,59,86,.08); padding: 2px 6px; border-radius: 6px; }

@media (max-width: 980px) {
  .hero, .two-column, .contact-wrap { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 26px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 34, 52, .98);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .button-small { justify-content: center; }
  .brand strong { font-size: .92rem; }
  .brand em { font-size: .76rem; }
  .brand-mark { width: 48px; height: 48px; }
  h1 { font-size: clamp(2.45rem, 14vw, 4.2rem); }
  .section { padding: 68px 0; }
  .cards, .founder-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
