:root {
  --font-sans: Inter, Helvetica, Arial, sans-serif;
  --font-display: Montserrat, Inter, Helvetica, Arial, sans-serif;
  --color-purple: #42196F;
  --color-purple-dark: #2a0f48;
  --color-yellow: #FEBE10;
  --color-yellow-dark: #e6ab00;
  --color-white: #ffffff;
  --color-off-white: #F7F5F2;
  --color-ink: #0e0b1a;
  --section-pad: 120px;
  --inner-max: 1200px;
}

@font-face { font-family: 'Inter'; src: url("/wp-content/themes/wnmu/assets/fonts/Inter/Inter_28pt-Regular.ttf") format("opentype"); font-style: normal; font-weight: normal; }
@font-face { font-family: 'Inter'; src: url("/wp-content/themes/wnmu/assets/fonts/Inter/Inter_28pt-ExtraBold.ttf") format("opentype"); font-style: normal; font-weight: bold; }
@font-face { font-family: 'Montserrat'; src: url("/wp-content/themes/wnmu/assets/fonts/Outfit/static/Outfit-ExtraBold.ttf") format("opentype"); font-style: normal; font-weight: bold; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--color-purple); outline-offset: 4px; box-shadow: 0 0 0 6px var(--color-yellow); }
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 9999; padding: 12px 20px; background: var(--color-purple); color: var(--color-yellow); font-weight: bold; font-size: 14px; border-radius: 0 0 6px 6px; transition: top 0.2s; }
.skip-link:focus { top: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 18px; line-height: 1.65; color: var(--color-ink); background: var(--color-white); }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

.wnmu-logo { height: 56px; }

.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--color-yellow);
}
.section-label-light {
  color: var(--color-white);
  border-bottom-color: var(--color-yellow);
}
.section-label-yellow {
  color: var(--color-yellow);
  border-bottom-color: var(--color-yellow);
}


/* ═══════════════════════════════════════
   NAV MENU
═══════════════════════════════════════ */
.nav-hamburger {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: var(--color-yellow);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.nav-hamburger:hover { background: var(--color-yellow-dark); }
.nav-hamburger.on-light {
  background: var(--color-purple);
}
.nav-hamburger.on-light .nav-hamburger-bar {
  background: var(--color-yellow);
}
.nav-hamburger.on-light:hover { background: var(--color-purple-dark); }
.nav-hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-purple);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.is-open .nav-hamburger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open .nav-hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .nav-hamburger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: hsl(269 63% 8% / 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  width: min(360px, 85vw);
  background: var(--color-purple);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}
.nav-menu.is-open { transform: translateX(0); }
.nav-menu-inner {
  padding: 60px 48px;
  width: 100%;
}
.nav-menu-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-yellow);
  display: inline-block;
}
.nav-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-menu-link {
  display: block;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--color-white);
  padding: 14px 0;
  border-bottom: 1px solid hsl(269 40% 50% / 0.3);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-menu-link:hover {
  color: var(--color-yellow);
  padding-left: 8px;
}
.nav-menu-link-primary {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
  background: var(--color-yellow);
  color: var(--color-purple);
  border-bottom: none;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-menu-link-primary:hover {
  background: var(--color-yellow-dark);
  color: var(--color-purple);
  padding-left: 28px;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.section-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  min-height: 620px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(269 63% 14% / 0.92) 0%,
    hsl(269 63% 27% / 0.78) 55%,
    hsl(269 50% 20% / 0.55) 100%
  );
}
.hero-logo {
  position: absolute;
  top: 24px;
  left: 36px;
  z-index: 10;
}
.hero-logo a {
  display: block;
}
.hero-logo a:focus-visible {
  outline: 1px solid var(--color-white);
  box-shadow: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 60px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: bold;
  line-height: 0.92;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}
.hero-headline-line1 {
  font-size: clamp(80px, 13vw, 180px);
  display: block;
}
.hero-headline-line2 {
  font-size: clamp(80px, 13vw, 180px);
  display: block;
  color: var(--color-yellow);
  margin-top: -0.05em;
}
.hero-tagline {
  margin-top: 32px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: hsl(0 0% 100% / 0.85);
  letter-spacing: 0.02em;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: hsl(0 0% 100% / 1);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: heroScrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-yellow);
  stroke-width: 2.5;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 700px) {
  .hero-content { padding: 0 28px; }
  .wnmu-logo { height: 44px; }
  .hero-logo { left: 20px; top: 18px; }
  .hero-tagline { font-size: 17px; }
}


/* ═══════════════════════════════════════
   INTRO
═══════════════════════════════════════ */
.section-intro {
  position: relative;
  background: var(--color-white);
  padding: var(--section-pad) 40px;
}
.intro-mountains {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 100%;
  color: var(--color-purple);
  opacity: 0.10;
  pointer-events: none;
  line-height: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.intro-mountains svg { width: 100%; height: auto; display: block; }
.section-intro-inner {
  position: relative;
  max-width: var(--inner-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  align-items: center;
}
.intro-pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.intro-pillar-bar {
  width: 3px;
  align-self: stretch;
  background: var(--color-yellow);
  flex-shrink: 0;
  border-radius: 2px;
}
.intro-pillar-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.intro-pillar-est {
  font-family: var(--font-sans);
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-purple);
}
.intro-pillar-year {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(42px, 4.5vw, 64px);
  color: var(--color-purple);
  line-height: 1;
  letter-spacing: -1px;
}
.intro-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intro-body {
  font-size: 19px;
  line-height: 1.8;
  color: #3a3a4e;
}
.intro-together {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--color-purple);
  line-height: 1.2;
  margin-top: 8px;
}
.intro-together em {
  font-style: normal;
  color: var(--color-yellow);
  background: var(--color-purple);
  font-size: 1.12em;
  padding: 2px 14px;
  margin-left: 2px;
  display: inline;
}
.intro-body-lead {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: bold;
  color: var(--color-purple);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .section-intro-inner { grid-template-columns: 1fr; gap: 24px; }
  .intro-mountains { width: 100%; right: 0; }
  .intro-pillar { flex-direction: row; align-items: center; }
  .intro-pillar-bar { display: none; }
  .intro-pillar-label {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--color-yellow);
    border-radius: 100px;
    padding: 5px 14px;
  }
  .intro-pillar-est { font-size: 10px; letter-spacing: 2px; color: var(--color-purple); }
  .intro-pillar-year { font-size: 16px; letter-spacing: 0; color: var(--color-purple); }
}
@media (max-width: 700px) {
  .section-intro { padding: 72px 24px; }
  .intro-body { font-size: 17px; }
  .intro-body-lead { font-size: 21px; }
}


/* ═══════════════════════════════════════
   VIDEO
═══════════════════════════════════════ */
.section-video {
  background: var(--color-ink);
  padding: var(--section-pad) 40px;
  border-bottom: 4px solid var(--color-yellow);
}
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 700px) {
  .section-video { padding: 64px 20px; }
}


/* ═══════════════════════════════════════
   UNIVERSITY OF PURPOSE
═══════════════════════════════════════ */
.section-purpose {
  position: relative;
  background: var(--color-purple-dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
  border-bottom: 4px solid var(--color-yellow);
}
.purpose-bg-pattern {
  position: absolute;
  inset: 0;
  color: hsl(269 60% 60% / 0.18);
  pointer-events: none;
}
.purpose-bg-pattern svg { width: 100%; height: 100%; }
.section-purpose .section-label {
  color: var(--color-yellow);
  border-bottom-color: var(--color-yellow);
}
.purpose-intro {
  position: relative;
  font-size: 19px;
  line-height: 1.7;
  max-width: 680px;
  color: hsl(0 0% 100% / 1);
  margin-bottom: 48px;
}
.purpose-prepares {
  position: relative;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--color-yellow);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.purpose-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.purpose-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 32px hsl(269 63% 8% / 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 4px solid var(--color-yellow);
}
.purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px hsl(269 63% 8% / 0.7);
}
.purpose-card-wide {
  grid-column: span 2;
}
.purpose-card-icon {
  color: var(--color-purple);
  flex-shrink: 0;
}
.purpose-card-text {
  font-size: 20px;
  line-height: 1.5;
  color: #2a2a38;
}
.purpose-card-text strong {
  display: inline;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-purple);
  margin-right: 4px;
}
.purpose-closing {
  position: relative;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--color-yellow);
  text-align: center;
  padding-top: 52px;
  margin-top: 8px;
}
.purpose-closing::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-yellow);
  border-radius: 2px;
  margin: 0 auto 24px;
}

@media (max-width: 700px) {
  .section-purpose { padding: 72px 0; }
  .section-inner { padding: 0 24px; }
  .purpose-cards { grid-template-columns: 1fr; gap: 12px; }
  .purpose-card { padding: 20px 18px; gap: 14px; }
  .purpose-card-wide { grid-column: span 1; }
}


/* ═══════════════════════════════════════
   ROOTED IN CULTURE
═══════════════════════════════════════ */
.section-culture {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.culture-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
}
.culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(269 63% 10% / 0.96) 0%,
    hsl(269 63% 20% / 0.88) 60%,
    hsl(269 63% 20% / 0.7) 100%
  );
}
.culture-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: 40px;
}
.culture-intro {
  font-size: 19px;
  line-height: 1.75;
  color: hsl(0 0% 100% / 0.85);
  margin-bottom: 48px;
  max-width: 620px;
}
.culture-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
  padding-left: 32px;
}
.culture-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.4;
}
.culture-list-icon {
  flex-shrink: 0;
  color: var(--color-yellow);
}
.culture-closing {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(24px, 3.5vw, 42px);
  color: var(--color-yellow);
  line-height: 1.2;
}

@media (max-width: 700px) {
  .section-culture { padding: 72px 0; }
  .culture-inner { margin-left: 24px; }
  .culture-list li { font-size: 17px; }
}


/* ═══════════════════════════════════════
   LIVING LABORATORY
═══════════════════════════════════════ */
.section-lab {
  position: relative;
  padding: calc(var(--section-pad) * 1.5) 0;
  overflow: hidden;
}
.lab-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.lab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(0 0% 0% / 0.60) 0%,
    hsl(0 0% 0% / 0.48) 40%,
    hsl(0 0% 0% / 0.40) 100%
  );
}
.lab-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.lab-intro {
  font-size: 18px;
  color: hsl(0 0% 100% / 0.9);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.75;
  text-shadow: 0 1px 8px hsl(0 0% 0% / 0.5);
}
.lab-display {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(36px, 7vw, 96px);
  text-shadow: 0 2px 12px hsl(0 0% 0% / 0.4);
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 40px;
}
.lab-display-line:first-child {
  color: var(--color-white);
}
.lab-display-line:last-child {
  color: var(--color-yellow);
}
.lab-sub {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: hsl(0 0% 100% / 0.90);
  text-shadow: 0 1px 8px hsl(0 0% 0% / 0.5);
}

@media (max-width: 700px) {
  .section-lab { padding: 80px 0; }
  .lab-inner { padding: 0 24px; }
}


/* ═══════════════════════════════════════
   TURNING POSSIBILITY INTO REALITY
═══════════════════════════════════════ */
.section-possibility {
  position: relative;
  background-color: var(--color-ink);
  background-size: cover;
  background-position: center 40%;
  padding: var(--section-pad) 0;
}
.section-possibility::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(269 63% 8% / 0.30) 0%,
    hsl(269 63% 8% / 0.65) 100%
  );
}
.section-possibility .section-inner {
  position: relative;
  z-index: 2;
}
.possibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.possibility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 48px 32px;
  border: 1px solid hsl(0 0% 100% / 0.12);
  border-radius: 16px;
  background: hsl(269 63% 8% / 0.65);
}
.possibility-icon {
  color: var(--color-yellow);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(269 63% 27% / 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
.possibility-text {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--color-white);
  line-height: 1.3;
}
.possibility-closing {
  margin-top: 72px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
}
.possibility-closing-line1 {
  display: block;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(26px, 3.5vw, 48px);
  color: hsl(0 0% 100% / 1);
  line-height: 1.2;
}
.possibility-closing-line2 {
  display: block;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(34px, 5.5vw, 65px);
  color: var(--color-white);
  line-height: 1.1;
}
.possibility-closing-line2 em {
  font-style: normal;
  color: var(--color-yellow);
}

@media (max-width: 700px) {
  .section-possibility { padding: 72px 0; }
  .possibility-grid { grid-template-columns: 1fr; gap: 16px; }
  .possibility-item { padding: 36px 24px; }
}


/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.section-cta {
  background: var(--color-yellow);
  padding: var(--section-pad) 0;
}
.cta-inner {
  text-align: center;
}
.cta-headline {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(40px, 7vw, 88px);
  color: var(--color-purple);
  line-height: 1.05;
  margin-bottom: 52px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}
.cta-btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  background: var(--color-purple);
  color: var(--color-white);
}
.cta-btn:hover {
  background: var(--color-purple-dark);
  transform: translateY(-2px);
}
.cta-btn-primary {
  background: var(--color-purple);
  animation: ctaPulse 1.8s ease-in-out infinite;
}
.cta-btn-primary:hover,
.cta-btn-primary:focus-visible {
  animation: none;
  background: var(--color-purple-dark);
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 2px 0px  hsl(269 63% 27% / 0.65); }
  100% { box-shadow: 0 0 5px 12px hsl(269 63% 27% / 0); }
}
.cta-social {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.social-link {
  color: var(--color-purple);
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.social-link:hover {
  color: var(--color-purple-dark);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .section-cta { padding: 72px 0; }
  .cta-btn { padding: 14px 22px; font-size: 14px; }
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  position: relative;
  z-index: 10;
  padding: 60px 52px 120px;
  font-size: 12px;
  line-height: 25px;
  text-transform: uppercase;
  color: hsl(0 0% 100%);
  background: var(--color-purple);
  text-align: center;
}
.footer-logo { height: 40px; margin-bottom: 12px; display: inline-block; }

@media (max-width: 700px) {
  footer { padding-left: 27px; padding-right: 27px; }
}
