/* ============================================================
   CRC WORCESTER — pages.css
   Page-specific styles only — things that don't repeat
   ============================================================ */

/* ── HOME: HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 80% 50%,
      rgba(216, 12, 55, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 80% at 20% 80%,
      rgba(1, 0, 39, 0.9) 0%,
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(1, 0, 39, 0.3) 0%,
      rgba(1, 0, 39, 0.55) 55%,
      rgba(1, 0, 39, 0.92) 100%
    ),
    url("../assets/images/header_img.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(216, 12, 55, 0.12);
  right: -100px;
  top: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(161, 21, 156, 0.1);
  right: 20%;
  bottom: 10%;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-body {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HOMECELL PAGE ───────────────────────────────────────── */
.homecell-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -10%,
      rgba(216, 12, 55, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(161, 21, 156, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 90%,
      rgba(92, 178, 237, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.wave-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.18;
}

.wave-strip svg {
  width: 100%;
  height: 100%;
}

.homecell-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px 48px;
}

.homecell-eyebrow {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.homecell-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.homecell-title span {
  display: block;
  background: linear-gradient(90deg, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.homecell-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Wave divider */
.wave-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  margin: 0 auto 48px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.wave-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 12, 55, 0.4),
    transparent
  );
}

.wave-divider-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Resource cards grid */
.homecell-cards {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Resource card */
.resource-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.5s forwards;
}

.resource-card:nth-child(1) {
  animation-delay: 0.1s;
}
.resource-card:nth-child(2) {
  animation-delay: 0.2s;
}
.resource-card:nth-child(3) {
  animation-delay: 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.resource-card.card-pdf {
  border-top: 3px solid var(--red);
}
.resource-card.card-video {
  border-top: 3px solid var(--purple);
}
.resource-card.card-spotify {
  border-top: 3px solid #1db954;
}

/* Card icon area */
.rc-icon-area {
  padding: 28px 24px 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-icon svg {
  width: 22px;
  height: 22px;
}
.rc-icon-pdf {
  background: rgba(216, 12, 55, 0.15);
}
.rc-icon-video {
  background: rgba(161, 21, 156, 0.15);
}
.rc-icon-spotify {
  background: rgba(29, 185, 84, 0.15);
}

.rc-icon-text {
  flex: 1;
}

.rc-type {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.rc-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--white);
}

/* Card body */
.rc-body {
  padding: 0 24px 24px;
}

.rc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 16px;
}

.rc-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.rc-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Homecell button variants */
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: transparent;
  color: var(--red);
}

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

.btn-spotify {
  background: #1db954;
  color: var(--white);
  border-color: #1db954;
}
.btn-spotify:hover {
  background: transparent;
  color: #1db954;
}

.btn-dim {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-dim:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── HOME: RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-body {
    font-size: 1rem;
  }
  .hero-orb-1 {
    width: 300px;
    height: 300px;
    right: -60px;
  }
  .hero-orb-2 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   Migrated from inline <style> blocks in each page (Jul 2026)
   ============================================================ */

/* ── ABOUT PAGE ──────────────────────────────────────── */
/* ── ABOUT PAGE SPECIFIC ─────────────────────────────────── */

/* Story section two-column */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-quote {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 40px;
  position: relative;
}

.story-quote::before {
  content: "\201C";
  font-family: var(--font-primary);
  font-size: 6rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}

.story-quote blockquote {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.story-quote cite {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
}

/* Pillars — mission vision values */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.pillar-mission::before {
  background: var(--red);
}
.pillar-vision::before {
  background: var(--purple);
}
.pillar-values::before {
  background: var(--blue);
}

.pillar-number {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.35;
}

.pillar-mission .pillar-number {
  color: var(--red);
}
.pillar-vision .pillar-number {
  color: var(--purple);
}
.pillar-values .pillar-number {
  color: var(--blue);
}

.pillar-label {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pillar-mission .pillar-label {
  color: var(--red);
}
.pillar-vision .pillar-label {
  color: var(--purple);
}
.pillar-values .pillar-label {
  color: var(--blue);
}

.pillar h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.pillar p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* Pastor feature block */
.pastor-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pastor-photo {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.pastor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Rounded pastor photos (senior + local leadership) */
.pastor-photo--local,
.pastor-photo--rounded {
  border-radius: var(--radius-lg);
}

.pastor-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(216, 12, 55, 0.15);
  border: 1.5px solid rgba(216, 12, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 4px;
}

.pastor-info {
  padding: 48px 48px 48px 0;
}

.pastor-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.pastor-name {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.pastor-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.pastor-bio p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  margin-bottom: 16px;
}

.pastor-bio p:last-child {
  margin-bottom: 0;
}

/* Local pastor placeholder card */
.local-pastor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.local-pastor-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(216, 12, 55, 0.08);
  border: 2px dashed rgba(216, 12, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.local-pastor-card h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.3rem;
}

.local-pastor-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 320px;
  line-height: 1.7;
}

/* Network section */
.network-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.network-copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
}

.network-copy p:last-child {
  margin-bottom: 0;
}

.network-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.location-pill:hover {
  border-color: rgba(216, 12, 55, 0.3);
  background: rgba(216, 12, 55, 0.05);
}

.location-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.location-pill span {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.location-pill.highlight {
  border-color: rgba(216, 12, 55, 0.4);
  background: rgba(216, 12, 55, 0.08);
}

.location-pill.highlight .location-dot {
  box-shadow: 0 0 0 3px rgba(216, 12, 55, 0.2);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pastor-block {
    grid-template-columns: 1fr;
  }
  .pastor-photo {
    aspect-ratio: 16/9;
  }
  /* Local leadership photo — show the whole image, no crop */
  .pastor-photo--local {
    aspect-ratio: auto;
    background: rgba(255, 255, 255, 0.04);
  }
  .pastor-photo--local img {
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }
  .pastor-info {
    padding: 0 28px 36px;
  }
  .network-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .network-locations {
    grid-template-columns: 1fr;
  }
  .local-pastor-card {
    padding: 32px 24px;
  }
  .pillar {
    padding: 36px 24px;
  }
}

/* ── SERMONS PAGE ────────────────────────────────────── */
/* ── SERMONS PAGE SPECIFIC ───────────────────────────────── */

/* Featured sermon */
.featured-sermon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}

.featured-info {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.featured-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 0% 50%,
    rgba(216, 12, 55, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.featured-info > * {
  position: relative;
  z-index: 1;
}

.featured-series-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  width: fit-content;
}

.featured-series-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.featured-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.featured-meta {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.featured-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
}

.featured-embed {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: rgba(29, 185, 84, 0.02);
}

.spotify-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(29, 185, 84, 0.15);
}

.spotify-embed-wrap iframe {
  width: 100%;
  display: block;
  border: none;
}

.spotify-follow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.spotify-follow-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spotify-badge {
  width: 40px;
  height: 40px;
  background: #1db954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spotify-badge svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

.spotify-follow-text h4 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.spotify-follow-text p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Current series block */
.series-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.series-visual {
  position: relative;
  min-height: 300px;
  background:
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(216, 12, 55, 0.35) 0%,
      rgba(161, 21, 156, 0.2) 40%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(216, 12, 55, 0.15), rgba(1, 0, 39, 0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
}

.series-year {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.04em;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.series-title-visual {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.series-title-visual span {
  display: block;
  color: var(--red);
}

.series-wave-line {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 16px auto;
}

.series-subtitle-visual {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

.series-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.series-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
}

.series-info p:last-of-type {
  margin-bottom: 28px;
}

/* Full show embed */
.show-embed-block {
  background: rgba(29, 185, 84, 0.04);
  border: 1px solid rgba(29, 185, 84, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.show-embed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.show-embed-info {
  padding: 48px;
  border-right: 1px solid rgba(29, 185, 84, 0.1);
}

.show-embed-info h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.show-embed-info p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.show-embed-player {
  padding: 40px;
}

.show-embed-player .spotify-embed-wrap {
  margin-bottom: 0;
}

/* Watch online placeholder */
.watch-placeholder {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.watch-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.1);
  border: 1.5px solid rgba(255, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-icon svg {
  width: 28px;
  height: 28px;
  fill: #ff0000;
  opacity: 0.7;
}

.watch-placeholder h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.4rem;
}

.watch-placeholder p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 400px;
  line-height: 1.75;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .featured-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .featured-info {
    padding: 36px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .featured-embed {
    padding: 28px;
  }
  .series-block {
    grid-template-columns: 1fr;
  }
  .series-info {
    padding: 36px 28px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .show-embed-inner {
    grid-template-columns: 1fr;
  }
  .show-embed-info {
    padding: 36px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(29, 185, 84, 0.1);
  }
  .show-embed-player {
    padding: 28px;
  }
  .watch-placeholder {
    padding: 48px 28px;
  }
  .spotify-follow-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .featured-title {
    font-size: 1.5rem;
  }
  .series-title-visual {
    font-size: 1.5rem;
  }
}

/* ── MINISTRIES PAGE ─────────────────────────────────── */
/* ── MINISTRIES PAGE ─────────────────────────────────────── */

/* Ministry anchor offset for fixed nav */
.ministry-anchor {
  display: block;
  height: 88px;
  margin-top: -88px;
  visibility: hidden;
  pointer-events: none;
}

/* Ministry nav pills */
.ministry-nav {
  position: sticky;
  top: 68px;
  z-index: 100;
  background: rgba(1, 0, 39, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.ministry-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ministry-nav-inner::-webkit-scrollbar {
  display: none;
}

.ministry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
}

.ministry-pill:hover,
.ministry-pill.active {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.ministry-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Ministry block */
.ministry-block {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ministry-block:last-of-type {
  border-bottom: none;
}

.ministry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ministry-layout.reverse {
  direction: rtl;
}
.ministry-layout.reverse > * {
  direction: ltr;
}

.ministry-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.ministry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ministry-photo-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.ministry-copy .card-badge {
  margin-bottom: 20px;
}

.ministry-copy h2 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ministry-copy p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
}

.ministry-copy p:last-of-type {
  margin-bottom: 28px;
}

/* Feature list */
.ministry-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.ministry-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.ministry-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* Colour overrides per ministry */
#kids .ministry-photo {
  background: linear-gradient(
    135deg,
    rgba(245, 208, 27, 0.15),
    rgba(1, 0, 39, 0.9)
  );
}
#music .ministry-photo {
  background: linear-gradient(
    135deg,
    rgba(161, 21, 156, 0.15),
    rgba(1, 0, 39, 0.9)
  );
}
#media .ministry-photo {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(1, 0, 39, 0.9)
  );
}
#ushers .ministry-photo {
  background: linear-gradient(
    135deg,
    rgba(216, 12, 55, 0.15),
    rgba(1, 0, 39, 0.9)
  );
}

#kids .ministry-features li::before {
  background: var(--yellow);
}
#music .ministry-features li::before {
  background: var(--purple);
}
#media .ministry-features li::before {
  background: var(--white);
}
#ushers .ministry-features li::before {
  background: var(--red);
}

/* ── OTHER MINISTRIES GRID ───────────────────────────────── */
.other-ministries-section {
  background: rgba(92, 178, 237, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.other-ministries-wrap {
  border: 1px solid rgba(92, 178, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  background: rgba(92, 178, 237, 0.04);
}

.other-ministries-title {
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.other-card {
  display: flex;
  align-items: stretch;
  background: rgba(1, 0, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.other-card:hover {
  border-color: var(--blue);
  background: rgba(92, 178, 237, 0.06);
}

.other-card-img {
  width: 38%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-weight: 600;
  overflow: hidden;
}

.other-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-card-body {
  flex: 1;
  padding: 18px 22px 22px;
}

.other-card-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.other-card-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 901px) {
  .other-card-img {
    width: 42%;
    min-height: 210px;
  }
  .other-card-body {
    padding: 22px 26px 26px;
  }
  .other-card-name {
    font-size: 0.88rem;
  }
  .other-card-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .other-grid {
    grid-template-columns: 1fr;
  }
  .other-ministries-wrap {
    padding: 32px 20px;
  }
  .other-card {
    flex-direction: column;
  }
  .other-card-img {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

/* Get involved strip */
.get-involved {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.get-involved h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.get-involved p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.volunteer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.volunteer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.volunteer-card:hover {
  border-color: rgba(216, 12, 55, 0.3);
  background: rgba(216, 12, 55, 0.05);
}

.volunteer-card-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.volunteer-card h4 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.volunteer-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .ministry-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ministry-layout.reverse {
    direction: ltr;
  }
  .get-involved {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .volunteer-cards {
    grid-template-columns: 1fr 1fr;
  }
  .ministry-block {
    padding: 60px 0;
  }
}

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

/* ── CONNECT PAGE ────────────────────────────────────── */
/* ── CONNECT PAGE ────────────────────────────────────────── */

/* Plan a visit info grid */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Info cards */
.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--red-light);
  border: 1px solid rgba(216, 12, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-card-header h3 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
}

.info-card-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.info-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 16px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info-row:first-child {
  padding-top: 0;
}

.info-row-label {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.info-row-value {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: right;
}

/* What to expect section */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.expect-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.expect-num {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 16px;
}

.expect-card h3 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
}

.expect-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* Map block */
.map-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-embed {
  width: 100%;
  height: 380px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

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

.map-pin-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.map-footer {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.map-address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.map-address strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 4px;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color var(--transition),
    background var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: rgba(216, 12, 55, 0.3);
  background: rgba(216, 12, 55, 0.05);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--red-light);
  border: 1px solid rgba(216, 12, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card h3 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.contact-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  flex: 1;
}

.contact-card span {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.08em;
}

/* Homecell CTA */
.homecell-cta {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.homecell-cta h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.homecell-cta p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 500px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .homecell-cta {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .map-embed {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .map-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
}

/* ── EVENTS PAGE ─────────────────────────────────────── */
/* ── EVENTS PAGE ─────────────────────────────────────────── */

/* Regular events strip */
.regular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.regular-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.regular-card:hover {
  border-color: rgba(216, 12, 55, 0.25);
  background: rgba(216, 12, 55, 0.04);
}

.regular-day {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.regular-card h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.2;
}

.regular-time {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
}

.regular-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  flex: 1;
}

/* Featured event */
.featured-event {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.featured-event-visual {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(216, 12, 55, 0.4) 0%,
      rgba(161, 21, 156, 0.25) 40%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(216, 12, 55, 0.2), rgba(1, 0, 39, 0.98));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
}

.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  margin-bottom: 24px;
}

.event-date-badge .month {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.event-date-badge .day {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
}

.featured-event-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.featured-event-subtitle {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.featured-event-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-event-info p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  margin-bottom: 16px;
}

.featured-event-info p:last-of-type {
  margin-bottom: 28px;
}

.event-detail-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.event-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.event-detail-row:last-child {
  border-bottom: none;
}

.event-detail-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.event-detail-label {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  width: 70px;
  flex-shrink: 0;
}

.event-detail-value {
  color: rgba(255, 255, 255, 0.75);
}

/* Upcoming events list */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-list-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  transition:
    border-color var(--transition),
    background var(--transition);
}

.event-list-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.event-list-date {
  text-align: center;
  padding: 10px 8px;
  background: var(--red-light);
  border: 1px solid rgba(216, 12, 55, 0.2);
  border-radius: var(--radius-sm);
}

.event-list-date .eld-month {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.event-list-date .eld-day {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--white);
}

.event-list-info h4 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.event-list-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.event-list-badge {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--red-light);
  color: var(--red);
  white-space: nowrap;
}

/* Empty state */
.events-empty {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
}

.events-empty h3 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.events-empty p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .regular-grid {
    grid-template-columns: 1fr;
  }
  .featured-event {
    grid-template-columns: 1fr;
  }
  .featured-event-visual {
    min-height: 280px;
  }
  .featured-event-info {
    padding: 36px 28px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .event-list-item {
    grid-template-columns: 60px 1fr;
  }
  .event-list-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .events-empty {
    padding: 48px 24px;
  }
}

/* ── HOMECELL: FIND YOUR HOMECELL ─────────────────────────── */
.homecell-finder {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 110px;
}

.homecell-finder-header {
  text-align: center;
  margin-bottom: 40px;
}

.homecell-finder-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.homecell-finder-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto;
}

.hc-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.hc-item:nth-child(3n + 2) {
  border-left-color: var(--purple);
}
.hc-item:nth-child(3n + 3) {
  border-left-color: var(--blue);
}

.hc-item:hover,
.hc-item.is-open {
  border-color: rgba(255, 255, 255, 0.16);
}
.hc-item.is-open {
  background: rgba(255, 255, 255, 0.05);
}

/* Summary row (button) */
.hc-summary {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  color: var(--white);
}

.hc-summary-main {
  flex: 1;
  min-width: 0;
}

.hc-name {
  display: block;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hc-tagline {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 3px;
}

.hc-day {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hc-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform var(--transition),
    color var(--transition);
}
.hc-item.is-open .hc-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

/* Animated collapsible content */
.hc-content {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--transition);
}
.hc-item:not(.is-open) .hc-content {
  grid-template-rows: 0fr;
}
.hc-content-inner {
  overflow: hidden;
  min-height: 0;
}
.hc-content-body {
  padding: 2px 22px 24px;
}

.hc-intro {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 20px;
}

.hc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.hc-meta span {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid rgba(216, 12, 55, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

.hc-sessions {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.hc-session {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hc-session:first-child {
  padding-top: 0;
}
.hc-session:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hc-session-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}
.hc-session-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
}
.hc-session-time {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
}
.hc-session-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.hc-paras > p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 12px;
}
.hc-paras > p:last-child {
  margin-bottom: 24px;
}

.btn-whatsapp {
  background: #25d366;
  color: #04310f;
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: transparent;
  color: #25d366;
}
.btn-whatsapp svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 600px) {
  .hc-item {
    position: relative;
  }
  .hc-summary {
    flex-wrap: wrap;
    padding: 18px 44px 18px 18px;
  }
  .hc-day {
    order: 3;
    margin-top: 10px;
  }
  .hc-chevron {
    position: absolute;
    top: 20px;
    right: 16px;
  }
  .hc-content-body {
    padding: 2px 18px 22px;
  }
  .hc-session-head {
    flex-direction: column;
    gap: 2px;
  }
}

/* ── LEGAL PAGES (privacy / terms) ───────────────────────── */
.legal-content {
  max-width: 760px;
}

.legal-updated {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
}

.legal-content h2 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--white);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 22px 0 8px;
}

.legal-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-content li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.legal-content strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

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

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-credit:hover {
  color: rgba(255, 255, 255, 0.55);
}
