:root {
  --black: #101010;
  --ink: #161616;
  --paper: #f3f1eb;
  --white: #fffdfa;
  --blue: #55c9f1;
  --blue-dark: #149acb;
  --red: #f04444;
  --line: rgba(16, 16, 16, 0.18);
  --page: min(1320px, calc(100vw - 80px));
  --font-geist-sans: Inter, Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  cursor: default;
}

a,
button {
  color: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

::selection {
  color: var(--black);
  background: var(--blue);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  padding: 0 40px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 10, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  grid-template-columns: 25px auto;
  align-items: center;
  gap: 0 9px;
  min-width: 176px;
  color: inherit;
  font-weight: 900;
}

.brand.has-image {
  display: block;
}

.brand-image {
  width: auto;
  max-width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand .brand-image {
  height: 62px;
}

.brand-cross {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--black);
  background: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 22px;
  line-height: 1;
  transform: rotate(-3deg);
}

.brand-name {
  font-size: 23px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-full {
  grid-column: 2;
  margin-top: 2px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav a,
.text-button,
.underlined-link {
  position: relative;
}

.desktop-nav a::after,
.text-button::after,
.underlined-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.text-button:hover::after,
.underlined-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spotify-button,
.event-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.spotify-button span {
  color: #68db79;
}

.spotify-button:hover {
  color: var(--black);
  background: var(--white);
}

.event-button {
  color: var(--black);
  border-color: var(--red);
  background: var(--red);
}

.event-button:hover,
.primary-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--blue);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.74) contrast(1.08);
  transform: scale(1.025);
  transition: transform 8s ease;
}

.hero-slide.is-active > img {
  transform: scale(1.075);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.76) 38%, rgba(5, 5, 5, 0.12) 76%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), transparent 45%);
}

.hero-paper {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    repeating-linear-gradient(96deg, transparent 0 33px, rgba(255, 255, 255, 0.08) 34px 35px),
    repeating-linear-gradient(4deg, transparent 0 46px, rgba(255, 255, 255, 0.055) 47px 48px);
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--page);
  max-width: 780px;
  margin: 0 auto;
  padding-top: clamp(160px, 23vh, 230px);
  margin-left: max(40px, calc((100vw - 1320px) / 2));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: rotate(-2deg);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.74);
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(4.7rem, 8.8vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero-subtitle {
  display: inline-block;
  margin-top: 22px;
  padding: 6px 10px 8px;
  color: var(--black);
  background: var(--blue);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.hero-ctas,
.sermon-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  color: var(--black);
  border: 2px solid var(--blue);
  background: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.text-button,
.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: 40px;
  bottom: 42px;
  display: flex;
  gap: 8px;
}

.hero-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.hero-controls button.is-active {
  color: var(--black);
  border-color: var(--blue);
  background: var(--blue);
}

.scroll-note {
  position: absolute;
  z-index: 5;
  bottom: 50px;
  left: 40px;
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.025), transparent 28%),
    radial-gradient(circle at 77% 82%, rgba(0, 0, 0, 0.035), transparent 24%),
    repeating-linear-gradient(2deg, transparent 0 46px, rgba(0, 0, 0, 0.018) 47px 48px),
    var(--paper);
}

.manifesto,
.campuses-section,
.gallery-section,
.contact-section {
  padding: 120px max(40px, calc((100vw - 1320px) / 2));
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 7vw;
  align-items: center;
  min-height: 620px;
  padding: 110px max(40px, calc((100vw - 1320px) / 2));
}

.custom-section-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.custom-section h2 {
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.88;
  text-transform: uppercase;
}

.custom-section-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.72;
}

.custom-section-image {
  min-height: 430px;
  overflow: hidden;
}

.custom-section-image img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.custom-theme-paper {
  background: var(--paper);
}

.custom-theme-dark {
  color: var(--white);
  background: var(--black);
}

.custom-theme-blue {
  background: var(--blue);
}

.custom-theme-red {
  color: var(--white);
  background: var(--red);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 70px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--black);
  background: var(--blue);
  font-size: 9px;
  transform: rotate(-3deg);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.65fr);
  gap: 8vw;
  align-items: start;
}

.manifesto h2,
.campuses-heading h2,
.contact-section h2 {
  font-size: clamp(3.3rem, 6.5vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.078em;
  line-height: 0.9;
  text-transform: uppercase;
}

.manifesto h2 em,
.campuses-heading h2 em {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--blue-dark);
  font-style: normal;
}

.manifesto h2 em::after,
.campuses-heading h2 em::after {
  position: absolute;
  z-index: -1;
  right: -2%;
  bottom: 3px;
  left: -2%;
  height: 9px;
  content: "";
  background: rgba(85, 201, 241, 0.28);
  transform: rotate(-1deg);
}

.manifesto-copy {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.manifesto-copy > p,
.campuses-heading > p,
.contact-section > div:last-child > p {
  color: #4b4b4b;
  font-size: 17px;
  line-height: 1.65;
}

.underlined-link {
  width: fit-content;
  margin-top: 10px;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  margin-top: 95px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.manifesto-stats > div {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.manifesto-stats strong {
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.manifesto-stats > div span {
  max-width: 120px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.manifesto-stats > p {
  position: relative;
  max-width: 500px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.manifesto-stats small {
  display: block;
  margin-top: 13px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.red-mark {
  position: absolute;
  top: -43px;
  left: -32px;
  color: var(--red);
  font-size: 80px;
  font-weight: 900;
  transform: rotate(-8deg);
}

.scribble {
  position: absolute;
  pointer-events: none;
}

.scribble-blue {
  top: 72px;
  right: 7%;
  width: 180px;
  height: 60px;
  border-top: 6px solid var(--blue);
  border-radius: 50%;
  opacity: 0.6;
  transform: rotate(-11deg);
}

.gallery-section {
  color: var(--white);
  background: var(--black);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.42fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}

.gallery-heading h2 {
  margin-top: 18px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.gallery-heading > p {
  color: rgba(255, 255, 255, 0.59);
  font-size: 16px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  grid-column: span 5;
  min-height: 350px;
  overflow: hidden;
  margin: 0;
}

.gallery-card-wide {
  grid-column: span 7;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08);
  transition:
    transform 550ms ease,
    filter 550ms ease;
}

.gallery-card:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: var(--black);
  background: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card:nth-child(2) figcaption,
.gallery-card:nth-child(4) figcaption {
  background: var(--red);
  transform: rotate(1deg);
}

.gallery-card figcaption span {
  opacity: 0.58;
}

.sermons-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 7vw;
  align-items: center;
  padding: 110px max(40px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(20, 154, 203, 0.38), transparent 50%),
    #082735;
}

.sermons-copy h2 {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(3rem, 5.4vw, 6.3rem);
  font-weight: 950;
  letter-spacing: -0.078em;
  line-height: 0.86;
  text-transform: uppercase;
}

.sermons-copy > p:last-of-type {
  max-width: 530px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.6;
}

.light-button {
  background: var(--white);
  border-color: var(--white);
}

.light-link::after {
  background: var(--white);
}

.sermon-video {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: var(--white);
  background: #050505;
}

.sermon-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 55%);
}

.sermon-video > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55);
  transition:
    filter 400ms ease,
    transform 500ms ease;
}

.sermon-video:hover > img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.live-chip {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  color: var(--black);
  background: var(--red);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--black);
  background: var(--blue);
  font-size: 24px;
  transform: translate(-50%, -50%) rotate(-3deg);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.sermon-video:hover .play-button {
  background: var(--white);
  transform: translate(-50%, -50%) rotate(0) scale(1.06);
}

.sermon-video > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 7px;
}

.sermon-video small {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sermon-video strong {
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.campuses-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 7vw;
  align-items: end;
}

.campus-list {
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.campus-card {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 35px;
  min-height: 170px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.campus-image {
  position: relative;
  height: 130px;
  overflow: hidden;
  background: #ddd;
}

.campus-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition:
    filter 350ms ease,
    transform 450ms ease;
}

.campus-card:hover .campus-image img {
  filter: grayscale(0.2);
  transform: scale(1.04);
}

.campus-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--black);
  background: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 900;
}

.campus-info p,
.campus-info small {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.campus-info p {
  color: var(--blue-dark);
}

.campus-info h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.campus-info small {
  color: #777;
}

.campus-card > a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--black);
  font-size: 21px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.campus-card > a:hover {
  color: var(--black);
  background: var(--blue);
}

.campus-note {
  margin-top: 30px;
  color: #666;
  font-size: 14px;
}

.campus-note a {
  color: var(--ink);
  font-weight: 800;
}

.event-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  min-height: 420px;
  overflow: hidden;
  padding: 80px max(40px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(240, 68, 68, 0.94), rgba(149, 20, 20, 0.92)),
    var(--red);
}

.event-strip h2 {
  margin-top: 22px;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.095em;
  line-height: 0.72;
  text-transform: uppercase;
}

.event-strip > div > p:last-child {
  margin-top: 28px;
  font-size: 18px;
}

.event-strip > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 40px;
  padding: 0 22px;
  color: var(--black);
  background: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-year {
  position: absolute;
  top: -38px;
  right: 2%;
  color: rgba(255, 255, 255, 0.1);
  font-size: 470px;
  font-weight: 950;
  letter-spacing: -0.14em;
  line-height: 1;
  transform: rotate(-7deg);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.45fr);
  gap: 9vw;
  align-items: end;
  background: var(--blue);
}

.contact-section h2 {
  margin-top: 20px;
}

.contact-section > div:last-child {
  display: grid;
  gap: 30px;
}

.contact-section .primary-button {
  width: fit-content;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.site-footer {
  padding: 72px 40px 25px;
  color: var(--white);
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.65fr 0.65fr;
  gap: 7vw;
  width: var(--page);
  margin: 0 auto;
  padding-bottom: 70px;
}

.footer-brand {
  height: fit-content;
}

.footer-top > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.55;
}

.footer-top nav,
.footer-socials {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 13px;
}

.footer-top nav p,
.footer-socials p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-top nav a:hover,
.footer-socials a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  width: var(--page);
  justify-content: space-between;
  gap: 25px;
  margin: 0 auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .header-actions {
    margin-right: 12px;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    align-content: center;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
  }

  .mobile-menu nav {
    position: absolute;
    top: 51px;
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 32px));
    padding: 18px;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

  .mobile-menu nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-geist-mono), monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu nav .mobile-event {
    margin-top: 10px;
    color: var(--black);
    border: 0;
    background: var(--red);
  }

  .manifesto-grid,
  .campuses-heading,
  .gallery-heading,
  .contact-section,
  .custom-section {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .campuses-heading > p,
  .gallery-heading > p,
  .contact-section > div:last-child {
    max-width: 620px;
  }

  .sermons-section {
    grid-template-columns: 1fr;
  }

  .sermon-video {
    min-height: 520px;
  }

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

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-full,
  .spotify-button {
    display: none;
  }

  .event-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 8px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide > img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.91), rgba(5, 5, 5, 0.35)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.88), transparent 70%);
  }

  .hero-content {
    width: calc(100vw - 36px);
    margin-left: 18px;
    padding-top: 160px;
  }

  .hero h1,
  .hero h2 {
    max-width: 430px;
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero-copy {
    max-width: calc(100vw - 48px);
    font-size: 15px;
  }

  .hero-ctas {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .scroll-note {
    display: none;
  }

  .hero-controls {
    right: 18px;
    bottom: 20px;
  }

  .manifesto,
  .campuses-section,
  .gallery-section,
  .contact-section,
  .sermons-section,
  .custom-section {
    padding: 86px 18px;
  }

  .section-label {
    margin-bottom: 44px;
  }

  .manifesto h2,
  .campuses-heading h2,
  .contact-section h2 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .manifesto-stats > p {
    margin-left: 28px;
  }

  .gallery-heading h2,
  .sermons-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

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

  .gallery-card,
  .gallery-card-wide {
    grid-column: 1;
    min-height: 330px;
  }

  .sermon-video {
    min-height: 410px;
  }

  .sermon-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .campus-card {
    grid-template-columns: 105px 1fr auto;
    gap: 15px;
    min-height: 130px;
  }

  .campus-image {
    height: 92px;
  }

  .campus-info h3 {
    font-size: 1.55rem;
  }

  .campus-info small {
    display: none;
  }

  .campus-card > a {
    width: 38px;
    height: 38px;
  }

  .event-strip {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 430px;
    padding: 70px 18px;
  }

  .event-strip h2 {
    font-size: 18vw;
  }

  .event-strip > a {
    width: fit-content;
  }

  .event-year {
    top: 15px;
    right: -30px;
    font-size: 260px;
  }

  .site-footer {
    padding: 65px 18px 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Páginas internas */
.inner-main {
  min-height: 70vh;
  overflow: hidden;
}

.inner-header .desktop-nav a.active::after {
  width: 100%;
}

.inner-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: flex-end;
  padding: 170px max(40px, calc((100vw - 1320px) / 2)) 90px;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.inner-hero::before,
.inner-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.inner-hero::before {
  inset: 0;
  opacity: .52;
  background:
    radial-gradient(circle at 78% 24%, rgba(85, 201, 241, .28), transparent 24%),
    linear-gradient(100deg, #000 8%, transparent 70%);
}

.inner-hero::after {
  right: -4vw;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 70px solid var(--blue);
  border-radius: 50%;
  opacity: .65;
  transform: rotate(-12deg);
}

.sermons-page-hero::after { border-color: var(--red); }
.churches-page-hero::after { border-radius: 0; transform: rotate(12deg); }
.contact-page-hero::after { border-color: var(--red); border-radius: 40% 60% 35% 65%; }

.inner-hero-copy {
  width: min(900px, 100%);
}

.inner-hero h1 {
  max-width: 1000px;
  margin: 16px 0 22px;
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: .78;
  text-transform: uppercase;
}

.inner-hero-copy > p:last-child {
  max-width: 660px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.7;
}

.featured-sermon,
.about-intro,
.church-information,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 7vw, 110px);
  width: var(--page);
  margin: 0 auto;
  padding: 110px 0;
}

.featured-sermon-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

.featured-sermon-image img,
.church-card-image img,
.about-story figure img,
.inner-gallery img,
.campus-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.featured-sermon-image:hover img,
.church-card:hover img { transform: scale(1.035); }

.featured-sermon > div:last-child {
  align-self: center;
}

.featured-sermon h2,
.directory-heading h2,
.about-intro h2,
.church-information h2,
.contact-details h2 {
  margin: 16px 0 25px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .9;
  text-transform: uppercase;
}

.featured-sermon > div > p:not(.eyebrow),
.about-intro > div > div p,
.about-story-copy > p:last-child,
.church-information-copy > p:last-child,
.contact-details > p:not(.eyebrow) {
  color: #5d5a54;
  font-size: 16px;
  line-height: 1.75;
}

.sermon-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 22px 0;
  font-family: var(--font-geist-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sermon-meta-line span + span::before { margin-right: 20px; color: var(--red); content: "/"; }

.sermon-library,
.church-directory {
  padding: 100px max(40px, calc((100vw - 1320px) / 2)) 120px;
  background: var(--white);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 48px;
  padding-bottom: 8px;
}

.filter-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: #5d5a54;
  background: transparent;
  font-family: var(--font-geist-mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.filter-tabs button.active { color: var(--black); border-color: var(--blue); background: var(--blue); }

.sermon-grid,
.church-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px 20px;
}

.sermon-card[hidden] { display: none; }
.sermon-card-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: #ddd; }
.sermon-card-media img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.sermon-card:hover img { transform: scale(1.04); }
.sermon-card-media span { position: absolute; right: 10px; bottom: 10px; padding: 8px 10px; color: var(--white); background: var(--black); font-family: var(--font-geist-mono); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.sermon-card-copy { padding: 20px 4px 0; }
.sermon-card-copy > p { color: var(--red); font-family: var(--font-geist-mono); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.sermon-card-copy h2 { margin: 9px 0 8px; font-size: 25px; font-weight: 900; letter-spacing: -.045em; }
.sermon-card-copy > span { color: #77736c; font-size: 12px; }
.public-empty { padding: 70px 0; color: #77736c; text-align: center; }

.sermon-detail { width: var(--page); margin: 0 auto; padding: 170px 0 120px; }
.detail-heading { max-width: 900px; margin-bottom: 48px; }
.detail-heading > a { display: inline-block; margin-bottom: 35px; font-family: var(--font-geist-mono); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.detail-heading h1 { margin-top: 14px; font-size: clamp(4rem, 8vw, 8rem); font-weight: 950; letter-spacing: -.085em; line-height: .84; text-transform: uppercase; }
.sermon-player { position: relative; width: 100%; overflow: hidden; background: var(--black); }
.sermon-player iframe { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }
.sermon-player > img { max-height: 760px; object-fit: cover; }
.audio-cover { display: grid; min-height: 520px; place-items: center; background-position: center; background-size: cover; }
.audio-cover::after { position: absolute; inset: 0; content: ""; background: rgba(0,0,0,.35); }
.audio-cover span { z-index: 1; display: grid; width: 95px; height: 95px; place-items: center; border-radius: 50%; color: var(--black); background: var(--blue); font-size: 34px; }
.sermon-player audio { position: absolute; z-index: 2; right: 8%; bottom: 45px; left: 8%; width: 84%; }
.sermon-detail-copy { display: grid; grid-template-columns: 1fr 360px; gap: 80px; padding: 65px 0; }
.sermon-detail-copy > div > p { max-width: 760px; font-size: 17px; line-height: 1.8; }
.download-card { display: flex; align-items: center; gap: 18px; padding: 24px; color: var(--white); background: var(--black); }
.download-card > span { display: grid; width: 44px; height: 44px; place-items: center; color: var(--black); background: var(--blue); font-size: 22px; }
.download-card div { display: grid; gap: 5px; }
.download-card small { color: rgba(255,255,255,.5); font-family: var(--font-geist-mono); font-size: 8px; text-transform: uppercase; }

.about-intro { grid-template-columns: 180px 1fr; }
.about-intro > div { display: grid; grid-template-columns: .9fr 1fr; gap: 70px; }
.about-intro em { color: var(--blue-dark); font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.about-intro > div > div { display: grid; align-content: center; gap: 22px; }
.about-blocks { background: var(--white); }
.about-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 610px; }
.about-story.is-reversed .about-story-copy { order: 2; }
.about-story-copy { display: grid; align-content: center; padding: clamp(50px, 8vw, 120px); }
.about-story-copy h2 { margin: 18px 0 25px; font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 950; letter-spacing: -.075em; line-height: .88; text-transform: uppercase; }
.about-story figure { min-height: 550px; margin: 0; overflow: hidden; }
.about-story-mark { display: grid; place-items: center; min-height: 500px; color: var(--black); background: var(--blue); font-size: 260px; font-weight: 100; }
.about-story-dark { color: var(--white); background: var(--black); }
.about-story-dark .about-story-copy > p:last-child { color: rgba(255,255,255,.64); }
.about-story-blue { background: var(--blue); }
.about-quote { padding: 120px 30px; color: var(--white); background: var(--red); text-align: center; }
.about-quote > span { font-family: Georgia, serif; font-size: 90px; line-height: .5; }
.about-quote blockquote { max-width: 900px; margin: 30px auto; font-size: clamp(2.2rem, 4vw, 4.6rem); font-weight: 900; letter-spacing: -.055em; line-height: 1; }
.about-quote p { font-family: var(--font-geist-mono); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.inner-gallery,
.campus-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 4px; background: var(--black); }
.inner-gallery figure,
.campus-gallery figure { min-height: 340px; margin: 0; overflow: hidden; }

.directory-heading { display: grid; grid-template-columns: 260px 1fr; gap: 50px; margin-bottom: 70px; }
.directory-heading h2 { max-width: 820px; margin: 0; }
.church-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 65px 24px; }
.church-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 370px; border-top: 1px solid var(--line); }
.church-card-image { position: relative; min-height: 370px; overflow: hidden; }
.church-card-image > span { position: absolute; top: 0; left: 0; padding: 12px; color: var(--black); background: var(--blue); font-family: var(--font-geist-mono); font-size: 10px; font-weight: 900; }
.church-card > div { display: grid; align-content: center; padding: 35px; }
.church-card > div > p { color: var(--red); font-family: var(--font-geist-mono); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.church-card h2 { margin: 11px 0 16px; font-size: clamp(2rem, 3vw, 3.6rem); font-weight: 950; letter-spacing: -.065em; line-height: .9; text-transform: uppercase; }
.church-card small { color: #68655f; line-height: 1.55; }
.church-card .underlined-link { width: fit-content; margin-top: 25px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.church-detail-hero { position: relative; min-height: 760px; color: var(--white); background: var(--black); }
.church-detail-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.church-detail-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.12) 70%); }
.church-detail-title { position: absolute; right: max(40px, calc((100vw - 1320px) / 2)); bottom: 80px; left: max(40px, calc((100vw - 1320px) / 2)); }
.church-detail-title > a { display: inline-block; margin-bottom: 45px; font-family: var(--font-geist-mono); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.church-detail-title h1 { margin-top: 12px; font-size: clamp(4.5rem, 10vw, 10rem); font-weight: 950; letter-spacing: -.09em; line-height: .78; text-transform: uppercase; }
.church-information-copy > p:last-child { max-width: 690px; }
.church-facts { display: grid; align-self: center; border-top: 1px solid var(--line); }
.church-facts > div { display: grid; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.church-facts small { color: var(--red); font-family: var(--font-geist-mono); font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.church-facts p,
.church-facts a { font-size: 14px; line-height: 1.55; }
.church-map iframe { display: block; width: 100%; min-height: 560px; border: 0; filter: grayscale(.25); }
.map-placeholder { display: flex; align-items: center; justify-content: center; gap: 30px; min-height: 280px; padding: 40px; background: var(--blue); }

.contact-layout { align-items: start; }
.contact-details { position: sticky; top: 130px; }
.contact-email { display: inline-block; margin-top: 35px; border-bottom: 2px solid var(--red); font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 900; }
.contact-social-links { display: flex; gap: 20px; margin-top: 30px; font-family: var(--font-geist-mono); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.contact-form-wrap { padding: clamp(25px, 4vw, 55px); background: var(--white); box-shadow: 0 24px 70px rgba(0,0,0,.08); }
.contact-form { display: grid; gap: 20px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-family: var(--font-geist-mono); font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea { width: 100%; min-height: 50px; padding: 13px 0; border: 0; border-bottom: 1px solid #bdb9b1; border-radius: 0; background: transparent; font: 500 15px var(--font-geist-sans); outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blue-dark); }
.contact-form .primary-button { width: fit-content; border: 0; margin-top: 15px; }
.form-honeypot { position: absolute !important; left: -9999px; }
.form-errors { margin-bottom: 20px; padding: 16px; color: #a11f1f; border-left: 4px solid var(--red); background: #fff0ee; font-size: 13px; }
.form-success { display: grid; min-height: 420px; place-items: center; align-content: center; gap: 15px; text-align: center; }
.form-success span { display: grid; width: 65px; height: 65px; place-items: center; border-radius: 50%; background: var(--blue); font-size: 28px; }
.form-success h2 { font-size: 42px; font-weight: 950; letter-spacing: -.06em; text-transform: uppercase; }
.form-success p { max-width: 420px; color: #68655f; line-height: 1.6; }

.page-cta { display: flex; min-height: 330px; align-items: center; justify-content: space-between; gap: 40px; padding: 70px max(40px, calc((100vw - 1320px) / 2)); color: var(--white); background: var(--black); }
.page-cta h2 { max-width: 850px; margin-top: 12px; font-size: clamp(2.7rem, 6vw, 6.5rem); font-weight: 950; letter-spacing: -.075em; line-height: .88; text-transform: uppercase; }

.reveal-on-scroll { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.22,1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .featured-sermon,
  .church-information,
  .contact-layout { grid-template-columns: 1fr; }
  .sermon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .church-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro > div { grid-template-columns: 1fr; }
  .about-story { min-height: auto; }
  .about-story-copy { padding: 60px 35px; }
  .about-story figure { min-height: 450px; }
  .inner-gallery,
  .campus-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-details { position: static; }
  .sermon-detail-copy { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 680px) {
  .inner-hero { min-height: 540px; padding: 145px 18px 60px; }
  .inner-hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .featured-sermon,
  .about-intro,
  .church-information,
  .contact-layout { width: calc(100% - 36px); padding: 75px 0; }
  .featured-sermon-image { min-height: 330px; }
  .sermon-library,
  .church-directory { padding: 75px 18px; }
  .sermon-grid { grid-template-columns: 1fr; }
  .sermon-detail { width: calc(100% - 36px); padding: 135px 0 75px; }
  .detail-heading h1 { font-size: 17vw; }
  .audio-cover { min-height: 380px; }
  .about-story { grid-template-columns: 1fr; }
  .about-story.is-reversed .about-story-copy { order: 0; }
  .about-story figure,
  .about-story-mark { min-height: 360px; }
  .directory-heading { grid-template-columns: 1fr; gap: 20px; }
  .church-card { grid-template-columns: 1fr; }
  .church-card-image { min-height: 300px; }
  .church-detail-hero { min-height: 650px; }
  .church-detail-title { right: 18px; bottom: 55px; left: 18px; }
  .church-detail-title h1 { font-size: 17vw; }
  .inner-gallery,
  .campus-gallery { grid-template-columns: 1fr; }
  .inner-gallery figure,
  .campus-gallery figure { min-height: 300px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .page-cta { align-items: flex-start; flex-direction: column; padding: 65px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; }
}

/* Ajuste de legibilidad y refinamientos septiembre 2026 */
.eyebrow { font-size: 13px; }
.primary-button { min-height: 58px; padding-inline: 26px; font-size: 13px; }
.text-button,
.underlined-link { font-size: 13px; }
.hero-copy { font-size: 19px; }
.manifesto-copy-main p,
.campuses-heading > p,
.contact-section > div:last-child > p,
.sermons-copy > p:not(.eyebrow),
.gallery-heading > p { font-size: 18px; line-height: 1.7; }
.inner-hero-copy > p:last-child,
.featured-sermon > div > p:not(.eyebrow),
.church-information-copy > p:last-child,
.contact-details > p:not(.eyebrow),
.sermon-detail-copy > div > p { font-size: 19px; }
.sermon-meta-line { font-size: 12px; }
.sermon-card-copy > p,
.church-card > div > p { font-size: 11px; }
.sermon-card-copy > span { font-size: 14px; }
.filter-tabs button { min-height: 46px; font-size: 11px; }
.footer-top > p { font-size: 19px; }
.footer-top nav,
.footer-socials { font-size: 15px; }
.footer-top nav p,
.footer-socials p { font-size: 11px; }
.footer-bottom { font-size: 10px; }

.manifesto-copy {
  grid-template-columns: 1fr;
  gap: 18px;
}

.manifesto-copy-main {
  padding: 2px 0 16px;
}

.manifesto-highlight {
  position: relative;
  padding: 26px 28px 27px 58px;
  border-left: 5px solid var(--red);
  background: rgba(85, 201, 241, .14);
  transform: rotate(-.35deg);
}

.manifesto-highlight > span {
  position: absolute;
  top: 6px;
  left: 17px;
  color: var(--blue-dark);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.manifesto-highlight p {
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -.025em;
  line-height: 1.45;
}

.manifesto-stats {
  grid-template-columns: 1fr;
  justify-items: start;
  margin-top: 78px;
}

.manifesto-stats > p {
  max-width: 620px;
  margin-left: 34px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.manifesto-stats small { font-size: 11px; }

.gallery-card-open {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  border: 0;
  background: transparent;
  text-align: left;
}

.gallery-card-open:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: -4px;
}

.gallery-card figcaption {
  right: 18px;
  bottom: 18px;
  gap: 12px;
  padding: 14px 17px;
  font-size: 13px;
}

.gallery-card figcaption small {
  padding-left: 12px;
  border-left: 1px solid rgba(0,0,0,.28);
  font-size: 10px;
}

.gallery-dialog {
  width: min(1080px, calc(100vw - 40px));
  max-width: none;
  padding: 0;
  overflow: visible;
  color: var(--white);
  border: 0;
  background: var(--black);
  box-shadow: 0 35px 100px rgba(0,0,0,.48);
}

.gallery-dialog::backdrop {
  background: rgba(4, 12, 16, .83);
  backdrop-filter: blur(10px);
}

.gallery-dialog-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 570px;
}

.gallery-dialog-layout > img {
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.gallery-dialog-layout > div {
  display: grid;
  align-content: center;
  padding: clamp(35px, 6vw, 75px);
}

.gallery-dialog-layout h2 {
  margin: 22px 0 25px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .88;
  text-transform: uppercase;
}

.gallery-dialog-layout > div > p:last-child {
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.7;
}

.gallery-dialog-close {
  position: absolute;
  z-index: 3;
  top: -18px;
  right: -18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--black);
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  font-size: 30px;
}

.campus-card {
  grid-template-columns: 245px minmax(0, 1fr) auto;
  min-height: 205px;
  padding: 25px 0;
}

.campus-image { height: 155px; }
.campus-info > p { font-size: 11px; }

.campus-facts,
.church-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 25px;
}

.campus-facts span,
.church-card-facts span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5f5c56;
  font-size: 15px;
  line-height: 1.45;
}

.campus-facts b,
.church-card-facts b { font-weight: 650; }

.campus-facts svg,
.church-card-facts svg,
.campus-map-link svg,
.church-map-button svg,
.event-cta svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.campus-card > .campus-map-link {
  display: inline-flex;
  width: auto;
  min-width: 150px;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 17px;
  color: var(--black);
  border: 1px solid var(--black);
  font-family: var(--font-geist-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.campus-card > .campus-map-link:hover { background: var(--blue); }
.campus-note { font-size: 16px; }

.event-strip {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 7vw;
  min-height: 690px;
  padding-block: 95px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(85,201,241,.25), transparent 31%),
    radial-gradient(circle at 8% 86%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(120deg, #f04444 0%, #d62f3a 48%, #a91625 100%);
}

.event-strip::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 9px;
  content: "";
  background: var(--blue);
}

.event-editorial { position: relative; z-index: 2; }
.event-strip .eyebrow.light { color: rgba(255,255,255,.72); }
.event-strip .event-name {
  max-width: 720px;
  margin: 20px 0 40px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: .78;
}

.event-year-story {
  display: grid;
  max-width: 650px;
  gap: 22px;
}

.event-year-story > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.34);
}

.event-year-story strong {
  color: var(--black);
  font-size: clamp(4.7rem, 7vw, 7.6rem);
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: .76;
}

.event-year-story p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.65rem, 2.4vw, 2.75rem);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: .88;
  text-transform: uppercase;
}

.event-editorial > p:last-of-type {
  max-width: 560px;
  margin-top: 30px;
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.65;
}

.event-cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  padding: 0 21px;
  color: var(--black);
  background: var(--white);
  font-family: var(--font-geist-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.event-date-art {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: center;
  justify-items: center;
}

.event-date-art strong {
  color: var(--blue);
  font-family: Arial Rounded MT Bold, Arial, sans-serif;
  font-size: clamp(7rem, 11vw, 11rem);
  font-weight: 950;
  letter-spacing: -.12em;
  line-height: .72;
  -webkit-text-stroke: 2px rgba(20,154,203,.28);
  text-shadow:
    -3px -4px 0 rgba(255,255,255,.72),
    0 7px 0 #1b9dcb,
    0 13px 22px rgba(0,0,0,.18),
    -5px -5px 10px rgba(255,255,255,.7);
  transform: rotate(-2deg);
}

.event-date-art span {
  grid-column: 1 / -1;
  margin-top: 28px;
  font-family: var(--font-geist-mono);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .45em;
  color: var(--white);
}

.church-card-image { margin: 0; }
.church-card-facts { display: grid; margin-top: 12px; }
.church-card-facts span { font-size: 16px; }
.church-map-button {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 0 18px;
  color: var(--black);
  background: var(--blue);
  font-family: var(--font-geist-mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-page-gallery figure { position: relative; }
.about-page-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  color: var(--black);
  background: var(--blue);
  font-family: var(--font-geist-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

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

.legal-page {
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 170px 0 110px;
}

.legal-page header { margin-bottom: 70px; }
.legal-page h1 {
  margin: 22px 0 20px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .82;
  text-transform: uppercase;
}

.legal-page header > p:last-child,
.legal-page section p { color: #5e5a54; font-size: 18px; line-height: 1.75; }
.legal-page section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-page section h2 { margin-bottom: 13px; font-size: 28px; font-weight: 900; letter-spacing: -.04em; }
.legal-page section a { color: var(--blue-dark); font-weight: 800; text-decoration: underline; }

.coming-soon {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 150px max(40px, calc((100vw - 1320px) / 2)) 80px;
  background: var(--paper);
  isolation: isolate;
}

.coming-soon-paper {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .55;
  background:
    repeating-linear-gradient(8deg, transparent 0 45px, rgba(0,0,0,.025) 46px 47px),
    radial-gradient(circle at 80% 30%, rgba(85,201,241,.28), transparent 28%);
}

.coming-soon-copy h1 {
  margin: 22px 0 30px;
  font-size: clamp(5.5rem, 11vw, 11rem);
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: .68;
  text-transform: uppercase;
}

.coming-soon-copy h1 em { color: var(--blue-dark); font-family: Georgia, serif; font-weight: 500; text-transform: none; }
.coming-soon-copy > p:not(.eyebrow) { max-width: 560px; color: #5e5a54; font-size: 20px; line-height: 1.65; }
.coming-soon-copy .primary-button { margin-top: 34px; }
.coming-soon-motion { position: relative; display: grid; min-height: 580px; place-items: center; }
.construction-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 310px;
  height: 310px;
  place-items: center;
  align-content: center;
  gap: 7px;
  color: var(--white);
  border-radius: 48% 52% 45% 55%;
  background: var(--black);
  box-shadow: 22px 24px 0 var(--blue);
  animation: construction-float 3.2s ease-in-out infinite;
}

.construction-mark b { color: var(--blue); font-size: 62px; line-height: .7; }
.construction-mark strong { font-size: 72px; font-weight: 950; letter-spacing: -.09em; }
.construction-mark small { font-family: var(--font-geist-mono); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.orbit { position: absolute; width: 470px; height: 470px; border: 2px dashed var(--red); border-radius: 50%; animation: orbit-spin 18s linear infinite; }
.orbit::after { position: absolute; top: 18px; left: 80px; width: 28px; height: 28px; content: ""; border-radius: 50%; background: var(--red); }
.orbit-two { width: 570px; height: 370px; border-color: var(--blue-dark); animation-direction: reverse; animation-duration: 14s; }

@keyframes construction-float { 50% { transform: translateY(-18px) rotate(1deg); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .event-strip { grid-template-columns: 1fr; }
  .event-date-art { max-width: 680px; }
  .coming-soon { grid-template-columns: 1fr; }
  .coming-soon-motion { min-height: 520px; }
}

@media (max-width: 680px) {
  .hero-copy,
  .manifesto-copy-main p,
  .campuses-heading > p,
  .contact-section > div:last-child > p,
  .sermons-copy > p:not(.eyebrow),
  .gallery-heading > p { font-size: 17px; }
  .gallery-card figcaption { right: 10px; bottom: 10px; font-size: 11px; }
  .gallery-card figcaption small { display: none; }
  .gallery-dialog-layout { grid-template-columns: 1fr; }
  .gallery-dialog-layout > img { min-height: 280px; max-height: 42vh; }
  .gallery-dialog-close { top: 8px; right: 8px; }
  .campus-card { grid-template-columns: 105px 1fr; }
  .campus-card > .campus-map-link { grid-column: 1 / -1; width: 100%; }
  .campus-facts { display: grid; }
  .event-strip { min-height: 760px; padding: 75px 18px; }
  .event-strip .event-name { font-size: 17vw; }
  .event-year-story > div { grid-template-columns: 1fr; gap: 10px; }
  .event-year-story strong { font-size: 20vw; }
  .event-year-story p { max-width: 14ch; font-size: 8.2vw; }
  .event-date-art { gap: 8px; }
  .event-date-art strong { font-size: 24vw; }
  .event-date-art span { font-size: 12px; }
  .footer-legal { flex-wrap: wrap; }
  .coming-soon { padding: 140px 18px 60px; }
  .coming-soon-copy h1 { font-size: 19vw; }
  .coming-soon-motion { min-height: 420px; }
  .construction-mark { width: 230px; height: 230px; }
  .construction-mark strong { font-size: 54px; }
  .orbit { width: 330px; height: 330px; }
  .orbit-two { width: 370px; height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .construction-mark,
  .orbit { animation: none; }
}
