/* ============================================================
   AUBURN THETA XI — BETA ZETA CHAPTER
   Glassmorphism design system — light & airy
   White / silver / azure with navy + orange accents
   ============================================================ */

:root {
  /* Brand */
  --navy: #03244d;
  --navy-mid: #0d3a72;
  --orange: #dd550c;
  --orange-bright: #f07023;
  --orange-soft: #ff9a4d;
  --azure: #0072ce;
  --azure-soft: #4da3e8;
  --silver: #c7d2e0;

  /* Backgrounds */
  --bg-top: #edf2f9;
  --bg-mid: #e2eaf4;
  --bg-low: #d4e0ee;

  /* Text (light theme) */
  --text-hi: #071a33;
  --text-mid: #28394f;
  --text-low: #4d5f76;

  /* Glass (white glass on light, photo contexts override) */
  --glass-bg: rgba(255, 255, 255, 0.34);
  --glass-bg-strong: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(13, 42, 80, 0.16);
  --glass-border-hi: rgba(0, 114, 206, 0.30);
  --glass-blur: blur(28px) saturate(150%);
  --glass-shadow: 0 18px 44px rgba(13, 42, 80, 0.10);

  /* Shape & motion */
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --ease-smooth: cubic-bezier(0.22, 0.8, 0.3, 1);
  --transition: all 0.45s var(--ease-smooth);
  --transition-fast: all 0.22s ease-out;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 76px;

  /* The site ships a light theme and an automatic dark variant (below). */
  color-scheme: light dark;
}

/* Photo-backed contexts keep deep overlays — switch to light-on-dark.
   color must be declared here (not just the variables) so plain text
   re-evaluates inside this scope instead of inheriting the dark body color. */
.hero, .page-hero, .cta-banner, .site-footer {
  color: var(--text-mid);
  --text-hi: #ffffff;
  --text-mid: rgba(244, 249, 254, 0.95);
  --text-low: rgba(230, 240, 250, 0.75);
  --glass-bg: rgba(255, 255, 255, 0.14);
  --glass-bg-strong: rgba(8, 28, 58, 0.6);
  --glass-border: rgba(255, 255, 255, 0.26);
  --glass-border-hi: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 18px 44px rgba(2, 10, 26, 0.35);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-mid);
  background-color: var(--bg-mid);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient blended background: airy white-silver with azure / orange glows */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(0, 114, 206, 0.12), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(221, 85, 12, 0.07), transparent 60%),
    radial-gradient(1000px 800px at 50% 115%, rgba(77, 163, 232, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-low) 100%);
}
.bg-ambient::after {
  /* faint grain keeps the soft gradients from banding */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(13, 42, 80, 0.028) 1px, transparent 1px);
  background-size: 3px 3px;
}

img { max-width: 100%; display: block; }
a { color: var(--azure); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--orange); }
ul { list-style: none; }

::selection { background: rgba(0, 114, 206, 0.25); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-hi);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 600;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

main { display: block; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 1rem;
}
.hero .eyebrow, .page-hero .eyebrow, .cta-banner .eyebrow { color: var(--azure-soft); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 680px;
  font-size: 1.1rem;
  color: var(--text-mid);
}

.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-header { margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  will-change: transform;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-bright) 100%);
  box-shadow: 0 10px 26px rgba(221, 85, 12, 0.32);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(221, 85, 12, 0.42);
}

.btn-glass {
  color: var(--text-hi);
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.btn-glass:hover {
  color: var(--text-hi);
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-hi);
  transform: translateY(-3px);
}
.cta-banner .btn-glass:hover, .hero .btn-glass:hover {
  background: rgba(255, 255, 255, 0.26);
}

/* ---------- Glass primitives ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  padding: 2.2rem;
  transition: var(--transition);
}
.glass-card:hover {
  border-color: var(--glass-border-hi);
  background: var(--glass-bg-strong);
  transform: translateY(-6px);
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-hi);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* ============================================================
   NAVIGATION
   Light text over the hero photo at the top of the page;
   frosted white glass with navy text once scrolled.
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(2, 12, 28, 0.5), rgba(2, 12, 28, 0));
}
.navbar.scrolled {
  background: rgba(232, 240, 248, 0.55);
  border-bottom-color: rgba(13, 42, 80, 0.14);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 30px rgba(13, 42, 80, 0.10);
}

.nav-inner {
  width: min(1280px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-hi);
}
.navbar .brand { color: #fff; }
.navbar.scrolled .brand { color: var(--navy); }
.brand img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.navbar.scrolled .brand img { filter: drop-shadow(0 3px 8px rgba(13, 42, 80, 0.25)); }
.brand-text { line-height: 1.1; }
.brand-text .brand-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  display: block;
}
.brand-text .brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  color: rgba(255, 255, 255, 0.6);
}
.navbar.scrolled .brand-sub { color: var(--text-low); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.6rem 0.95rem;
  border-radius: 6px;
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--navy);
  background: rgba(3, 36, 77, 0.07);
}
.nav-social {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.6rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  transition: var(--transition-fast);
}
.nav-social:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }
.navbar.scrolled .nav-social { color: var(--text-mid); }
.navbar.scrolled .nav-social:hover { color: var(--navy); background: rgba(3, 36, 77, 0.07); }
.drawer-social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.nav-link .caret {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: var(--transition-fast);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.62rem 1.5rem;
  font-size: 0.8rem;
}

/* Dropdown (white glass panel) */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(242, 246, 252, 0.95);
  border: 1px solid rgba(13, 42, 80, 0.14);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 18px 44px rgba(13, 42, 80, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), visibility 0.3s;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover > .nav-link .caret,
.has-dropdown:focus-within > .nav-link .caret,
.has-dropdown.open > .nav-link .caret {
  transform: rotate(225deg) translateY(-2px);
}
.dropdown-panel a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
}
.dropdown-panel a:hover, .dropdown-panel a.active {
  color: var(--navy);
  background: rgba(0, 114, 206, 0.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle {
  background: rgba(3, 36, 77, 0.06);
  border-color: rgba(13, 42, 80, 0.14);
}
.navbar.scrolled .nav-toggle span,
.nav-toggle.open span { background: var(--navy); }
.nav-toggle.open {
  background: rgba(238, 244, 251, 0.72);
  border-color: rgba(13, 42, 80, 0.16);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer — frosted white glass */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: min(340px, 86vw);
  padding: calc(var(--nav-height) + 1.5rem) 1.6rem 2rem;
  background: rgba(238, 244, 251, 0.78);
  border-left: 1px solid rgba(13, 42, 80, 0.14);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: -16px 0 50px rgba(13, 42, 80, 0.16);
  transform: translateX(105%);
  transition: transform 0.45s var(--ease-smooth);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer .drawer-group { margin-bottom: 1.2rem; }
.mobile-drawer .drawer-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--azure);
  margin: 1.2rem 0 0.4rem;
}
.mobile-drawer a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-hi);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
}
.mobile-drawer a:hover, .mobile-drawer a.active {
  background: rgba(0, 114, 206, 0.08);
  color: var(--orange);
}
.mobile-drawer .btn { width: 100%; margin-top: 1rem; color: #fff; }

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(8, 25, 50, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.drawer-scrim.show { opacity: 1; visibility: visible; }

/* ============================================================
   HERO — photo blends down into the airy page background
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 0 6rem;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -4%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.8%); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 50% 30%, rgba(2, 10, 24, 0.05), rgba(2, 10, 24, 0.4)),
    linear-gradient(180deg, rgba(2, 12, 28, 0.55) 0%, rgba(3, 20, 42, 0.45) 50%, rgba(5, 20, 42, 0.3) 78%, var(--bg-mid) 100%);
}

.hero-content {
  width: min(880px, 92%);
  margin: 0 auto;
}
.hero-crest {
  width: 92px;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 0;
  margin: 1.1rem 0 1.2rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}
.hero h1 .accent {
  background: linear-gradient(110deg, var(--orange-soft), var(--orange-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 2.4rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(13, 42, 80, 0.3);
  border-radius: 999px;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--orange-bright);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 4rem) 0 3.5rem;
  isolation: isolate;
  overflow: hidden;
}
.page-hero .hero-bg { animation-duration: 28s; }
.page-hero .hero-veil {
  background: linear-gradient(180deg, rgba(2, 12, 28, 0.55) 0%, rgba(3, 18, 40, 0.5) 55%, rgba(5, 20, 42, 0.42) 80%, var(--bg-mid) 100%);
}
.page-hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.4rem);
  font-weight: 600;
  margin-top: 0.9rem;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.6);
}
.page-hero .section-lead { margin-top: 0.8rem; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55); }

/* ============================================================
   HOME SECTIONS
   ============================================================ */

/* Stats strip — white glass over the hero/page seam */
.stats-strip {
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(13, 42, 80, 0.14);
  border: 1px solid rgba(13, 42, 80, 0.14);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.stat-cell {
  background: rgba(244, 248, 253, 0.45);
  text-align: center;
  padding: 2rem 1rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
}
.stat-value .stat-suffix { color: var(--orange); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-top: 0.35rem;
}

/* Audience cards (Students / Parents / Alumni) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.audience-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(13, 42, 80, 0.10);
  box-shadow: var(--glass-shadow);
  isolation: isolate;
  transition: var(--transition);
}
.audience-card:hover { transform: translateY(-8px); box-shadow: 0 24px 54px rgba(13, 42, 80, 0.18); }
.audience-card .card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease-smooth);
}
.audience-card:hover .card-bg { transform: scale(1.07); }
.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 20, 40, 0) 35%, rgba(6, 20, 40, 0.45) 85%);
}
.audience-body {
  width: 100%;
  margin: 0.9rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(245, 249, 253, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.audience-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.audience-body p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1rem; }
.card-link {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.card-link .arrow { display: inline-block; transition: var(--transition-fast); }
/* Inline links within prose — sentence case, unlike the uppercase .card-link CTA */
.text-link { color: var(--orange); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* Instagram embeds (Journal) */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
}
.ig-grid .instagram-media {
  /* override Instagram's inline min/max so embeds fit the grid on small screens */
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 !important;
  min-height: 420px;
  border-radius: var(--radius-md);
  background: rgba(244, 248, 253, 0.6);
  border: 1px solid rgba(13, 42, 80, 0.10);
  padding: 1rem;
}
.card-link:hover .arrow, .audience-card:hover .arrow { transform: translateX(5px); }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13, 42, 80, 0.10);
  box-shadow: var(--glass-shadow);
}
.split-media img, .split-media .media-bg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease-smooth);
}
.split-media:hover img, .split-media:hover .media-bg { transform: scale(1.05); }
.split-media .media-caption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--navy);
  background: rgba(242, 247, 252, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.split-copy p { margin-bottom: 1.1rem; }
.split-copy .btn { margin-top: 0.6rem; }

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.pillar-card { text-align: left; display: block; }
.pillar-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 114, 206, 0.10), rgba(221, 85, 12, 0.07));
  border: 1px solid rgba(0, 114, 206, 0.22);
  color: var(--azure);
}
.pillar-card h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.93rem; color: var(--text-mid); }
.pillar-card .card-link { display: inline-block; margin-top: 0.9rem; }

/* Checklist */
.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 2.1rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 16%, 84% 0%, 40% 70%);
}

/* Quote band */
.quote-band {
  text-align: center;
  padding: 3.2rem clamp(1.4rem, 5vw, 4rem);
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}
.quote-band cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-style: normal;
  color: var(--azure);
}

/* Members */
.member-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.member-card {
  padding: 0;
  overflow: hidden;
  cursor: default;
  /* Flex sizing keeps an incomplete last row centered under the row above.
     Mobile: fill; tablet: 3-up; desktop: 4-up. */
  flex: 1 1 240px;
  max-width: 360px;
}
@media (min-width: 780px) {
  .member-card { flex-basis: calc(33.333% - 1rem); max-width: calc(33.333% - 1rem); }
}
@media (min-width: 1024px) {
  .member-card { flex-basis: calc(25% - 1.125rem); max-width: calc(25% - 1.125rem); }
}
.member-photo {
  aspect-ratio: 4 / 5; /* matches the pre-cropped headshots — no further cropping */
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 114, 206, 0.06);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.8s var(--ease-smooth);
}
.member-card:hover .member-photo { transform: scale(1.04); }
.member-body { padding: 1.4rem 1.5rem 1.6rem; }
.member-body h3 { font-size: 1.2rem; font-weight: 600; }
.member-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure);
  margin: 0.3rem 0 0.7rem;
}
.member-meta { font-size: 0.85rem; color: var(--text-low); margin-bottom: 0.7rem; }
.member-bio { font-size: 0.92rem; color: var(--text-mid); }
.member-contact { font-size: 0.88rem; margin-top: 0.8rem; display: inline-block; }

/* Alumni cards */
.alumni-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}
.alumni-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Centered flex sizing keeps an incomplete last row centered.
     Mobile: fill; tablet: 2-up; desktop: 3-up. */
  flex: 1 1 300px;
  max-width: 380px;
}
@media (min-width: 720px) {
  .alumni-card { flex-basis: calc(50% - 0.8rem); max-width: calc(50% - 0.8rem); }
}
@media (min-width: 1000px) {
  .alumni-card { flex-basis: calc(33.333% - 1.067rem); max-width: calc(33.333% - 1.067rem); }
}
.alumni-photo {
  height: 300px;
  background-size: cover;
  background-position: center 20%;
  border-bottom: 1px solid var(--glass-border);
}
.alumni-body { padding: 1.6rem 1.7rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.alumni-body h3 { font-size: 1.3rem; font-weight: 600; }
.alumni-body .member-role { margin-bottom: 0.8rem; }
.alumni-body p { font-size: 0.94rem; flex: 1; }
.alumni-body .card-link { margin-top: 1rem; }

/* Journal */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.journal-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.journal-cover {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 114, 206, 0.06);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.8s var(--ease-smooth);
}
.journal-card:hover .journal-cover { transform: scale(1.05); }
.journal-body { padding: 1.5rem 1.6rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.journal-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 0.5rem;
}
.journal-body h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 0.6rem; }
.journal-body p { font-size: 0.93rem; flex: 1; }

/* Timeline (history) */
.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 2.2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--azure), var(--orange-bright));
  border-radius: 2px;
}
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--azure);
  box-shadow: 0 0 0 5px rgba(0, 114, 206, 0.14);
}
.timeline-year {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--azure);
}
.timeline-item h3 { margin: 0.3rem 0 0.5rem; font-size: 1.25rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(13, 42, 80, 0.10);
  box-shadow: var(--glass-shadow);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-caption {
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.7rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--navy);
  background: rgba(242, 247, 252, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* CTA banner — keeps the navy photo treatment for contrast */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13, 42, 80, 0.12);
  box-shadow: 0 22px 50px rgba(13, 42, 80, 0.18);
  isolation: isolate;
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(3, 18, 40, 0.86), rgba(0, 60, 120, 0.5));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; margin-bottom: 0.8rem; }
.cta-banner p { max-width: 560px; margin: 0 auto 1.8rem; }
.cta-banner .hero-actions { justify-content: center; }

/* Donate cards */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}
.donate-card { display: flex; flex-direction: column; text-align: left; }
.donate-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.donate-card p { flex: 1; margin-bottom: 1.4rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-shell { padding: clamp(1.8rem, 4vw, 3rem); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-low);
}
.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-hi);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(13, 42, 80, 0.18);
  transition: var(--transition-fast);
}
.form-control::placeholder { color: rgba(58, 77, 102, 0.45); }
.form-control:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.16);
  background: rgba(255, 255, 255, 0.75);
}
textarea.form-control { min-height: 130px; resize: vertical; }

.form-status {
  display: none;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  border: 1px solid transparent;
}
.form-status.success {
  display: block;
  color: #1b5e20;
  background: rgba(220, 245, 225, 0.85);
  border-color: rgba(60, 160, 90, 0.4);
}
.form-status.error {
  display: block;
  color: #b02a2a;
  background: rgba(253, 232, 232, 0.9);
  border-color: rgba(220, 100, 100, 0.45);
}

/* Map */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(13, 42, 80, 0.10);
  box-shadow: var(--glass-shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}
.map-pills {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.4rem;
}

/* Socials */
.social-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--text-hi);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: var(--transition);
}
.social-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
  border-color: transparent;
}

/* ============================================================
   FOOTER — anchored in chapter navy
   ============================================================ */
.site-footer {
  position: relative;
  margin-top: clamp(3rem, 8vw, 6rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.8rem;
}
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; color: var(--text-low); }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-hi);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.94rem;
  color: var(--text-mid);
}
.footer-col a:hover { color: var(--orange-soft); }
.footer-col address {
  font-style: normal;
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-low);
}
.footer-bottom a { color: var(--text-low); }
.footer-bottom a:hover { color: var(--orange-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 1rem; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .split-media img, .split-media .media-bg { min-height: 260px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .stats-strip { margin-top: -3rem; }
  .stat-cell { padding: 1.4rem 0.6rem; }
  .hero { min-height: 92svh; }
  .hero-actions .btn { width: 100%; }
  .glass-card { padding: 1.6rem; }
}

/* ============================================================
   Accessibility & interaction polish (v12)
   ============================================================ */
:root { --orange-text: #c2410c; }

/* Visible keyboard focus — only for keyboard users, not mouse clicks */
:focus-visible {
  outline: 3px solid var(--azure-soft);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* Skip-to-content link (appears on first Tab press) */
.skip-link {
  position: fixed;
  top: -80px;
  left: 12px;
  z-index: 2000;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(2, 10, 26, 0.35);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* Button press feedback (matches specificity of the hover transforms above) */
.btn-primary:active, .btn-glass:active, .btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Accessible inline prose links — a deeper shade of the same brand orange */
.text-link { color: var(--orange-text); }

/* Back-to-top button */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 900;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(2, 10, 26, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-mid); }

/* ============================================================
   DARK MODE — automatic, follows the device's prefers-color-scheme.
   Light theme above is untouched; everything here is scoped to dark.
   Heroes / CTAs / footer already render light-on-dark, so they need
   no changes — only the light content surfaces are re-themed.
   ============================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-top: #0c1a2e;
    --bg-mid: #0a1626;
    --bg-low: #060f1b;
    --text-hi: #f2f6fb;
    --text-mid: rgba(228, 238, 248, 0.92);
    --text-low: rgba(198, 212, 230, 0.66);
    --silver: #8fa3bd;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-strong: rgba(255, 255, 255, 0.11);
    --glass-border: rgba(255, 255, 255, 0.13);
    --glass-border-hi: rgba(77, 163, 232, 0.5);
    --glass-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  }
  body { background-color: var(--bg-mid); }

  /* Navbar (scrolled state) */
  .navbar.scrolled {
    background: rgba(11, 24, 42, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  }
  .navbar.scrolled .brand { color: #eaf1fb; }
  .navbar.scrolled .brand img { filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5)); }
  .navbar.scrolled .nav-link { color: var(--text-mid); }
  .navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: #fff; background: rgba(255, 255, 255, 0.10); }
  .navbar.scrolled .nav-social { color: var(--text-mid); }
  .navbar.scrolled .nav-social:hover { color: #fff; background: rgba(255, 255, 255, 0.10); }

  /* Explore dropdown */
  .dropdown-panel { background: rgba(13, 26, 46, 0.97); border-color: rgba(255, 255, 255, 0.14); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5); }
  .dropdown-panel a { color: var(--text-mid); }
  .dropdown-panel a:hover, .dropdown-panel a.active { color: #fff; background: rgba(0, 114, 206, 0.28); }

  /* Mobile drawer + hamburger */
  .mobile-drawer { background: rgba(9, 20, 34, 0.98); }
  .nav-toggle span { background: #eaf1fb; }

  /* Stats strip */
  .stats-grid { background: rgba(255, 255, 255, 0.09); }
  .stat-cell { background: rgba(255, 255, 255, 0.035); }
  .stat-value { color: #eaf1fb; }

  /* Audience cards (frosted body over photo) */
  .audience-body { background: rgba(12, 24, 42, 0.55); border-color: rgba(255, 255, 255, 0.14); }
  .audience-body h3 { color: #f2f6fb; }

  /* Instagram embed frames */
  .ig-grid .instagram-media { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); }

  /* Photo captions + split media border */
  .split-media { border-color: rgba(255, 255, 255, 0.10); }
  .split-media .media-caption, .gallery-item .gallery-caption {
    background: rgba(10, 22, 38, 0.72);
    border-color: rgba(255, 255, 255, 0.16);
    color: #eaf1fb;
  }

  /* Purpose quote band — was navy-on-light, invisible on the dark glass */
  .quote-band blockquote { color: var(--text-hi); }

  /* Form controls */
  .form-control { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.16); color: var(--text-hi); }
  .form-control::placeholder { color: rgba(200, 214, 232, 0.5); }
  .form-control:focus { background: rgba(255, 255, 255, 0.10); border-color: var(--azure-soft); box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.22); }
  .form-status.success { color: #b6f0c2; background: rgba(30, 94, 32, 0.35); border-color: rgba(60, 160, 90, 0.45); }
  .form-status.error { color: #ffc4c4; background: rgba(120, 30, 30, 0.35); border-color: rgba(220, 100, 100, 0.45); }

  /* Accent links: brighter orange reads better on dark */
  .text-link, .card-link { color: var(--orange-soft); }

  /* Back-to-top button lifts off the dark background */
  .to-top { background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.18); }
  .to-top:hover { background: rgba(255, 255, 255, 0.16); }
}

/* Philanthropy hero — art-directed. The Taxi Bash group photo is too wide
   to fit a portrait phone hero without clipping someone at the edge, so
   phones get a 4:5 crop framed cleanly on the crew and car; desktop keeps
   the full landscape. */
.hero-bg--taxibash {
  background-image: url('../assets/images/dynamic/taxi-bash-group.jpg');
  background-position: center 55%;
}
@media (max-width: 640px) {
  .hero-bg--taxibash {
    background-image: url('../assets/images/dynamic/taxi-bash-group-mobile.jpg');
    background-position: center;
  }
}
