@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Source+Serif+4:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #102027;
  --ink-soft: #3d4c57;
  --sand: #f5f7fa;
  --porcelain: #ffffff;
  --sage: #8da1b5;
  --olive: #1b3a57;
  --gold: #f0a531;
  --rose: #f5e1b8;
  --shadow: 0 18px 40px rgba(16, 32, 39, 0.16);
  --border: 1px solid rgba(16, 32, 39, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, rgba(141, 161, 181, 0.22), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(240, 165, 49, 0.18), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #eff3f8 60%, #f9fbfe 100%);
  min-height: 100vh;
}

.page-aura {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(27, 58, 87, 0.2), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(240, 165, 49, 0.2), transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(140deg, #1b3a57, #335c81);
  color: #fffdf8;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.brand-text strong {
  font-family: "Source Serif 4", serif;
  font-size: 1.1rem;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: none;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(141, 161, 181, 0.25);
  color: var(--ink);
}

.cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(240, 165, 49, 0.5);
  background: var(--gold);
  color: #251510;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
}

main {
  padding: 0 6vw 80px;
}

section {
  padding: 70px 0;
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
  padding: clamp(36px, 4vw, 64px);
  border-radius: 0;
  background-image: radial-gradient(120% 120% at 0% 100%, rgba(141, 161, 181, 0.2), transparent 55%),
    linear-gradient(135deg, rgba(10, 28, 40, 0.96), rgba(27, 58, 87, 0.94));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f5f7fb;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  z-index: 0;
}

.hero::before {
  background-image: url("hero-photo.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) saturate(0.35) brightness(0.78) contrast(1.05);
  opacity: 0.5;
}

.hero::after {
  background: linear-gradient(135deg, rgba(10, 28, 40, 0.6), rgba(27, 58, 87, 0.4));
}

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

.hero-content {
  max-width: 540px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 28px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 165, 49, 0.35), transparent 65%);
  filter: blur(1px);
  animation: drift 12s ease-in-out infinite;
  z-index: 0;
}

.hero-visual::before {
  top: -30px;
  right: 20%;
}

.hero-visual::after {
  bottom: 10px;
  left: 10%;
  animation-delay: -6s;
}

.image-frame {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(141, 161, 181, 0.2));
  border: 1px solid rgba(240, 165, 49, 0.35);
  box-shadow: var(--shadow);
  z-index: 1;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.image-frame .hero-photo-overlay {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: screen;
  filter: saturate(0.9) contrast(1.05);
  z-index: 1;
  border-radius: 20px;
}

.hero-content h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  margin: 14px 0 18px;
  letter-spacing: -0.5px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--rose);
  margin: 0;
}

.hero-content p {
  line-height: 1.7;
  color: rgba(245, 247, 251, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--gold);
  color: #251510;
  box-shadow: 0 12px 20px rgba(16, 32, 39, 0.2);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(15, 45, 40, 0.4);
  color: var(--ink);
}

.hero .btn.ghost {
  border: 1px solid rgba(240, 165, 49, 0.6);
  color: #f5f7fb;
}

.hero-highlights {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 30px;
}

.hero-highlights strong {
  display: block;
  font-size: 1.2rem;
}

.hero-highlights .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(245, 247, 251, 0.7);
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(240, 165, 49, 0.22);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon-badge svg {
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  margin-top: 420px;
}

.card-title {
  font-family: "Source Serif 4", serif;
  font-size: 1.4rem;
  margin-top: 0;
}

.section-head h2 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 10px 0 14px;
}

.section-head p {
  max-width: 720px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.stat-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.stat-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-note {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.callout {
  background: linear-gradient(130deg, rgba(141, 161, 181, 0.16), rgba(240, 165, 49, 0.12));
  border-radius: 26px;
  padding: 32px;
  border: var(--border);
  box-shadow: var(--shadow);
}

.callout h2 {
  font-family: "Source Serif 4", serif;
  margin-top: 0;
  font-size: 2.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card h3 {
  margin-top: 0;
  font-family: "Source Serif 4", serif;
  font-size: 1.4rem;
}

.tabs {
  margin-top: 28px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tab {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(141, 161, 181, 0.18);
  border: 1px solid rgba(141, 161, 181, 0.35);
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  background: var(--gold);
  color: #251510;
}

.tab-panels {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 28px;
  border: var(--border);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.tab-panel.active {
  display: block;
}

.subtle {
  font-size: 0.9rem;
  color: var(--sage);
}

.pill-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.pill-group h4 {
  margin-bottom: 10px;
  font-family: "Source Serif 4", serif;
  font-size: 1.2rem;
}

.pill-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.pill-group li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240, 165, 49, 0.18);
  display: inline-flex;
  width: fit-content;
  transition: transform 0.3s ease;
}

.bold-statement {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.partner-list {
  padding-left: 18px;
  line-height: 1.7;
}

.membership .lead {
  font-weight: 600;
  margin-top: -6px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 30px 0 36px;
}

.pillar {
  padding: 18px;
  border-radius: 18px;
  background: rgba(141, 161, 181, 0.2);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.membership-story h3 {
  font-family: "Source Serif 4", serif;
  font-size: 1.6rem;
}

.benefit-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(141, 161, 181, 0.12);
  transition: transform 0.3s ease;
}

.membership-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 36px 0;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-grid span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(141, 161, 181, 0.12);
  font-size: 0.9rem;
}

.pathway ol {
  padding-left: 18px;
  line-height: 1.8;
}

.membership-detail-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 30px;
}

.membership-detail-grid > div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-detail-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(16, 32, 39, 0.16);
}

.membership-detail-grid h3 {
  font-family: "Source Serif 4", serif;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.event-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-form,
.subscribe-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 32, 39, 0.2);
  font-family: inherit;
}

.subscribe {
  padding: 24px;
  border-radius: 22px;
  background: rgba(240, 165, 49, 0.16);
}

.subscribe h3 {
  font-family: "Source Serif 4", serif;
  font-size: 1.6rem;
  margin-top: 0;
}

.site-footer {
  padding: 50px 6vw 30px;
  background: #0f2534;
  color: #f5f7fb;
}

.footer-slogan {
  font-family: "Source Serif 4", serif;
  font-size: 1.6rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.footer-columns h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  font-size: 0.9rem;
  color: rgba(245, 247, 251, 0.75);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

body.loaded .reveal {
  animation: rise 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

.stat-card:hover,
.feature-card:hover,
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(16, 32, 39, 0.16);
}

.pill-group li:hover,
.benefit-grid div:hover {
  transform: translateY(-4px);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(14px) translateX(-10px);
  }
}

@media (max-width: 960px) {
  .site-nav,
  .cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16, 32, 39, 0.1);
  }

  body.nav-open .site-nav {
    position: absolute;
    top: 72px;
    right: 6vw;
    display: grid;
    background: var(--porcelain);
    padding: 16px;
    border-radius: 14px;
    border: var(--border);
    gap: 12px;
    z-index: 20;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding: 40px 24px;
  }

  .hero-highlights {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
