:root {
  --ink: #091110;
  --ink-soft: #112722;
  --green: #0e544b;
  --green-soft: #114639;
  --gold: #eddc74;
  --gold-deep: #ceae58;
  --gold-soft: #eadd93;
  --paper: #f5f2e7;
  --surface: #ffffff;
  --line: rgba(9, 17, 16, 0.12);
  --muted: #61706c;
  --shell: 1180px;
  --shadow: 0 24px 72px rgba(9, 17, 16, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 36px), var(--shell));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading--left {
  text-align: left;
}

.section--centered .section-heading,
.benefits-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.88);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(48px, 7vw, 84px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

p {
  margin: 0;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.topbar__inner,
.nav-wrap__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__inner {
  min-height: 42px;
}

.topbar a {
  color: var(--gold-soft);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 17, 16, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap__inner {
  min-height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__custom img {
  width: 74px;
  height: auto;
}

.brand__icon {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 78px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.brand__text {
  min-width: 0;
}

.brand__text strong,
.brand__text small {
  display: block;
}

.brand__text strong {
  color: var(--surface);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.brand__text small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  color: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-wrap.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-wrap.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-wrap.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a,
.footer-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
}

.menu a {
  color: rgba(255, 255, 255, 0.84);
}

.menu a:hover,
.menu .current-menu-item > a {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
}

.button--primary {
  background: var(--green);
  color: var(--surface);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green-soft);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--surface);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.hero,
.community-band,
.closing-cta,
.inner-hero {
  position: relative;
  overflow: clip;
}

.hero__media,
.community-band__media,
.closing-cta__media,
.inner-hero__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero__grid,
.closing-cta__inner,
.inner-hero__content {
  position: relative;
  z-index: 1;
}

.hero__grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
  align-items: center;
  gap: 40px;
}

.hero__copy {
  max-width: 720px;
  color: var(--surface);
  padding: 110px 0 88px;
}

.hero__copy p:not(.section-tag) {
  margin-top: 24px;
  max-width: 620px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__meta span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.hero__badge-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero__badge-card img {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

.hero__badge-card > div {
  margin-top: 18px;
}

.hero__badge-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__badge-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.about {
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: end;
  gap: 20px;
}

.image-stack figure {
  margin: 0;
}

.image-stack__main img,
.image-stack__secondary img,
.pathway-card img,
.benefit-card--image img,
.post-card__media img,
.article-card__media img,
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack__main {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-stack__secondary {
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-copy h2,
.section-heading h2,
.closing-cta__copy h2,
.inner-hero h1 {
  margin-bottom: 18px;
}

.section-copy p + p {
  margin-top: 16px;
}

.feature-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.feature-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-deep);
}

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

.event-card,
.pathway-card,
.benefit-card,
.article-card,
.post-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.event-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-card__body,
.pathway-card__body,
.benefit-card,
.article-card__body,
.post-card {
  padding: 22px;
}

.event-card__meta,
.article-card__meta,
.inner-hero__meta,
.post-card__meta {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h3,
.pathway-card h3,
.benefit-card h3,
.article-card h3,
.post-card h2 {
  margin: 10px 0 12px;
  font-size: 28px;
}

.event-card p:last-of-type,
.pathway-card p,
.benefit-card p,
.article-card p:last-of-type,
.post-card__excerpt {
  color: var(--muted);
}

.event-card .button {
  margin-top: 18px;
}

.community-band {
  color: var(--surface);
}

.community-band__inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.community-band__copy {
  max-width: 620px;
  padding: 72px 0;
}

.community-band__copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.community-band__copy .button {
  margin-top: 28px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pathway-card img {
  aspect-ratio: 4 / 5;
}

.benefits-section {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.benefit-card {
  min-height: 220px;
}

.benefit-card--image {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.benefit-card--image img {
  min-height: 100%;
}

.benefit-card__overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(9, 17, 16, 0.74);
  color: var(--surface);
  font-weight: 700;
}

.article-grid,
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.article-card__media,
.post-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(237, 220, 116, 0.34), rgba(14, 84, 75, 0.34));
}

.article-card__media--placeholder {
  background: linear-gradient(135deg, rgba(237, 220, 116, 0.28), rgba(17, 70, 57, 0.22));
}

.article-card h3 a,
.post-card h2 a {
  color: inherit;
}

.closing-cta {
  color: var(--surface);
}

.closing-cta__inner {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.closing-cta__copy {
  max-width: 760px;
  padding: 96px 0;
}

.closing-cta__copy p:not(.section-tag) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.inner-hero {
  color: var(--surface);
}

.inner-hero__content {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 54px;
}

.content-section {
  padding-top: 72px;
}

.content-shell {
  max-width: 820px;
}

.content-shell > * + * {
  margin-top: 20px;
}

.content-shell img {
  border-radius: 8px;
}

.content-shell ul,
.content-shell ol {
  padding-left: 20px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding: 64px 0 32px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--surface);
  font-size: 24px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand__icon {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 144px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-menu a {
  min-height: 38px;
  padding: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom .site-shell {
  padding: 18px 0 28px;
}

@media (max-width: 1080px) {
  .hero__grid,
  .about__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__badge-card {
    max-width: 440px;
    margin: 0 auto;
  }

  .event-grid,
  .pathway-grid,
  .benefit-grid,
  .article-grid,
  .posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card--image {
    min-height: 260px;
  }
}

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

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(9, 17, 16, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-wrap.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .menu a {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 12px;
  }

  .hero__grid {
    min-height: 0;
    padding: 76px 0 56px;
  }

  .hero__copy {
    padding: 0;
  }

  .community-band__inner,
  .closing-cta__inner {
    min-height: 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack__secondary {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .event-grid,
  .pathway-grid,
  .benefit-grid,
  .article-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .brand__icon {
    max-height: 64px;
    height: auto;
  }

  .hero__meta {
    gap: 8px;
  }

  .hero__meta span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
