/* ============================================================
   Belmont ETP — Redesign
   Design language: storefront signage meets register receipts.
   Grounded in the fact that Belmont ETP runs two real campus
   shops (House Of, Bruin Bodega) alongside its mentor program.
   ============================================================ */

:root {
  --navy: #1D4289;
  --navy-ink: #14306a;
  --red: #862633;
  --red-ink: #6a1e28;
  --blue: #2874AF;
  --sky: #6AB3E7;
  --paper: #F5F5F5;
  --paper-2: #ECEAE4;
  --ink: #3D3D3D;
  --white: #FFFFFF;

  --display: "Big Shoulders Display", sans-serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --edge: 3px solid var(--ink);
  --container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ---------- Skip link / focus ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  font-family: var(--mono);
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--edge);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}
.brand img { height: 40px; width: auto; }
.brand-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand-text span {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  text-transform: none;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.75;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav a {
  text-decoration: none;
  color: var(--white);
  opacity: 0.85;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { opacity: 1; border-bottom-color: var(--sky); }
.header-cta {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover { background: var(--white); color: var(--red); }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    text-transform: uppercase;
  }
}

/* ============================================================
   AWNING STRIPE — signature divider
   ============================================================ */
.awning {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--navy) 0 28px,
    var(--red) 28px 56px,
    var(--blue) 56px 84px,
    var(--sky) 84px 112px
  );
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--paper);
  padding: 52px 0 44px;
  border-bottom: var(--edge);
}
.hero .wrap { max-width: 900px; }

/* Two-column hero: headline and CTAs on the left, next-event card on the right.
   Overrides the 900px cap above, which only suits the single-column layout. */
.hero .wrap.hero-grid {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}
.hero-copy { max-width: 760px; }
.hero-event .receipt { border: var(--edge); }
/* The torn bottom edge cuts its teeth in the colour of the backdrop behind the
   card. Elsewhere that backdrop is --paper-2; in the hero it is --paper. */
.hero-event .receipt::after {
  background-image:
    linear-gradient(-45deg, var(--paper) 9px, transparent 0),
    linear-gradient(45deg, var(--paper) 9px, transparent 0);
}
/* Stack before the headline and card start fighting for width. */
@media (max-width: 880px) {
  .hero .wrap.hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: none; }
}

.hero-kicker {
  color: var(--red);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  color: var(--navy);
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-stats {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-stat-chip {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-stat-chip strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  color: var(--red);
  letter-spacing: 0;
}
.hero-mission {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  max-width: 52ch;
  margin-top: 22px;
  text-transform: none;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-solid { background: var(--navy); color: var(--white); }
.btn-solid:hover { background: var(--navy-ink); }
.btn-outline { background: transparent; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   RECEIPTS — the signature element
   ============================================================ */
.receipts {
  padding: 0;
  background: var(--paper-2);
}
.receipt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: var(--edge);
  padding-bottom: 16px;
  background: var(--paper-2);
}
.receipt-row > * + * { border-left: var(--edge); }

.receipt {
  background: var(--white);
  padding: 40px 44px 52px;
  position: relative;
}
.receipt-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 22px;
}
.receipt.is-red .receipt-label { background: var(--red); }
.receipt h3 {
  font-size: 30px;
  color: var(--ink);
  text-transform: none;
  line-height: 1.08;
  margin-bottom: 6px;
}
.receipt .receipt-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.receipt-lines {
  font-family: var(--mono);
  font-size: 14px;
  border-top: 1px dashed #b9b6ab;
  padding-top: 16px;
}
.receipt-lines dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  margin: 0;
}
.receipt-lines dt { color: #8a8578; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; }
.receipt-lines dd { margin: 0; font-weight: 700; }
.receipt-cta {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}
.receipt.is-red .receipt-cta { color: var(--red); border-color: var(--red); }

/* torn bottom edge — the card's white eats into the paper-2 backdrop in a
   zigzag; two hard-stop diagonal gradients tiled together form the teeth */
.receipt {
  padding-bottom: 56px;
}
.receipt::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18px;
  background-image:
    linear-gradient(-45deg, var(--paper-2) 9px, transparent 0),
    linear-gradient(45deg, var(--paper-2) 9px, transparent 0);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 18px 18px;
}

/* ============================================================
   SECTION HEADERS (signage style)
   ============================================================ */
.section {
  padding: 84px 0;
  border-bottom: var(--edge);
}
.section.is-paper { background: var(--paper); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head .eyebrow { color: var(--red); margin-bottom: 12px; display: block; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--navy);
}
.section-lede {
  font-family: var(--body);
  text-transform: none;
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  max-width: 52ch;
  line-height: 1.6;
}

/* ---------- Pipeline banner ---------- */
.pipeline {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  border-bottom: var(--edge);
}
.pipeline .wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.pipeline h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  max-width: 9ch;
}
.pipeline p {
  font-family: var(--body);
  text-transform: none;
  font-weight: 400;
  font-size: 18px;
  max-width: 52ch;
  color: #dbe4f4;
  margin: 0;
}

/* ---------- Stores ---------- */
.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--edge);
}
.store-card { background: var(--white); padding: 48px; position: relative; }
.store-card + .store-card { border-left: var(--edge); }
.store-card.house-of { border-top: 8px solid var(--red); }
.store-card.bodega { border-top: 8px solid var(--blue); }
.store-logo.bodega-mark {
  max-height: 72px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
}
.store-card h3 { font-size: 32px; margin-bottom: 16px; color: var(--ink); }
.store-card p { font-family: var(--body); text-transform: none; font-weight: 400; font-size: 16px; color: #555; margin: 0 0 24px; }
.store-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.store-card.bodega .store-tag { background: var(--blue); }
.store-addr {
  font-family: var(--mono);
  font-size: 13px;
  color: #8a8578;
  border-top: 1px dashed #d8d5cb;
  padding-top: 16px;
  margin-top: 8px;
}

/* ---------- EIR grid ---------- */
.eir-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.eir-card {
  border: 2px solid var(--ink);
  background: var(--white);
}
.eir-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--paper-2); border-bottom: 2px solid var(--ink); }
.eir-photo img { width: 100%; height: 100%; object-fit: cover; }
.eir-photo.is-mono {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 44px;
  color: var(--white);
  background: var(--navy);
}
.eir-body { padding: 18px 16px 20px; }
.eir-body h3 { font-size: 19px; text-transform: none; line-height: 1.12; margin-bottom: 6px; color: var(--ink); }
.eir-role { font-family: var(--mono); font-size: 11.5px; color: var(--red); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.eir-major { font-family: var(--mono); font-size: 11.5px; color: #8a8578; margin-bottom: 14px; }
.eir-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
}

/* ---------- Directory ---------- */
.dir-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dir-card { border: 2px solid var(--ink); background: var(--white); display: flex; flex-direction: column; }
.dir-photo { aspect-ratio: 4/3; overflow: hidden; border-bottom: 2px solid var(--ink); }
.dir-photo img { width: 100%; height: 100%; object-fit: cover; }
.dir-photo.is-mono {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 40px; color: var(--white);
}
.dir-body { padding: 18px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.dir-body h3 { font-size: 20px; text-transform: none; color: var(--ink); margin-bottom: 4px; }
.dir-founder { font-family: var(--mono); font-size: 11.5px; color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.dir-body p { font-family: var(--body); text-transform: none; font-weight: 400; font-size: 14.5px; color: #555; margin: 0; flex: 1; }

/* ---------- Alumni ---------- */
.alumni { background: var(--navy); color: var(--white); }
.alumni .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.alumni-stat { font-family: var(--display); font-size: clamp(72px, 10vw, 140px); line-height: 0.85; color: var(--white); }
.alumni-stat .unit { font-size: 0.32em; display: block; color: var(--sky); margin-top: 8px; }
.alumni-copy p { font-family: var(--body); text-transform: none; font-weight: 400; font-size: 18px; color: #dbe4f4; margin: 0 0 22px; }

/* ---------- News strip ---------- */
.news-list { border-top: var(--edge); }
.news-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px dashed #d8d5cb;
  text-decoration: none;
  color: var(--ink);
}
.news-row:hover .news-title { color: var(--red); }
.news-date { font-family: var(--mono); font-size: 13px; color: #8a8578; }
.news-title { font-family: var(--body); font-weight: 600; font-size: 18px; transition: color .15s; }
.news-arrow { font-family: var(--mono); color: var(--navy); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #565248;
}
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-addr {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: #c9c6ba;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--sky);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #e4e2d9; text-decoration: none; font-size: 14.5px; }
.footer-col a:hover { color: var(--sky); }
.footer-col .disabled { color: #6b6862; }

.eir-link.is-pending {
  color: #9c988c;
  border-bottom-color: #c9c6ba;
  cursor: default;
  pointer-events: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: #9c988c;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: #e4e2d9; text-decoration: none; }
.footer-socials a:hover { color: var(--sky); }

/* ============================================================
   INTERIOR PAGES — shared page hero
   Same bones as the homepage hero so an interior page reads as
   the same site: paper backdrop, headline left, receipt right.
   ============================================================ */
.main-nav a.is-current { opacity: 1; border-bottom-color: var(--sky); }

.page-hero {
  background: var(--paper);
  padding: 52px 0 44px;
  border-bottom: var(--edge);
}
.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}
.page-hero h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  color: var(--navy);
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero .eyebrow { color: var(--red); margin-bottom: 14px; display: block; }
.page-hero .page-lede {
  font-size: 18px;
  color: var(--ink);
  max-width: 52ch;
  margin-top: 22px;
  line-height: 1.5;
}
.page-hero .receipt { border: var(--edge); }
.page-hero .receipt::after {
  background-image:
    linear-gradient(-45deg, var(--paper) 9px, transparent 0),
    linear-gradient(45deg, var(--paper) 9px, transparent 0);
}
@media (max-width: 880px) {
  .page-hero .wrap { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Jump chips ---------- */
.jump-row {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.jump-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8578;
}
.jump-chip {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 8px 14px;
}
.jump-chip:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   EVENTS LIST
   A month is a signage header; an event is a ticket — coloured
   date stub, poster, then the details.
   ============================================================ */
.month + .month { margin-top: 64px; }
.month-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: var(--edge);
  padding-bottom: 14px;
  margin-bottom: 32px;
}
.month-head h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  color: var(--navy);
}
.month-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8578;
  margin-left: auto;
  white-space: nowrap;
}

.event-list { display: grid; gap: 22px; }

.event-card {
  display: grid;
  grid-template-columns: 132px 280px 1fr;
  border: 2px solid var(--ink);
  background: var(--white);
}

/* Date stub — colour signals the kind of event, matching the
   tag pill on the right-hand side of the card. */
.event-date {
  background: var(--navy);
  color: var(--white);
  border-right: 2px solid var(--ink);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card.is-red .event-date { background: var(--red); }
.event-card.is-blue .event-date { background: var(--blue); }
.event-date .d-mon {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}
.event-card.is-red .event-date .d-mon { color: #f0c9cf; }
.event-date .d-day {
  font-family: var(--display);
  font-weight: 800;
  font-size: 52px;
  line-height: 0.9;
  margin-top: 6px;
}
.event-date .d-day.is-range { font-size: 30px; letter-spacing: -0.01em; }
.event-date .d-year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #dbe4f4;
  margin-top: 10px;
}
.event-card.is-red .event-date .d-year { color: #eccfd4; }

/* Most event art is a wordmark poster, not a photo — cropping it would cut
   the lettering in half, so contain by default and paint the surrounding
   band in the artwork's own background colour. Photographs opt into cover. */
.event-media {
  border-right: 2px solid var(--ink);
  overflow: hidden;
  background: var(--paper-2);
}
.event-media img { width: 100%; height: 100%; object-fit: contain; }
.event-media.is-photo img { object-fit: cover; }
.event-media.bg-cream { background: #FFF9F0; }
.event-media.bg-plum  { background: #231048; }
.event-media.bg-white { background: var(--white); }

.event-body { padding: 26px 30px 28px; }
.event-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 14px;
}
.event-card.is-red .event-tag { background: var(--red); }
.event-card.is-blue .event-tag { background: var(--blue); }
.event-body h3 {
  font-size: 26px;
  text-transform: none;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 14px;
}
.event-meta {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  border-top: 1px dashed #d8d5cb;
  border-bottom: 1px dashed #d8d5cb;
  padding: 11px 0;
  margin-bottom: 16px;
  display: flex;
  gap: 8px 22px;
  flex-wrap: wrap;
}
.event-body p {
  font-family: var(--body);
  font-size: 15.5px;
  color: #555;
  margin: 0;
  max-width: 68ch;
}
.event-body p + p { margin-top: 12px; }
.event-highlight {
  font-family: var(--body);
  font-weight: 600;
  color: var(--ink) !important;
  border-left: 4px solid var(--red);
  padding-left: 14px;
}
.event-pending {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8578;
  border: 1px dashed #b9b6ab;
  padding: 7px 12px;
}
.event-cta {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}

/* End-of-list note, in the voice of the old page */
.list-end {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8578;
  text-align: center;
  border-top: 1px dashed #d8d5cb;
  margin-top: 40px;
  padding-top: 28px;
}

/* ---------- Link cards (more ways to get involved) ---------- */
.link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.link-card {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 26px 24px 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  border-top: 8px solid var(--navy);
}
.link-card:nth-child(2n) { border-top-color: var(--red); }
.link-card:nth-child(3n) { border-top-color: var(--blue); }
.link-card h3 { font-size: 22px; text-transform: none; margin-bottom: 10px; }
.link-card p { font-family: var(--body); font-size: 14.5px; color: #555; margin: 0 0 18px; flex: 1; }
.link-card .link-arrow {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.link-card:hover { background: var(--paper); }
.link-card:hover h3 { color: var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .event-card { grid-template-columns: 116px 220px 1fr; }
  .event-date .d-day { font-size: 44px; }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .event-card { grid-template-columns: 1fr; }
  .event-date {
    border-right: none;
    border-bottom: 2px solid var(--ink);
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 20px;
    text-align: left;
  }
  .event-date .d-day { font-size: 34px; margin-top: 0; }
  .event-date .d-day.is-range { font-size: 26px; }
  .event-date .d-year { margin-top: 0; }
  .event-media {
    border-right: none;
    border-bottom: 2px solid var(--ink);
    aspect-ratio: 16 / 9;
  }
  .event-body { padding: 22px 20px 24px; }
  .link-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .eir-grid { grid-template-columns: repeat(3, 1fr); }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .receipt-row { grid-template-columns: 1fr; }
  .receipt-row > * + * { border-left: none; border-top: var(--edge); }
  .stores-grid { grid-template-columns: 1fr; }
  .store-card + .store-card { border-left: none; border-top: var(--edge); }
  .eir-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-grid { grid-template-columns: 1fr 1fr; }
  .alumni .wrap { grid-template-columns: 1fr; text-align: left; }
  .pipeline .wrap { flex-direction: column; align-items: flex-start; }
  .news-row { grid-template-columns: 100px 1fr; }
  .news-arrow { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .eir-grid { grid-template-columns: repeat(2, 1fr); }
  .dir-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .receipt { padding: 32px 24px 44px; }
}
