/* =============================================================
   AACSA — American Academy of Catholic Scholars & Artists
   Modernized design system, rooted in Ave Maria University brand.
   Drop-in replacement for aacsa.webflow.css.
   ============================================================= */

/* ---------- Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  /* Brand — Ave Maria University palette */
  --navy:         #001644;
  --navy-web:     #0a2240;
  --navy-deep:    #000b26;
  --gold:         #DCA70F;
  --gold-web:     #c8972d;
  --gold-soft:    #E8BE4A;
  --green:        #009346;
  --green-web:    #00833e;

  /* Paper / neutrals */
  --paper:        #faf7f0;     /* warm cream — editorial feel */
  --paper-deep:   #f1ead9;     /* slightly deeper cream */
  --ivory:        #fdfbf5;
  --rule:         #d9cfb6;     /* antique line */
  --ink:          #14141a;     /* near-black for body */
  --ink-soft:     #3a3a42;
  --ink-muted:    #6a6a74;

  /* Type */
  --serif:        "Cormorant Garamond", "GT Super Display", Georgia, "Times New Roman", serif;
  --sans:         "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Tracking signature */
  --tr-wide:      0.18em;
  --tr-wider:     0.28em;
  --tr-widest:    0.42em;

  /* Motion */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --dur:          400ms;

  /* Layout */
  --maxw:         1280px;
  --maxw-wide:    1440px;
  --maxw-prose:   680px;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  font-weight: 400;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Selection */
::selection { background: var(--navy); color: var(--gold-soft); }

/* ---------- Type primitives ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; }
h4 { font-size: 1.25rem; line-height: 1.3; }
.italic, em { font-style: italic; }

p { margin: 0 0 1.2em; }
p.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--gold-web);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

.rule {
  width: 48px;
  height: 1px;
  background: var(--gold-web);
  border: 0;
  margin: 28px 0;
}
.rule.centered { margin-left: auto; margin-right: auto; }

.smallcaps {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  font-weight: 600;
}

/* Drop cap option */
.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 4.6em;
  float: left;
  line-height: 0.85;
  padding: 0.08em 0.12em 0 0;
  color: var(--navy);
  font-weight: 500;
}

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 28px; }
.container-prose { max-width: var(--maxw-prose); margin: 0 auto; padding: 0 28px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.loose { padding: 128px 0; }

.bg-paper { background: var(--paper); }
.bg-paper-deep { background: var(--paper-deep); }
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy); color: var(--paper); }
.bg-navy * { color: inherit; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--paper); }

/* ---------- Top bar + Nav ---------- */
.topbar {
  background: var(--navy-deep);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
}
.topbar .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar .meta { opacity: 0.7; display: flex; gap: 22px; }
.topbar .meta span::before { content: "·"; margin-right: 22px; opacity: 0.5; }
.topbar .meta span:first-child::before { content: none; margin: 0; }
.topbar .amu-tie { display: flex; align-items: center; gap: 10px; color: var(--gold-soft); }
.topbar .amu-tie::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

.nav {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(250, 247, 240, 0.98);
}
.nav .container-wide {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}
.brand .crest {
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.brand .wordmark {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--navy);
  max-width: 220px;
}
.brand .wordmark .small {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--gold-web);
  display: block;
  margin-top: 2px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all var(--dur) var(--ease);
}
.nav-links a:hover { background: var(--navy); color: var(--paper); }
.nav-links a.current { color: var(--gold-web); }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn .arrow { width: 14px; height: 10px; transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-gold { background: var(--gold-web); color: white; }
.btn-gold:hover { background: var(--navy); color: var(--paper); }
.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: var(--gold-web); color: white; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: var(--gold-web); color: white; border-color: var(--gold-web); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
}
.link-arrow .arrow {
  width: 14px; height: 10px;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover .arrow { transform: translateX(4px); }
.link-arrow.on-dark { color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 700px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.62) saturate(0.95);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,11,38,0.5) 0%, rgba(0,11,38,0.15) 35%, rgba(0,11,38,0.85) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}
.hero-body .container {
  max-width: var(--maxw);
}
.hero-eyebrow {
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--paper);
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.hero-sub {
  color: rgba(250, 247, 240, 0.82);
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Masthead meta strip */
.masthead {
  position: absolute;
  top: 32px;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(250, 247, 240, 0.7);
  font-size: 11px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  padding: 0 28px;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.masthead .left, .masthead .right { display: flex; gap: 18px; align-items: center; }
.masthead .divider { width: 1px; height: 14px; background: rgba(250,247,240,0.3); }

/* Hero alt: split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: min(82vh, 700px);
  background: var(--paper);
}
.hero-split .text-side {
  padding: 160px 72px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--paper);
}
.hero-split .text-side h1 {
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 32px;
  max-width: 14ch;
  letter-spacing: -0.015em;
}
.hero-split .text-side h1 em { color: var(--gold-web); }
.hero-split .image-side {
  background-size: cover; background-position: center;
  min-height: 60vh;
  position: relative;
}
.hero-split .image-side::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,11,38,0.5));
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: start;
}
.section-head h2 {
  line-height: 1.04;
}
.section-head h2 em { color: var(--gold-web); font-style: italic; }
.section-head .col-right { padding-top: 12px; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); }

.section-title-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-title-centered h2 em { color: var(--gold-web); font-style: italic; }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.two-col .image { position: relative; }
.two-col .image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.two-col .image .caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--paper);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--navy);
}

/* ---------- Cards ---------- */
.cards { display: grid; gap: 32px; }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }

.member-card {
  display: flex; flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--rule);
  transition: all var(--dur) var(--ease);
}
.member-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,22,68,0.25); }
.member-card .portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
}
.member-card .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.1) contrast(1.02);
  transition: filter var(--dur) var(--ease), transform calc(var(--dur)*2) var(--ease);
}
.member-card:hover .portrait img { filter: grayscale(0) contrast(1); transform: scale(1.03); }
.member-card .portrait .badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--paper);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  padding: 5px 10px;
}
.member-card .info { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.member-card .info .credentials {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--gold-web);
  font-weight: 600;
  margin-bottom: 10px;
}
.member-card .info h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  line-height: 1.15;
}
.member-card .info .affiliation {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.4;
}
.member-card .info .discipline {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats .stat {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
}
.stats .stat:last-child { border-right: 0; }
.stats .stat .num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stats .stat .num em { color: var(--gold-web); font-style: italic; }
.stats .stat .label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

/* ---------- Conference banner ---------- */
.conference-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}
.conference-banner .inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 0;
}
.conference-banner .date {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gold-soft);
  font-weight: 300;
}
.conference-banner .date .month {
  display: block;
  font-size: 0.32em;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: rgba(250,247,240,0.6);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 18px;
}
.conference-banner h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.05;
}
.conference-banner h2 em { color: var(--gold-soft); }
.conference-banner .location {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: rgba(250,247,240,0.7);
  margin-bottom: 32px;
}
.conference-banner .location .sep { margin: 0 12px; opacity: 0.5; }

/* Decorative serif motif */
.conference-banner::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border: 1px solid rgba(220,167,15,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.conference-banner::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border: 1px solid rgba(220,167,15,0.1);
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- Pillar grid (3 mission pillars) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.pillar:last-child { border-right: 0; }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-web);
  font-size: 1.5rem;
  margin-bottom: 32px;
  display: block;
}
.pillar h3 {
  margin-bottom: 16px;
  font-size: 1.65rem;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 24px;
}

/* ---------- Quote block ---------- */
.quote-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0;
}
.quote-block .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold-web);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 32px;
  font-weight: 400;
  font-style: italic;
}
.quote-block cite {
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-grid .tile {
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
}
.gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform calc(var(--dur)*2) var(--ease);
}
.gallery-grid .tile:hover img { transform: scale(1.04); }
.gallery-grid .t-wide  { grid-column: span 8; aspect-ratio: 16/10; }
.gallery-grid .t-tall  { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-grid .t-sq    { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-grid .t-half  { grid-column: span 6; aspect-ratio: 3/2; }
.gallery-grid .t-third { grid-column: span 4; aspect-ratio: 3/2; }

/* ---------- Filter/tabs ---------- */
.tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tabs .tab {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: transparent;
}
.tabs .tab:hover { color: var(--navy); }
.tabs .tab.active {
  color: var(--navy);
  border-color: var(--navy);
}

/* ---------- Support / Donate ---------- */
.donate-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.donate-wrap .pitch {
  background: var(--navy);
  color: var(--paper);
  padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.donate-wrap .pitch h2 { color: var(--paper); margin-bottom: 24px; }
.donate-wrap .pitch h2 em { color: var(--gold-soft); }
.donate-wrap .pitch p { color: rgba(250,247,240,0.75); margin-bottom: 32px; }
.donate-wrap .image {
  background-size: cover; background-position: center;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tier {
  background: var(--ivory);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.tier:hover, .tier.featured {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.tier.featured { position: relative; }
.tier.featured::before {
  content: "Most common";
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold-web); color: white;
  font-size: 10px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  padding: 4px 12px;
  font-weight: 600;
}
.tier .amount {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.tier:hover .amount, .tier.featured .amount { color: var(--gold-soft); }
.tier .name {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.tier:hover .name, .tier.featured .name { color: rgba(250,247,240,0.7); }
.tier .desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tier:hover .desc, .tier.featured .desc { color: rgba(250,247,240,0.75); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 96px 0 40px;
}
footer.site-footer .upper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250,247,240,0.12);
}
footer.site-footer .brand-col .brand { color: var(--paper); margin-bottom: 24px; }
footer.site-footer .brand-col .wordmark { color: var(--paper); }
footer.site-footer .brand-col .wordmark .small { color: var(--gold-soft); }
footer.site-footer .brand-col p {
  color: rgba(250,247,240,0.65);
  font-size: 14px;
  max-width: 32ch;
}
footer.site-footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 600;
}
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 10px; }
footer.site-footer a {
  color: rgba(250,247,240,0.8);
  font-size: 14px;
  transition: color var(--dur) var(--ease);
}
footer.site-footer a:hover { color: var(--gold-soft); }
footer.site-footer .lower {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250,247,240,0.5);
  letter-spacing: 0.02em;
}
footer.site-footer .lower .amu-tie {
  color: rgba(250,247,240,0.6);
}
footer.site-footer .lower .amu-tie a {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
}

/* ---------- Badges & chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--paper-deep);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.chip.on-dark { background: rgba(220,167,15,0.15); color: var(--gold-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .topbar { display: none; }
  .nav .container-wide { grid-template-columns: auto auto; height: 68px; }
  .nav-links { display: none; }
  .section-head, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > :first-child { order: 0; }
  .cards.cols-3, .cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(2) { border-right: 0; }
  .stats .stat:nth-child(1), .stats .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .pillars { grid-template-columns: 1fr; border-left: 0; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--rule); }
  .conference-banner .inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 0; }
  .donate-wrap { grid-template-columns: 1fr; }
  .donate-wrap .pitch { padding: 56px 28px; }
  .donate-wrap .image { min-height: 320px; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split .text-side { padding: 120px 28px 56px; }
  .hero-split .image-side { min-height: 50vh; }
  .gallery-grid .t-wide, .gallery-grid .t-tall, .gallery-grid .t-sq, .gallery-grid .t-half, .gallery-grid .t-third { grid-column: span 12; }
  footer.site-footer .upper { grid-template-columns: 1fr 1fr; gap: 40px; }
  section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .cards.cols-3, .cards.cols-4 { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stats .stat:last-child { border-bottom: 0; }
}

/* =============================================================
   Tweak-driven palette overrides.
   Applied via `data-accent` / `data-surface` on <html>.
   ============================================================= */
html[data-accent="green"] {
  --gold-web: var(--green-web);
  --gold: var(--green);
  --gold-soft: #7ac9a0;
}
html[data-surface="stone"] {
  --paper: #f4efe4;
  --paper-deep: #e8e0cc;
  --ivory: #f8f4ea;
  --rule: #c9bfa7;
}
html[data-surface="white"] {
  --paper: #ffffff;
  --paper-deep: #f5f1e8;
  --ivory: #fafafa;
  --rule: #e5e1d4;
}
html[data-density="compact"] section { padding: 72px 0; }
html[data-density="compact"] .hero { min-height: min(72vh, 700px); }
html[data-density="compact"] .section-head { margin-bottom: 48px; }
