/* ============================================================
   2820 CHURCH — STYLES
   Palette: Navy / Cream / Gold / Cerulean
   Type: Oswald (display), Inter (body), Cormorant (accent)
============================================================ */

:root {
  /* Color tokens — deeper, richer navy palette */
  --navy: #0A2A4A;
  --navy-deep: #061E37;
  --navy-darker: #03152A;
  --navy-ink: #020D1E;
  --cream: #F4ECDC;
  --cream-soft: #FAF6EC;
  --cream-warm: #EEE5D2;
  --gold: #C9A14A;
  --gold-bright: #DAB458;
  --gold-deep: #A88433;
  --soft-gold: #E2C77F;
  --cerulean: #2C7BBA;
  --cerulean-bright: #3F95D9;
  --cerulean-deep: #1F5A8A;
  --ink: #14181F;
  --ink-soft: #2A323D;
  --muted: #6F7681;
  --line: rgba(10, 42, 74, 0.10);
  --line-light: rgba(244, 236, 220, 0.18);

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-label--center { text-align: center; }
.section-label--light { color: var(--soft-gold); }
.section-headline--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 720px; }
.section-headline--light { color: var(--cream); }

.section-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--navy);
  text-transform: none;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 2px;
  transition: transform 280ms var(--ease), background 280ms var(--ease),
              color 280ms var(--ease), box-shadow 280ms var(--ease),
              border-color 280ms var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 6px 20px -8px rgba(200, 162, 74, 0.55);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(200, 162, 74, 0.7);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--secondary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(11, 45, 79, 0.6);
}
.btn--lg { padding: 1.1rem 2.25rem; font-size: 0.82rem; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.7rem; }
.btn--with-icon .btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 240ms var(--ease);
}
.btn--with-icon:hover .btn__play { background: rgba(255,255,255,0.3); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 45, 79, 0);
  backdrop-filter: blur(0px);
  transition: background 380ms var(--ease), box-shadow 380ms var(--ease),
              padding 380ms var(--ease), backdrop-filter 380ms var(--ease);
  padding: 1.4rem 0;
}
.site-header.is-scrolled {
  background: rgba(11, 45, 79, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.4);
  padding: 0.85rem 0;
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  line-height: 1;
}
.site-header__home-link {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 4px;
  margin: -4px;
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
  cursor: pointer;
}
.site-header__home-link:hover {
  transform: translateY(-1px) scale(1.04);
}
.site-header__home-link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}
.site-header__logo {
  height: 96px;
  width: auto;
  transition: height 380ms var(--ease), filter 260ms var(--ease);
  /* logo already has white wordmark + gold cross on transparent bg */
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  display: block;
}
.site-header.is-scrolled .site-header__logo { height: 76px; }
.site-header__home-link:hover .site-header__logo {
  filter: drop-shadow(0 2px 10px rgba(201, 161, 74, 0.22));
}
.site-header__wordmark {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1;
  white-space: nowrap;
}
.site-header__wordmark-num {
  font-family: 'Unbounded', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.005em;
  line-height: 1;
}
.site-header__wordmark-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1rem;
  padding-left: 3.5rem;
}
.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0;
  transition: color 240ms var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 320ms var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: #fff; }

.site-header__cta { flex-shrink: 0; }

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  z-index: 110;
}
.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 320ms var(--ease), opacity 240ms var(--ease);
  transform-origin: center;
}
.site-header__burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header__burger.is-open span:nth-child(2) { opacity: 0; }
.site-header__burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav */
.site-mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(82%, 360px);
  height: 100vh;
  background: var(--navy-darker);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateX(100%);
  transition: transform 460ms var(--ease);
  z-index: 105;
  box-shadow: -20px 0 40px -10px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.site-mobile-nav.is-open { transform: translateX(0); }
.site-mobile-nav .m-link {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease), color 200ms var(--ease);
}
.site-mobile-nav .m-link:hover { color: var(--gold); }
.site-mobile-nav.is-open .m-link {
  opacity: 1;
  transform: translateX(0);
}
.site-mobile-nav.is-open .m-link:nth-child(1) { transition-delay: 120ms; }
.site-mobile-nav.is-open .m-link:nth-child(2) { transition-delay: 170ms; }
.site-mobile-nav.is-open .m-link:nth-child(3) { transition-delay: 220ms; }
.site-mobile-nav.is-open .m-link:nth-child(4) { transition-delay: 270ms; }
.site-mobile-nav.is-open .m-link:nth-child(5) { transition-delay: 320ms; }
.site-mobile-nav.is-open .m-link:nth-child(6) { transition-delay: 370ms; }
.site-mobile-nav.is-open .m-link:nth-child(7) { transition-delay: 420ms; }
.site-mobile-nav .m-cta {
  margin-top: 1.5rem;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 400ms var(--ease) 480ms, transform 400ms var(--ease) 480ms,
              background 280ms var(--ease), border-color 280ms var(--ease);
}
.site-mobile-nav.is-open .m-cta { opacity: 1; transform: translateX(0); }

body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: 8rem var(--gutter) 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* fallback navy with subtle accents, used when the photo is unavailable */
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: heroZoom 24s ease-out forwards;
  transform-origin: center;
  /* duotone the photo toward navy before the overlay lands on top */
  filter: saturate(0.7) contrast(1.05) brightness(0.9);
}
/* primary tint — photo reads through clearly, with a strong navy wash */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* warm light leak on the right where stage lights / cross sit */
    radial-gradient(ellipse 50% 65% at 82% 50%, rgba(201, 161, 74, 0.16) 0%, transparent 65%),
    /* cool lift on the upper left for composition */
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(63, 149, 217, 0.14) 0%, transparent 65%),
    /* navy wash — translucent so the worship scene reads through */
    linear-gradient(125deg, rgba(6, 30, 55, 0.74) 0%, rgba(11, 45, 79, 0.5) 50%, rgba(6, 30, 55, 0.66) 100%);
  z-index: -1;
}
/* vignette + bottom fade so the photo dissolves into the page rhythm */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* edge-darkening vignette for cinematic feel */
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 0%, rgba(3, 18, 38, 0.55) 100%),
    /* bottom fade to anchor the buttons */
    linear-gradient(180deg, transparent 55%, rgba(3, 18, 38, 0.55) 100%),
    /* extra darkening behind the headline column for legibility */
    linear-gradient(90deg, rgba(3, 18, 38, 0.35) 0%, transparent 55%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  text-align: left;
}
.hero__headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 9.5vw, 7.5rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin-bottom: 2.25rem;
  text-transform: uppercase;
  max-width: 1180px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroLineIn 1100ms var(--ease) forwards;
}
.hero__line--1 { animation-delay: 250ms; }
.hero__line--2 { animation-delay: 600ms; }
.hero__line--3 { animation-delay: 950ms; }
.hero__line--gold {
  color: var(--gold-bright);
}
.hero__sub {
  max-width: 620px;
  margin: 0 0 2.75rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: rgba(244, 236, 220, 0.78);
  opacity: 0;
  animation: heroFadeIn 1100ms var(--ease) 1450ms forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1100ms var(--ease) 1700ms forwards;
}

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes goldGlow {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ============================================================
   INFO STRIP
============================================================ */
.info-strip {
  background: var(--cream);
  padding: 2.75rem var(--gutter);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.info-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  position: relative;
  transition: transform 320ms var(--ease);
}
.info-block + .info-block::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(10, 42, 74, 0.18), transparent);
}
.info-block:hover { transform: translateY(-2px); }
.info-block__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(10, 42, 74, 0.45);
}
.info-block__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}
.info-block__detail {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--cream-soft);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__image {
  aspect-ratio: 4 / 5;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(11, 45, 79, 0.4);
}
.about__image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cerulean-deep) 100%);
  background-size: cover;
  background-position: center;
  transition: transform 1200ms var(--ease);
}
.about__image:hover .about__image-bg { transform: scale(1.04); }
.about__content { max-width: 520px; }
.about__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 1.5rem 0 2.25rem;
}

/* ============================================================
   MISSION STRIP
============================================================ */
.mission {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(4rem, 7vw, 5.5rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(63, 149, 217, 0.10), transparent 45%),
    radial-gradient(circle at 82% 90%, rgba(201, 161, 74, 0.08), transparent 45%);
  pointer-events: none;
}
/* hairline gold rule above mission grid */
.mission::after {
  content: '';
  position: absolute;
  left: 50%;
  top: clamp(3.2rem, 5vw, 4rem);
  width: 56px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.7;
}
.mission__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.mission__inner > .section-label {
  margin-bottom: 0;
  padding-top: 0.5rem;
}
.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.mission-block {
  text-align: center;
  padding: 1.5rem 2.25rem;
  position: relative;
  transition: transform 360ms var(--ease);
}
.mission-block + .mission-block::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 161, 74, 0.45), transparent);
}
.mission-block:hover { transform: translateY(-4px); }
.mission-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: rgba(201, 161, 74, 0.08);
  color: var(--gold-bright);
  border: 1px solid rgba(201, 161, 74, 0.45);
  box-shadow: inset 0 0 30px rgba(201, 161, 74, 0.08);
  transition: background 320ms var(--ease), transform 320ms var(--ease), border-color 320ms var(--ease);
}
.mission-block:hover .mission-block__icon {
  background: rgba(201, 161, 74, 0.18);
  border-color: rgba(218, 180, 88, 0.7);
  transform: scale(1.06);
}
.mission-block__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.025em;
  color: #fff;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}
.mission-block__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(244, 236, 220, 0.65);
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   PASTOR / SERMON / EVENTS (3-COL)
============================================================ */
.pse {
  background: var(--cream-soft);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
}
.pse__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 2.5rem;
}

/* Pastor col */
.pse-pastor__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.pse-pastor__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pse-pastor__img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cerulean) 0%, var(--navy) 100%);
  background-size: cover;
  background-position: center top;
  border-radius: 4px;
  box-shadow: 0 24px 50px -24px rgba(11, 45, 79, 0.45);
  transition: transform 600ms var(--ease);
}
.pse-pastor__img:hover { transform: translateY(-3px); }
.pse-pastor__quote {
  position: relative;
  padding: 1.5rem 1.5rem 1.25rem;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 18px 40px -22px rgba(11,45,79,0.18);
}
.pse-pastor__mark {
  position: absolute;
  top: -0.4rem;
  left: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
}
.pse-pastor__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pse-pastor__sig {
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif !important;
  font-style: normal !important;
  font-size: 0.7rem !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
}

/* Sermon col */
.sermon-card {
  display: block;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(11,45,79,0.22);
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
}
.sermon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -22px rgba(11,45,79,0.32);
}
.sermon-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.25rem;
  color: #fff;
  overflow: hidden;
}
.sermon-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,34,61,0.1) 0%, rgba(6,26,46,0.85) 100%);
}
.sermon-card__overlay-title,
.sermon-card__overlay-sub {
  position: relative;
  z-index: 1;
}
.sermon-card__overlay-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
}
.sermon-card__overlay-sub {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--soft-gold);
  text-transform: uppercase;
}
.sermon-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(200, 162, 74, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: transform 320ms var(--ease), background 320ms var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.sermon-card:hover .sermon-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-bright);
}
.sermon-card__meta {
  padding: 1.25rem 1.25rem 1.25rem;
}
.sermon-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.sermon-card__byline {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.sermon-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.65rem; }
.sermon-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 6px 16px -10px rgba(11,45,79,0.18);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.sermon-row:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 22px -10px rgba(11,45,79,0.28);
}
.sermon-row__thumb {
  flex-shrink: 0;
  width: 64px; height: 48px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cerulean) 0%, var(--navy) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
}
.sermon-row__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,34,61,0.35);
  border-radius: 2px;
}
.sermon-row__thumb svg { position: relative; z-index: 1; }
.sermon-row__text { display: flex; flex-direction: column; gap: 0.15rem; }
.sermon-row__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.sermon-row__meta {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Events col */
.pse-events__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.pse-events__viewall {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  transition: gap 240ms var(--ease), color 240ms var(--ease);
  display: inline-flex;
  gap: 0.4rem;
}
.pse-events__viewall:hover { color: var(--gold-bright); gap: 0.7rem; }

.event-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1.1rem 1.15rem;
  margin-top: 1rem;
  border-radius: 4px;
  box-shadow: 0 12px 28px -18px rgba(11,45,79,0.2);
  border-left: 3px solid var(--gold);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(11,45,79,0.32);
}
.event-card__date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  padding: 0.4rem 0.25rem;
  background: var(--cream);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card__month {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.event-card__day {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--navy);
  margin: 0.15rem 0 0.1rem;
}
.event-card__weekday {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.event-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.event-card__when {
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.event-card__desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   GIVING
============================================================ */
.giving {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.giving__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,161,74,0.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(63,149,217,0.10) 0%, transparent 45%);
  z-index: -1;
}
.giving__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.giving__headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-transform: none;
}
.giving__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245, 239, 226, 0.78);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.giving__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.giving-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.giving-feature__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 74, 0.15);
  color: var(--gold);
  border: 1px solid rgba(200, 162, 74, 0.35);
}
.giving-feature__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
.giving-feature__sub {
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.6);
  line-height: 1.45;
}
.giving__cta { margin-right: 1rem; }
.giving__thanks {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--soft-gold);
}
.giving__image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--cerulean-deep) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
}

/* ============================================================
   VISIT / MAP
============================================================ */
.visit {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
}
.visit__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.visit-info__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.visit-info__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}
.visit-info__detail {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.visit-info__detail a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease), color 240ms var(--ease);
}
.visit-info__detail a:hover {
  color: var(--navy);
  border-color: var(--gold);
}

.visit__map {
  position: relative;
}
.map-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 55px -25px rgba(11, 45, 79, 0.4);
}
.map-card__head {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.map-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.map-card__addr {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.map-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease);
}
.map-card__link:hover { border-color: var(--gold); }
.map-card__canvas {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #EEE7D8;
}
.map-card__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
}
.map-card__pin-dot {
  position: absolute;
  inset: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(11,45,79,0.35);
  z-index: 2;
}
.map-card__pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(200, 162, 74, 0.4);
  animation: mapPulse 2.4s var(--ease) infinite;
}
@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy-ink);
  color: rgba(244, 236, 220, 0.65);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 0;
  font-size: 0.85rem;
  line-height: 1.7;
}
.site-footer__main {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244, 236, 220, 0.10);
  align-items: start;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.site-footer__home-link {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 4px;
  margin: -4px;
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
  cursor: pointer;
}
.site-footer__home-link:hover {
  transform: translateY(-1px) scale(1.04);
}
.site-footer__home-link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}
.site-footer__logo {
  height: 148px;
  width: auto;
  /* logo already has white wordmark + gold cross on transparent bg */
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.55));
  transition: filter 260ms var(--ease);
  display: block;
}
.site-footer__home-link:hover .site-footer__logo {
  filter: drop-shadow(0 6px 22px rgba(201, 161, 74, 0.28));
}
.site-footer__wordmark {
  display: none !important;
}
.site-footer__tagline {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #fff;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.site-footer__tagline-accent {
  color: var(--gold-bright);
}
.site-footer__social {
  display: flex;
  gap: 0.6rem;
}
.site-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.08);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), filter 280ms var(--ease);
}
/* Brand colors */
.site-footer__social a[aria-label="Facebook"]  { background: #1877F2; }
.site-footer__social a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.site-footer__social a[aria-label="YouTube"]   { background: #FF0000; }
.site-footer__social a[aria-label="TikTok"]    { background: #010101; }
.site-footer__social a svg {
  width: 20px;
  height: 20px;
}
.site-footer__social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.1) saturate(1.1);
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.55);
}

.site-footer__col-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.site-footer__col ul a {
  color: rgba(245, 239, 226, 0.7);
  font-size: 0.86rem;
  transition: color 240ms var(--ease), padding-left 240ms var(--ease);
  display: inline-block;
}
.site-footer__col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.site-footer__newsletter-body {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.site-footer__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer__form input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}
.site-footer__form input::placeholder { color: rgba(245, 239, 226, 0.4); }
.site-footer__form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.site-footer__form .btn {
  width: 100%;
  padding: 0.85rem 1.25rem;
}

.site-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.5);
}
.site-footer__legal { display: flex; gap: 1.5rem; }
.site-footer__legal a {
  transition: color 240ms var(--ease);
}
.site-footer__legal a:hover { color: var(--gold); }

/* ============================================================
   REVEAL ANIMATION SYSTEM
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  will-change: opacity, transform;
}
.reveal--scale {
  transform: translateY(20px) scale(0.96);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal--d1.in-view { transition-delay: 120ms; }
.reveal--d2.in-view { transition-delay: 240ms; }
.reveal--d3.in-view { transition-delay: 360ms; }
.reveal--d4.in-view { transition-delay: 480ms; }

/* ============================================================
   SUBPAGE HERO (used on /about, /messages, /events, /give, /store, /contact)
============================================================ */
.page-hero {
  position: relative;
  min-height: 52vh;
  padding: 9rem var(--gutter) 5rem;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-color: var(--navy-deep);
  background-size: cover; background-position: center;
  z-index: -2;
  filter: saturate(0.75) brightness(0.75);
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(201, 161, 74, 0.14) 0%, transparent 65%),
    linear-gradient(120deg, rgba(6, 30, 55, 0.85) 0%, rgba(11, 45, 79, 0.6) 60%, rgba(6, 30, 55, 0.75) 100%);
  z-index: -1;
}
.page-hero__overlay::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 18, 38, 0.55) 100%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.page-hero__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.page-hero__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  line-height: 1.5;
}
.page-hero__crumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}
.page-hero__crumb a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.page-hero__crumb a:hover { color: var(--gold-bright); }
.page-hero__crumb-sep { color: rgba(218, 180, 88, 0.6); }

/* ============================================================
   GENERIC PAGE BODY SECTION (re-usable)
============================================================ */
.page-section {
  padding: 5.5rem var(--gutter);
}
.page-section--light { background: var(--cream-soft); color: var(--ink); }
.page-section--cream { background: var(--cream); color: var(--ink); }
.page-section--navy { background: var(--navy-deep); color: var(--cream); }
.page-section--navy-dark { background: var(--navy-darker); color: var(--cream); }
.page-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.page-section__head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.page-section__head--left {
  margin-left: 0;
  text-align: left;
}
.page-section__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-section__lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}
.page-section--navy .page-section__lede,
.page-section--navy-dark .page-section__lede {
  color: rgba(244, 236, 220, 0.78);
}

/* ============================================================
   BELIEFS LIST
============================================================ */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.belief-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.page-section--navy .belief-item,
.page-section--navy-dark .belief-item {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--gold-bright);
}
.belief-item__num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--gold-deep);
  flex-shrink: 0;
  line-height: 1;
}
.page-section--navy .belief-item__num { color: var(--gold-bright); }
.belief-item__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.belief-item__body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.page-section--navy .belief-item__body { color: rgba(244, 236, 220, 0.78); }

/* ============================================================
   TEAM GRID (leadership)
============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}
.team-card { text-align: left; }
.team-card__img {
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  background-size: cover; background-position: center;
  border-radius: 2px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.team-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 30, 55, 0.35) 100%);
}
.team-card__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}
.team-card__bio {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   STORY (image + text rows)
============================================================ */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.story-row:last-child { margin-bottom: 0; }
.story-row--reverse { grid-template-columns: 1.1fr 1fr; }
.story-row--reverse .story-row__media { order: 2; }
.story-row__media {
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  background-size: cover; background-position: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.story-row__media--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-row__media::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11, 45, 79, 0.0) 50%, rgba(11, 45, 79, 0.4) 100%);
}
.story-row__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.story-row__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.story-row__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.story-row__body p:last-child { margin-bottom: 0; }

/* ── Pastor feature (Leadership) ── */
.pastor-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.pastor-feature__media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 34px 64px -34px rgba(3, 18, 38, 0.55);
  position: sticky;
  top: 110px;
}
.pastor-feature__img {
  display: block;
  width: 100%;
  height: auto;
}
.pastor-feature__plate {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 3rem 1.85rem 1.5rem;
  background: linear-gradient(180deg, rgba(3, 18, 38, 0) 0%, rgba(3, 18, 38, 0.88) 100%);
}
.pastor-feature__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 0.35rem;
}
.pastor-feature__role {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.pastor-feature__bio p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
}
.pastor-feature__bio p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .pastor-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pastor-feature__media {
    position: static;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ============================================================
   MESSAGES (sermons archive)
============================================================ */
.message-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-light);
  border-radius: 4px;
}
.page-section--light .message-featured,
.page-section--cream .message-featured {
  background: #fff;
  border-color: var(--line);
}
.message-featured__thumb {
  aspect-ratio: 16 / 10;
  background: var(--navy-darker);
  background-size: cover; background-position: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.message-featured__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 18, 38, 0.6) 100%);
}
.message-featured__play {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-darker);
  display: grid; place-items: center;
  z-index: 1;
}
.message-featured__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
}
.message-featured__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.message-featured__meta {
  font-size: 0.85rem;
  color: rgba(244, 236, 220, 0.7);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.page-section--light .message-featured__meta,
.page-section--cream .message-featured__meta { color: var(--muted); }
.message-featured__excerpt {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(244, 236, 220, 0.8);
  margin-bottom: 1.5rem;
}
.page-section--light .message-featured__excerpt,
.page-section--cream .message-featured__excerpt { color: var(--ink-soft); }

.message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}
.message-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 280ms var(--ease);
}
.message-tile:hover { transform: translateY(-4px); }
.message-tile__thumb {
  aspect-ratio: 16 / 10;
  background: var(--navy-darker);
  background-size: cover; background-position: center;
  border-radius: 2px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.message-tile__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 18, 38, 0.55) 100%);
}
.message-tile__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(218, 180, 88, 0.92);
  color: var(--navy-darker);
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity 280ms var(--ease);
  z-index: 1;
}
.message-tile:hover .message-tile__play { opacity: 1; }
.message-tile__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.message-tile__meta {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.page-section--navy .message-tile__meta,
.page-section--navy-dark .message-tile__meta { color: rgba(244, 236, 220, 0.65); }

.message-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.message-filter {
  padding: 0.55rem 1rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line-light);
  background: transparent;
  color: rgba(244, 236, 220, 0.85);
  border-radius: 2px;
  cursor: pointer;
  transition: all 220ms var(--ease);
}
.page-section--light .message-filter,
.page-section--cream .message-filter {
  border-color: var(--line);
  color: var(--ink-soft);
}
.message-filter:hover,
.message-filter.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-darker);
}

/* ============================================================
   EVENTS LIST (full archive)
============================================================ */
.events-list {
  display: grid;
  gap: 1rem;
}
.event-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.event-row:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 22px rgba(6, 30, 55, 0.08);
}
.event-row__date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 1rem;
}
.event-row__month {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
}
.event-row__day {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--navy-deep);
  line-height: 1;
  display: block;
}
.event-row__weekday {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}
.event-row__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
}
.event-row__when {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.event-row__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.event-row__chevron {
  color: var(--gold-deep);
  font-size: 1.3rem;
  align-self: center;
}

.recurring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.recurring-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  border-top: 3px solid var(--gold-bright);
}
.page-section--light .recurring-card,
.page-section--cream .recurring-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.recurring-card__when {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}
.page-section--light .recurring-card__when,
.page-section--cream .recurring-card__when { color: var(--gold-deep); }
.recurring-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.recurring-card__desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(244, 236, 220, 0.78);
}
.page-section--light .recurring-card__desc,
.page-section--cream .recurring-card__desc { color: var(--ink-soft); }

/* ============================================================
   GIVE PAGE — ways to give cards
============================================================ */
.give-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.give-way {
  padding: 2.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  text-align: center;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease);
}
.page-section--light .give-way,
.page-section--cream .give-way {
  background: #fff;
  border-color: var(--line);
}
.give-way:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
}
.give-way__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.12);
  color: var(--gold-bright);
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
}
.give-way__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.give-way__detail {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(244, 236, 220, 0.8);
  margin-bottom: 1rem;
}
.page-section--light .give-way__detail,
.page-section--cream .give-way__detail { color: var(--ink-soft); }
.give-way__action {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-decoration: none;
}
.page-section--light .give-way__action,
.page-section--cream .give-way__action { color: var(--gold-deep); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.impact-card {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: 4px;
  text-align: left;
  position: relative;
  border-top: 3px solid var(--gold);
}
.impact-card__pct {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}
.impact-card__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   STORE PAGE
============================================================ */
.store-categories {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.store-cat {
  padding: 0.55rem 1.1rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 2px;
  cursor: pointer;
  transition: all 220ms var(--ease);
}
.store-cat:hover,
.store-cat.is-active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.product-card {
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 280ms var(--ease);
}
.product-card:hover { transform: translateY(-4px); }
.product-card__img {
  aspect-ratio: 1 / 1;
  background: var(--cream-warm);
  background-size: cover; background-position: center;
  border-radius: 2px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.product-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy-darker);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
}
.product-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.product-card__price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-deep);
}

/* Curated 2-up grid for a small, focused collection */
.product-grid--curated {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.store-note {
  text-align: center;
  max-width: 620px;
  margin: 2.75rem auto 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-list {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.14);
  color: var(--gold-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-item__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}
.contact-info-item__value {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--navy-deep);
  line-height: 1.4;
}
.contact-info-item__value a { color: inherit; text-decoration: none; }
.contact-info-item__value a:hover { color: var(--gold-deep); }

.contact-form {
  background: var(--cream-soft);
  padding: 2.25rem;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.contact-form__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 220ms var(--ease);
}
.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ============================================================
   CTA BANNER (used on subpage bottoms)
============================================================ */
.cta-banner {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 5rem var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-banner__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(201, 161, 74, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(63, 149, 217, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cta-banner__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--soft-gold);
  margin-bottom: 2rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HOME PAGE — CONNECT PROMO STRIP
============================================================ */
.connect-strip {
  padding: 5.5rem var(--gutter);
  background: var(--cream);
}
.connect-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.connect-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--cream);
  background: var(--navy-deep);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  transition: transform 320ms var(--ease);
}
.connect-card:hover { transform: translateY(-6px); }
.connect-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
  transition: opacity 320ms var(--ease), transform 600ms var(--ease);
}
.connect-card:hover .connect-card__bg {
  opacity: 0.75;
  transform: scale(1.04);
}
.connect-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 18, 38, 0.92) 75%);
}
.connect-card__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}
.connect-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}
.connect-card__sub {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(244, 236, 220, 0.8);
  margin-bottom: 0.85rem;
}
.connect-card__arrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ============================================================
   SUBPAGE RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .message-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .page-hero { min-height: 44vh; padding: 8rem var(--gutter) 4rem; }
  .beliefs-grid { grid-template-columns: 1fr; gap: 1rem; }
  .story-row,
  .story-row--reverse { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .story-row--reverse .story-row__media { order: -1; }
  .message-featured { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .recurring-grid,
  .give-ways,
  .impact-grid,
  .connect-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 90px 1fr; }
  .event-row__chevron { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form__row { grid-template-columns: 1fr; }
  .cta-banner { padding: 3.5rem var(--gutter); }
  .page-section { padding: 4rem var(--gutter); }
}
@media (max-width: 640px) {
  .team-grid,
  .message-grid,
  .product-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .page-hero { padding: 7rem var(--gutter) 3.5rem; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .pse__inner { grid-template-columns: 1fr 1fr; }
  .pse-events { grid-column: 1 / -1; }
  .pse-events .event-card { display: flex; }
}

@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .site-header__burger { display: flex; }

  .info-strip { padding: 2.25rem var(--gutter); }
  .info-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .info-block { padding: 0.4rem 0.5rem; }
  /* desktop vertical dividers — neutralize on tablet */
  .info-block + .info-block::before { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image { aspect-ratio: 5 / 4; max-width: 540px; margin: 0 auto; order: -1; }

  .mission__grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .mission-block { padding: 2rem 1rem; }
  .mission-block + .mission-block::before {
    left: 15%; right: 15%; top: 0; bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.45), transparent);
  }

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

  .giving__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .giving__image { aspect-ratio: 16 / 10; max-width: 600px; order: -1; }
  .giving__features { grid-template-columns: 1fr; gap: 1rem; }

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

  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__newsletter { grid-column: 1 / -1; max-width: 520px; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem var(--gutter) 4rem; min-height: auto; }
  .hero__headline { font-size: clamp(2.4rem, 11vw, 3.4rem); margin-bottom: 1.5rem; }
  .hero__sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; }

  .info-strip { padding: 2rem var(--gutter); }
  .info-strip__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .info-block { padding: 0; }

  .section-headline { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .giving__headline { font-size: clamp(1.85rem, 7vw, 2.4rem); }

  .pse-pastor__name { font-size: 1.4rem; }
  .pse-pastor__quote { padding: 1.25rem 1.25rem 1rem; }
  .pse-pastor__quote p { font-size: 0.98rem; }

  .sermon-card__overlay-title { font-size: 1rem; }
  .sermon-card__title { font-size: 0.98rem; }
  .sermon-card__play { width: 48px; height: 48px; }

  .event-card { padding: 0.95rem 1rem; gap: 0.85rem; }
  .event-card__date { width: 56px; padding: 0.35rem 0.2rem; }
  .event-card__day { font-size: 1.5rem; }
  .event-card__title { font-size: 0.98rem; }

  .visit__grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .map-card__head { padding: 1.25rem; }
  .map-card__title { font-size: 1.05rem; }

  .giving { padding: 3rem var(--gutter); }
  .about, .mission, .pse, .visit { padding-left: var(--gutter); padding-right: var(--gutter); }

  .site-footer { padding: 2.5rem var(--gutter) 0; }
  .site-footer__main { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; padding: 1.25rem 0; }
  .site-footer__legal { justify-content: center; }
  .site-footer__form .btn { padding: 0.85rem 1rem; }

  /* Header brand sized down on small screens */
  .site-header { padding: 1rem 0; }
  .site-header.is-scrolled { padding: 0.65rem 0; }
  .site-header__logo { height: 72px; }
  .site-header.is-scrolled .site-header__logo { height: 60px; }
  /* Mobile: stack the wordmark — "2820" on top, "CHURCH" beneath, matching widths */
  .site-header__wordmark {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .site-header__wordmark-num {
    font-family: 'Unbounded', 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.005em;
  }
  .site-header__wordmark-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.73rem;
    letter-spacing: 0.235em;
    /* trim trailing letter-spacing so right edge aligns visually */
    margin-right: -0.235em;
  }

  /* Footer brand on mobile */
  .site-footer__logo { height: 120px; }

  /* Mission tighter spacing */
  .mission { padding: 3rem var(--gutter); }
  .mission__grid { margin-top: 2rem; }
  .mission-block { padding: 1.5rem 1rem; }
  .mission-block__title { font-size: 1.4rem; }

  /* Tighter buttons on mobile */
  .btn { padding: 0.85rem 1.4rem; font-size: 0.74rem; }
  .btn--lg { padding: 1rem 1.6rem; font-size: 0.78rem; }
}

@media (max-width: 380px) {
  :root { --gutter: 1.1rem; }
  .hero__headline { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .info-block__icon { width: 44px; height: 44px; }
  .pse-events__head { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .map-card__title { font-size: 1rem; }
}

/* ============================================================
   TABLET LANDSCAPE (901px – 1200px)
   Desktop nav still shows; compact spacing so 7 links + CTA + brand fit
============================================================ */
@media (min-width: 901px) and (max-width: 1200px) {
  /* Tighter container gutters */
  :root { --gutter: clamp(1.25rem, 3.5vw, 2rem); }

  /* Header brand — slightly smaller logo, horizontal wordmark stays */
  .site-header__logo { height: 80px; }
  .site-header.is-scrolled .site-header__logo { height: 64px; }
  .site-header__brand { gap: 0.6rem; }
  .site-header__wordmark-num { font-size: 1.3rem; }
  .site-header__wordmark-sub { font-size: 1rem; letter-spacing: 0.2em; font-weight: 500; }

  /* Nav: trim gap & padding so it doesn't crowd brand or CTA */
  .site-header__inner { gap: 1.25rem; }
  .site-header__nav {
    gap: 1.1rem;
    padding-left: 1.25rem;
    margin-right: 0.5rem;
  }
  .nav-link { font-size: 0.76rem; }
  .site-header__cta { padding: 0.8rem 1.1rem; font-size: 0.72rem; letter-spacing: 0.06em; }

  /* Hero — scale down headline on tablet landscape */
  .hero__headline { font-size: clamp(3rem, 7.8vw, 5.5rem); }
  .hero__sub { font-size: 1.05rem; max-width: 640px; }

  /* Mission pillars — keep 3 across, less padding */
  .mission-block { padding: 1.75rem 1.25rem; }

  /* Pastor / Sermons / Events row — already drops to 2-col at 1100, smooth here */
  .pse__inner { gap: 1.5rem; }

  /* Giving — 3 features but tighter */
  .giving__features { gap: 0.85rem; }
  .giving__inner { gap: 2rem; }

  /* Footer — 4 columns get tight; reduce gap */
  .site-footer__main { gap: 1.5rem; }
}

/* ============================================================
   TABLET PORTRAIT (641px – 900px)
   Hamburger nav active; layouts get more breathing room than phone
============================================================ */
@media (min-width: 641px) and (max-width: 900px) {
  /* Stack header wordmark vertically, match widths */
  .site-header__wordmark {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.22rem;
  }
  .site-header__wordmark-num {
    font-family: 'Unbounded', 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.005em;
  }
  .site-header__wordmark-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.235em;
    margin-right: -0.235em;
  }

  /* Hero text scales between mobile and desktop */
  .hero__headline { font-size: clamp(3rem, 9vw, 4.6rem); }
  .hero__sub { font-size: 1.05rem; max-width: 560px; }

  /* Mission pillars: switch to 2 across (with one full-width below) */
  .mission__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .mission-block:nth-child(3) { grid-column: 1 / -1; }
  /* Restore vertical divider behavior between adjacent cards on the same row */
  .mission-block + .mission-block::before {
    left: 0; right: auto; top: 15%; bottom: 15%;
    width: 1px; height: auto;
    background: linear-gradient(180deg, transparent, rgba(201, 161, 74, 0.45), transparent);
  }
  .mission-block:nth-child(3)::before {
    left: 15%; right: 15%; top: 0; bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.45), transparent);
  }

  /* Giving features get 2 columns with the third on its own row centered */
  .giving__features {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Visit grid stays 2-column (already set) */

  /* Footer: single column on tablet — only Quick Links remains beside brand & newsletter */
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem 1.75rem;
  }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__newsletter { grid-column: 1 / -1; max-width: 600px; }

  /* About image a bit larger on tablet */
  .about__image { aspect-ratio: 4 / 3; max-width: 600px; }

  /* Section padding mid-range */
  .about, .mission, .pse, .visit, .giving { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}

/* ============================================================
   LANGUAGE PICKER
============================================================ */
.lang-picker {
  position: relative;
  flex-shrink: 0;
}

.lang-picker__btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.42rem 0.7rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.lang-picker__btn:hover,
.lang-picker.is-open .lang-picker__btn {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.lang-picker__chevron {
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.lang-picker.is-open .lang-picker__chevron {
  transform: rotate(180deg);
}

.lang-picker__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--navy-ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  list-style: none;
  margin: 0;
  min-width: 190px;
  opacity: 0;
  padding: 0.35rem 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 300;
  white-space: nowrap;
}
.lang-picker.is-open .lang-picker__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Footer / upward variant */
.lang-picker--footer .lang-picker__menu {
  bottom: calc(100% + 6px);
  top: auto;
  transform: translateY(6px);
}
.lang-picker--footer.is-open .lang-picker__menu {
  transform: translateY(0);
}

.lang-picker__menu li { margin: 0; }

.lang-picker__menu button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  padding: 0.55rem 1.1rem;
  text-align: left;
  transition: background 0.14s ease, color 0.14s ease;
  width: 100%;
}
.lang-picker__menu button:hover { background: rgba(255, 255, 255, 0.07); color: #fff; }
.lang-picker__menu button.is-active { color: var(--gold-bright); font-weight: 600; }

/* Mobile nav language row */
.m-lang-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0 0.5rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.m-lang-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.m-lang-btns {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.m-lang-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.m-lang-btn:hover,
.m-lang-btn.is-active {
  background: rgba(218, 180, 88, 0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* Suppress Google Translate's default chrome */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#google_translate_element,
.skiptranslate {
  display: none !important;
}
/* Prevent GT from pushing body down */
body { top: 0 !important; }

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__line, .hero__sub, .hero__actions {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__bg { animation: none !important; }
  .map-card__pin-pulse { animation: none !important; opacity: 0.4; }
}

/* ============================================================
   STORE — ADD TO CART CONTROLS
============================================================ */
.product-card__buy {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}
.size-field { flex: 0 0 auto; display: flex; }
.size-select {
  min-width: 78px;
  padding: 0.55rem 0.6rem;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-radius: 2px;
  cursor: pointer;
}
.size-select:focus { outline: none; border-color: var(--gold); }
.product-card__add {
  flex: 1 1 auto;
  padding: 0.62rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.product-card__add.is-added {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Product photo placeholder — shown only if the image file isn't uploaded yet */
.product-card__ph { display: none; }
.product-card__img.is-missing {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img.is-missing .product-card__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}
.product-card__img.is-missing .product-card__ph--ink { color: var(--ink); }
.product-card__ph-mono {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 6vw, 2.3rem);
  letter-spacing: 0.05em;
}
.product-card__ph-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* ============================================================
   HEADER CART ICON + BADGE
============================================================ */
.site-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  border-radius: 50%;
  transition: background 220ms var(--ease), color 220ms var(--ease),
              transform 220ms var(--ease);
}
.site-header__cart:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-1px);
}
.site-header__cart svg { width: 21px; height: 21px; }
.site-header__cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--gold);
  color: var(--navy-darker);
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
  border-radius: 9px;
  box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   CART DRAWER
============================================================ */
body.cart-open { overflow: hidden; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 21, 42, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  z-index: 200;
}
.cart-overlay.is-open { opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--cream-soft);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 340ms var(--ease);
  box-shadow: -20px 0 50px -20px rgba(0, 0, 0, 0.5);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
}
.cart-drawer__close {
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.cart-drawer__close:hover { background: rgba(10, 42, 74, 0.07); color: var(--navy-deep); }
.cart-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0.25rem 1.5rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__img {
  width: 64px;
  height: 72px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.cart-line__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--ink);
}
.cart-line__meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.25rem 0 0.6rem;
}
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  color: var(--navy-deep);
  cursor: pointer;
}
.qty-btn:hover { background: rgba(10, 42, 74, 0.06); }
.qty-num {
  min-width: 30px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}
.cart-line__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  text-align: right;
}
.cart-line__price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-deep);
}
.cart-line__remove {
  border: none;
  background: transparent;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.cart-line__remove:hover { color: var(--gold-deep); }
.cart-drawer__foot {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.cart-drawer__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.cart-drawer__note {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}
.cart-drawer__checkout { width: 100%; }
.cart-drawer__continue {
  width: 100%;
  margin-top: 0.6rem;
  border: none;
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  padding: 0.6rem;
}
.cart-drawer__continue:hover { color: var(--gold-deep); }
.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-empty__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}
.cart-empty__sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ============================================================
   CHECKOUT PAGE
============================================================ */
.checkout-top {
  background: var(--navy-deep);
  color: var(--cream);
  padding: clamp(7rem, 13vh, 9.5rem) 0 2.75rem;
}
.checkout-top__inner,
.checkout__inner {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin: 0 auto;
}
.checkout-top__crumb {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(244, 236, 220, 0.72);
  margin-bottom: 0.6rem;
}
.checkout-top__crumb a {
  color: rgba(244, 236, 220, 0.72);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.checkout-top__crumb a:hover { color: var(--soft-gold); }
.checkout-top__crumb span { margin: 0 0.4rem; opacity: 0.55; }
.checkout-top__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.01em;
}
.checkout {
  padding: clamp(2.5rem, 6vh, 4rem) 0 clamp(4rem, 9vh, 6rem);
  background: var(--cream-soft);
}
.checkout__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.checkout__main { min-width: 0; }
.checkout__block { margin-bottom: 2.25rem; }
.checkout__block-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.checkout__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 200ms var(--ease);
}
.field input:focus,
.field select:focus { outline: none; border-color: var(--gold); }
.ship-opt {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.ship-opt:has(input:checked) { border-color: var(--gold); background: rgba(201, 161, 74, 0.06); }
.ship-opt input { accent-color: var(--gold); width: 18px; height: 18px; flex: 0 0 auto; }
.ship-opt__main { flex: 1 1 auto; }
.ship-opt__name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.ship-opt__desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.ship-opt__price { font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--navy-deep); }
.ship-free-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f7d4f;
}
.checkout__pay {
  border: 1px dashed rgba(10, 42, 74, 0.28);
  border-radius: 2px;
  padding: 1.5rem;
  background: #fff;
}
.checkout__pay-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.checkout__pay-head h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-deep);
}
.pay-soon {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(201, 161, 74, 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}
.checkout__pay-body {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.checkout__pay-body svg { flex: 0 0 auto; color: var(--gold-deep); margin-top: 2px; }
.checkout__pay-fields {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}
.pay-fauxrow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.pay-fauxinput {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream-soft);
  padding: 0.8rem 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pay-fauxinput span { color: rgba(111, 118, 129, 0.55); letter-spacing: 0.18em; }
.checkout__place { width: 100%; }
.pay-msg {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(201, 161, 74, 0.1);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pay-fineprint {
  margin-top: 0.9rem;
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
}
.pay-fineprint a { color: var(--gold-deep); }
.checkout__summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1.75rem;
  position: sticky;
  top: 6rem;
}
.checkout__summary-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.sum-line {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0;
}
.sum-line__img {
  position: relative;
  width: 52px;
  height: 58px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.sum-line__qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.3);
}
.sum-line__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--ink);
}
.sum-line__meta {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.sum-line__price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-deep);
}
.checkout__totals {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.summary-line--total {
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy-deep);
}
.summary-line--total span:last-child { color: var(--gold-deep); }
.checkout__empty { text-align: center; padding: clamp(3rem, 8vh, 5rem) 1rem; }
.checkout__empty-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
}
.checkout__empty-sub { color: var(--muted); margin-bottom: 1.5rem; }

@media (max-width: 860px) {
  .checkout__grid { grid-template-columns: 1fr; }
  .checkout__summary { position: static; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 56px 1fr; }
  .cart-line__right { grid-column: 2 / 3; flex-direction: row; justify-content: space-between; margin-top: 0.5rem; }
}

/* Make room for the cart icon in the header on phones so the
   hamburger never gets squeezed out of the no-wrap flex row. */
@media (max-width: 600px) {
  .site-header__inner { gap: 0.75rem; }
  .site-header__burger { flex-shrink: 0; }
  .site-header__cart { width: 38px; height: 38px; }
  .site-header__cart svg { width: 20px; height: 20px; }
}

/* ============================================================
   HOMEPAGE — FAITH, FIRE & PURPOSE VIDEO
============================================================ */
.about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--navy-deep);
  transition: transform 1200ms var(--ease);
}
.about__image--video:hover .about__video { transform: scale(1.04); }

/* ============================================================
   STORE LISTING — thumbnail + price cards (click into product)
============================================================ */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.store-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
}
.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -28px rgba(6, 30, 55, 0.45);
  border-color: rgba(201, 161, 74, 0.42);
}
.store-card:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
/* reuse .product-card__img base (bg-size/placeholder) but reshape */
.store-card__img {
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  border-radius: 0;
}
.store-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.4rem;
}
.store-card__cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.store-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.store-card__meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.store-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}
.store-card__price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-deep);
}
.store-card__cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}
.store-card:hover .store-card__cta { color: var(--gold); transform: translateX(3px); }

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.product-top {
  background: var(--navy-deep);
  padding: clamp(7rem, 13vh, 9.5rem) 0 1.6rem;
}
.product-top__inner {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin: 0 auto;
}
.product-detail {
  background: var(--cream-soft);
  padding: clamp(2.25rem, 5vh, 3.5rem) 0 clamp(4rem, 8vw, 6rem);
}
.product-detail__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.product-crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(244, 236, 220, 0.72);
}
.product-crumbs a { color: rgba(244, 236, 220, 0.72); text-decoration: none; transition: color 200ms var(--ease); }
.product-crumbs a:hover { color: var(--soft-gold); }
.product-crumbs__sep { opacity: 0.5; }
.product-crumbs [data-crumb] { color: var(--cream); font-weight: 500; }

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: 118px; }
.product-gallery__main {
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 34px 64px -42px rgba(6, 30, 55, 0.55);
}

/* Info column */
.product-info { padding-top: 0.35rem; }
.product-info .section-label { display: block; margin-bottom: 0.85rem; }
.product-info__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.product-info__price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin-bottom: 1.4rem;
}
.product-info__desc {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.96rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.product-field { margin-bottom: 1.7rem; }
.product-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}
.product-info__value { color: var(--ink); font-weight: 600; }

/* Color swatches */
.product-swatches { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.product-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--line);
  box-shadow: inset 0 0 0 2px #fff;
  padding: 0;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}
.product-swatch:hover { transform: translateY(-2px); }
.product-swatch.is-active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--gold);
}
.product-swatch:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* Size buttons */
.product-sizes { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.product-size {
  min-width: 52px;
  padding: 0.6rem 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease), background 200ms var(--ease);
}
.product-size:hover { border-color: var(--gold-deep); color: var(--ink); }
.product-size.is-active { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.product-size:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }

/* Quantity */
.product-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.product-qty__btn {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  line-height: 1;
  background: #fff;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.product-qty__btn:hover { background: var(--cream-soft); color: var(--ink); }
.product-qty__num {
  min-width: 50px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* Actions */
.product-actions { margin: 0.5rem 0 1.75rem; }
.product-actions__btn { width: 100%; max-width: 360px; }
.product-actions__msg { margin-top: 0.85rem; font-size: 0.85rem; min-height: 1.1em; }
.product-actions__msg.is-error { color: #b3402f; }
.product-actions__msg.is-success { color: var(--gold-deep); font-weight: 600; }

/* Meta list */
.product-meta {
  list-style: none;
  margin: 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}
.product-meta li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.product-meta li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* Related */
.product-related { margin-top: clamp(3.5rem, 8vw, 6rem); }
.product-related__head { text-align: center; margin-bottom: 2rem; }
.product-related__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}
.product-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 620px;
  margin: 0 auto;
}
.product-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.product-related-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(6, 30, 55, 0.45); }
.product-related-card__img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.product-related-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 1rem;
}
.product-related-card__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.product-related-card__price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--navy-deep);
}

/* Cart icon groups with the burger on the right for tablet/mobile */
@media (max-width: 900px) {
  .site-header__cart { margin-left: auto; }
}

/* Product layout + store grid responsive */
@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; gap: 2.25rem; }
  .product-gallery { position: static; }
  .product-gallery__main { max-width: 440px; margin-inline: auto; width: 100%; }
  .product-info { max-width: 540px; margin: 0 auto; }
  .product-actions__btn { max-width: none; }
}
@media (max-width: 900px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
}
@media (max-width: 560px) {
  .store-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 420px; }
}
