/* ============================================
   GOD BREATHED CHURCH - Main Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-neutral-darkest: #000;
  --color-neutral-darker: #222;
  --color-neutral-dark: #444;
  --color-neutral: #666;
  --color-neutral-light: #aaa;
  --color-neutral-lighter: #ccc;
  --color-neutral-lightest: #eee;

  --font-family: "Inter", Arial, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  --container-max: 1200px;
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
.heading-h1 {
  font-size: 4.5rem;
  font-weight: var(--font-weight-black);
  line-height: 1;
  letter-spacing: -0.02em;
}

.heading-h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.heading-h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}

.heading-h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

.heading-h5 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

.heading--white {
  color: var(--color-white);
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-medium {
  font-size: 1rem;
  line-height: 1.6;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-neutral);
}

.text--white {
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

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

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

.section__header {
  margin-bottom: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background-color: var(--color-neutral-darker);
  border-color: var(--color-neutral-darker);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn--secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn--secondary-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--secondary-light:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-neutral-lightest);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 2rem;
}

.navbar__logo-link {
  flex-shrink: 0;
}

.navbar__logo {
  width: 100px;
  height: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}

.navbar__link:hover {
  opacity: 0.6;
}

.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.navbar__dropdown.is-open .navbar__chevron {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-lightest);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.navbar__dropdown.is-open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
  transition: background-color 0.2s;
}

.navbar__dropdown-link:hover {
  background-color: var(--color-neutral-lightest);
}

.navbar__cta {
  margin-left: 0.5rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger__line--top {
  transform-origin: center;
}

.hamburger__line--mid {
  margin: 5px 0;
}

.hamburger__line--bot {
  transform-origin: center;
}

.navbar__hamburger[aria-expanded="true"] .hamburger__line--top {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger[aria-expanded="true"] .hamburger__line--mid {
  opacity: 0;
}

.navbar__hamburger[aria-expanded="true"] .hamburger__line--bot {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 6rem;
  padding-top: 8rem;
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__tagline {
  font-size: 1.125rem;
  color: var(--color-white);
  max-width: 500px;
  line-height: 1.6;
}

.hero__video-toggle {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.2s;
}

.hero__video-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero__icon {
  width: 20px;
  height: 20px;
}

/* ============================================
   JOIN US THIS SUNDAY
   ============================================ */
.join-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.join-us__image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.join-us__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.join-us__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.join-us__detail h3 {
  margin-bottom: 0.5rem;
}

/* ============================================
   EASTER BANNER
   ============================================ */
.easter {
  text-align: center;
  padding: 6rem 0;
}

.easter__content {
  max-width: 700px;
  margin: 0 auto;
}

.easter__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: var(--font-weight-black);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.easter__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.easter__details {
  margin-bottom: 2.5rem;
}

.easter__details p {
  margin-bottom: 1rem;
}

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

/* ============================================
   OUR STORY
   ============================================ */
.our-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.our-story__text p {
  margin-bottom: 1.25rem;
}

.our-story__text p:last-child {
  margin-bottom: 0;
}

.our-story__image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.our-story__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   FEATURED SERMON
   ============================================ */
.sermon-feature {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.sermon-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-neutral-lightest);
  overflow: hidden;
}

.sermon-card__image-wrapper {
  overflow: hidden;
  position: relative;
}

.sermon-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.sermon-card__content {
  padding: 2rem 2rem 2rem 0;
}

.sermon-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-neutral);
  margin-bottom: 1rem;
}

.sermon-card__title {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.sermon-card__excerpt {
  margin-bottom: 1.5rem;
}

.sermon-card__excerpt p {
  font-size: 1rem;
  color: var(--color-neutral-dark);
  line-height: 1.6;
}

.sermon-card__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================
   CORE VALUES
   ============================================ */
.values {
  padding: 6rem 0;
}

.values__header {
  margin-bottom: 3rem;
}

.values__link {
  display: inline-block;
  color: var(--color-white);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.values__link:hover {
  opacity: 1;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.values__item {
  display: flex;
  flex-direction: column;
}

.values__icon {
  margin-bottom: 1.25rem;
}

.values__icon-dot {
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
}

.values__item h3 {
  margin-bottom: 0.75rem;
}

/* ============================================
   UPCOMING EVENTS
   ============================================ */
.events {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--color-neutral-lightest);
  border-radius: var(--radius-md);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  text-align: center;
}

.event-card__day-name {
  font-size: 0.875rem;
  color: var(--color-neutral);
}

.event-card__day-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

.event-card__month {
  font-size: 0.875rem;
  color: var(--color-neutral);
}

.event-card__divider {
  width: 1px;
  align-self: stretch;
  background-color: var(--color-neutral-lighter);
}

.event-card--link {
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s;
}

.event-card--link:hover {
  background-color: var(--color-neutral-lightest);
}

.event-card__content h3 {
  margin-bottom: 0.5rem;
}

/* ============================================
   HOMEPAGE SERVE TEASER
   ============================================ */
.home-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.home-serve-card {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
}

@media screen and (max-width: 991px) {
  .home-serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 479px) {
  .home-serve-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-serve-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

/* ============================================
   GIVE ONLINE
   ============================================ */
.giving {
  padding: var(--section-padding-sm);
}

.giving__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.giving__text {
  margin: 1rem 0 2rem;
}

.giving__cta {
  display: flex;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-white);
  padding: 2rem 0;
  border-top: 1px solid var(--color-black);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 3rem;
}

.footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-dark);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-black);
}

.footer__divider {
  height: 1px;
  background-color: var(--color-neutral-lightest);
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social-link {
  color: var(--color-neutral);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer__social-link:hover {
  color: var(--color-black);
}

.footer__social-icon {
  width: 20px;
  height: 20px;
}

.footer__credit {
  font-size: 0.8125rem;
  color: var(--color-neutral);
}

.footer__credit-link {
  color: var(--color-neutral);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__credit-link:hover {
  color: var(--color-black);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet and below */
@media screen and (max-width: 991px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-neutral-lightest);
    border-bottom: 1px solid var(--color-neutral-lightest);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    display: none;
  }

  .navbar__menu.is-open {
    display: flex;
  }

  .navbar__links {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .navbar__link {
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
    color: var(--color-black);
  }

  .navbar__dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
    background-color: transparent;
    transition: opacity 0.2s, max-height 0.2s, visibility 0.2s;
  }

  .navbar__dropdown.is-open .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }

  .navbar__dropdown-toggle {
    justify-content: center;
    width: 100%;
  }

  .navbar__dropdown {
    width: 100%;
    text-align: center;
  }

  .navbar__dropdown-link {
    text-align: center;
    color: var(--color-black);
  }

  .navbar__cta {
    margin-left: 0;
    margin-top: 1rem;
  }

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

/* Mobile landscape */
@media screen and (max-width: 767px) {
  :root {
    --section-padding: 3.5rem 0;
    --section-padding-sm: 2.5rem 0;
  }

  .heading-h2,
  .heading-h2[style] {
    font-size: 2.25rem !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .join-us {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .our-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .our-story__image-wrapper {
    order: -1;
  }

  .sermon-card {
    grid-template-columns: 1fr;
  }

  .sermon-card__content {
    padding: 1.5rem;
  }

  .sermon-card__title {
    font-size: 1.375rem;
  }

  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__links {
    gap: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer__socials {
    justify-content: center;
  }
}

/* Mobile */
@media screen and (max-width: 479px) {
  :root {
    --section-padding: 3rem 0;
    --section-padding-sm: 2rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero {
    align-items: center;
  }

  .hero__content {
    padding-bottom: 3rem;
    padding-top: 6rem;
  }

  .heading-h2,
  .heading-h2[style] {
    font-size: 2rem !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .heading-h3,
  .heading-h3[style] {
    font-size: 1.25rem;
  }

  .easter__title {
    font-size: 2.5rem;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .event-card {
    flex-direction: column;
    gap: 1rem;
  }

  .event-card__date {
    flex-direction: row;
    gap: 0.75rem;
    min-width: auto;
  }

  .event-card__divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .sermon-card__buttons {
    flex-direction: column;
  }

  .sermon-card__buttons .btn {
    width: 100%;
  }
}

/* ============================================
   SERMON LISTING PAGE (Card Grid)
   ============================================ */
.sermon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sermon-grid__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-neutral-lightest);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.sermon-grid__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.sermon-grid__thumbnail {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.sermon-grid__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.sermon-grid__card:hover .sermon-grid__thumbnail img {
  transform: scale(1.03);
}

.sermon-grid__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.sermon-grid__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--color-neutral);
  margin-bottom: 0.5rem;
}

.sermon-grid__title {
  font-size: 1.0625rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.sermon-grid__excerpt {
  font-size: 0.875rem;
  color: var(--color-neutral-dark);
  line-height: 1.6;
  flex: 1;
}

.sermon-grid__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  transition: opacity 0.2s;
}

.sermon-grid__link:hover {
  opacity: 0.6;
}

/* ============================================
   INDIVIDUAL SERMON PAGE
   ============================================ */
.sermon-single {
  padding-top: 8rem;
}

.sermon-single__video {
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sermon-single__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-black);
}

.sermon-single__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sermon-single__content {
  max-width: 800px;
}

.sermon-single__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-neutral);
  margin-bottom: 0.75rem;
}

.sermon-single__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sermon-single__description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-neutral-dark);
  margin-bottom: 2rem;
}

.sermon-single__description p {
  margin-bottom: 1rem;
}

.sermon-single__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

@media screen and (max-width: 767px) {
  .sermon-grid {
    grid-template-columns: 1fr;
  }

  .sermon-single__title {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 479px) {
  .sermon-single__actions {
    flex-direction: column;
  }

  .sermon-single__actions .btn {
    width: 100%;
  }
}

/* ============================================
   KIDS PAGE
   ============================================ */

/* Kids Hero */
.kids-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.kids-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.kids-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 6rem;
}

.kids-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.kids-hero__tagline {
  font-size: 1.125rem;
  color: var(--color-white);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Kids Intro */
.kids-intro {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

/* Age Groups */
.age-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.age-groups__item {
  border: 1px solid var(--color-white);
  padding: 2rem;
}

.age-groups__range {
  font-size: 0.9375rem;
  color: var(--color-neutral-light);
  margin: 0.25rem 0 1rem;
}

/* What to Expect */
.what-to-expect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.what-to-expect__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.what-to-expect__step h3 {
  margin-bottom: 0.5rem;
}

.what-to-expect__image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.what-to-expect__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Kids Leads */
.kids-leads {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.kids-leads p {
  margin-left: auto;
  margin-right: auto;
}

/* FAQs */
.faqs {
  max-width: 750px;
  margin: 0 auto;
}

.faq {
  border-bottom: 1px solid var(--color-neutral-lightest);
}

.faq__question {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: var(--font-weight-light);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

.faq[open] .faq__question::after {
  content: "−";
}

.faq__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-neutral-dark);
}

.faqs__contact {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Kids Responsive */
@media screen and (max-width: 767px) {
  .age-groups {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .what-to-expect {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .what-to-expect__image-wrapper {
    order: -1;
  }

  .kids-hero {
    min-height: 50vh;
  }
}

@media screen and (max-width: 479px) {
  .kids-hero__title {
    font-size: 2.5rem;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact__subtitle {
  font-size: 1rem;
  color: var(--color-neutral-dark);
  max-width: 550px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.contact__socials a {
  color: var(--color-black);
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.contact__socials a:hover {
  opacity: 0.6;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

.contact-form__input,
.contact-form__textarea {
  font-family: var(--font-family);
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--color-neutral-lighter);
  background-color: var(--color-white);
  color: var(--color-black);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-black);
}

.contact-form__textarea {
  resize: vertical;
}

.contact-form__fieldset {
  border: none;
  margin-bottom: 1.5rem;
}

.contact-form__radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  cursor: pointer;
}

.contact-form__radio input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-black);
  cursor: pointer;
}

.contact-form__submit {
  text-align: center;
  margin-top: 2rem;
}

.contact-form__success {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 4rem 0;
}

@media screen and (max-width: 479px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form__radios {
    grid-template-columns: 1fr;
  }

  .contact__title {
    font-size: 1.75rem;
  }
}

/* ============================================
   EVENTS LISTING PAGE (Card Grid)
   ============================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-grid__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-neutral-lightest);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.event-grid__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.event-grid__date-badge {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.event-grid__day-name {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-grid__day-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

.event-grid__month {
  font-size: 0.8125rem;
}

.event-grid__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.event-grid__title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.event-grid__time {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.75rem;
}

.event-grid__location {
  font-size: 0.875rem;
  color: var(--color-neutral-dark);
}

.event-grid__address {
  font-size: 0.8125rem;
  color: var(--color-neutral);
  flex: 1;
}

.event-grid__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
}

/* ============================================
   INDIVIDUAL EVENT PAGE
   ============================================ */
.event-single__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.event-single__date-badge {
  background-color: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.event-single__title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.event-single__details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

.event-single__detail strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral);
  margin-bottom: 0.25rem;
}

.event-single__detail p {
  font-size: 1rem;
  line-height: 1.5;
}

.event-single__description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-neutral-dark);
  margin-bottom: 2.5rem;
  text-align: left;
}

.event-single__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-single__details {
    flex-direction: column;
    gap: 1.5rem;
  }

  .event-single__title {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 479px) {
  .event-single__actions {
    flex-direction: column;
  }

  .event-single__actions .btn {
    width: 100%;
  }
}

/* ============================================
   WHAT WE BELIEVE PAGE
   ============================================ */
.faith-list {
  max-width: 750px;
}

.faith-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-black);
}

.faith-item__title {
  font-size: 0.8125rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.faith-item__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-neutral-dark);
}

.faith-item__verse {
  font-size: 0.8125rem;
  color: var(--color-neutral);
  margin-top: 0.375rem;
}

.believe-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}

.believe-quote p {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  font-style: italic;
}

/* ============================================
   GIVE PAGE
   ============================================ */
.give-hero {
  max-width: 600px;
}

.give-ways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.give-ways__item h3 {
  margin-bottom: 0.75rem;
}

.give-why {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.give-cta {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .give-ways__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-values-grid__item {
  display: flex;
  flex-direction: column;
}

.about-values-grid__item h3 {
  margin-bottom: 0.75rem;
}

.about-pastors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-pastors__image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-pastors__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-pastors__text p + p {
  margin-top: 1rem;
}

.about-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .about-mission {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-pastors {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  .about-cta__buttons {
    flex-direction: column;
  }

  .about-cta__buttons .btn {
    width: 100%;
  }
}

/* ============================================
   LOCATION PAGE
   ============================================ */
.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-info__value {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.location-info__image {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.location-info__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.location-map {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.location-midweek {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .location-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-info__image {
    order: -1;
  }
}

/* ============================================
   PLAN YOUR VISIT PAGE
   ============================================ */

/* Visit Hero */
.visit-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-black);
}

.visit-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.visit-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
  padding-top: 8rem;
}

.visit-hero__label {
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.visit-hero__title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.visit-hero__tagline {
  font-size: 1.125rem;
  color: var(--color-white);
  max-width: 480px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Visit Quote */
.visit-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.visit-quote p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-neutral-dark);
  font-style: italic;
}

/* When & Where */
.visit-when-where {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.visit-detail {
  margin-bottom: 1.25rem;
}

.visit-detail strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral);
  margin-bottom: 0.25rem;
}

.visit-detail p {
  font-size: 1rem;
  line-height: 1.6;
}

/* What to Expect Cards */
.visit-expect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.visit-expect__card {
  border: 1px solid var(--color-neutral-lightest);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.visit-expect__number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--color-neutral-lighter);
  margin-bottom: 1rem;
  line-height: 1;
}

.visit-expect__card h3 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* After Service */
.visit-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-after__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visit-after__feature {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 1.5rem;
}

/* Bringing Kids */
.visit-kids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.visit-kids__text {
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  padding: 4rem;
}

.visit-kids__text-inner {
  max-width: 500px;
}

.visit-kids__image {
  overflow: hidden;
}

.visit-kids__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Visit CTA */
.visit-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.visit-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Visit Page Responsive */
@media screen and (max-width: 991px) {
  .visit-expect {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .visit-when-where {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visit-after {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visit-kids {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .visit-kids__text {
    padding: 3rem 2rem;
  }

  .visit-kids__image {
    order: -1;
    max-height: 350px;
  }

  .visit-hero {
    min-height: 60vh;
  }
}

@media screen and (max-width: 479px) {
  .visit-hero__title {
    font-size: 3rem;
  }

  .visit-hero__content {
    padding-bottom: 3rem;
    padding-top: 6rem;
  }

  .visit-kids__text {
    padding: 2.5rem 1.25rem;
  }

  .visit-cta__buttons {
    flex-direction: column;
  }

  .visit-cta__buttons .btn {
    width: 100%;
  }
}

/* ============================================
   COSTA MESA CHURCH LANDING PAGE
   ============================================ */

/* CM Hero (reuses visit-hero pattern) */
.cm-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-black);
}

.cm-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.cm-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
  padding-top: 8rem;
}

.cm-hero__label {
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.cm-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cm-hero__tagline {
  font-size: 1.125rem;
  color: var(--color-white);
  max-width: 520px;
  line-height: 1.7;
  opacity: 0.9;
}

/* CM Intro */
.cm-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cm-intro__image {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.cm-intro__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* CM About Grid */
.cm-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.cm-about-grid__item {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
}

/* CM Service */
.cm-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cm-service__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cm-service__item strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral);
  margin-bottom: 0.25rem;
}

.cm-service__item p {
  font-size: 1.0625rem;
  line-height: 1.6;
}

.cm-service__map {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 350px;
}

/* CM Midweek */
.cm-midweek__details {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.cm-midweek__detail strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral);
  margin-bottom: 0.25rem;
}

.cm-midweek__detail p {
  font-size: 1rem;
  line-height: 1.6;
}

/* CM Pastors */
.cm-pastors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cm-pastors__image {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.cm-pastors__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* CM Areas */
.cm-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cm-areas__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cm-areas__list li {
  font-size: 1.0625rem;
  color: var(--color-white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* CM CTA */
.cm-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cm-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* CM Responsive */
@media screen and (max-width: 991px) {
  .cm-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .cm-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cm-intro__image {
    order: -1;
  }

  .cm-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cm-about-grid__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .cm-service {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cm-midweek__details {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cm-pastors {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cm-areas__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cm-hero {
    min-height: 65vh;
  }
}

@media screen and (max-width: 479px) {
  .cm-hero__title {
    font-size: 2.75rem;
  }

  .cm-hero__content {
    padding-bottom: 3rem;
    padding-top: 6rem;
  }

  .cm-cta__buttons {
    flex-direction: column;
  }

  .cm-cta__buttons .btn {
    width: 100%;
  }
}

/* ============================================
   BIBLE STUDY PAGE
   ============================================ */
.bs-hero {
  max-width: 600px;
}

.bs-hero__label {
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.bs-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bs-detail {
  margin-bottom: 1.25rem;
}

.bs-detail strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral);
  margin-bottom: 0.25rem;
}

.bs-detail p {
  font-size: 1.0625rem;
  line-height: 1.6;
}

.bs-details__map {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 350px;
}

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

.bs-expect__card {
  border: 1px solid var(--color-neutral-lightest);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.bs-expect__number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--color-neutral-lighter);
  margin-bottom: 1rem;
  line-height: 1;
}

.bs-expect__card h3 {
  margin-bottom: 0.75rem;
}

.bs-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bs-who__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bs-who__item {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
}

.bs-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.bs-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media screen and (max-width: 991px) {
  .bs-expect {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .bs-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bs-who {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media screen and (max-width: 479px) {
  .bs-cta__buttons {
    flex-direction: column;
  }

  .bs-cta__buttons .btn {
    width: 100%;
  }
}

/* ============================================
   SERVE PAGE
   ============================================ */
.serve-hero {
  max-width: 600px;
}

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

.serve-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-neutral-lightest);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.serve-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.serve-card--highlight {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
}

.serve-card--highlight .serve-card__description {
  color: rgba(255, 255, 255, 0.75);
}

.serve-card__icon {
  margin-bottom: 1.25rem;
  color: var(--color-black);
}

.serve-card--highlight .serve-card__icon {
  color: var(--color-white);
}

.serve-card__title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.serve-card__description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-neutral-dark);
  flex: 1;
}

.serve-card__btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

.serve-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .serve-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   MERCH PAGE
   ============================================ */
.merch-hero {
  max-width: 600px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.merch-card {
  border: 1px solid var(--color-neutral-lightest);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.merch-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.merch-card__image-link {
  display: block;
  background-color: #f5f5f5;
  padding: 2rem;
}

.merch-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  mix-blend-mode: multiply;
}

.merch-card__body {
  padding: 1.5rem;
}

.merch-card__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.merch-card__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-neutral-dark);
  margin-bottom: 1.5rem;
}

.merch-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.merch-cta__socials {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .merch-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .merch-card__image-link {
    padding: 1.5rem;
  }
}

/* Individual Product Page */
.product-single__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-single__image-wrap {
  background-color: #f5f5f5;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: sticky;
  top: 6rem;
}

.product-single__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-single__title {
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.product-single__price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
}

.product-single__description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-neutral-dark);
  margin-bottom: 2rem;
}

.product-single__details {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-neutral-lightest);
}

.product-single__details-heading,
.product-single__sizes-heading {
  font-size: 0.8125rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.product-single__details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-single__details-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-neutral-dark);
  padding: 0.375rem 0;
  padding-left: 1rem;
  position: relative;
}

.product-single__details-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-neutral-light);
}

.product-single__sizes {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-neutral-lightest);
}

.product-single__size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-single__size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 0.75rem;
  border: 1px solid var(--color-neutral-lighter);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
}

.product-single__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--color-neutral-lightest);
}

@media screen and (max-width: 767px) {
  .product-single__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-single__image-wrap {
    position: static;
    padding: 2rem;
  }

  .product-single__title {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 479px) {
  .product-single__image-wrap {
    padding: 1.5rem;
  }

  .product-single__actions {
    flex-direction: column;
  }

  .product-single__actions .btn {
    width: 100%;
  }
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-page__code {
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: var(--font-weight-black);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-neutral-lightest);
  margin-bottom: 1rem;
}

.error-page__buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 479px) {
  .error-page__buttons {
    flex-direction: column;
  }

  .error-page__buttons .btn {
    width: 100%;
  }
}
