/* =========================================================================
   MISS MULTICULTURAL AUSTRALIA™ — STYLESHEET
   Palette:
     --black      #0e0c0d  (deep near-black, section backgrounds)
     --gold       #c8a04f  (borders, accents, icons)
     --gold-light #e8cf8a  (hover state)
     --cream      #faf3ea  (light section backgrounds)
     --blush      #f7e3e4  (soft pink section backgrounds)
     --rose       #b3274f  (CTA buttons, headline accent)
     --rose-dark  #8e1d3d  (button hover)
     --ink        #2b2320  (body text on light backgrounds)
   ========================================================================= */

:root {
  --black: #0e0c0d;
  --black-soft: #1a1617;
  --gold: #c8a04f;
  --gold-light: #e8cf8a;
  --cream: #faf3ea;
  --blush: #f7e3e4;
  --rose: #b3274f;
  --rose-dark: #8e1d3d;
  --ink: #2b2320;
  --ink-soft: #6b5f58;
  --white: #ffffff;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 4px;
  --shadow-card: 0 10px 30px rgba(14, 12, 13, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.section-title .accent { color: var(--rose); font-style: italic; }
.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Editable placeholder image ---------- */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e0d4, #d8cdba);
  color: #9c8f7c;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  border: 1px dashed #b8a98c;
  width: 100%;
  height: 100%;
  min-height: 140px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-rose { background: var(--rose); color: var(--white); box-shadow: 0 8px 20px rgba(179,39,79,0.25); }
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(179,39,79,0.35); }
.btn-outline-dark { border-color: var(--black); color: var(--black); background: transparent; }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(200,160,79,0.06); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #2a2426; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.68rem; }

/* ================= HEADER ================= */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,160,79,0.25);
}
.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo-block { display: flex; align-items: center; gap: 10px; flex-shrink: 0; height: 100%; }
.logo-img { height: 56px; width: 56px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-img img { height: 100%; width: 100%; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(200,160,79,0.25)); }
.logo-text { line-height: 1.15; flex-shrink: 0; }
.logo-text .logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  display: block;
  white-space: normal;
  line-height: 1.2;
}
.logo-text .logo-name span { color: var(--white); }
.logo-text .logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: none;
  white-space: normal;
  display: block;
  max-width: 220px;
  line-height: 1.3;
  margin-top: 2px;
}

.main-nav { display: flex; flex: 1; justify-content: center; min-width: 0; overflow: hidden; }
.main-nav ul { display: flex; gap: 8px; flex-wrap: nowrap; white-space: nowrap; }
.main-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }

.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.social-icons a svg { width: 12px; height: 12px; }
.social-icons a:hover { border-color: var(--gold); color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero-split {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}
.hero-split .hero-side-img { flex: 1.55; height: 100%; min-width: 0; position: relative; }
.hero-split .hero-side-img .img-placeholder { min-height: 100%; border: none; border-radius: 0; }
.hero-split .hero-side-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); }
.hero-split .hero-side-img:first-child::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,12,13,0.15) 0%, rgba(14,12,13,0) 55%, rgba(14,12,13,0.75) 100%);
}
.hero-split .hero-side-img:last-child::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(14,12,13,0.15) 0%, rgba(14,12,13,0) 55%, rgba(14,12,13,0.75) 100%);
}
.hero-split .hero-center-gap {
  flex: 1.5; height: 100%;
  background: radial-gradient(ellipse at center, rgba(30,24,22,0.96) 0%, rgba(14,12,13,0.99) 70%);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .img-placeholder { min-height: 100%; border: none; border-radius: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,12,13,0.7) 0%, rgba(14,12,13,0.25) 30%, rgba(14,12,13,0.1) 50%, rgba(14,12,13,0.25) 70%, rgba(14,12,13,0.7) 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(200,160,79,0.10) 0%, rgba(200,160,79,0) 70%);
  z-index: 1; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 90px 0; max-width: 720px; text-align: center; margin: 0 auto; }
.hero-content .hero-actions { justify-content: center; }
.hero-crown {
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-crown img { object-fit: contain; filter: drop-shadow(0 8px 24px rgba(200,160,79,0.45)); }
.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.hero-eyebrow::after {
  content: "";
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 46px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.hero .script {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  color: var(--rose);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 600;
  margin-top: 6px;
}
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 30px auto 40px;
  max-width: 520px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* ================= VALUE BAR ================= */
.value-bar {
  background: var(--black);
  border-top: 1px solid rgba(200,160,79,0.2);
  padding: 30px 0;
}
.value-bar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.value-item {
  text-align: center;
  padding: 12px 6px;
  border-left: 1px solid rgba(200,160,79,0.18);
}
.value-item:first-child { border-left: none; }
.value-item .icon {
  width: 34px; height: 34px;
  margin: 0 auto 12px;
  color: var(--gold);
}
.value-item .icon svg { width: 100%; height: 100%; }
.value-item span {
  display: block;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ================= JOURNEY ================= */
.journey-section { background: var(--blush); padding: 90px 0; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.journey-card {
  background: var(--white);
  border-radius: 10px;
  overflow: visible;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 22px;
}
.journey-num {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(179,39,79,0.4);
  border: 3px solid var(--blush);
}
.journey-card .card-body { padding: 30px 22px 0; flex: 1; display: flex; flex-direction: column; }
.journey-card h3 { font-size: 1.08rem; margin-bottom: 8px; font-style: italic; }
.journey-card .card-desc { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.5; }
.journey-card ul { margin-bottom: 20px; flex: 1; }
.journey-card li {
  font-size: 0.82rem;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  margin-bottom: 7px;
  line-height: 1.4;
}
.journey-card li::before {
  content: "•";
  color: var(--rose);
  position: absolute;
  left: 0;
}
.journey-card .card-photo-wrap { position: relative; margin-top: auto; }
.journey-card .card-img { aspect-ratio: 4/3; border-radius: 0 0 10px 10px; overflow: hidden; }
.journey-card .card-photo-wrap .btn {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 2;
}
.journey-arrow {
  display: none;
}

/* ================= STATES ================= */
.states-section { background: var(--black); padding: 90px 0; }
.states-section .section-title { color: var(--white); }
.states-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr) 0.9fr;
  gap: 16px;
}
.state-card {
  background: var(--black-soft);
  border: 1px solid rgba(200,160,79,0.25);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.state-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.state-card.featured { background: var(--rose); border-color: var(--rose); }
.state-card .state-img { width: 96px; height: 96px; margin-bottom: 16px; }
.state-card .state-img .img-placeholder { border-radius: 50%; min-height: 96px; }
.state-card .state-code {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.state-card.featured .state-code { color: var(--white); }
.state-card .state-name {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  line-height: 1.4;
  flex: 1;
}
.state-card.featured .state-name { color: rgba(255,255,255,0.92); }
.state-card .btn { width: 100%; }
.coming-soon-card {
  background: var(--black-soft);
  border: 1px solid rgba(200,160,79,0.2);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.coming-soon-card .label {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.coming-soon-card .code-list { color: rgba(255,255,255,0.85); font-family: var(--font-display); font-size: 0.95rem; line-height: 2; }
.coming-soon-card .note { color: rgba(255,255,255,0.5); font-size: 0.68rem; margin-top: 10px; }

/* ================= SIGNATURE EXPERIENCES ================= */
.experiences-section { background: var(--blush); padding: 90px 0 70px; }
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.experience-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.experience-card .card-img { aspect-ratio: 3/4; }
.experience-card .card-body { padding: 16px 14px; }
.experience-card h3 { font-size: 0.86rem; line-height: 1.3; margin-bottom: 6px; }
.experience-card p { font-size: 0.76rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 12px; }
.view-all-wrap { text-align: center; }

/* ================= PROGRAMS DELIVERED ================= */
.programs-section { background: var(--cream); padding: 90px 0; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.program-card {
  background: var(--white);
  border: 1px solid #e9ddc9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.program-card .card-img { aspect-ratio: 16/10; }
.program-card .card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.program-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.program-card .desc { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 18px; }
.program-stat {
  display: flex; align-items: baseline; gap: 8px;
  border-top: 1px solid #eee2cd; border-bottom: 1px solid #eee2cd;
  padding: 14px 0; margin-bottom: 18px;
}
.program-stat .num { font-family: var(--font-display); font-size: 1.7rem; color: var(--rose); }
.program-stat .label { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.program-card ul { margin-bottom: 22px; flex: 1; }
.program-card li {
  font-size: 0.82rem; padding: 5px 0 5px 18px; position: relative; color: var(--ink);
  border-bottom: 1px dashed #efe6d4;
}
.program-card li::before { content: "✓"; color: var(--gold); position: absolute; left: 0; font-weight: 700; }

/* ================= BEYOND THE CROWN ================= */
.beyond-section { background: var(--black); padding: 90px 0; }
.beyond-header { color: var(--white); text-align: center; margin-bottom: 40px; }
.beyond-header h2 { color: var(--white); font-size: clamp(1.8rem,3.2vw,2.6rem); }
.beyond-header .accent { color: var(--rose); }
.beyond-header p { color: rgba(255,255,255,0.6); margin-top: 8px; }
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.3fr;
  gap: 18px;
}
.beyond-card {
  background: var(--black-soft);
  border: 1px solid rgba(200,160,79,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.beyond-card .card-img { position: absolute; inset: 0; z-index: 0; opacity: 0.55; }
.beyond-card .card-content { position: relative; z-index: 1; padding: 22px; background: linear-gradient(0deg, rgba(14,12,13,0.95), rgba(14,12,13,0.2) 80%); }
.beyond-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.beyond-card p { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-bottom: 16px; }
.impact-ecosystem {
  background: var(--black-soft);
  border: 1px solid rgba(200,160,79,0.3);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.impact-ecosystem .eco-title { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; margin-bottom: 20px; }
.eco-flow { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 18px; }
.eco-node {
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 0.74rem;
  text-align: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  width: 100%;
}
.eco-arrow { color: var(--gold); font-size: 0.9rem; }
.eco-branches { display: flex; gap: 10px; justify-content: center; margin-top: auto; }
.eco-branch {
  flex: 1;
  border: 1px solid rgba(200,160,79,0.4);
  color: rgba(255,255,255,0.85);
  font-size: 0.68rem;
  text-align: center;
  padding: 10px 6px;
  border-radius: var(--radius);
}

/* ================= ALUMNI ================= */
.alumni-section { background: var(--cream); padding: 90px 0; }
.alumni-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
.alumni-ring-img { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; }
.alumni-center .eyebrow-line { color: var(--rose); font-style: italic; font-family: var(--font-script); font-size: 1.1rem; margin-bottom: 8px; }
.alumni-center h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 8px; }
.alumni-center .alumni-sub { color: var(--ink-soft); margin-bottom: 30px; }
.alumni-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.alumni-feature { text-align: center; }
.alumni-feature .icon { width: 30px; height: 30px; margin: 0 auto 10px; color: var(--rose); }
.alumni-feature .icon svg { width: 100%; height: 100%; }
.alumni-feature span { font-size: 0.68rem; color: var(--ink-soft); line-height: 1.3; display: block; }
.alumni-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.alumni-group-img { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }

/* ================= BOTTOM FEATURES ================= */
.bottom-features-section { padding: 0 0 90px; }
.bottom-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.feature-card .card-img { aspect-ratio: 4/3; }
.feature-card .card-body { padding: 22px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 14px; }
.feature-card ul { margin-bottom: 18px; }
.feature-card li {
  font-size: 0.78rem; color: var(--ink); padding: 4px 0 4px 18px; position: relative;
}
.feature-card li::before { content: "✓"; color: var(--rose); position: absolute; left: 0; font-weight: 700; }

/* ================= FOOTER ================= */
.site-footer { background: var(--black); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-block { margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-col h4 {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col li { margin-bottom: 10px; font-size: 0.82rem; }
.footer-col a:hover { color: var(--gold-light); }
.newsletter-form { display: flex; margin-top: 14px; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); overflow: hidden; }
.newsletter-form input {
  flex: 1; border: none; background: transparent; padding: 11px 12px; color: var(--white); font-size: 0.8rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  background: var(--rose); color: var(--white); border: none; padding: 0 16px; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-tagline {
  text-align: right;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  line-height: 1.6;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 24px 0; font-size: 0.74rem; color: rgba(255,255,255,0.45);
}
.footer-bottom .legal-links { display: flex; gap: 18px; }

/* ================= MMNT PAGE ================= */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--black);
  overflow: hidden;
}
.page-hero .hero-media { position: absolute; inset: 0; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,12,13,0.55), rgba(14,12,13,0.92)); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.page-hero-content .eyebrow { color: var(--gold-light); }
.page-hero-content h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin: 10px 0; }
.page-hero-content .sub { color: var(--rose); font-family: var(--font-script); font-style: italic; font-size: 1.4rem; }
.page-hero-content p { color: rgba(255,255,255,0.8); margin-top: 16px; line-height: 1.7; }
.page-hero-content .hero-actions { justify-content: center; margin-top: 30px; }

.about-block { padding: 90px 0; background: var(--cream); text-align: center; }
.about-block p { max-width: 740px; margin: 0 auto; line-height: 1.9; color: var(--ink-soft); font-size: 1.02rem; }

.gallery-section { padding: 0 0 90px; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid .card-img { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; }

.breadcrumb-bar { background: var(--black); padding: 16px 0; }
.breadcrumb-bar a { color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.04em; }
.breadcrumb-bar a:hover { color: var(--white); }

/* ================= PROGRAM SUB-PAGES ================= */
.program-page-section { padding: 90px 0; background: var(--cream); }
.program-page-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.program-page-img { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.program-page-list { margin-top: 24px; }
.program-page-list li {
  background: var(--white); border: 1px solid #eee0c9; border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 12px; font-size: 0.92rem; display: flex; align-items: center; gap: 12px;
}
.program-page-list li::before { content: "✓"; color: var(--rose); font-weight: 700; }
.program-page-stat { display: inline-flex; align-items: baseline; gap: 10px; background: var(--white); border: 1px solid #eee0c9; padding: 16px 24px; border-radius: var(--radius); margin: 20px 0; }
.program-page-stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--rose); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1500px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .value-bar-grid { grid-template-columns: repeat(4, 1fr); }
  .value-item:nth-child(4n+1) { border-left: none; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .experiences-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .beyond-grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-grid { grid-template-columns: 1fr; text-align: center; }
  .alumni-actions { justify-content: center; }
  .bottom-features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-tagline { text-align: left; }
  .program-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .header-inner { padding: 12px 16px; }
  .header-right .navCta-btn { display: none; }
  .value-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(odd) { border-left: none; }
  .journey-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .beyond-grid { grid-template-columns: 1fr; }
  .bottom-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions, .page-hero-content .hero-actions { flex-direction: column; align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,12,13,0.97);
  padding: 30px 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-close { background: none; border: none; color: var(--white); font-size: 1.8rem; float: right; }
.mobile-nav ul { clear: both; margin-top: 50px; }
.mobile-nav li { margin-bottom: 22px; }
.mobile-nav a { color: var(--white); font-size: 1.1rem; font-family: var(--font-display); }
.mobile-nav .btn { margin-top: 30px; }
