@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f7f3ed;
  --ink: #211b19;
  --ink-soft: #554b47;
  --red: #d00000;
  --red-dark: #9f0000;
  --line: rgba(33, 27, 25, 0.15);
  --white-line: rgba(255, 255, 255, 0.34);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
html { background: #17110f; }
body {
  margin: 0;
  font-family: "Glacial Indifference", "Avenir Next", Avenir, Arial, sans-serif;
  background: #17110f;
  color: white;
}
body.modal-open { overflow: hidden; }
button, a { font: inherit; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(1.35rem, 3vw, 2.75rem);
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -2;
  background-image: url("assets/unl-campus.jpg");
  background-position: center 50%;
  background-size: cover;
  filter: saturate(0.76) contrast(1.02);
  transform: scale(1.015);
}

.hero__wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(27, 11, 8, 0.89) 0%, rgba(27, 11, 8, 0.68) 44%, rgba(27, 11, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(27, 11, 8, 0.28) 0%, rgba(27, 11, 8, 0.08) 50%, rgba(27, 11, 8, 0.74) 100%);
}

.hero__content {
  align-self: center;
  width: 100%;
  max-width: 96rem;
  padding: clamp(3rem, 9vh, 8rem) 0;
}

.hero__eyebrow {
  margin: 0 0 1.2rem;
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.21em;
}

.hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(4rem, 10.4vw, 10.7rem);
  line-height: 0.8;
  letter-spacing: -0.057em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero__date {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(255, 255, 255, 0.96);
}
.hero__subhead {
  max-width: 34rem;
  margin: clamp(1.5rem, 3vw, 2.35rem) 0 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}
.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--white-line);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  opacity: 0.78;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--cream);
}
.modal-shell[hidden] { display: none; }

.support-screen {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(circle at 92% 8%, rgba(208, 0, 0, 0.055), transparent 25rem),
    radial-gradient(circle at 5% 92%, rgba(208, 0, 0, 0.03), transparent 22rem),
    var(--cream);
  color: var(--ink);
  animation: screen-in 360ms cubic-bezier(.2,.82,.2,1) both;
}
.support-screen:focus { outline: none; }

.support-screen__inner {
  width: min(100%, 76rem);
  min-height: 100%;
  margin: 0 auto;
  padding:
    max(1.4rem, env(safe-area-inset-top))
    max(1.4rem, env(safe-area-inset-right))
    max(1.4rem, env(safe-area-inset-bottom))
    max(1.4rem, env(safe-area-inset-left));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(2rem, 5vh, 4rem);
}

.support-screen__header {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding-right: 4rem;
}
.support-screen__mark {
  width: 2.65rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--red);
}
.support-screen__label {
  margin: 0;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.modal-close {
  position: fixed;
  top: max(1.15rem, env(safe-area-inset-top));
  right: max(1.15rem, env(safe-area-inset-right));
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(33, 27, 25, 0.16);
  border-radius: 999px;
  background: rgba(247, 243, 237, 0.9);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}
.modal-close span {
  font-size: 1.95rem;
  line-height: 1;
  transform: translateY(-0.06em);
}
.modal-close:hover:not(:disabled) { transform: scale(1.04); background: white; }
.modal-close:disabled { opacity: 0.24; cursor: wait; }
.modal-close:focus-visible,
.support-action:focus-visible,
.support-text-link:focus-visible {
  outline: 3px solid rgba(208, 0, 0, 0.28);
  outline-offset: 3px;
}

.support-screen__body {
  align-self: center;
  width: min(100%, 48rem);
  padding: 1rem 0;
}
.support-screen h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.1rem, 6.2vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 700;
}
.support-screen__copy {
  max-width: 42rem;
  margin-top: clamp(1.5rem, 3vh, 2rem);
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.52;
}
.support-screen__copy p { margin: 0 0 0.85rem; }
.support-screen__copy p:last-child { margin-bottom: 0; }
.support-screen__copy strong { color: var(--ink); font-weight: 700; }

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin-top: 1.55rem;
}
.support-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.8rem 1.12rem;
  border: 1px solid rgba(33, 27, 25, 0.19);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.support-action--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.support-action:hover { transform: translateY(-2px); background: white; }
.support-action--primary:hover { background: #3b302d; color: white; }
.support-screen__time {
  margin: 1.1rem 0 0;
  color: rgba(33, 27, 25, 0.46);
  font-size: 0.7rem;
  line-height: 1.45;
  letter-spacing: 0.035em;
}
.support-screen__footer {
  max-width: 52rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
}
.support-screen__emergency {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
  font-weight: 700;
}
.support-screen__disclaimer {
  margin: 0.52rem 0 0;
  color: rgba(33, 27, 25, 0.55);
  font-size: 0.62rem;
  line-height: 1.42;
}
.noscript-note {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  padding: 1rem;
  border-radius: 0.75rem;
  background: white;
  color: black;
  font-size: 0.9rem;
}

@keyframes screen-in {
  from { opacity: 0; transform: scale(1.008); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 780px) {
  .hero { padding: 1.2rem; }
  .hero__image { background-position: 56% center; }
  .hero__wash {
    background:
      linear-gradient(180deg, rgba(27, 11, 8, 0.47) 0%, rgba(27, 11, 8, 0.62) 46%, rgba(27, 11, 8, 0.91) 100%),
      linear-gradient(90deg, rgba(27, 11, 8, 0.56), rgba(27, 11, 8, 0.26));
  }
  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.45rem, 17vw, 6.6rem);
    line-height: 0.83;
  }
  .hero__subhead { max-width: 23rem; }
  .page-footer { align-items: flex-end; font-size: 0.61rem; }
  .support-screen__inner {
    gap: 2.2rem;
    padding:
      max(1.2rem, env(safe-area-inset-top))
      max(1.2rem, env(safe-area-inset-right))
      max(1.3rem, env(safe-area-inset-bottom))
      max(1.2rem, env(safe-area-inset-left));
  }
  .support-screen__body { align-self: start; padding-top: 1.2rem; }
  .support-screen h2 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 13.2vw, 5.2rem);
  }
  .support-screen__copy { font-size: clamp(1rem, 4.2vw, 1.14rem); }
  .support-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .support-action:first-child:nth-last-child(3) { grid-column: 1 / -1; }
  .support-action { width: 100%; }
  .support-screen__footer { align-self: end; }
}

@media (max-width: 390px) {
  .support-screen h2 { font-size: clamp(2.65rem, 13.2vw, 3.75rem); }
  .support-screen__copy { font-size: 0.96rem; line-height: 1.47; }
  .support-action { min-height: 3rem; padding: 0.72rem 0.7rem; font-size: 0.76rem; }
  .support-screen__time,
  .support-screen__emergency { font-size: 0.68rem; }
  .support-screen__disclaimer { font-size: 0.57rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Launch page navigation ---------- */
.launch-nav {
  position: absolute;
  top: clamp(1.35rem, 3vw, 2.75rem);
  right: clamp(1.35rem, 3vw, 2.75rem);
  z-index: 3;
}
.launch-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(20,14,12,.16);
  color: white;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 180ms ease, transform 180ms ease;
}
.launch-nav a:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.launch-nav a:focus-visible { outline: 3px solid rgba(255,255,255,.55); outline-offset: 3px; }

/* ---------- Chapter Leadership ---------- */
.leadership-page {
  background: var(--cream);
  color: var(--ink);
}
.team-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 88% 3%, rgba(208,0,0,.06), transparent 29rem),
    var(--cream);
  overflow: hidden;
}
.team-topbar {
  width: min(100% - 2.5rem, 92rem);
  margin: 0 auto;
  min-height: 5.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.team-wordmark,
.team-home-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
.team-wordmark { font-size: .84rem; letter-spacing: .1em; }
.team-wordmark strong { color: var(--red); }
.team-home-link { font-size: .68rem; letter-spacing: .11em; opacity: .7; }
.team-home-link:hover { opacity: 1; }
.team-intro {
  width: min(100% - 2.5rem, 92rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 8rem) 0 clamp(2.5rem, 5vw, 5rem);
}
.team-intro__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(3.3rem, 8vw, 8rem);
  color: rgba(33,27,25,.56);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.team-kicker {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.team-intro h1 {
  margin: 0;
  font-size: clamp(4.5rem, 12.6vw, 12rem);
  line-height: .72;
  letter-spacing: -.066em;
  font-weight: 700;
  text-transform: uppercase;
}
.team-intro__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.8rem);
}
.team-intro__bottom > p:first-child {
  max-width: 27rem;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.3;
}
.team-count {
  margin: 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  white-space: nowrap;
}
.team-count span { color: var(--red); padding: 0 .4rem; }
.team-photo-section {
  width: min(100% - 2.5rem, 92rem);
  margin: 0 auto clamp(5rem, 9vw, 9rem);
}
.team-photo-placeholder {
  position: relative;
  min-height: clamp(21rem, 48vw, 43rem);
  overflow: hidden;
  border-radius: .15rem;
  background:
    linear-gradient(135deg, rgba(208,0,0,.93), rgba(122,0,0,.95)),
    var(--red);
  color: white;
}
.team-photo-placeholder::before,
.team-photo-placeholder::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.16);
}
.team-photo-placeholder::before { width: 1px; height: 160%; left: 50%; top: -30%; transform: rotate(58deg); }
.team-photo-placeholder::after { height: 1px; width: 160%; top: 50%; left: -30%; transform: rotate(17deg); }
.team-photo-placeholder__cross::before,
.team-photo-placeholder__cross::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(255,255,255,.42);
  transform: translate(-50%,-50%);
}
.team-photo-placeholder__cross::before { width: 3.2rem; height: 1px; }
.team-photo-placeholder__cross::after { width: 1px; height: 3.2rem; }
.team-photo-placeholder__copy {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.8rem);
  bottom: clamp(1.4rem, 3vw, 2.8rem);
  z-index: 1;
  display: grid;
  gap: .35rem;
}
.team-photo-placeholder__copy span { font-size: clamp(1.15rem, 2vw, 1.65rem); font-weight: 700; letter-spacing: -.02em; }
.team-photo-placeholder__copy small { font-size: .62rem; font-weight: 700; letter-spacing: .16em; opacity: .72; }
.leaders {
  width: min(100% - 2.5rem, 92rem);
  margin: 0 auto;
}
.leadership-top-row {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 2.05fr);
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  align-items: start;
}
.leadership-top-row > .role-section {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.leadership-top-row .leader-grid--top-single {
  grid-template-columns: minmax(0, 1fr);
}
.leadership-top-row .leader-grid--top-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.leadership-top-row .leader-card {
  min-width: 0;
}
.role-section { padding: 0 0 clamp(5rem, 9vw, 9rem); }
.role-heading {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.25rem);
}
.role-number {
  color: var(--red);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.role-heading h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.role-rule { height: 1px; background: var(--line); }
.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.8rem, 1.7vw, 1.5rem);
}
.leader-grid--feature { grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr)); }
.leader-card--feature { grid-column: span 2; }
.leader-card { min-width: 0; }
.leader-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(33,27,25,.15);
  background:
    linear-gradient(145deg, rgba(33,27,25,.035), rgba(33,27,25,.1)),
    #e9e3dc;
}
.leader-photo::before,
.leader-photo::after {
  content: "";
  position: absolute;
  background: rgba(33,27,25,.13);
}
.leader-photo::before { width: 1px; height: 140%; left: 50%; top: -20%; transform: rotate(38deg); }
.leader-photo::after { height: 1px; width: 140%; left: -20%; top: 50%; transform: rotate(-18deg); }
.leader-photo--feature { aspect-ratio: 16 / 11; }
.leader-initials {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  color: rgba(33,27,25,.09);
  font-size: clamp(4.2rem, 7vw, 7rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.07em;
}
.photo-label {
  position: absolute;
  left: .85rem;
  bottom: .75rem;
  z-index: 1;
  color: rgba(33,27,25,.52);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .15em;
}
.leader-info { padding-top: .85rem; }
.leader-info h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.leader-info p {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  margin: .48rem 0 0;
  color: rgba(33,27,25,.58);
  font-size: .66rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.leader-info p span { white-space: nowrap; }
.team-footer {
  width: min(100% - 2.5rem, 92rem);
  margin: clamp(1rem, 3vw, 3rem) auto 0;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.team-footer p { margin: 0; }
.team-footer a { color: var(--ink); text-decoration: none; }
.team-footer a:hover { color: var(--red); }

@media (max-width: 900px) {
  .leadership-top-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .leadership-top-row > .role-section {
    padding-bottom: 5.2rem;
  }
  .leadership-top-row .leader-grid--top-single,
  .leadership-top-row .leader-grid--top-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .leader-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .leader-grid--feature { grid-template-columns: 1fr 1fr; }
  .leader-card--feature { grid-column: span 2; }
}
@media (max-width: 640px) {
  .leadership-top-row .leader-grid--top-single {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .launch-nav { top: 1.2rem; right: 1.2rem; }
  .launch-nav a { min-height: 2.45rem; padding: .6rem .78rem; font-size: .61rem; }
  .team-topbar,
  .team-intro,
  .team-photo-section,
  .leaders,
  .team-footer { width: min(100% - 2rem, 92rem); }
  .team-topbar { min-height: 4.5rem; }
  .team-intro { padding-top: 3.2rem; }
  .team-intro__meta { margin-bottom: 4rem; font-size: .56rem; }
  .team-intro h1 { font-size: clamp(4rem, 19vw, 6.8rem); line-height: .76; }
  .team-intro__bottom { display: grid; gap: 1.4rem; }
  .team-intro__bottom > p:first-child { font-size: 1.14rem; }
  .team-photo-section { margin-bottom: 5.5rem; }
  .team-photo-placeholder { min-height: 20rem; }
  .role-section { padding-bottom: 5.2rem; }
  .role-heading { grid-template-columns: auto auto 1fr; gap: .7rem; }
  .role-heading h2 { font-size: 1.05rem; }
  .leader-grid,
  .leader-grid--feature { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
  .leader-card--feature { grid-column: span 2; }
  .leader-info h3 { font-size: 1rem; }
  .leader-info p { display: grid; gap: .18rem; font-size: .56rem; }
  .leader-photo--feature { aspect-ratio: 4 / 3; }
  .team-footer { grid-template-columns: 1fr auto; }
  .team-footer p:nth-child(2) { display: none; }
}

/* ---------- V2 refinements: logo + cleaner leadership intro ---------- */
.launch-logo {
  position: absolute;
  top: clamp(1.35rem, 3vw, 2.75rem);
  left: clamp(1.35rem, 3vw, 2.75rem);
  z-index: 3;
  display: block;
  width: clamp(3rem, 4.5vw, 4rem);
  aspect-ratio: 1;
  border-radius: .18rem;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,.16);
  transition: transform 180ms ease, opacity 180ms ease;
}
.launch-logo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.launch-logo:hover { transform: translateY(-2px) rotate(-1deg); }
.launch-logo:focus-visible { outline: 3px solid rgba(255,255,255,.65); outline-offset: 4px; }

.team-wordmark {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}
.team-wordmark img {
  width: 2.3rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .08rem;
  box-shadow: 0 5px 14px rgba(208,0,0,.13);
}
.team-wordmark span { display: inline-block; }

.team-intro {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 10vw, 9.5rem) 0 clamp(3.6rem, 7vw, 6.5rem);
}
.team-intro__watermark {
  position: absolute;
  z-index: -1;
  width: clamp(16rem, 31vw, 34rem);
  right: clamp(-8rem, -4vw, -2rem);
  top: clamp(2.2rem, 5vw, 5.5rem);
  opacity: .055;
  transform: rotate(7deg);
  pointer-events: none;
  user-select: none;
}
.team-intro h1 {
  display: grid;
  width: fit-content;
  gap: clamp(.34rem, 1.35vw, 1.2rem);
  font-size: clamp(4.8rem, 12.1vw, 11.6rem);
  line-height: .77;
  letter-spacing: -.048em;
}
.team-intro h1 span { display: block; }
.team-intro__dek {
  max-width: 30rem;
  margin: clamp(2.4rem, 4vw, 4rem) 0 0;
  color: rgba(33,27,25,.65);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.38;
}

/* Turn the team-photo placeholder into a branded canvas while still clearly a placeholder. */
.team-photo-placeholder {
  background: linear-gradient(135deg, #dc0000 0%, #aa0000 100%);
}
.team-photo-placeholder::before,
.team-photo-placeholder::after { opacity: .5; }
.team-photo-placeholder .team-photo-placeholder__cross::after { opacity: .7; }
.team-photo-placeholder__copy::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% + 1.25rem);
  width: clamp(4.4rem, 8vw, 7rem);
  aspect-ratio: 1;
  background: url("assets/dear-you-unl-logo.png") center / cover no-repeat;
  opacity: .22;
  border: 1px solid rgba(255,255,255,.18);
}

/* Leadership cards: name + role only; no class-year metadata. */
.leader-info p {
  display: block;
  margin-top: .5rem;
  color: rgba(33,27,25,.55);
}

@media (max-width: 640px) {
  .launch-logo {
    top: 1.2rem;
    left: 1.2rem;
    width: 2.7rem;
  }
  .team-wordmark span { display: none; }
  .team-wordmark img { width: 2.45rem; }
  .team-intro { padding-top: 4.8rem; }
  .team-intro__watermark {
    width: 18rem;
    right: -8.5rem;
    top: 3.25rem;
    opacity: .045;
  }
  .team-intro h1 {
    gap: .48rem;
    font-size: clamp(4rem, 18.2vw, 6.45rem);
    line-height: .8;
    letter-spacing: -.045em;
  }
  .team-intro__dek {
    margin-top: 2rem;
    max-width: 20rem;
    font-size: 1rem;
  }
}


/* ---------- V3 refinements: team photo behind heading + footer logo ---------- */
.team-wordmark {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}
.team-wordmark img { display: none; }

.team-intro--photo {
  position: relative;
  min-height: clamp(27rem, 52vw, 42rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: .2rem;
  padding: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.team-intro__photo {
  position: absolute;
  inset: 0;
}
.team-photo-placeholder--hero {
  min-height: 100%;
  height: 100%;
  border-radius: 0;
}
.team-photo-placeholder--hero::after,
.team-photo-placeholder--hero::before { opacity: .24; }
.team-photo-placeholder--hero .team-photo-placeholder__cross::before,
.team-photo-placeholder--hero .team-photo-placeholder__cross::after { opacity: .4; }
.team-intro--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.28) 36%, rgba(0,0,0,.62) 100%);
  pointer-events: none;
}
.team-intro__content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 42rem;
}
.team-intro--photo h1 {
  color: white;
  text-shadow: 0 10px 35px rgba(0,0,0,.22);
}
.team-intro--photo .team-intro__dek {
  color: rgba(255,255,255,.86);
  max-width: 28rem;
}
.team-photo-placeholder__copy--hero {
  left: auto;
  right: clamp(1.4rem, 3vw, 2.8rem);
  bottom: clamp(1.4rem, 3vw, 2.8rem);
  text-align: right;
}
.team-photo-placeholder__copy--hero::before {
  display: none;
}
.team-footer {
  grid-template-columns: 1fr 1fr auto;
  grid-template-areas: "brand tagline back" "logo logo logo";
}
.team-footer p:first-child { grid-area: brand; }
.team-footer p:nth-child(2) { grid-area: tagline; }
.team-footer a { grid-area: back; }
.team-footer__logo {
  grid-area: logo;
  justify-self: center;
  width: clamp(4rem, 8vw, 5.4rem);
  aspect-ratio: 1;
  object-fit: cover;
  margin-top: .8rem;
  border-radius: .12rem;
  box-shadow: 0 8px 24px rgba(208,0,0,.14);
}

@media (max-width: 640px) {
  .team-intro--photo {
    min-height: 23rem;
    padding: 1.5rem;
    margin-bottom: 4.5rem;
  }
  .team-intro__content { max-width: 18rem; }
  .team-photo-placeholder__copy--hero {
    right: 1rem;
    bottom: 1rem;
  }
  .team-footer {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand back" "logo logo";
    row-gap: .9rem;
  }
  .team-footer p:nth-child(2) { display: none; }
  .team-footer__logo { width: 4.35rem; margin-top: .2rem; }
}
