/* ============================================================
   VARIANT A — ANG 849 — EDITORIAL SACRED
   Codename: ANG 849
   Direction: Letterpress editorial. Asymmetric type. Serif display.
   Palette: cream + ink-black + saffron + maroon
   ============================================================ */

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

:root {
  --cream: #F4EFE6;
  --ink: #1A1A1A;
  --saffron: #E89F2C;
  --saffron-deep: #C7821E;
  --maroon: #7A1F2B;
  --maroon-deep: #5C161F;
  --paper: #FBF7F0;
  --rule: #1A1A1A;
  --muted: #6B6358;

  --display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-section: clamp(3rem, 8vw, 6rem);
  --space-tight: clamp(1.5rem, 3vw, 2.5rem);
  --space-stack: clamp(0.5rem, 1.2vw, 0.875rem);

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Skip link --------------------------------------------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  font-family: var(--body);
  font-size: 14px;
}
.skip:focus { left: 1rem; top: 1rem; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(3.5rem, 12vw, 9rem); letter-spacing: -0.04em; line-height: 0.95; }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.025em; line-height: 1.05; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.15; }
h4 { font-size: clamp(1.125rem, 1.6vw, 1.35rem); line-height: 1.25; }

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-block;
}
.eyebrow--saffron { color: var(--saffron-deep); }
.eyebrow--maroon { color: var(--maroon); }
.eyebrow-rule::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  margin-left: 0.85rem;
  vertical-align: middle;
}

.lead {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.scripture {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.scripture--display {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.2;
}
.citation {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
}

p { margin: 0; }
p + p { margin-top: 1em; }

/* --- Layout primitives -------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 880px; }

section { padding-top: var(--space-section); padding-bottom: var(--space-section); }
section + section { border-top: 1px solid rgba(26, 26, 26, 0.08); }

/* --- Header / Nav ------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  backdrop-filter: saturate(140%) blur(6px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--ink);
  padding-left: 0.65rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
  transition: color 200ms ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--maroon); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--maroon);
}
.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  background: var(--saffron);
  color: var(--ink);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--saffron-deep);
  transition: background 180ms ease;
}
.nav-cta:hover { background: var(--saffron-deep); color: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  width: 40px; height: 40px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 18px;
}

@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--cream); flex-direction: column; align-items: stretch; padding: 1.5rem var(--gutter); gap: 1rem; border-bottom: 1px solid rgba(26,26,26,0.12); }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
}

/* --- Hero (Home) ------------------------------------------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-h1 { margin-bottom: 2rem; }
.hero-h1 .ang { display: block; }
.hero-h1 .num {
  font-style: italic;
  color: var(--saffron-deep);
}
.hero-quote {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Buttons ------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 1.65rem;
  border: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--saffron); border-color: var(--saffron-deep); color: var(--ink); }
.btn-primary:hover { background: var(--saffron-deep); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-maroon { background: var(--maroon); border-color: var(--maroon-deep); color: var(--cream); }
.btn-maroon:hover { background: var(--maroon-deep); }
.btn-link {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon);
  border-bottom: 1px solid var(--maroon);
  padding-bottom: 2px;
  transition: color 180ms ease;
}
.btn-link:hover { color: var(--maroon-deep); }

/* --- Featured Scripture (home top) -------------------------- */
.featured-ang {
  background: var(--paper);
  border-top: 1px solid rgba(26,26,26,0.12);
  border-bottom: 1px solid rgba(26,26,26,0.12);
  position: relative;
}
.featured-ang-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
.featured-ang-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.featured-ang-cite {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  display: inline-block;
}
.featured-ang-num {
  position: absolute;
  right: var(--gutter);
  top: 0;
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.85;
  color: rgba(26,26,26,0.06);
  pointer-events: none;
  user-select: none;
}

/* --- Section header pattern --------------------------------- */
.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); max-width: 760px; }
.section-head .eyebrow { margin-bottom: 1rem; display: block; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .lead { color: var(--muted); }

/* --- Program cards ------------------------------------------ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.program-card {
  background: var(--paper);
  padding: 2rem 1.75rem 2rem;
  border: 1px solid rgba(26,26,26,0.1);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(26,26,26,0.25);
  border-color: var(--maroon);
}
.program-card .num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--saffron-deep);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.program-card h3 { margin-bottom: 0.75rem; }
.program-card p { color: var(--muted); font-size: 15px; line-height: 1.55; flex-grow: 1; }
.program-card .more {
  margin-top: 1.5rem;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.program-card:hover .more { color: var(--maroon); border-bottom-color: var(--maroon); }

/* --- Faculty teaser ----------------------------------------- */
.faculty-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .faculty-teaser { grid-template-columns: 1fr 1.4fr; gap: 3rem; }
}
.faculty-teaser-photo {
  background: var(--ink);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.initials {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 7rem);
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--cream);
  opacity: 0.92;
}
.initials--saffron { color: var(--saffron); }

/* --- Raag tiles (What you learn) ---------------------------- */
.raag-section {
  background: var(--ink);
  color: var(--cream);
}
.raag-section h2 { color: var(--cream); }
.raag-section .lead { color: rgba(244,239,230,0.78); }
.raag-section .eyebrow { color: var(--saffron); }
.raag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(244,239,230,0.18);
  border-left: 1px solid rgba(244,239,230,0.18);
}
.raag-tile {
  border-right: 1px solid rgba(244,239,230,0.18);
  border-bottom: 1px solid rgba(244,239,230,0.18);
  padding: 1.75rem 1.25rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 200ms ease;
}
.raag-tile:hover { background: rgba(244,239,230,0.04); }
.raag-tile .h {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--cream);
}
.raag-tile .h em { color: var(--saffron); font-style: italic; }
.raag-tile .meta {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.55);
  margin-top: 0.75rem;
}

/* --- CTA strip --------------------------------------------- */
.cta-strip {
  background: var(--maroon);
  color: var(--cream);
  text-align: left;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 880px) {
  .cta-strip-inner { grid-template-columns: 1.4fr auto; }
}
.cta-strip h2 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 3.25rem); max-width: 18ch; }
.cta-strip .eyebrow { color: var(--saffron); }
.cta-strip .btn-primary { background: var(--saffron); border-color: var(--saffron-deep); }
.cta-strip .btn-primary:hover { background: var(--cream); color: var(--maroon); }

/* --- Page header (non-home pages) --------------------------- */
.page-head {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.page-head .eyebrow { margin-bottom: 1rem; display: block; }
.page-head h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); margin-bottom: 1.25rem; max-width: 14ch; }
.page-head .lead { max-width: 620px; color: var(--muted); }

/* --- Two column / story layout ------------------------------ */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 880px) {
  .story { grid-template-columns: 1fr 1.6fr; gap: 3.5rem; }
}
.story-meta {
  position: sticky;
  top: 6rem;
}
.story-meta .eyebrow { display: block; margin-bottom: 1rem; }
.story-meta h3 { font-size: 1.5rem; max-width: 14ch; }
.story-body p { font-size: 17px; line-height: 1.7; margin-bottom: 1.25rem; }
.story-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  padding: 0.2rem 0.5rem 0 0;
  color: var(--maroon);
}

/* --- 3-column values ---------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(26,26,26,0.15);
  padding-top: 2.5rem;
}
@media (min-width: 720px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.value-col { padding-right: 1rem; }
.value-col .num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--saffron-deep);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.value-col h3 { margin-bottom: 0.75rem; }
.value-col p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* --- Faculty page ------------------------------------------- */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem 1.5rem;
}
.faculty-card {
  display: flex;
  flex-direction: column;
}
.faculty-portrait {
  background: var(--ink);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.faculty-portrait.is-maroon { background: var(--maroon); }
.faculty-portrait.is-saffron { background: var(--saffron-deep); }
.faculty-portrait.is-paper { background: var(--paper); border: 1px solid rgba(26,26,26,0.15); }
.faculty-portrait.is-paper .initials { color: var(--ink); }
.faculty-card .role {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  margin-bottom: 0.35rem;
  display: block;
}
.faculty-card h3 { margin-bottom: 0.5rem; }
.faculty-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* --- Programs page ------------------------------------------ */
.curriculum-strip {
  border-top: 1px solid rgba(26,26,26,0.15);
  border-bottom: 1px solid rgba(26,26,26,0.15);
  padding: 2rem 0;
  margin: 2.5rem 0 3rem;
}
.curriculum-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .curriculum-strip-inner { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.curriculum-stat .num {
  font-family: var(--display);
  font-size: 3rem;
  font-style: italic;
  color: var(--saffron-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.curriculum-stat .label {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* --- Forms -------------------------------------------------- */
.form {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
  transition: border-color 160ms ease, background 160ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  background: var(--cream);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 720px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.fee-card {
  background: var(--paper);
  border: 1px solid rgba(26,26,26,0.15);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fee-card .price {
  font-family: var(--display);
  font-size: 2.75rem;
  font-style: italic;
  color: var(--maroon);
  line-height: 1;
}
.fee-card .price small {
  font-size: 1rem;
  font-family: var(--body);
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.04em;
}
.fee-card .label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.fee-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* --- Gallery ------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.gallery-tile.is-tall { aspect-ratio: 3 / 5; }
.gallery-tile.is-square { aspect-ratio: 1; }
.gallery-tile.is-wide { aspect-ratio: 5 / 4; }
.gallery-tile.tone-paper { background: var(--paper); color: var(--ink); border: 1px solid rgba(26,26,26,0.1); }
.gallery-tile.tone-saffron { background: var(--saffron-deep); }
.gallery-tile.tone-maroon { background: var(--maroon); }
.gallery-tile.tone-ink { background: var(--ink); }
.gallery-tile .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(26,26,26,0.7);
  color: var(--cream);
}
.gallery-tile.tone-paper .caption { background: rgba(26,26,26,0.85); }

/* --- Contact ------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3.5rem; }
}
.contact-card {
  background: var(--paper);
  border: 1px solid rgba(26,26,26,0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.contact-row .k {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
}
.contact-row .v { font-size: 17px; line-height: 1.45; }
.contact-row .v a { border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.contact-row .v a:hover { color: var(--maroon); border-bottom-color: var(--maroon); }

.map-card {
  background: var(--ink);
  color: var(--cream);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-card .map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(244,239,230,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244,239,230,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-card .map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-card .pin-dot {
  width: 18px;
  height: 18px;
  background: var(--saffron);
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 0 6px rgba(232,159,44,0.25), 0 0 0 14px rgba(232,159,44,0.12);
}
.map-card .pin-label {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}

/* --- Pull-quote --------------------------------------------- */
.pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 26ch;
  color: var(--ink);
}
.pull-quote::before {
  content: "“";
  display: block;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--saffron-deep);
  margin-bottom: 1.5rem;
}

/* --- Footer ------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 1.5rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}
.footer-col h4 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.footer-col .eyebrow { color: var(--saffron); margin-bottom: 1rem; display: block; }
.footer-col p { color: rgba(244,239,230,0.7); font-size: 14px; line-height: 1.6; max-width: 36ch; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(244,239,230,0.85); font-size: 14px; transition: color 160ms ease; }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244,239,230,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(244,239,230,0.55);
  letter-spacing: 0.04em;
  margin: 0;
}
.footer-credit { color: rgba(244,239,230,0.45); }

/* --- Reveal animation (light, GSAP-free) -------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 800ms ease, transform 800ms ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* --- Desktop polish (min 1280px) ---------------------------- */
@media (min-width: 1280px) {
  body { font-size: 18px; }
  .hero-h1 { max-width: 14ch; }
  .featured-ang-inner { padding: 1rem 0; }
  .container { padding-left: 3rem; padding-right: 3rem; }
  .program-grid { gap: 2rem; }
  .program-card { padding: 2.5rem 2rem; min-height: 360px; }
  .section-head { max-width: 820px; }
}
/* --- Image treatment (Variant A — ANG 849) --------------------- */
/* Sepia / letterpress: subtle, almost monochrome, with paper warmth */
.vc-img,
.hero-shot img,
.faculty-img img,
.gallery-img img,
.about-img,
.program-img {
  filter: sepia(0.45) saturate(0.85) brightness(0.96) contrast(1.05);
  mix-blend-mode: multiply;
  transition: filter .45s ease, transform .45s ease;
}
.hero-shot img {
  filter: sepia(0.35) saturate(0.9) brightness(0.92) contrast(1.08);
  border: 1px solid rgba(26,26,26,0.15);
  box-shadow: 0 30px 70px rgba(26,26,26,0.18);
}
.gallery-tile .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.5) saturate(0.8) brightness(0.94) contrast(1.05);
}
.faculty-portrait .faculty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) saturate(0.85) brightness(0.95);
}
.vc-img:hover,
.gallery-tile:hover .gallery-img,
.faculty-portrait:hover .faculty-img {
  filter: sepia(0.2) saturate(1) brightness(1) contrast(1.08);
  transform: scale(1.02);
}


/* ============================================================
   VARIANT A — ANG 849 — IMAGERY (added 2026-07-09)
   Editorial letterpress photo treatment
   ============================================================ */

.hero-shot {
  position: relative;
  margin: 0 0 2rem 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shot .img-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.4rem 0.8rem;
  background: rgba(251,247,240,0.94);
  color: var(--ink);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #C7B8A5;
}

.featured-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 800px) { .featured-cards { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.featured-card {
  background: var(--paper);
  border: 1px solid rgba(26,26,26,0.12);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.featured-card .card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: -1.5rem -1.5rem 0 -1.5rem;
  margin-bottom: 0.25rem;
}
.featured-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.25) contrast(.95) saturate(.85);
  transition: filter .4s ease, transform .6s ease;
}
.featured-card:hover .card-image img {
  filter: sepia(.10) contrast(1) saturate(.95);
  transform: scale(1.02);
}
.featured-card h3 { font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 1.75rem); line-height: 1.15; font-weight: 500; margin: 0; }
.featured-card .card-lede { color: var(--muted); font-size: 14px; line-height: 1.55; }
.featured-card .card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: auto;
}

.numbers-strip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
@media (min-width: 800px) { .numbers-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.numbers-grid .stat .stat-num {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--saffron);
}
.numbers-grid .stat .stat-label {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.7);
  margin-top: 0.5rem;
}
.numbers-strip .numbers-photo {
  margin-top: 2.5rem;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.numbers-strip .numbers-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.25) contrast(.95) saturate(.85);
}

.vc-img {
  filter: sepia(.25) contrast(.95) saturate(.85);
  border: 1px solid #C7B8A5;
  border-radius: 2px;
}
.vc-img:hover {
  filter: sepia(.10) contrast(1) saturate(.95);
  transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox .lb-img {
  max-width: 90vw; max-height: 78vh; object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  filter: sepia(.10) contrast(1) saturate(.95);
}
.lightbox .lb-caption {
  color: rgba(244,239,230,0.85);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  max-width: 720px;
  text-align: center;
}
.lightbox .lb-close {
  position: absolute; top: 1rem; right: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(244,239,230,0.4);
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox .lb-close:hover { background: rgba(244,239,230,0.1); border-color: rgba(244,239,230,0.7); }

/* Gallery tile image fill */
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.18) contrast(.95) saturate(.88);
  transition: filter .5s ease, transform .5s ease;
}
.gallery-tile:hover img {
  filter: sepia(.05) contrast(1) saturate(.95);
  transform: scale(1.02);
}
.gallery-tile { cursor: zoom-in; overflow: hidden; }

/* Faculty portrait fills + filter */
.faculty-portrait {
  overflow: hidden;
}
.faculty-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.18) contrast(.95);
  transition: transform .6s ease, filter .6s ease;
}
.faculty-card:hover .faculty-portrait img {
  transform: scale(1.03);
  filter: sepia(.05) contrast(1);
}

/* Stat reveal */
.stat { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.stat.is-in { opacity: 1; transform: none; }
