/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --red: #8b0000;
  --red-mid: #a01515;
  --red-light: #c8373720;
  --red-glow: #8b000015;
  --cream: #fdfaf6;
  --off-white: #f5f0e8;
  --white: #ffffff;
  --ink: #1a1008;
  --ink-mid: #3d2b1f;
  --ink-light: #7a6558;
  --rule: #e2d8cf;
  --nav-h: 72px;
  --max-w: 1200px;
  --section-gap: 120px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 28px);
}

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

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

ul {
  list-style: none;
}

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.section-gap {
  padding: var(--section-gap) 0;
}

.section-gap-sm {
  padding: 80px 0;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.label::before {
  content: "— ";
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.body-lg {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-mid);
}

.body-md {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}

.body-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-light);
}

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(26, 16, 8, 0.72), rgba(26, 16, 8, 0));
  transition:
    background 0.35s var(--ease-out),
    box-shadow 0.35s;
}

#nav.scrolled {
  background: rgba(253, 250, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 var(--rule),
    0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  gap: 16px;
  min-width: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.nav-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

#nav:not(.scrolled) .nav-logo-text {
  color: white;
}

.nav-logo:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

#nav.scrolled .nav-logo {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(122, 101, 88, 0.14);
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

#nav:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

#nav:not(.scrolled) .nav-links a::after {
  background: white;
}

.nav-links a:hover {
  color: var(--ink);
}

#nav:not(.scrolled) .nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

#nav:not(.scrolled) .nav-cta .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

#nav:not(.scrolled) .nav-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s;
  display: block;
}

#nav:not(.scrolled) .nav-hamburger span {
  background: white;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  padding: 40px 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}

/* =========================================================
   HERO
   ========================================================= */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a0a06 0%,
    #3d1010 35%,
    #6b0d0d 60%,
    #8b0000 80%,
    #4a0808 100%
  );
}

/* Grain overlay */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.4;
}

/* Decorative grid lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Large decorative Ω */
.hero-omega {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(300px, 40vw, 600px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Red accent bar */
.hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 32px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.hero-eyebrow span {
  display: inline-block;
  background: rgba(139, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 32px;
  max-width: 100%;
  word-break: break-word;
}

.hero-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: min(540px, 100%);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: 32px;
  bottom: 80px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: right;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* =========================================================
   PILLARS / MISSION STRIP
   ========================================================= */
#pillars {
  background: var(--red);
  padding: 72px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.pillar-item {
  background: var(--red);
  padding: 48px 40px;
  text-align: center;
  transition: background 0.3s;
}

.pillar-item:hover {
  background: var(--red-mid);
}

.pillar-letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: -16px;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pillar-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* =========================================================
   ABOUT
   ========================================================= */
#about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 48px 40px;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}

.about-card-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 24px;
}

.about-card-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.about-accent-box {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-accent-year {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.about-accent-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

/* =========================================================
   WHAT WE DO / EVENTS
   ========================================================= */
#events {
  background: var(--off-white);
}

.events-header {
  margin-bottom: 64px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
}

.event-card {
  background: white;
  padding: 48px 32px;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
}

.event-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.event-card:hover::after {
  transform: scaleX(1);
}

.event-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.event-icon {
  width: 52px;
  height: 52px;
  background: var(--red-glow);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.event-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
}

.event-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.event-desc {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* =========================================================
   LEADERSHIP
   ========================================================= */
#leadership {
  background: var(--cream);
}

.leadership-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.leadership-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
  min-width: 0;
}

.leadership-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 4px;
}

.leadership-feature-copy {
  background: white;
  border: 1px solid var(--rule);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-feature-copy .label {
  margin-bottom: 12px;
}

.leadership-feature-copy .display-md {
  margin-bottom: 16px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.board-card {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  min-height: 360px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.board-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 100%);
}

.board-content {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.board-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.board-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.board-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.board-major {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.board-linkedin {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
  flex-shrink: 0;
}

.board-linkedin:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.board-linkedin svg {
  width: 16px;
  height: 16px;
}

/* =========================================================
   PHILANTHROPY / THON
   ========================================================= */
#philanthropy {
  background: var(--ink);
}

.philanthropy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 72px;
  align-items: start;
}

.philanthropy-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philanthropy-copy-panel {
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(200, 55, 55, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.philanthropy-copy-panel .label {
  color: rgba(255, 255, 255, 0.5);
}

.philanthropy-copy-panel .label::before {
  color: rgba(255, 255, 255, 0.3);
}

.philanthropy-copy-panel .display-lg {
  color: white;
}

.philanthropy-copy-panel .body-lg {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 24px;
}

.philanthropy-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.philanthropy-stat-card {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.philanthropy-stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.philanthropy-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.thon-logo-section {
  margin: 0;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.thon-logo {
  max-width: 320px;
  height: auto;
}

.thon-families {
  margin-top: 0;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.thon-families-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.thon-family-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.thon-family-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.2s;
}

.thon-family-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.thon-family-photo {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.thon-family-info {
  flex: 1;
}

.thon-family-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.thon-family-age {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.thon-highlight-card {
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.thon-highlight-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.thon-highlight-copy {
  padding: 20px;
}

.thon-highlight-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.thon-highlight-copy p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.philanthropy-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 7, 5, 0.28);
  border-radius: 24px;
}

.philanthropy-pillar {
  border-left: 2px solid rgba(200, 55, 55, 0.8);
  padding-left: 24px;
}

.philanthropy-pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.philanthropy-pillar-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* =========================================================
   COMPANY PLACEMENTS
   ========================================================= */
#companies {
  background: var(--cream);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.company-logo-card {
  background: white;
  border: 2px solid var(--rule);
  border-radius: 4px;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.company-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.company-logo-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(139, 0, 0, 0.12);
  transform: translateY(-4px);
}

.company-logo-card:hover::before {
  opacity: 1;
}

.company-placeholder {
  width: 100%;
  height: auto;
  color: var(--ink-mid);
  fill: currentColor;
}

.company-logo-image {
  width: 100%;
  max-width: 170px;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

.company-logo-image--upmc {
  max-width: 130px;
}

.company-logo-image--kenvue {
  max-width: 150px;
}

/* =========================================================
   PROFESSIONAL DEVELOPMENT
   ========================================================= */
#prodev {
  background: var(--off-white);
}

.prodev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  min-width: 0;
}

.prodev-column {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 55px rgba(26, 16, 8, 0.06);
  min-width: 0;
}

.prodev-column::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), #d16440);
}

.prodev-column:nth-child(2)::before {
  background: linear-gradient(90deg, var(--ink), #2d9bad);
}

.prodev-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--red-glow);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prodev-col-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.prodev-col-subtitle {
  font-size: 14px;
  color: var(--ink-light);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.prodev-feature-line {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.06), rgba(255, 255, 255, 0.92));
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.65;
}

.prodev-column:nth-child(2) .prodev-feature-line {
  background: linear-gradient(135deg, rgba(45, 155, 173, 0.08), rgba(255, 255, 255, 0.94));
}

.prodev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prodev-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--off-white);
  border: 1px solid var(--rule);
  color: var(--ink-mid);
  border-radius: 999px;
  transition: all 0.2s;
}

.prodev-tag:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.prodev-mini-heading {
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.prodev-company-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.speaker-company {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, #fff, #f8f3ee);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(26, 16, 8, 0.05);
  max-width: 100%;
}

.speaker-company--boeing {
  color: #1b3b6f;
}

.speaker-company--bny {
  color: #2d9bad;
}

.speaker-company--pnc {
  color: #f58025;
}

.speaker-company--logo {
  padding: 12px 18px;
  background: white;
}

.speaker-company-image {
  display: block;
  max-width: 112px;
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.speaker-company-image--bny {
  max-width: 128px;
  max-height: 40px;
}

.speaker-company-image--pnc {
  max-width: 92px;
}

.speaker-company-image--upmc {
  max-width: 106px;
  max-height: 34px;
}

.venn-diagram-card {
  grid-column: 1 / -1;
  margin-top: 0;
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, #fff, #fbf6f1);
  padding: 26px;
  border-radius: 24px;
}

.venn-diagram-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
}

.venn-shared-panel {
  padding: 24px 22px;
  border: 1px solid rgba(61, 43, 31, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.venn-panel-title,
.venn-overline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.venn-panel-title {
  margin-bottom: 14px;
}

.venn-list,
.venn-circle-list {
  margin: 0;
  padding-left: 18px;
}

.venn-list li,
.venn-circle-list li {
  margin-bottom: 8px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.5;
}

.venn-diagram-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.venn-overline {
  text-align: center;
}

.venn-diagram {
  position: relative;
  min-height: 300px;
}

.venn-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 38px 28px 28px;
  border: 2px solid rgba(32, 21, 15, 0.2);
}

.venn-circle--business {
  right: 24px;
  top: 34px;
  background: rgba(139, 0, 0, 0.06);
  color: var(--red);
}

.venn-circle--stem {
  left: 24px;
  top: 34px;
  background: rgba(61, 43, 31, 0.06);
  color: var(--ink);
}

.venn-circle-title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.venn-center {
  position: absolute;
  left: 50%;
  top: 144px;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(26, 16, 8, 0.18);
  z-index: 2;
}

.venn-caption {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-light);
}

.prodev-spotlight-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.prodev-spotlight-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--off-white);
  border: 1px solid var(--rule);
}

.prodev-spotlight-title {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.prodev-spotlight-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-light);
}

.prodev-shared {
  margin-top: 48px;
  padding: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.prodev-shared-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  flex: 1;
  min-width: 200px;
}

.prodev-shared-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 2;
}

.prodev-shared-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

/* =========================================================
   RECRUITMENT
   ========================================================= */
#recruitment {
  background:
    radial-gradient(circle at top right, rgba(139, 0, 0, 0.08), transparent 28%),
    var(--cream);
}

.recruitment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: var(--rule);
  margin-top: 4px;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-body {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.65;
}

.timeline-date {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--red);
  background: var(--red-light);
  padding: 3px 10px;
  border-radius: 2px;
}

.requirements-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.requirements-stack--updates {
  margin-top: 0;
}

.req-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.25s;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(26, 16, 8, 0.05);
}

.req-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.08);
}

.req-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--rule);
  line-height: 1;
  flex-shrink: 0;
}

.req-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.req-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
}

.coming-soon-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #7e100f 0%, #a01f19 48%, #32110d 100%);
  color: white;
  box-shadow: 0 30px 80px rgba(91, 11, 11, 0.26);
}

.coming-soon-card::after {
  content: "Coming Soon";
  position: absolute;
  right: -18px;
  bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.coming-soon-title {
  max-width: 540px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.coming-soon-copy {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.coming-soon-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.coming-soon-point {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-point-title {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.coming-soon-point p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

.recruitment-note {
  margin-top: 36px;
  padding: 28px 30px;
  background: var(--red-glow);
  border: 1px solid var(--red-light);
  border-radius: 24px;
}

.recruitment-note-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* =========================================================
   BROTHERHOOD
   ========================================================= */
#brotherhood {
  background: var(--cream);
}

.brotherhood-container {
  position: relative;
}

.brotherhood-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 32px;
  background: white;
  border: 2px solid var(--rule);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  margin-bottom: 0;
}

.brotherhood-toggle:hover {
  background: var(--off-white);
  border-color: var(--red);
  color: var(--red);
}

.brotherhood-toggle svg {
  transition: transform 0.3s var(--ease-out);
}

.brotherhood-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* =========================================================
   BROTHERHOOD TEAM
   ========================================================= */
#brotherhoodTeam {
  background: var(--cream);
}

.brotherhood-team-container {
  position: relative;
}

.brotherhood-team-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  background: transparent;
  border: 1.5px solid var(--red);
  padding: 12px 24px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  margin-bottom: 32px;
}

.brotherhood-team-toggle:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

.brotherhood-team-toggle svg {
  transition: transform 0.3s var(--ease-out);
}

.brotherhood-team-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.brotherhood-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s var(--ease-out);
}

.brotherhood-team-grid[data-expanded="true"] {
  max-height: 1000px;
  opacity: 1;
}

.team-card {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  min-height: 360px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   BROTHERHOOD GALLERY
   ========================================================= */
#brotherhood {
  background: var(--off-white);
}

.brotherhood-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.gallery-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  min-width: 0;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.gallery-caption-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.4s var(--ease-spring);
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--red);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================================
   CONTACT
   ========================================================= */
#contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  min-width: 0;
}

.contact-form {
  background: white;
  padding: 48px;
  border: 1px solid var(--rule);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(26, 16, 8, 0.06);
  min-width: 0;
}

.embedded-form-wrap {
  border: 1px solid var(--rule);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbf6f1);
}

.embedded-form-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  background: white;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 13px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: white;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info {
  padding-top: 8px;
}

.contact-info .display-md {
  margin-bottom: 24px;
}

.contact-info .body-md {
  margin-bottom: 48px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--rule);
  background: white;
  transition: all 0.2s;
  border-radius: 20px;
}

.contact-card:hover {
  border-color: var(--red);
}

.contact-card-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.contact-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-card-detail {
  font-size: 13.5px;
  color: var(--ink-light);
}

.contact-card-detail a {
  color: var(--ink-mid);
  transition: color 0.2s;
}

.contact-card-detail a:hover {
  color: var(--red);
}

/* =========================================================
   FOOTER
   ========================================================= */
#footer {
  background: var(--ink);
  padding: 72px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(139, 0, 0, 0.6);
}

/* =========================================================
   ANIMATIONS / SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* stagger */
[data-reveal][data-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal][data-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal][data-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal][data-delay="5"] {
  transition-delay: 0.5s;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid,
  .philanthropy-inner,
  .recruitment-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .prodev-grid {
    grid-template-columns: 1fr;
  }

  .leadership-feature {
    grid-template-columns: 1fr;
  }

  .philanthropy-inner {
    grid-template-columns: 1fr;
  }

  .philanthropy-stat-row,
  .coming-soon-points {
    grid-template-columns: 1fr;
  }

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

  .venn-diagram-layout {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .embedded-form-frame {
    min-height: 680px;
  }

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

  .hero-stats {
    display: none;
  }

  .about-accent-box {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .leadership-feature-copy,
  .prodev-column,
  .prodev-shared,
  .coming-soon-card,
  .philanthropy-copy-panel {
    padding: 28px 24px;
  }

  .nav-logo {
    padding: 6px 10px 6px 8px;
  }

  .nav-logo-img {
    width: 42px;
    height: 42px;
  }

  .nav-logo-text {
    font-size: 16px;
  }

  .hero-omega {
    right: -10%;
    font-size: clamp(180px, 44vw, 300px);
    opacity: 0.8;
  }

  .hero-lines {
    background-size: 54px 54px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 320px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-tagline {
    max-width: 28rem;
    font-size: 17px;
  }

  .thon-family-card {
    grid-template-columns: 1fr;
  }

  .thon-family-photo {
    width: 100%;
    height: 220px;
  }

  .philanthropy-stat-card,
  .prodev-spotlight-item,
  .req-card,
  .recruitment-note {
    border-radius: 20px;
  }

  .gallery-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-item--feature {
    grid-column: span 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: clamp(44px, 10vw, 80px);
  }

  .hero-content {
    padding: 24px 32px 72px;
  }

  .hero-eyebrow {
    gap: 8px 10px;
    letter-spacing: 0.16em;
  }

  .hero-eyebrow span {
    padding: 5px 12px;
  }

  .venn-circle {
    width: 180px;
    height: 180px;
    padding: 28px 22px 20px;
  }

  .venn-circle--business {
    right: 8px;
  }

  .venn-circle--stem {
    left: 8px;
  }

  .venn-circle-title {
    font-size: 16px;
  }

  .venn-circle-list li {
    font-size: 13px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .embedded-form-frame {
    min-height: 620px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-grid,
  .prodev-grid,
  .leadership-feature,
  .philanthropy-inner,
  .recruitment-layout {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  #nav {
    height: 64px;
  }

  .nav-inner {
    padding: 0 16px;
    gap: 10px;
  }

  .companies-grid,
  .gallery-flow {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item--feature {
    grid-column: auto;
    grid-row: auto;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 20px 20px 72px;
  }

  .hero-omega {
    display: none;
  }

  .hero-lines {
    background-size: 40px 40px;
  }

  .mobile-menu {
    padding: 28px 20px 40px;
  }

  .mobile-menu a {
    font-size: 24px;
  }

  .hero-eyebrow {
    gap: 8px;
  }

  .hero-eyebrow span {
    width: 100%;
  }

  .coming-soon-title {
    font-size: 32px;
  }

  .coming-soon-card::after {
    right: -6px;
    bottom: 18px;
    font-size: 64px;
  }

  .hero-title {
    font-size: clamp(40px, 17vw, 64px);
    line-height: 0.96;
  }

  .hero-tagline {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
  }

  .hero-actions {
    max-width: none;
    gap: 12px;
  }

  .hero-scroll {
    display: none;
  }

  .nav-logo {
    gap: 10px;
    padding: 5px 9px 5px 7px;
  }

  .nav-logo-img {
    width: 38px;
    height: 38px;
    padding: 5px;
  }

  .nav-logo-text {
    font-size: 14px;
  }

  .event-card,
  .company-logo-card,
  .prodev-column,
  .venn-diagram-card,
  .philanthropy-copy-panel,
  .thon-logo-section,
  .thon-families,
  .thon-highlight-card,
  .coming-soon-card,
  .contact-form,
  .contact-card,
  .req-card,
  .recruitment-note {
    border-radius: 18px;
  }

  .embedded-form-frame {
    min-height: 500px;
  }

  .prodev-company-strip {
    gap: 10px;
  }

  .speaker-company {
    width: 100%;
    justify-content: center;
  }

  .speaker-company--logo {
    padding: 12px 16px;
  }

  .speaker-company-image--bny {
    max-width: 110px;
  }

  .speaker-company-image--pnc {
    max-width: 82px;
  }

  .speaker-company-image--upmc {
    max-width: 96px;
  }

  .philanthropy-stat-row {
    gap: 12px;
  }

  .philanthropy-copy-panel,
  .prodev-column,
  .venn-diagram-card,
  .contact-form,
  .coming-soon-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }

  .venn-diagram {
    min-height: 380px;
  }

  .venn-circle {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 24px 22px;
    border-radius: 28px;
    margin-bottom: 14px;
  }

  .venn-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 14px;
    width: 78px;
    height: 78px;
  }

  .venn-diagram {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .nav-logo-text {
    display: none;
  }

  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .embedded-form-frame {
    min-height: 460px;
  }
}
