:root {
  --violet-deep: #5c2d7a;
  --violet: #8e44ad;
  --violet-bright: #a36bb1;
  --violet-soft: #c39bd3;
  --violet-pale: #e8d5f0;
  --violet-wash: #f3eaf8;
  --ink: #241830;
  --ink-muted: #5c4f68;
  --line: #ddd0e8;
  --paper: #fcfafd;
  --white: #ffffff;
  --gold: #d4a017;
  --gold-soft: #fff3cd;
  --coral: #e74c3c;
  --coral-soft: #fde8e6;
  --teal: #1abc9c;
  --teal-soft: #d5f5ef;
  --sky: #3498db;
  --sky-soft: #dbeef9;
  --rainbow: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787);
  --nav-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(36, 24, 48, 0.06);
  --shadow-md: 0 12px 40px rgba(36, 24, 48, 0.1);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(107, 61, 138, 0.2);
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--violet-deep);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(252, 250, 253, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo svg { width: 2.5rem; height: 2.5rem; flex-shrink: 0; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav-logo-text small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--violet-deep);
  background: var(--violet-wash);
}

.nav-cta {
  margin-left: 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--violet-deep);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--violet); }

.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

.nav-cart:hover { color: var(--violet-deep); border-color: var(--violet-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 1.5rem;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.nav-mobile .nav-cta-mobile {
  margin-top: 1.25rem;
  text-align: center;
  padding: 0.9rem;
  background: var(--violet-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .nav-links, .nav-icon { display: none; }
  .nav-toggle { display: flex; }
  body.menu-open .nav-mobile { display: block; }
  body.menu-open { overflow: hidden; }
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--violet-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--violet); }

.btn-secondary {
  background: var(--white);
  color: var(--violet-deep);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--violet-soft); background: var(--violet-wash); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); }

.btn-link {
  padding: 0;
  background: none;
  border: none;
  color: var(--violet);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.btn-link:hover { color: var(--violet-deep); text-decoration: underline; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--violet-deep) 0%, #5a2f75 45%, var(--violet) 100%);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero .eyebrow { color: var(--violet-pale); }

.hero h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-lead {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero .btn-row { margin-top: 2rem; }

.hero-aside {
  display: grid;
  gap: 1rem;
}

.hero-card {
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.hero-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .hero-aside { grid-template-columns: 1fr; }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--ink-muted);
}

.section-violet { background: var(--violet-wash); }
.section-white { background: var(--white); }

/* Stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  color: var(--violet-deep);
}

.stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet-soft);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--violet-wash);
  color: var(--violet-deep);
  border-radius: var(--radius);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  flex: 1;
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.card .btn-link { margin-top: auto; align-self: flex-start; }

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
}

/* Quote band */
.quote-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.quote-band blockquote {
  max-width: 42rem;
  margin: 0 auto;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
}

.quote-band cite {
  display: block;
  margin-top: 1.25rem;
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* News */
.news-list { display: grid; gap: 0; }

.news-item {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.news-item:first-child { padding-top: 0; }
.news-item:last-child { border-bottom: none; }

.news-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
}

.news-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.news-item p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* Visit panel */
.visit-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.visit-details {
  display: grid;
  gap: 1.5rem;
}

.visit-block h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.4rem;
}

.visit-block p,
.visit-block a {
  font-size: 1rem;
  line-height: 1.6;
}

.visit-block a { color: var(--violet); font-weight: 600; }
.visit-block a:hover { text-decoration: underline; }

.visit-map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--violet-wash);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 760px) {
  .visit-panel { grid-template-columns: 1fr; }
}

/* Page header */
.page-hero {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--violet-wash);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 0.5rem;
}

.page-hero p {
  max-width: 38rem;
  margin-top: 0.85rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* Prose */
.prose {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose p + p { margin-top: 1.15rem; }

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

/* Staff grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.staff-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.staff-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.staff-card .role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
}

@media (max-width: 560px) {
  .staff-grid { grid-template-columns: 1fr; }
}

/* Support tiers */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.donate-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.donate-card.featured {
  border-color: var(--violet-soft);
  background: linear-gradient(180deg, var(--violet-wash), var(--white));
}

.donate-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.donate-card p { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 1.25rem; }

@media (max-width: 760px) {
  .donate-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  max-width: 18rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
}

.footer ul { display: grid; gap: 0.45rem; }

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Rainbow accent */
.nav-rainbow {
  height: 4px;
  background: var(--rainbow);
}

.nav-logo-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--violet-pale);
}

/* Dropdown nav */
.nav-drop { position: relative; }

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.65rem;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-drop-btn:hover,
.nav-drop.open .nav-drop-btn {
  color: var(--violet-deep);
  background: var(--violet-wash);
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
}

.nav-drop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 14rem;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 120;
}

.nav-drop.open .nav-drop-panel { display: grid; gap: 0.15rem; }

.nav-drop-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  border-radius: var(--radius);
}

.nav-drop-panel a:hover {
  background: var(--violet-wash);
  color: var(--violet-deep);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-icon:hover { color: var(--violet-deep); border-color: var(--violet-soft); }

.nav-mobile-label {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
}

.nav-mobile-label:first-child { margin-top: 0; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-icon { display: none; }
  .nav-toggle { display: flex; }
  body.menu-open .nav-mobile { display: block; }
  body.menu-open { overflow: hidden; }
}

.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-brand .footer-social { margin-top: 1rem; }

/* Photo hero */
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--violet-deep);
  color: var(--white);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 45, 122, 0.92) 0%, rgba(142, 68, 173, 0.78) 50%, rgba(163, 107, 177, 0.65) 100%);
  z-index: 1;
}

.hero-photo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid rgba(255, 255, 255, 0.25);
  min-height: 7rem;
}

.hero-collage img:first-child {
  grid-row: span 2;
  min-height: 15rem;
}

.hero-photo .eyebrow { color: var(--gold-soft); }
.hero-photo h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4rem); margin-top: 0.75rem; }
.hero-photo .hero-lead { color: rgba(255,255,255,0.9); max-width: 32rem; margin-top: 1rem; }

@media (max-width: 820px) {
  .hero-photo-grid { grid-template-columns: 1fr; }
  .hero-collage { max-width: 22rem; margin: 0 auto; }
}

/* Photo cards */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.photo-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.photo-card p { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 0.75rem; }

/* Color sections */
.section-gold { background: var(--gold-soft); }
.section-coral { background: var(--coral-soft); }
.section-teal { background: var(--teal-soft); }
.section-sky { background: var(--sky-soft); }
.section-violet-bold { background: linear-gradient(180deg, var(--violet-wash), var(--violet-pale)); }

.strip-rainbow {
  height: 6px;
  background: var(--rainbow);
}

/* News with thumbnails */
.news-item {
  grid-template-columns: 6.5rem 1fr auto;
}

.news-thumb {
  width: 6.5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--violet-pale);
}

/* Feature band with photo */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.feature-band-copy {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--violet-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-band-copy h2 { color: var(--white); margin-bottom: 0.75rem; }
.feature-band-copy p { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }

@media (max-width: 760px) {
  .feature-band { grid-template-columns: 1fr; }
}

/* Donate widget strip */
.donate-strip {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-bright) 100%);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
}

.donate-strip h2 { color: var(--white); margin-bottom: 0.5rem; }
.donate-strip p { color: rgba(255,255,255,0.88); max-width: 32rem; margin: 0 auto 1.5rem; }

.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.donate-amounts a {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.donate-amounts a:hover { background: rgba(255,255,255,0.28); }

