/* Stony Brook SHPE — Design System
   Anton (display) + Inter (body) + Instrument Serif (italic accents)
   Brand: navy #001F5B + orange #FD652F */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

/* ===== TOKENS ===== */
:root {
  --shpe-navy:        #001F5B;
  --shpe-navy-700:    #00174a;
  --shpe-navy-900:    #000d2e;
  --shpe-orange:      #FD652F;
  --shpe-orange-300:  #fd9472;
  --shpe-orange-100:  #ffe3d8;
  --shpe-sky:         #72A9BE;
  --shpe-red:         #D33A02;
  --shpe-blue:        #0070C0;
  --cream:            #faf6ef;
  --ink-900:          #0b0f1a;
  --ink-700:          #343a40;
  --ink-500:          #6b7280;
  --ink-300:          #c9ced6;
  --ink-100:          #eef1f6;
  --paper:            #fff;
  --bone:             #f7f8fb;
  --ease-out-expo:    cubic-bezier(.16,1,.3,1);
  --ease-in-out:      cubic-bezier(.65,0,.35,1);
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink-700);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
p { text-wrap: pretty; margin: 0 0 1rem; }
::selection { background: var(--shpe-orange); color: #fff; }

/* ===== TYPE ===== */
h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  color: var(--shpe-navy);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.display-xxl {
  font-family: 'Anton';
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}
.display-xl {
  font-family: 'Anton';
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.display-l {
  font-family: 'Anton';
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.display-m {
  font-family: 'Anton';
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.serif-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--shpe-orange);
  letter-spacing: -0.02em;
}
.ink-muted { color: var(--ink-500); }
.eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--shpe-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--shpe-orange);
  display: inline-block;
}

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-compact { padding: 80px 0; }
.section-tinted { background: var(--bone); }
.section-cream { background: var(--cream); }
.section-head { margin-bottom: 56px; }
.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.section-head-right {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
}

/* ===== MOTION ===== */
@keyframes rise-in {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes scale-in {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes marquee-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0%   { transform: scale(.95); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease-out-expo), transform 900ms var(--ease-out-expo);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.reveal-1 { transition-delay: 80ms; }
.reveal.reveal-2 { transition-delay: 160ms; }
.reveal.reveal-3 { transition-delay: 240ms; }
.reveal.reveal-4 { transition-delay: 320ms; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 700 14px 'Inter', sans-serif;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 300ms var(--ease-out-expo);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn .btn-arrow { transition: transform 300ms var(--ease-out-expo); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary { background: var(--shpe-navy); color: #fff; }
.btn-primary:hover {
  background: var(--shpe-orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(242,101,52,.5);
}
.btn-outline {
  background: transparent;
  color: var(--shpe-navy);
  border-color: var(--shpe-navy);
}
.btn-outline:hover {
  background: var(--shpe-navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary-on-dark { background: var(--shpe-orange); color: #fff; }
.btn-primary-on-dark:hover {
  background: #fff;
  color: var(--shpe-navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(255,255,255,.4);
}
.btn-ghost-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost-on-dark:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 14px 'Inter';
  color: var(--shpe-navy);
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 6px 0;
  background: none;
  border: none;
  border-bottom: 1.5px solid currentColor;
  transition: color 200ms;
  text-decoration: none;
}
.btn-text:hover { color: var(--shpe-orange); }

/* ===== NAV ===== */
.shpe-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,31,89,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.shpe-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}
.shpe-nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}
.shpe-nav-mark { height: 38px; width: auto; display: block; flex-shrink: 0; }
.shpe-nav-divider-line {
  color: rgba(255,255,255,.4);
  font-weight: 200;
  font-size: 26px;
  margin: 0 12px;
  line-height: 1;
  flex-shrink: 0;
}
.shpe-nav-wordtext {
  font: 600 15px/1 'Inter', sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.shpe-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.shpe-nav-link {
  color: rgba(255,255,255,.7);
  font: 600 14px 'Inter';
  padding: 10px 16px;
  position: relative;
  border-radius: 999px;
  transition: color 200ms, background 200ms;
  text-decoration: none;
}
.shpe-nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.shpe-nav-link.is-active { color: #fff; }
.shpe-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shpe-orange);
  transform: translateX(-50%);
}
.shpe-nav-cta {
  background: var(--shpe-orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font: 700 13px 'Inter';
  letter-spacing: 0.02em;
  transition: all 300ms var(--ease-out-expo);
  margin-left: 8px;
  text-decoration: none;
}
.shpe-nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--shpe-navy);
  box-shadow: 0 10px 24px -6px rgba(242,101,52,.5);
}
/* Hamburger menu */
.shpe-nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: #fff;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.shpe-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 300ms;
}

/* ===== HERO ===== */
.shpe-hero {
  position: relative;
  background: var(--shpe-navy);
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh - 66px);
  display: flex;
  flex-direction: column;
  padding: 80px 0 96px;
}
.shpe-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 75%);
}
.shpe-hero-glow {
  position: absolute;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,101,47,.35) 0%, transparent 70%);
  filter: blur(60px);
  top: -15%;
  right: -10%;
}
.shpe-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px, 380px);
  gap: 60px;
  align-items: center;
  flex: 1;
}
.shpe-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font: 700 11px 'Inter';
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shpe-orange-300);
  margin-bottom: 28px;
}
.shpe-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--shpe-orange);
  position: relative;
  flex-shrink: 0;
}
.shpe-hero-eyebrow-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1.5px solid var(--shpe-orange);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
.shpe-hero-title {
  font-family: 'Anton';
  font-weight: 400;
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: #fff;
  text-transform: uppercase;
}
.shpe-hero-title .line { display: block; overflow: hidden; }
.shpe-hero-title .line-inner {
  display: inline-block;
  animation: rise-in 900ms var(--ease-out-expo) both;
}
.shpe-hero-title .line:nth-child(2) .line-inner { animation-delay: 120ms; }
.shpe-hero-title .line:nth-child(3) .line-inner { animation-delay: 240ms; }
.shpe-hero-title em {
  font-style: italic;
  font-family: 'Instrument Serif';
  font-weight: 400;
  color: var(--shpe-orange);
  text-transform: none;
  letter-spacing: -0.03em;
}
.shpe-hero-title .muted { color: rgba(255,255,255,.32); }
.shpe-hero-body {
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255,255,255,.8);
  margin: 0 0 36px;
  animation: rise-in 900ms var(--ease-out-expo) 400ms both;
}
.shpe-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: rise-in 900ms var(--ease-out-expo) 500ms both;
}
.shpe-hero-side { animation: scale-in 900ms var(--ease-out-expo) 600ms both; }
.shpe-hero-image {
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--shpe-navy-900);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
}
.shpe-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shpe-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,16,45,.95) 100%);
}
.shpe-hero-image-stat {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.shpe-hero-image-stat-num {
  font-family: 'Anton';
  font-size: 56px;
  line-height: 1;
  color: #fff;
}
.shpe-hero-image-stat-label {
  font: 600 12px 'Inter';
  color: rgba(255,255,255,.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
}
.shpe-hero-image-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--shpe-orange);
  color: #fff;
  font: 700 11px 'Inter';
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: spin-slow 20s linear infinite;
  box-shadow: 0 10px 30px -8px rgba(253,101,47,.5);
  padding: 10px;
  line-height: 1.3;
}
.shpe-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font: 600 10px 'Inter';
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.shpe-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scroll-line 2.2s infinite;
}

/* ===== MARQUEE ===== */
.shpe-marquee {
  background: var(--shpe-orange);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.shpe-marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-x 30s linear infinite;
}
.shpe-marquee-item {
  font-family: 'Anton';
  font-size: 42px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
}
.shpe-marquee-item em {
  font-family: 'Instrument Serif';
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--shpe-navy);
  letter-spacing: -0.02em;
}
.shpe-marquee-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* ===== PILLARS ===== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border-top: 1px solid var(--ink-100);
}
.pillar-card {
  padding: 44px 32px 40px;
  border-right: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  transition: background 400ms var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.pillar-card:last-child { border-right: none; }
.pillar-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--shpe-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease-out-expo);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { background: var(--bone); }
.pillar-card:hover .pillar-num { color: var(--shpe-orange); transform: translateY(-4px); }
.pillar-num {
  font-family: 'Anton';
  font-size: 64px;
  line-height: 1;
  color: var(--ink-300);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  transition: all 400ms var(--ease-out-expo);
}
.pillar-title {
  font: 400 44px/0.92 'Anton';
  color: var(--shpe-navy);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.pillar-title em {
  font-family: 'Instrument Serif';
  font-style: italic;
  color: var(--shpe-orange);
  text-transform: none;
  letter-spacing: -0.02em;
}
.pillar-body {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 34ch;
}

/* ===== FEATURE ROW ===== */
.feature-row {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.feature-row.is-reverse .feature-text { order: 2; }
.feature-row.is-reverse .feature-media { order: 1; }
.feature-body {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 52ch;
}
.feature-body p + p { margin-top: 14px; }
.feature-body ul { padding-left: 1.4em; }
.feature-body li { margin-bottom: 6px; }
.feature-media { position: relative; }
.feature-media img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.25);
}
.feature-media-frame {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, var(--shpe-orange-100) 0%, var(--cream) 100%);
  border-radius: 4px;
  overflow: hidden;
}
.feature-media-frame::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border: 8px solid var(--shpe-orange);
  border-right: none; border-bottom: none;
}
.feature-media-frame::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 8px solid var(--shpe-navy);
  border-left: none; border-top: none;
}

/* ===== E-BOARD ===== */
.eboard-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}
.eboard-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4.2;
  cursor: pointer;
  transition: transform 500ms var(--ease-out-expo);
}
.eboard-card:hover { transform: translateY(-6px); }
.eboard-photo { position: absolute; inset: 0; background: var(--shpe-navy-700); }
.eboard-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out-expo);
}
.eboard-card:hover .eboard-photo img { transform: scale(1.05); }
.eboard-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shpe-navy);
}
.eboard-placeholder img { width: 44%; height: auto; opacity: 0.3; }
.eboard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,16,45,.92) 95%);
}
.eboard-meta {
  position: absolute;
  left: 16px; right: 52px; bottom: 16px;
  color: #fff;
}
.eboard-role {
  color: var(--shpe-orange-300);
  font: 700 10px 'Inter';
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eboard-name {
  font-family: 'Anton';
  font-size: 22px;
  line-height: 1;
  margin-top: 6px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.eboard-major {
  font: 500 12px 'Inter';
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}
.eboard-li {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
  opacity: 0;
  transform: translateY(4px);
}
.eboard-card:hover .eboard-li { opacity: 1; transform: translateY(0); }
.eboard-li:hover { background: var(--shpe-orange); }

/* ===== TESTIMONIALS ===== */
.testimonial-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 400ms var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-family: 'Instrument Serif';
  font-size: 180px;
  color: var(--shpe-orange-100);
  line-height: 1;
  transition: color 400ms;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--shpe-navy);
  box-shadow: 0 20px 40px -16px rgba(0,31,89,.15);
}
.testimonial-card:hover::before { color: var(--shpe-orange-300); }
.testimonial-portrait {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--shpe-navy);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid var(--shpe-orange);
  padding: 2px;
}
.testimonial-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font: 400 18px 'Anton';
  border-radius: 50%;
  background: var(--shpe-navy);
}
.testimonial-quote {
  font: 400 16px/1.65 'Inter';
  color: var(--ink-700);
  margin: 0;
  position: relative;
  z-index: 1;
}
.testimonial-name { font: 700 14px 'Inter'; color: var(--ink-900); }
.testimonial-role { font: 500 13px 'Inter'; color: var(--ink-500); margin-top: 2px; }

/* ===== SPONSORS ===== */
.sponsor-hero {
  background: var(--shpe-navy);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 120px 0 100px;
}
.sponsor-hero-glow {
  position: absolute;
  pointer-events: none;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,101,47,.25) 0%, transparent 70%);
  filter: blur(80px);
  top: -20%; left: -20%;
}
.sponsor-hero-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 40px;
}
.sponsor-stat-num {
  font-family: 'Anton';
  font-size: clamp(3rem,5vw,5rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.sponsor-stat-num sup { font-size: .4em; color: var(--shpe-orange); }
.sponsor-stat-label {
  font: 600 13px 'Inter';
  color: rgba(255,255,255,.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  max-width: 22ch;
  line-height: 1.4;
}
.sponsor-tier { margin-bottom: 60px; }
.sponsor-tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink-100);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.sponsor-tier-label {
  font-family: 'Anton';
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--shpe-navy);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.sponsor-tier-label em {
  font-family: 'Instrument Serif';
  font-style: italic;
  color: var(--shpe-orange);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: .7em;
}
.sponsor-tier-amount {
  font: 700 12px 'Inter';
  color: var(--ink-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sponsor-grid { display: grid; gap: 16px; }
.sponsor-grid-3 { grid-template-columns: repeat(3,1fr); }
.sponsor-grid-4 { grid-template-columns: repeat(4,1fr); }
.sponsor-tile {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: all 400ms var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.sponsor-tile:hover {
  transform: translateY(-3px);
  border-color: var(--shpe-navy);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.15);
}
.sponsor-tile img {
  max-width: 80%; max-height: 64px;
  object-fit: contain;
  filter: grayscale(1) opacity(.7);
  transition: filter 400ms;
}
.sponsor-tile:hover img { filter: grayscale(0) opacity(1); }
.sponsor-ph {
  font: 600 12px 'Inter';
  color: var(--ink-300);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sponsor-ph-accent { color: var(--shpe-orange); }
.sponsor-benefits {
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  overflow: hidden;
}
.sponsor-benefit-h {
  background: var(--shpe-navy);
  color: #fff;
  padding: 18px 20px;
  font: 700 12px 'Inter';
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.sponsor-benefit-h:first-child { text-align: left; }
.sponsor-benefit-cell {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-100);
  background: #fff;
  text-align: center;
  font: 600 14px 'Inter';
  color: var(--shpe-navy);
}
.sponsor-benefit-cell:first-child { text-align: left; color: var(--ink-700); font-weight: 500; }
.sponsor-benefit-check { color: var(--shpe-orange); font-size: 18px; }
.sponsor-benefit-dash { color: var(--ink-300); }
.sponsor-cta-card {
  background: var(--shpe-navy);
  color: #fff;
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 20% 80%, rgba(253,101,47,.25) 0%, transparent 50%);
}
.sponsor-cta-shape {
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}
.sponsor-cta-shape-inner {
  position: absolute;
  right: 30px; top: 30px;
  width: 180px; height: 180px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}
.sponsor-cta-title {
  font-family: 'Anton';
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 14ch;
  margin: 20px 0 0;
}
.sponsor-cta-title em {
  font-family: 'Instrument Serif';
  font-style: italic;
  color: var(--shpe-orange);
  text-transform: none;
  letter-spacing: -0.03em;
}
.sponsor-cta-body {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  max-width: 480px;
  margin: 24px 0 36px;
}
.sponsor-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.sponsor-cta-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font: 600 15px 'Inter';
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  transition: all 300ms;
  text-decoration: none;
}
.sponsor-cta-email:hover {
  background: var(--shpe-orange);
  border-color: var(--shpe-orange);
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact-hero { padding: 100px 0 60px; position: relative; }
.contact-hero-title {
  font-family: 'Anton';
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--shpe-navy);
  margin: 24px 0 0;
}
.contact-hero-title em {
  font-family: 'Instrument Serif';
  font-style: italic;
  color: var(--shpe-orange);
  text-transform: none;
  letter-spacing: -0.04em;
}
.contact-hero-sub {
  font-size: 19px;
  color: var(--ink-500);
  max-width: 560px;
  margin: 28px 0 0;
  line-height: 1.6;
}
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: 40px 0 80px;
  align-items: start;
}
.contact-form-card {
  background: var(--shpe-navy);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,101,47,.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.contact-form-h {
  font-family: 'Anton';
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  position: relative;
}
.contact-form-note {
  font: 400 14px 'Inter';
  color: rgba(255,255,255,.7);
  margin: 0 0 32px;
  position: relative;
}
.contact-field { position: relative; margin-bottom: 24px; }
.contact-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-field-label {
  font: 600 11px 'Inter';
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: block;
  margin-bottom: 10px;
}
.contact-field-input, .contact-field-textarea, .contact-field-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 10px 0;
  font: 400 16px 'Inter';
  color: #fff;
  outline: none;
  transition: border-color 300ms;
  appearance: none;
  -webkit-appearance: none;
}
.contact-field-input::placeholder,
.contact-field-textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-field-input:focus,
.contact-field-textarea:focus,
.contact-field-select:focus { border-color: var(--shpe-orange); }
.contact-field-textarea { min-height: 235px; resize: vertical; font-family: inherit; }
.contact-field-select { color-scheme: dark; cursor: pointer; }
.contact-field-select option { background: var(--shpe-navy); color: #fff; }

/* ── Custom animated select ── */
.contact-custom-select { position: relative; }
.contact-custom-select-trigger {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 10px 0;
  font: 400 16px 'Inter';
  color: #fff;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 300ms;
  text-align: left;
}
.contact-custom-select-trigger:focus,
.contact-custom-select.is-open .contact-custom-select-trigger { border-color: var(--shpe-orange); }
.contact-custom-select-val { pointer-events: none; }
.contact-custom-select-caret {
  width: 8px; height: 8px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 350ms var(--ease-out-expo), border-color 300ms;
  flex-shrink: 0;
  margin-right: 4px;
}
.contact-custom-select.is-open .contact-custom-select-caret {
  transform: rotate(225deg) translateY(3px);
  border-color: var(--shpe-orange);
}
.contact-custom-select-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--shpe-navy-700);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 350ms var(--ease-out-expo), transform 350ms var(--ease-out-expo);
}
.contact-custom-select.is-open .contact-custom-select-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.contact-custom-select-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  position: relative;
  font: 500 14px 'Inter';
  color: rgba(255,255,255,.85);
  letter-spacing: 0.01em;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: padding 350ms var(--ease-out-expo), color 300ms;
}
.contact-custom-select-opt:last-child { border-bottom: none; }
.contact-custom-select-opt::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 0;
  background: var(--shpe-orange);
  transition: width 350ms var(--ease-out-expo);
  z-index: 0;
}
.contact-custom-select-opt:hover { padding-left: 28px; color: #fff; }
.contact-custom-select-opt:hover::after { width: 100%; }
.contact-custom-select-opt span { position: relative; z-index: 1; }
.contact-custom-opt-arrow {
  font-size: 12px;
  opacity: .35;
  transition: transform 300ms, opacity 300ms;
}
.contact-custom-select-opt:hover .contact-custom-opt-arrow { transform: translate(3px,-3px); opacity: 1; }
.contact-custom-select-opt.is-selected { color: var(--shpe-orange-300); }
.contact-submit {
  width: 100%;
  background: var(--shpe-orange);
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 999px;
  font: 700 14px 'Inter';
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 300ms var(--ease-out-expo);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-submit:hover {
  background: #fff;
  color: var(--shpe-navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(255,255,255,.4);
}
.contact-side { padding: 8px 0; }
.contact-side-label {
  font: 700 11px 'Inter';
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--shpe-orange);
  margin-bottom: 18px;
}
.contact-side-h {
  font-family: 'Anton';
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--shpe-navy);
  margin: 0 0 18px;
}
.contact-side-h em {
  font-family: 'Instrument Serif';
  font-style: italic;
  color: var(--shpe-orange);
  text-transform: none;
}
.contact-side-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0 0 28px;
  max-width: 40ch;
}
.contact-socials {
  border-top: 1px solid var(--ink-100);
  margin-top: 12px;
}
.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  border-bottom: 1px solid var(--ink-100);
  transition: padding 400ms var(--ease-out-expo), color 300ms;
  position: relative;
  font-family: 'Anton';
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--shpe-navy);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  overflow: hidden;
  text-decoration: none;
}
.contact-social-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 100%; width: 0;
  background: var(--shpe-orange);
  transition: width 400ms var(--ease-out-expo);
  z-index: -1;
}
.contact-social-link:hover { padding-left: 24px; color: #fff; }
.contact-social-link:hover::after { width: 100%; }
.contact-social-link-handle {
  font-family: 'Inter';
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 300ms;
}
.contact-social-link:hover .contact-social-link-handle { color: rgba(255,255,255,.8); }
.contact-social-link-arrow { transition: transform 300ms; }
.contact-social-link:hover .contact-social-link-arrow { transform: translate(4px,-4px); }
.contact-alumni-section {
  padding-bottom: 80px;
}
.contact-alumni-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 0;
}
.contact-alumni-row .contact-alumni {
  flex: 0 1 420px;
  margin-top: 0;
}
.contact-alumni {
  margin-top: 48px;
  padding: 32px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px dashed var(--shpe-orange);
}
.contact-alumni h4 {
  font-family: 'Anton';
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--shpe-navy);
  text-transform: uppercase;
}
.contact-alumni p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0 0 16px;
}

/* ===== EVENTS PAGE ===== */
.events-hero-section { padding: 100px 0 60px; }
.events-hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.events-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.events-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-100); }
.event-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--ink-100);
  transition: all 400ms var(--ease-out-expo);
  position: relative;
}
.event-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 0;
  background: var(--shpe-navy);
  transition: width 400ms var(--ease-out-expo);
  z-index: -1;
}
.event-row:hover { padding-left: 24px; color: #fff; border-color: var(--shpe-navy); }
.event-row:hover::before { width: 100%; }
.event-row:hover .event-where { color: rgba(255,255,255,.7); }
.event-row:hover .event-m { color: var(--shpe-orange-300); }
.event-row:hover .event-d { color: #fff; }
.event-row:hover .event-title { color: #fff; }
.event-row:hover .event-tag { background: rgba(255,255,255,.12); color: #fff; }
.event-row:hover .event-rsvp { color: var(--shpe-orange-300); }
.event-date { text-align: left; }
.event-m {
  font: 700 12px 'Inter';
  letter-spacing: 0.14em;
  color: var(--shpe-orange);
  text-transform: uppercase;
  transition: color 300ms;
}
.event-d {
  font-family: 'Anton';
  font-size: 52px;
  line-height: 0.9;
  color: var(--shpe-navy);
  letter-spacing: -0.02em;
  transition: color 300ms;
}
.event-title { font: 700 18px 'Inter'; color: var(--ink-900); transition: color 300ms; }
.event-where { font: 400 14px 'Inter'; color: var(--ink-500); margin-top: 4px; transition: color 300ms; }
.event-tag {
  font: 600 11px 'Inter';
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink-100);
  color: var(--ink-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 300ms;
}
.event-rsvp {
  background: transparent;
  border: none;
  color: var(--shpe-navy);
  font: 700 13px 'Inter';
  cursor: pointer;
  padding: 8px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 300ms;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* Calendar embed */
.events-calendar-section { padding: 0 0 80px; }
.events-calendar-label {
  font: 700 11px 'Inter';
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--shpe-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.events-calendar-label::before { content: ''; width: 24px; height: 1px; background: var(--shpe-orange); display: inline-block; }
.events-calendar-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.events-calendar-frame iframe { display: block; border: none; }

/* ===== SOCIAL CHIPS ===== */
.social-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.social-chips a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-100);
  transition: all 250ms var(--ease-out-expo);
}
.social-chips a:hover { transform: translateY(-3px); background: var(--shpe-orange); }
.social-chips a:hover img { filter: brightness(0) invert(1); }
.social-chips a img { width: 18px; height: 18px; transition: filter 200ms; }
.social-chips.on-dark a { background: rgba(255,255,255,.08); }
.social-chips.on-dark a:hover { background: var(--shpe-orange); }

/* ===== FOOTER ===== */
.shpe-footer {
  background: var(--shpe-navy-900);
  color: #fff;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.shpe-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.shpe-footer-brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}
.shpe-footer-mark { height: 34px; width: auto; display: block; flex-shrink: 0; }
.shpe-footer-divider-line {
  color: rgba(255,255,255,.4);
  font-weight: 200;
  font-size: 24px;
  margin: 0 12px;
  line-height: 1;
  flex-shrink: 0;
}
.shpe-footer-wordtext {
  font: 600 15px/1 'Inter', sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.shpe-footer-nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.shpe-footer-link {
  display: inline-block;
  font: 500 14px 'Inter';
  padding: 4px 0;
  color: rgba(255,255,255,.7);
  transition: color 200ms;
  text-decoration: none;
}
.shpe-footer-link:hover { color: var(--shpe-orange); }
.shpe-footer-rule {
  height: 1px;
  background: rgba(255,255,255,.08);
  max-width: 1280px;
  margin: 0 auto;
}
.shpe-footer-legal {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px 28px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  background: var(--shpe-navy);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header-glow {
  position: absolute;
  pointer-events: none;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,101,47,.2) 0%, transparent 70%);
  filter: blur(60px);
  top: -30%; right: -10%;
}
.page-header h1 { color: #fff; }
.page-header .eyebrow { color: var(--shpe-orange-300); margin-bottom: 20px; }
.page-header .eyebrow::before { background: var(--shpe-orange-300); }
.page-header-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin-top: 20px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .eboard-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1000px) {
  .shpe-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .shpe-hero-side { max-width: 400px; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .sponsor-hero-stats { grid-template-columns: repeat(2,1fr); }
  .sponsor-benefits { grid-template-columns: 1fr; }
  .sponsor-benefit-h, .sponsor-benefit-cell { display: none; }
  .sponsor-benefit-cell:first-child { display: block; }
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { border-right: none; }
  .testimonial-row { grid-template-columns: 1fr; }
  .sponsor-grid-3, .sponsor-grid-4 { grid-template-columns: repeat(2,1fr); }
  .eboard-grid { grid-template-columns: repeat(2,1fr); }
  .feature-row, .feature-row.is-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .feature-row.is-reverse .feature-text { order: 1; }
  .feature-row.is-reverse .feature-media { order: 2; }
  .section-head-split { flex-direction: column; align-items: flex-start; }
  .events-hero-top { flex-direction: column; align-items: flex-start; }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-tag, .event-rsvp { display: none; }
  .shpe-nav-links { display: none; flex-direction: column; align-items: stretch; gap: 0; }
  .shpe-nav-links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,31,89,.97);
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .shpe-nav-toggle { display: flex; }
  .shpe-nav { position: relative; }
  .shpe-nav-inner { position: relative; }
  .shpe-nav-cta { margin-left: 0; text-align: center; }
  .contact-hero-title { font-size: clamp(3rem, 14vw, 8rem); }
  .contact-field-row { grid-template-columns: 1fr; }
  .sponsor-cta-card { padding: 48px 32px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .shpe-hero { padding: 60px 0 80px; }
  .shpe-hero-inner { padding: 0 20px; }
  .sponsor-grid-3, .sponsor-grid-4 { grid-template-columns: 1fr; }
  .shpe-footer-inner { flex-direction: column; align-items: flex-start; }
  .shpe-footer-nav { flex-direction: column; gap: 12px; }
  .contact-alumni-row { flex-direction: column; }
}
