:root {
  --paper: #f4eee6;
  --paper-soft: #fbf8f2;
  --ink: #2f2a24;
  --muted: #786f64;
  --gold: #a78656;
  --gold-dark: #8d7048;
  --line: rgba(83, 70, 55, 0.16);
  --footer: #968978;
  --shadow: 0 22px 60px rgba(65, 54, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 280px) 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background: rgba(249, 245, 239, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-cross {
  color: var(--gold);
  font-size: 2.15rem;
  line-height: 1;
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.38em;
}

.brand-text strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.brand-text em {
  justify-self: center;
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.32em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(13px, 2.3vw, 31px);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  color: #5b5249;
  padding: 12px 0;
}

.nav a::after {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.donate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold-dark);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 243, 236, 0.98) 0, rgba(248, 243, 236, 0.92) 42%, rgba(217, 203, 184, 0.42) 70%, rgba(95, 79, 61, 0.16) 100%),
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.42) 42%, rgba(205, 190, 168, 0.2)),
    var(--paper-soft);
}

.hero-church {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(44vw, 470px);
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.18), rgba(247, 241, 232, 0.88)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Catedral_zacatecas.jpg") center left/cover;
  filter: grayscale(0.52) sepia(0.28);
  opacity: 0.22;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(44px, 7vw, 86px) clamp(20px, 5vw, 70px);
  text-align: center;
}

.small-cross {
  color: var(--gold);
  font-size: 2rem;
}

.overline {
  margin: 8px 0 0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 6px 0 0;
  max-width: 620px;
  color: #2d2925;
  font-size: clamp(3.2rem, 6.7vw, 5.7rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 0.46em;
  letter-spacing: 0.38em;
}

.ornament {
  width: min(230px, 58vw);
  height: 18px;
  margin: 24px 0;
  background:
    linear-gradient(var(--gold), var(--gold)) left 50%/42% 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 50%/42% 1px no-repeat;
}

.ornament::after {
  display: block;
  color: var(--gold);
  content: "✣";
  text-align: center;
  line-height: 18px;
}

.lead {
  max-width: 370px;
  margin: 0;
  color: #3d3731;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.hero-quote {
  margin: 24px 0 0;
  color: #40372f;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-style: italic;
  line-height: 0.95;
}

.gold-line {
  width: 190px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--gold-dark);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions a + a {
  border: 1px solid var(--gold-dark);
  background: rgba(251, 248, 242, 0.56);
  color: var(--gold-dark);
}

.hero-portrait {
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.92) 0, rgba(247, 241, 232, 0.24) 23%, rgba(53, 43, 35, 0.02) 64%, rgba(42, 34, 28, 0.36) 100%),
    linear-gradient(0deg, rgba(247, 241, 232, 0.34), rgba(247, 241, 232, 0.08)),
    url("assets/padre-luis-casual.jpg") center 34% / cover no-repeat;
  filter: sepia(0.12) saturate(0.9);
}

.hero-portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.95), rgba(247, 241, 232, 0.08) 30%, rgba(247, 241, 232, 0) 66%),
    linear-gradient(0deg, rgba(247, 241, 232, 0.78), rgba(247, 241, 232, 0) 28%);
  content: "";
  pointer-events: none;
}

.social-panel {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 44px));
  margin: -76px auto 0;
  padding: 26px clamp(18px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(251, 248, 242, 0.98);
  box-shadow: var(--shadow);
}

.social-panel h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 26px;
  color: #4f463d;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.social-panel h2::before,
.social-panel h2::after {
  width: min(82px, 14vw);
  height: 1px;
  background: var(--gold);
  content: "";
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.social-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.social-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #ebe4da;
  color: #1f1b17;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.social-grid strong {
  color: #443b32;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.74rem;
  line-height: 1.25;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 62px);
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 82px) clamp(22px, 4vw, 50px) 40px;
  border: 1px solid rgba(83, 70, 55, 0.1);
  border-top: 0;
  background: rgba(251, 248, 242, 0.62);
}

.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-copy h2,
.section-title h2 {
  margin: 0;
  color: #3b332c;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 400;
  line-height: 1.02;
}

.short-rule {
  width: 54px;
  height: 2px;
  margin: 28px 0;
  background: var(--gold);
}

.story-copy p:not(.section-label) {
  max-width: 330px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.pill-button,
.small-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-button,
.small-button {
  background: var(--gold-dark);
  color: #fff;
  padding: 0 20px;
}

.pill-button::before {
  margin-right: 8px;
  content: "▶";
  font-size: 0.62rem;
}

.video-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #2f2924;
  color: #fff;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.86);
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 24, 19, 0.58), rgba(30, 24, 19, 0.06));
  content: "";
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 1.7rem;
  transform: translate(-50%, -50%);
}

.video-card strong {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 1;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.real-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0 0;
}

.real-images figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-soft);
  box-shadow: 0 18px 34px rgba(83, 70, 55, 0.06);
}

.real-images .image-feature {
  grid-row: span 2;
}

.real-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 34%;
}

.real-images .image-feature img {
  height: 578px;
  object-position: center 30%;
}

.real-images figcaption {
  min-height: 78px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bio-section,
.history-section,
.service-section,
.works-section,
.news-section,
.cards-section,
.recognition-section,
.memory-section,
.people-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 76px) 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 38px;
  text-align: center;
}

.section-title span {
  width: min(120px, 20vw);
  height: 1px;
  background: var(--gold);
}

.section-title h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bio-grid,
.history-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.bio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bio-grid article,
.history-grid article,
.news-grid a {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(251, 248, 242, 0.72);
}

.bio-grid span,
.history-grid span,
.news-grid time {
  color: var(--gold-dark);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-grid strong {
  display: block;
  margin-top: 12px;
  color: #3a332c;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.12;
}

.history-grid h3,
.news-grid h3 {
  margin: 14px 0 10px;
  color: #3a332c;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.history-grid p {
  margin: 0;
  color: var(--muted);
}

.bio-note,
.section-intro,
.service-copy {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
}

.bio-note {
  max-width: 900px;
  margin: 24px auto 0;
  text-align: center;
}

.service-section {
  padding-top: 20px;
}

.service-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-copy p {
  margin: 0;
  padding: 26px;
  border-left: 2px solid var(--gold);
  background: rgba(251, 248, 242, 0.64);
}

.works-section {
  padding-top: 26px;
}

.section-intro {
  max-width: 920px;
  margin: -12px auto 36px;
  text-align: center;
}

.memory-section {
  padding-bottom: 34px;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.memory-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-soft);
  box-shadow: 0 18px 34px rgba(83, 70, 55, 0.06);
}

.memory-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.95fr) minmax(270px, 0.8fr);
}

.memory-card img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  object-position: center 32%;
  filter: sepia(0.16) saturate(0.9);
}

.memory-card-wide img {
  height: 100%;
  min-height: 320px;
}

.memory-card div {
  padding: 24px;
}

.memory-card span,
.people-list strong {
  color: var(--gold-dark);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.memory-card h3 {
  margin: 12px 0 10px;
  color: #3a332c;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.08;
}

.memory-card p,
.people-copy p:not(.section-label),
.people-list p {
  margin: 0;
  color: var(--muted);
}

.people-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.88fr);
  gap: clamp(28px, 5vw, 62px);
  padding-top: 22px;
}

.people-copy h2 {
  margin: 0 0 22px;
  color: #3b332c;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.02;
}

.people-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.people-list article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(251, 248, 242, 0.72);
}

.people-list p {
  margin-top: 14px;
}

.works-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 7vw, 110px);
}

.works-grid::before {
  position: absolute;
  top: 92px;
  bottom: 92px;
  left: 50%;
  width: 1px;
  background: rgba(167, 134, 86, 0.46);
  content: "";
}

.works-grid::after {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--gold);
  content: "†";
  font-size: 2rem;
  transform: translate(-50%, -50%);
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-soft);
  box-shadow: 0 18px 34px rgba(83, 70, 55, 0.06);
}

.work-image {
  min-height: 250px;
  background-position: center;
  background-size: cover;
  filter: sepia(0.2) saturate(0.88);
}

.work-image.comedor {
  background-image:
    url("assets/padre-luis-misa.jpg"),
    url("https://admin.imagenzac.com.mx/wp-content/uploads/2020/10/WhatsApp-Image-2020-10-26-at-14.11.04-1.jpeg");
  background-position: center 38%;
}

.work-image.dispensario {
  background-image:
    url("assets/padre-luis-casual.jpg"),
    url("https://admin.imagenzac.com.mx/wp-content/uploads/2020/10/WhatsApp-Image-2020-10-26-at-14.11.05.jpeg");
  background-position: center 24%;
}

.work-icon {
  position: absolute;
  top: 164px;
  left: 34px;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.96);
  color: var(--gold-dark);
  font-size: 2.35rem;
  box-shadow: var(--shadow);
}

.work-body {
  padding: 34px;
}

.work-body h3 {
  max-width: 330px;
  margin: 0 0 12px;
  color: #3a332c;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-transform: uppercase;
}

.work-body p {
  max-width: 360px;
  margin: 0 0 24px;
  color: var(--muted);
}

.small-button {
  min-height: 36px;
  padding: 0 18px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-grid a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.news-grid a:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.cards-section article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-soft);
}

.cards-section span {
  color: var(--gold-dark);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cards-section p {
  margin: 18px 0 0;
  color: var(--muted);
}

.recognition-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 10px;
}

.recognition-section > div {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(251, 248, 242, 0.7);
}

.recognition-section h2 {
  margin: 0 0 16px;
  color: #3a332c;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.04;
}

.recognition-section p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.quote-band {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 34px 20px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.72)),
    url("assets/padre-luis-convivencia.jpg") center/cover,
    url("https://admin.imagenzac.com.mx/wp-content/uploads/2020/10/misa--768x399.jpg") center/cover;
  text-align: center;
}

.quote-band p {
  margin: 0;
  color: #443a32;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-style: italic;
  line-height: 1;
}

.quote-band span {
  color: var(--gold-dark);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.footer {
  background: var(--footer);
  color: #fff;
  padding: clamp(42px, 6vw, 70px) clamp(20px, 6vw, 78px) 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 180px;
  gap: clamp(28px, 5vw, 70px);
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer h2 {
  margin: 0 0 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer p {
  max-width: 300px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  padding: 0 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  list-style: none;
}

.footer-mark {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 190px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-mark span {
  font-size: 3.2rem;
}

.footer-mark strong {
  margin-top: 4px;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.copyright {
  width: min(1160px, 100%);
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 620px;
    padding-bottom: 36px;
  }

  .hero-portrait {
    min-height: 520px;
    background-size: auto, auto, cover;
    background-position: center, center, center 30%;
  }

  .social-grid,
  .bio-grid,
  .history-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-block {
    grid-template-columns: 1fr;
  }

  .real-images {
    grid-template-columns: 1fr 1fr;
  }

  .real-images .image-feature {
    grid-column: span 2;
    grid-row: auto;
  }

  .real-images .image-feature img {
    height: 520px;
  }

  .service-copy,
  .cards-section,
  .recognition-section,
  .people-section {
    grid-template-columns: 1fr;
  }

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

  .memory-card-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .memory-card-wide img {
    height: 420px;
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand-text small,
  .brand-text em,
  .donate-button span {
    display: none;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .donate-button {
    min-height: 34px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    padding: 42px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero h1 span {
    letter-spacing: 0.22em;
  }

  .hero-portrait {
    min-height: 460px;
    background-size: auto, auto, cover;
    background-position: center, center, center 28%;
  }

  .social-panel {
    width: calc(100% - 24px);
    margin-top: -48px;
  }

  .social-panel h2 {
    gap: 12px;
    font-size: 0.68rem;
  }

  .social-grid,
  .bio-grid,
  .history-grid,
  .real-images,
  .service-copy,
  .works-grid,
  .news-grid,
  .cards-section,
  .recognition-section,
  .memory-grid,
  .people-section,
  .people-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-grid a {
    padding: 10px 0;
  }

  .story-block,
  .real-images,
  .bio-section,
  .history-section,
  .service-section,
  .works-section,
  .news-section,
  .cards-section,
  .recognition-section,
  .memory-section,
  .people-section {
    width: calc(100% - 24px);
  }

  .story-block {
    padding: 52px 18px 30px;
  }

  .video-card {
    min-height: 280px;
  }

  .real-images {
    padding-top: 34px;
  }

  .real-images .image-feature {
    grid-column: auto;
  }

  .real-images img,
  .real-images .image-feature img {
    height: 380px;
  }

  .real-images figcaption {
    min-height: auto;
  }

  .memory-card-wide {
    grid-column: auto;
  }

  .memory-card img,
  .memory-card-wide img {
    height: 300px;
  }

  .section-title {
    gap: 14px;
  }

  .section-title h2 {
    font-size: 1.45rem;
    letter-spacing: 0.12em;
  }

  .works-grid::before,
  .works-grid::after {
    display: none;
  }

  .work-image {
    min-height: 260px;
  }

  .work-icon {
    top: 176px;
    left: 22px;
    width: 88px;
    height: 88px;
  }

  .work-body {
    padding: 30px 22px;
  }

  .quote-band p {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .quote-band span {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
