:root {
  --black: #0c0711;
  --purple-950: #170a24;
  --purple-900: #241034;
  --purple-800: #351950;
  --wine: #741b16;
  --gold: #d8a13a;
  --gold-soft: #f4d999;
  --cream: #fff8ec;
  --paper: #f4ead9;
  --ink: #211526;
  --muted: #736779;
  --muted-light: rgba(255, 248, 236, 0.72);
  --line-dark: rgba(244, 217, 153, 0.18);
  --line-light: rgba(46, 28, 56, 0.12);
  --shadow: 0 28px 70px rgba(12, 7, 17, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: "Noto Sans SC", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 161, 58, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(75, 32, 113, 0.45), transparent 36%),
    linear-gradient(180deg, var(--black), #180d1d 52%, #0e0712);
}

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

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

.nowrap {
  white-space: nowrap;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--cream);
  background: rgba(12, 7, 17, 0.78);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(244, 217, 153, 0.28);
  border-radius: 6px;
}

.site-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.site-nav a,
.nav-cta {
  min-height: 38px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a.active {
  color: #1b0b18;
  background: var(--gold-soft);
}

.nav-cta {
  color: #1b0b18;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.section {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 72px);
}

.section-dark {
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(36, 16, 52, 0.94), rgba(12, 7, 17, 0.9)),
    radial-gradient(circle at 80% 18%, rgba(216, 161, 58, 0.16), transparent 32%);
  border-bottom: 1px solid var(--line-dark);
}

.light-section,
.entry-section,
.levels-section,
.reward-section,
.directory-section {
  background:
    linear-gradient(90deg, rgba(53, 25, 80, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(53, 25, 80, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream), var(--paper));
  background-size: 42px 42px, 42px 42px, auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(46px, 5vw, 68px) clamp(20px, 6vw, 72px);
}

.hero-copy,
.ambassador-copy {
  max-width: 680px;
  min-width: 0;
}

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1,
.section-heading h2,
.ambassador-copy h2,
.final-cta h2 {
  font-family: "Noto Serif SC", serif;
}

.hero h1 {
  margin-bottom: 14px;
  color: #fff7e7;
  font-size: clamp(50px, 5.6vw, 72px);
  line-height: 1.08;
}

.hero h2 {
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.28;
}

.hero p,
.ambassador-copy p,
.section-dark .section-note,
.section-dark .section-heading > p {
  color: var(--muted-light);
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero .cta-row,
.ambassador-copy .cta-row {
  margin-top: 34px;
}

.button,
.card-button,
.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.button {
  padding: 14px 22px;
}

.button.primary {
  color: #170a14;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 42px rgba(216, 161, 58, 0.24);
}

.button.secondary {
  color: var(--cream);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary.dark,
.button.ghost {
  color: var(--ink);
  border-color: var(--line-light);
}

.button.tertiary {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(244, 217, 153, 0.5);
  border-radius: 0;
}

.button.ghost {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.48);
}

.hero-visual {
  position: relative;
  min-height: 530px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero,
.students-hero {
  min-height: 590px;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 12%, rgba(216, 161, 58, 0.18), transparent 30%),
    linear-gradient(135deg, var(--purple-950), var(--black));
}

.page-hero h1,
.students-hero h1,
.ambassador-copy h1 {
  margin-bottom: 16px;
  color: var(--cream);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.14;
}

.page-hero h2,
.students-hero h2,
.ambassador-copy h2 {
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
}

.page-hero p,
.students-hero p {
  color: var(--muted-light);
}

.page-hero > img {
  width: 100%;
  min-height: 390px;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.students-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 161, 58, 0.18), transparent 30%),
    linear-gradient(135deg, #12091a, var(--purple-900));
}

.students-hero .button {
  margin-top: 14px;
}

.student-note {
  min-height: 420px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 7, 17, 0.05), rgba(12, 7, 17, 0.52)),
    linear-gradient(90deg, rgba(12, 7, 17, 0.34), transparent 54%);
}

.visual-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  width: min(330px, calc(100% - 48px));
  padding: 20px;
  color: var(--cream);
  background: rgba(12, 7, 17, 0.72);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.visual-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.visual-card strong {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.section-heading h2,
.ambassador-copy h2,
.final-cta h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.16;
}

.section-dark .section-heading h2,
.ambassador-copy h2 {
  color: var(--cream);
}

.section-heading > p:not(.eyebrow) {
  font-size: 19px;
}

.belief-layout,
.split-section,
.directory-card,
.ambassador-hero,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.belief-text {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.belief-text p {
  margin-bottom: 20px;
  color: #3b2d42;
  font-size: 18px;
}

.belief-text p:last-child {
  margin-bottom: 0;
}

.principle-grid,
.entry-grid,
.event-grid,
.level-grid,
.reward-grid {
  display: grid;
  gap: 18px;
}

.principle-grid,
.entry-grid,
.reward-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.feature-card,
.level-card,
.reward-card {
  position: relative;
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(36, 16, 52, 0.08);
}

.mini-card span,
.icon-badge,
.level-icon,
.reward-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #1b0b18;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 50%;
  font-weight: 900;
}

.mini-card h3,
.feature-card h3,
.level-card h3,
.reward-card h3,
.event-card h3,
.directory-card h3,
.ambassador-copy h3 {
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
  line-height: 1.3;
}

.mini-card h3,
.feature-card h3 {
  margin: 20px 0 10px;
  font-size: 27px;
}

.entry-section {
  padding-top: 86px;
}

.ecosystem-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 8%, rgba(216, 161, 58, 0.15), transparent 28%),
    linear-gradient(180deg, #160b20, var(--black));
}

.ecosystem-section .section-heading h2,
.ecosystem-card h3 {
  color: var(--cream);
}

.ecosystem-section .section-heading > p:not(.eyebrow),
.ecosystem-card p {
  color: var(--muted-light);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ecosystem-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.ecosystem-card > span {
  color: var(--gold);
  font-family: "Noto Serif SC", serif;
  font-size: 34px;
  font-weight: 900;
}

.ecosystem-card h3 {
  margin: 24px 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: 25px;
}

.ecosystem-card p {
  flex: 1;
}

.ecosystem-card .text-link {
  color: var(--gold-soft);
  background: rgba(216, 161, 58, 0.12);
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card p {
  flex: 1;
}

.text-link {
  align-self: flex-start;
  margin-top: 12px;
  padding: 0 18px;
  color: var(--wine);
  background: rgba(116, 27, 22, 0.08);
}

.events-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 161, 58, 0.16), transparent 28%),
    linear-gradient(180deg, #170a24, #0c0711);
}

.filter-row {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-row button {
  min-height: 40px;
  padding: 10px 16px;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.filter-row button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.filter-row button.active,
.filter-row button[aria-selected="true"] {
  color: #1b0b18;
  background: var(--gold-soft);
}

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

.event-card {
  overflow: hidden;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.event-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.event-card > div {
  padding: 22px;
}

.tag,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.tag {
  color: var(--gold-soft);
  background: rgba(216, 161, 58, 0.12);
}

.event-card h3 {
  min-height: 68px;
  margin: 16px 0 12px;
  color: var(--cream);
  font-size: 24px;
}

dl {
  margin: 0 0 14px;
  display: grid;
  gap: 7px;
}

dl div {
  display: flex;
  gap: 12px;
}

dt {
  color: rgba(255, 248, 236, 0.48);
  font-weight: 700;
}

dd {
  margin: 0;
  color: rgba(255, 248, 236, 0.82);
}

.status {
  color: #1b0b18;
  background: var(--gold-soft);
}

.card-button {
  width: 100%;
  margin-top: 18px;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.07);
}

.directory-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.directory-card {
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 92% 14%, rgba(216, 161, 58, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.directory-card h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 34px);
}

.directory-card .button {
  margin-top: 12px;
}

.directory-visual {
  position: relative;
  min-height: 300px;
  padding: 72px 34px 34px;
  background:
    linear-gradient(90deg, rgba(53, 25, 80, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(53, 25, 80, 0.08) 1px, transparent 1px),
    #fffdf8;
  background-size: 54px 54px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.sheet-top {
  position: absolute;
  inset: 0 0 auto;
  height: 46px;
  background: linear-gradient(135deg, var(--purple-900), var(--wine));
}

.directory-visual span {
  height: 38px;
  margin-bottom: 16px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 25, 80, 0.15), rgba(216, 161, 58, 0.12));
}

.directory-visual span:nth-child(4) {
  width: 82%;
}

.directory-visual span:nth-child(5) {
  width: 66%;
}

.directory-visual strong {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: rgba(53, 25, 80, 0.18);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
}

.ambassador-hero {
  padding-top: clamp(76px, 8vw, 120px);
  background:
    radial-gradient(circle at 84% 16%, rgba(216, 161, 58, 0.2), transparent 30%),
    linear-gradient(135deg, #0c0711 0%, var(--purple-950) 54%, #25102f 100%);
}

.ambassador-copy h3 {
  margin: 0 0 24px;
  color: var(--gold-soft);
  font-size: clamp(25px, 3.5vw, 43px);
}

.ambassador-hero .ambassador-copy h2 {
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
}

.ambassador-image {
  justify-self: center;
  width: min(420px, 100%);
  padding: clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 161, 58, 0.26), transparent 58%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ambassador-image img {
  border-radius: 6px;
}

.copy-block {
  padding: clamp(24px, 4vw, 42px);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.58);
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.levels-section {
  background:
    linear-gradient(180deg, #f8efdf, var(--cream));
}

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

.level-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.level-card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 49px;
  height: 1px;
  background: rgba(216, 161, 58, 0.28);
}

.level-card strong {
  margin: 28px 0 4px;
  color: var(--wine);
  font-family: "Noto Serif SC", serif;
  font-size: 42px;
  line-height: 1;
}

.level-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.reward-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 161, 58, 0.14), transparent 26%),
    linear-gradient(180deg, var(--cream), #efe1ce);
}

.reward-card {
  min-height: 230px;
}

.reward-card p {
  margin: 24px 0 8px;
  color: var(--wine);
  font-weight: 900;
}

.reward-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  border-top: 1px dashed rgba(116, 27, 22, 0.28);
}

.steps article {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.steps span {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: linear-gradient(135deg, var(--wine), var(--purple-900));
  border: 5px solid var(--cream);
  border-radius: 50%;
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.final-cta {
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 161, 58, 0.2), transparent 30%),
    linear-gradient(135deg, var(--cream), #ead8c1);
}

.final-cta .cta-row {
  justify-content: flex-end;
}

.site-footer {
  padding: 42px clamp(20px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  color: var(--cream);
  background: #0c0711;
  border-top: 1px solid var(--line-dark);
}

.site-footer img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted-light);
}

.site-footer nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer a {
  color: rgba(255, 248, 236, 0.78);
  font-weight: 700;
}

.featured-event {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.featured-event > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.featured-event > div {
  padding: clamp(28px, 4vw, 46px);
}

.featured-event h3 {
  margin: 18px 0 12px;
  color: var(--cream);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
}

.featured-event p {
  color: var(--muted-light);
}

.featured-event dl {
  margin: 24px 0 18px;
}

.upcoming-section {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.event-card.light-card {
  color: var(--ink);
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(36, 16, 52, 0.1);
}

.event-card.light-card h3,
.event-card.light-card dd {
  color: var(--ink);
}

.event-card.light-card dt {
  color: var(--muted);
}

.event-card.light-card .tag {
  color: var(--wine);
  background: rgba(116, 27, 22, 0.08);
}

.event-card.light-card .card-button {
  color: var(--cream);
  background: linear-gradient(135deg, var(--wine), var(--purple-900));
}

.students-showcase {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

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

.student-card {
  min-height: 390px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(36, 16, 52, 0.08);
}

.student-card > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.student-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  background: linear-gradient(135deg, var(--purple-900), var(--wine));
  border-radius: 50%;
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 900;
}

.student-photo {
  object-fit: cover;
  border: 2px solid rgba(216, 161, 58, 0.42);
}

.student-industry {
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.student-card h3 {
  margin-bottom: 10px;
  font-family: "Noto Serif SC", serif;
  font-size: 27px;
}

.student-positioning {
  min-height: 60px;
  color: var(--ink);
  font-weight: 700;
}

.student-card dl {
  flex: 1;
  margin-top: 16px;
}

.student-card dt {
  color: var(--muted);
}

.student-card dd {
  color: var(--ink);
}

.student-card .card-button {
  color: var(--cream);
  background: linear-gradient(135deg, var(--wine), var(--purple-900));
}

.directory-cta {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.directory-cta p {
  margin: 0;
}

.referral-fit-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  background: linear-gradient(180deg, #f3e7d4, var(--cream));
}

.fit-column {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.fit-column .section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list article {
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line-light);
}

.fit-list span {
  color: var(--wine);
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
}

.fit-list p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.rule-note {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 18px 22px;
  color: var(--ink);
  background: rgba(216, 161, 58, 0.13);
  border-left: 3px solid var(--gold);
  text-align: center;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .page-hero,
  .students-hero,
  .belief-layout,
  .split-section,
  .directory-card,
  .ambassador-hero,
  .featured-event,
  .referral-fit-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .principle-grid,
  .entry-grid,
  .event-grid,
  .ecosystem-grid,
  .student-grid,
  .level-grid,
  .reward-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps::before {
    display: none;
  }

  .final-cta .cta-row {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    padding: 14px 16px 18px;
  }

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

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
  }

  .section {
    padding: 58px 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero-copy br,
  .ambassador-copy br {
    display: none;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .principle-grid,
  .entry-grid,
  .event-grid,
  .ecosystem-grid,
  .student-grid,
  .level-grid,
  .reward-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .event-card h3 {
    min-height: auto;
  }

  .featured-event > img {
    min-height: 300px;
  }

  .filter-row {
    flex-wrap: wrap;
  }

  .directory-visual {
    min-height: 240px;
  }

  .copy-block {
    border-left: 0;
    border-top: 3px solid var(--gold);
  }

  .cta-row,
  .final-cta .cta-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .site-footer nav,
  .social-links {
    flex-direction: column;
  }
}
