/* ==============================================
   KINGS CHURCH — Design System
   ==============================================
   Brand: Dark Taupe #454040 · Chartreuse #E6F062
   Type:  Open Sauce Sans (all weights)
   ============================================== */

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: 'Open Sauce Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--c-taupe);
  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
ul, ol { list-style: none; }

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


/* -----------------------------------------------
   DESIGN TOKENS
----------------------------------------------- */
:root {
  /* Brand Colors */
  --c-taupe:        #454040;
  --c-warm-gray:    #605B51;
  --c-dark:         #2C2926;
  --c-darker:       #1E1B19;
  --c-chartreuse:   #E6F062;
  --c-chartreuse-2: #D8D365;
  --c-white:        #FFFFFF;
  --c-off-white:    #F4F1ED;
  --c-dim:          rgba(255, 255, 255, 0.45);
  --c-dimmer:       rgba(255, 255, 255, 0.18);

  /* Typography */
  --font: 'Open Sauce Sans', 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Spacing scale (8px base) */
  --s1:  0.5rem;   /*  8px */
  --s2:  1rem;     /* 16px */
  --s3:  1.5rem;   /* 24px */
  --s4:  2rem;     /* 32px */
  --s6:  3rem;     /* 48px */
  --s8:  4rem;     /* 64px */
  --s12: 6rem;     /* 96px */
  --s16: 8rem;     /* 128px */
  --s20: 10rem;    /* 160px */

  /* Layout */
  --max-w: 1360px;
  --pad:   clamp(1.5rem, 5vw, 4rem);
  --nav-h: 72px;

  /* Motion */
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --dur-fast:   180ms;
  --dur:        360ms;
  --dur-slow:   600ms;
}


/* -----------------------------------------------
   LAYOUT UTILITIES
----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}


/* -----------------------------------------------
   TYPOGRAPHY UTILITIES
----------------------------------------------- */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  margin-bottom: var(--s3);
}

.section-label--warm { color: var(--c-warm-gray); }


/* -----------------------------------------------
   LINK UTILITIES
----------------------------------------------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: gap var(--dur-fast) var(--ease), opacity var(--dur-fast) ease;
}

.link-arrow:hover           { gap: 0.7em; }
.link-arrow--dim            { color: rgba(255,255,255,0.55); }
.link-arrow--dim:hover      { color: var(--c-white); opacity: 1; }
.link-arrow--muted          { color: var(--c-dim); }
.link-arrow--muted:hover    { color: var(--c-white); opacity: 1; }
.link-arrow--dark           { color: var(--c-warm-gray); }
.link-arrow--dark:hover     { color: var(--c-taupe); opacity: 1; }


/* -----------------------------------------------
   BUTTON UTILITIES
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 1.8em;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--outline {
  color: var(--c-white);
  background: transparent;
}
.btn--outline:hover {
  background: var(--c-white);
  color: var(--c-taupe);
}

.btn--taupe {
  background: var(--c-taupe);
  border-color: var(--c-taupe);
  color: var(--c-white);
}
.btn--taupe:hover {
  background: transparent;
  color: var(--c-taupe);
}

.btn--chartreuse {
  background: var(--c-chartreuse);
  border-color: var(--c-chartreuse);
  color: var(--c-dark);
}
.btn--chartreuse:hover {
  background: transparent;
  color: var(--c-chartreuse);
}


/* -----------------------------------------------
   BUTTON EXTRA — light background variant
----------------------------------------------- */
.btn--dark-on-light {
  color: var(--c-dark);
  background: transparent;
  border-color: var(--c-dark);
}
.btn--dark-on-light:hover {
  background: var(--c-dark);
  color: var(--c-white);
}


/* -----------------------------------------------
   NAVIGATION
----------------------------------------------- */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(28, 24, 22, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease);
}

.nav.is-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--s4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--dur-fast) ease;
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-left: auto;
}

.nav-link {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast) ease;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-chartreuse);
  transition: width 0.28s var(--ease);
}

.nav-link:hover { color: var(--c-white); }
.nav-link:hover::after { width: 100%; }

/* Give button */
.nav-give {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-dark);
  background: var(--c-chartreuse);
  padding: 0.55em 1.4em;
  border-radius: 2px;
  flex-shrink: 0;
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.nav-give:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* -----------------------------------------------
   MOBILE MENU
----------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--c-darker);
  display: flex;
  align-items: center;
  padding: var(--s8) var(--pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner ul {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.mobile-menu-inner a {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 800;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
  transition: color var(--dur-fast) ease;
}
.mobile-menu-inner a:hover { color: var(--c-white); }

.mobile-give {
  color: var(--c-chartreuse) !important;
}


/* -----------------------------------------------
   HERO ANIMATIONS
----------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}


/* -----------------------------------------------
   HERO — Centered editorial, dark brand
----------------------------------------------- */
.hero {
  position: relative;
  background: var(--c-darker);
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Background video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 15, 13, 0.82);
  z-index: 1;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.45;
}

/* Central text block */
.hero-text {
  position: relative;
  z-index: 2;
  padding-top: clamp(4rem, 10vh, 8rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

.hero-eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  opacity: 0.75;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.hero-line-bold {
  display: block;
  font-size: clamp(3.75rem, 12vw, 14rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-white);
}

.hero-line-italic {
  display: block;
  font-size: clamp(3.5rem, 11vw, 13rem);
  font-weight: 800;
  font-style: italic;
  text-transform: lowercase;
  color: var(--c-chartreuse);
  line-height: 1;
}

.hero-sub-copy {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* Wide video embed */
.hero-embed {
  position: relative;
  z-index: 2;
  padding-bottom: var(--s8);
  animation: scaleIn 1s var(--ease) 0.4s both;
}

.hero-embed-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}

.hero-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Click-to-play cover */
.hero-embed-cover {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 2;
}

.hero-embed-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(25%) brightness(0.72);
  border-radius: 10px;
  transition: filter 0.35s var(--ease);
}

.hero-embed-cover:hover .hero-embed-thumb {
  filter: grayscale(0%) brightness(0.62);
}

.hero-embed-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--c-chartreuse);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  padding-left: 4px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.hero-embed-cover:hover .hero-embed-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.hero-embed-meta {
  position: absolute;
  bottom: var(--s4);
  left: var(--s4);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}


/* -----------------------------------------------
   ANNOUNCEMENT BAR
----------------------------------------------- */
.announcement {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: 0.9rem var(--pad);
  background: var(--c-chartreuse);
}

.announcement-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 41, 38, 0.45);
  flex-shrink: 0;
  padding-right: var(--s4);
  border-right: 1px solid rgba(44, 41, 38, 0.2);
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-dark);
  text-decoration: none;
  transition: opacity var(--dur-fast) ease;
}
.announcement-link:hover { opacity: 0.65; }


/* -----------------------------------------------
   LOCATIONS
----------------------------------------------- */
.locations {
  background: var(--c-dark);
  padding-block: var(--s16);
}

.locations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s12);
}

.locations-headline {
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-top: var(--s2);
}

.locations-sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-dim);
  margin-top: var(--s2);
}

/* Location list */
.locations-list {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.location-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto auto;
  align-items: center;
  gap: var(--s4);
  padding-block: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--c-white);
  transition: color var(--dur-fast) ease;
}

.location-row:hover { color: var(--c-chartreuse); }

.location-row:hover .location-arrow {
  transform: translate(3px, -3px);
  color: var(--c-chartreuse);
}

.location-num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-dimmer);
  align-self: center;
}

.location-name {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  position: relative;
  display: inline-block;
}

.location-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-chartreuse);
  transition: width 0.35s var(--ease);
}

.location-row:hover .location-name::after { width: 100%; }

.location-region {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-dimmer);
}

.location-arrow {
  color: var(--c-dimmer);
  transition: transform var(--dur-fast) var(--ease), color var(--dur-fast) ease;
}

.location-row--online .location-name { font-style: italic; }


/* -----------------------------------------------
   LATEST MESSAGE — Letter from Pastor layout
----------------------------------------------- */
.message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--c-off-white);
}

/* Left column */
.message-left {
  display: flex;
  flex-direction: column;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 10vw, 12rem);
  color: var(--c-dark);
}

/* Verse */
.message-verse {
  border-left: 2.5px solid var(--c-chartreuse);
  padding-left: var(--s4);
  margin-bottom: var(--s6);
}

.message-verse cite {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-warm-gray);
  margin-bottom: var(--s2);
  font-style: normal;
}

.message-verse p {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-dark);
}

/* Letter body */
.message-letter {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  flex: 1;
  margin-bottom: var(--s8);
}

.message-letter p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(44, 41, 38, 0.6);
}

/* Byline block (chartreuse) */
.message-byline {
  background: var(--c-chartreuse);
  padding: var(--s6) var(--s6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
}

.message-byline-from {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.1;
}

.message-byline-name {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: var(--s5);
}

/* Right: portrait photo */
.message-portrait {
  background-color: var(--c-off-white);
  background-size: cover;
  background-position: left top;
  filter: grayscale(0%) brightness(1);
}


/* -----------------------------------------------
   EVENTS
----------------------------------------------- */
.events {
  background: var(--c-warm-gray);
  padding-block: var(--s16);
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s12);
}

.events-headline {
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-top: var(--s2);
}

/* Event grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}

.event-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--c-white);
  background: var(--c-dark);
  overflow: hidden;
  border-radius: 8px;
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.event-card:hover { transform: translateY(-3px); }

.event-card:hover { opacity: 0.88; }

/* DEVELOPER: Set background-image to event photo */
.event-photo {
  aspect-ratio: 1 / 1;
  background-color: #1E1B19;
  background-size: cover;
  background-position: center;
  filter: none;
  transition: transform var(--dur-slow) var(--ease);
}

.event-card:hover .event-photo { transform: scale(1.04); }

.event-body {
  padding: var(--s4);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s3);
  align-items: center;
  flex: 1;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.75rem;
}

.event-month {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
}

.event-day {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--c-white);
}

.event-info h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.2em;
}

.event-info p {
  font-size: 0.75rem;
  color: var(--c-dim);
  font-weight: 400;
}

.event-arrow {
  color: var(--c-dimmer);
  align-self: flex-start;
  margin-top: 2px;
  transition: transform var(--dur-fast) var(--ease), color var(--dur-fast) ease;
}

.event-card:hover .event-arrow {
  transform: translate(3px, -3px);
  color: var(--c-chartreuse);
}

/* Location filter */
.events-location-filter {
  margin-top: var(--s8);
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-dim);
  flex-shrink: 0;
}

.filter-tags {
  display: flex;
  gap: var(--s1);
  flex-wrap: wrap;
}

.filter-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--c-dim);
  padding: 0.4em 0.9em;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  outline: none;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease, background var(--dur-fast) ease;
}

.filter-tag:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--c-white);
}

.filter-tag--active {
  background: var(--c-chartreuse);
  border-color: var(--c-chartreuse);
  color: var(--c-dark);
}

.event-card--hidden {
  display: none !important;
}

.filter-tag--active:hover {
  background: var(--c-chartreuse);
  border-color: var(--c-chartreuse);
  color: var(--c-dark);
  opacity: 0.85;
}


/* -----------------------------------------------
   HOME CHURCH
----------------------------------------------- */
.homechurch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}

.homechurch-photo {
  background-color: #1E1B19;
  background-size: cover;
  background-position: center;
  min-height: 480px;
}

.academy-logo {
  width: 338px;
  height: auto;
  display: block;
  margin-bottom: var(--s4);
}

.homechurch-content {
  background: var(--c-taupe);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s16) clamp(var(--s8), 8vw, var(--s16));
}

.homechurch-headline {
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-block: var(--s2) var(--s6);
}

.homechurch-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--c-dim);
  max-width: 380px;
  margin-bottom: var(--s8);
}

.homechurch-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
}


/* -----------------------------------------------
   PRAYER / HELP
----------------------------------------------- */
.prayer {
  background: var(--c-darker);
  padding-block: var(--s16);
}

.prayer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s8), 10vw, var(--s20));
  align-items: start;
}

.prayer-headline {
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-block: var(--s2) var(--s4);
}

.prayer-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--c-dim);
  max-width: 380px;
}

/* Prayer options */
.prayer-options {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--s4);
}

.prayer-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--c-white);
  font-size: 1.0625rem;
  font-weight: 600;
  transition: color var(--dur-fast) ease;
}

.prayer-option:hover { color: var(--c-chartreuse); }

.prayer-option svg {
  color: var(--c-dimmer);
  transition: transform var(--dur-fast) var(--ease), color var(--dur-fast) ease;
}

.prayer-option:hover svg {
  transform: translate(3px, -3px);
  color: var(--c-chartreuse);
}


/* -----------------------------------------------
   NEWSLETTER
----------------------------------------------- */
.newsletter {
  background: var(--c-taupe);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--s12);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: var(--s8);
}

.newsletter-headline {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.3em;
}

.newsletter-text p {
  font-size: 0.875rem;
  color: var(--c-dim);
  line-height: 1.5;
}

/* Form */
.newsletter-field {
  display: flex;
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color var(--dur-fast) ease;
}

.newsletter-field:focus-within { border-color: rgba(255,255,255,0.5); }

.newsletter-field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85em 1.2em;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--c-white);
}

.newsletter-field input::placeholder { color: var(--c-dimmer); }

.newsletter-field button {
  flex-shrink: 0;
  background: var(--c-chartreuse);
  border: none;
  padding: 0.85em 1.4em;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--dur-fast) ease;
}

.newsletter-field button:hover { opacity: 0.82; }

/* Social icons */
.newsletter-social {
  display: flex;
  gap: var(--s3);
}

.social-icon {
  display: flex;
  align-items: center;
  color: var(--c-dimmer);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

.social-icon:hover { color: var(--c-chartreuse); }


/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
.footer {
  background: var(--c-darker);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-block: 1rem;
}

.ticker-track {
  display: flex;
  gap: var(--s6);
  white-space: nowrap;
  will-change: transform;
  animation: ticker 28s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  flex-shrink: 0;
}

.ticker-dot {
  color: rgba(230, 240, 98, 0.25);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Footer main */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s16);
  padding-block: var(--s12);
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--s4);
}

.footer-logo-img {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-logo:hover .footer-logo-img { opacity: 1; }

.footer-tagline {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* Footer nav */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
}

.footer-col-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  margin-bottom: var(--s3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s3);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}

.footer-social-row {
  display: flex;
  gap: var(--s4);
}

.footer-social-row a {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

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


/* -----------------------------------------------
   SCROLL REVEAL STATES
   Motion.js animates these via JS
----------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}


/* -----------------------------------------------
   RESPONSIVE — Tablet (≤ 1024px)
----------------------------------------------- */
@media (max-width: 1024px) {

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

  .message-portrait {
    min-height: 400px;
    order: -1;
  }

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

  .prayer-inner {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .prayer-options { margin-top: 0; }

  .newsletter-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .newsletter-social {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
}


/* -----------------------------------------------
   RESPONSIVE — Mobile (≤ 768px)
----------------------------------------------- */
@media (max-width: 768px) {

  :root { --nav-h: 60px; }

  /* Nav */
  .nav-links,
  .nav-give { display: none; }
  .nav-toggle { display: flex; }

  /* Hero — aspect-ratio handles it natively */

  /* Locations */
  .locations-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-region { display: none; }

  /* Events */
  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s4);
  }

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

  .events-location-filter {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
  }

  /* Home Church */
  .homechurch {
    grid-template-columns: 1fr;
  }

  .homechurch-photo { min-height: 280px; }

  .homechurch-content {
    padding: var(--s12) var(--pad);
  }

  /* Newsletter */
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .newsletter-social { grid-column: auto; }

  /* Footer */
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* -----------------------------------------------
   RESPONSIVE — Small Mobile (≤ 480px)
----------------------------------------------- */
@media (max-width: 480px) {

  .hero-embed-wrapper { border-radius: 6px; }

  .location-row {
    grid-template-columns: 2.5rem 1fr auto;
  }


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


/* ==============================================
   LOCATION PAGES
   ============================================== */

.location-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  padding-top: var(--nav-h);
}

.location-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,17,15,0.96) 0%,
    rgba(20,17,15,0.55) 40%,
    rgba(20,17,15,0.18) 100%);
}

.location-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
  text-align: center;
}

.location-hero-name {
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.88;
  margin-bottom: var(--s3);
}

.location-hero-times {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  margin-bottom: var(--s2);
}

.location-hero-address {
  font-size: 0.9rem;
  color: var(--c-dim);
  margin-bottom: var(--s6);
}

.location-coming-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  border: 1px solid var(--c-chartreuse);
  padding: 0.5em 1.2em;
  border-radius: 2px;
  margin-bottom: var(--s6);
}

/* About */
.location-about {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.location-about-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.location-about-inner p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  color: var(--c-dim);
  margin-bottom: var(--s4);
}

.location-about-inner p:last-child { margin-bottom: 0; }

/* Team */
.team {
  background: var(--c-darker);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.team-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s8) var(--s6);
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  width: 148px;
}

.team-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-dark);
  margin-bottom: var(--s2);
  border: 1.5px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) brightness(0.88);
  display: block;
}

.team-member-name {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.team-member-role {
  font-size: 0.6875rem;
  color: var(--c-dim);
  line-height: 1.4;
}

.team-member-email {
  font-size: 0.5625rem;
  color: var(--c-chartreuse);
  text-decoration: none;
  letter-spacing: 0.02em;
  word-break: break-all;
  opacity: 0.75;
  transition: opacity var(--dur-fast) ease;
}

.team-member-email:hover { opacity: 1; }

/* Location CTA */
.location-cta {
  background: var(--c-chartreuse);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.location-cta-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-dark);
  line-height: 0.92;
  margin-bottom: var(--s4);
}

.location-cta-body {
  font-size: 1rem;
  color: rgba(44,41,38,0.65);
  line-height: 1.65;
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: var(--s6);
}

/* -----------------------------------------------
   PRINT
----------------------------------------------- */
@media print {
  .nav, .ticker, .newsletter, .hero-scroll { display: none; }
  .hero { min-height: auto; padding-block: var(--s8); }
}


/* ==============================================
   INNER PAGES — Shared styles
   ============================================== */

.nav-link[aria-current="page"] { color: var(--c-white); }
.nav-link[aria-current="page"]::after { width: 100%; }

/* Compact page header */
.page-hero {
  background: var(--c-darker);
  padding-top: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero-inner {
  padding-top: clamp(4rem, 10vh, 6rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
}

.page-hero-headline {
  font-size: clamp(3.75rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
  margin-top: var(--s3);
}

.page-hero-headline em {
  font-style: italic;
  color: var(--c-chartreuse);
}

.page-hero-sub {
  margin-top: var(--s4);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--c-dim);
  max-width: 46ch;
  line-height: 1.65;
}


/* ==============================================
   WATCH PAGE
   ============================================== */

.watch-featured {
  background: var(--c-dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.watch-featured-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  margin-bottom: var(--s4);
}

.watch-featured-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  margin-bottom: var(--s4);
}

.watch-featured-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.featured-cover-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.featured-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) ease;
}

.featured-cover:hover .featured-cover-overlay { background: rgba(0,0,0,0.15); }

.featured-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--c-chartreuse);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  padding-left: 5px;
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.featured-play-btn:hover { transform: scale(1.08); }

.watch-featured-title {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--s1);
}

.watch-featured-info {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8125rem;
  color: var(--c-dim);
  flex-wrap: wrap;
}

.watch-info-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

.watch-featured-series-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
}

/* Sermon Grid */
.sermons {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.sermons-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s8);
  flex-wrap: wrap;
  gap: var(--s2);
}

.sermon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6) var(--s4);
}

.sermon-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.sermon-thumb {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--c-darker);
}

.sermon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.sermon-card:hover .sermon-thumb img { transform: scale(1.04); }

.sermon-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.32);
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
}

.sermon-card:hover .sermon-thumb-play { opacity: 1; }

.sermon-thumb-play svg { color: var(--c-chartreuse); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

.sermon-card-series {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-chartreuse);
  margin-top: var(--s1);
}

.sermon-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sermon-card-date {
  font-size: 0.75rem;
  color: var(--c-dim);
}

.sermons-load-more {
  text-align: center;
  margin-top: var(--s12);
}

/* Series */
.series-section {
  background: var(--c-darker);
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.series-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s8);
  flex-wrap: wrap;
  gap: var(--s2);
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.series-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.series-thumb {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-dark);
}

.series-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.series-card:hover .series-thumb img { transform: scale(1.04); }

.series-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.series-card-count {
  font-size: 0.75rem;
  color: var(--c-dim);
}


/* ==============================================
   HOME CHURCH PAGE
   ============================================== */

.hc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
}

.hc-intro-photo {
  background: var(--c-dark);
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.hc-intro-content {
  background: var(--c-taupe);
  padding: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s4);
}

.hc-intro-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hc-intro-body {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--c-dim);
  max-width: 38ch;
}

/* How it works steps */
.hc-steps {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--c-dark);
}

.hc-steps-headline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8);
}

.hc-step {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hc-step-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-chartreuse);
}

.hc-step-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hc-step-body {
  font-size: 0.875rem;
  color: var(--c-dim);
  line-height: 1.65;
}

/* CTA strip */
.hc-cta {
  background: var(--c-chartreuse);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.hc-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
  max-width: 680px;
}

.hc-cta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(44, 41, 38, 0.45);
}

.hc-cta-headline {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--c-dark);
}

.hc-cta-body {
  font-size: 1rem;
  color: rgba(44, 41, 38, 0.65);
  line-height: 1.65;
  max-width: 38ch;
}


/* ==============================================
   CONNECT PAGE
   ============================================== */

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.connect-card {
  background: var(--c-dark);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  position: relative;
  transition: background var(--dur-fast) ease;
  overflow: hidden;
}

.connect-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-chartreuse);
  transition: width var(--dur) var(--ease);
}

.connect-card:hover { background: rgba(255,255,255,0.02); }
.connect-card:hover::after { width: 100%; }

.connect-card-num {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-chartreuse);
}

.connect-card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

.connect-card-body {
  font-size: 0.875rem;
  color: var(--c-dim);
  line-height: 1.65;
  flex: 1;
  max-width: 26ch;
}

.connect-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-chartreuse);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--s1);
}


/* ==============================================
   INNER PAGES — Responsive
   ============================================== */

@media (max-width: 1024px) {
  .sermon-grid,
  .series-grid { grid-template-columns: repeat(2, 1fr); }

  .hc-intro { grid-template-columns: 1fr; }
  .hc-intro-photo { min-height: 340px; }
  .hc-steps-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
  .connect-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sermon-grid,
  .series-grid { grid-template-columns: 1fr; }

  .hc-intro-photo { min-height: 280px; }
  .hc-steps-grid { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
}

/* ── BREADCRUMB ─────────────────────────────────── */
.breadcrumb {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.85rem 0;
}

.breadcrumb-trail {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.6rem;
}

.bc-item {
  display: inline;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

a.bc-item:hover { color: var(--c-chartreuse); }

.bc-sep {
  display: inline;
  color: rgba(255,255,255,0.18);
  font-size: 0.75rem;
  line-height: 1;
}

.bc-current {
  color: #fff;
  font-weight: 700;
}

/* Breadcrumb inside location-hero (photo hero with overlay) */
.location-hero .breadcrumb {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* Alpha question grid */
.alpha-q-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: var(--s8);
}
.alpha-q-card {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s;
}
.alpha-q-card:hover {
  border-color: rgba(230,240,98,0.25);
  background: rgba(255,255,255,0.06);
}
.alpha-q-num {
  display: block;
  color: var(--c-chartreuse);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.alpha-q-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  margin: 0;
}