
:root {
  --wine: #072f86;
  --wine-dark: #031d55;
  --gold: #d9a83f;
  --gold-light: #f7dda0;
  --cream: #f7f9ff;
  --paper: #ffffff;
  --ink: #151b2e;
  --muted: #65708a;
  --line: rgba(7, 47, 134, 0.14);
  --shadow: 0 18px 48px rgba(3, 29, 85, 0.14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin-top: 0;
}

h1 { font-size: clamp(2.85rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2.15rem, 4.5vw, 3.6rem); }
h3 { font-size: 1.55rem; }

p { margin: 0 0 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 239, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: white;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 22px rgba(3, 29, 85, .18);
  flex: 0 0 auto;
}

.brand-text { min-width: 0; }
.brand-text strong {
  display: block;
  color: var(--wine-dark);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta,
.btn-primary {
  color: white;
  background: var(--wine);
  box-shadow: 0 10px 24px rgba(75, 16, 34, .2);
}

.btn-secondary {
  color: var(--wine-dark);
  border: 1px solid rgba(75, 16, 34, .22);
  background: rgba(255,255,255,.72);
}

.btn:hover,
.nav-cta:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  font-size: 1.45rem;
  color: var(--wine);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 180, 90, .28), transparent 22%),
    linear-gradient(128deg, #fffaf0 0%, #fbf7ef 48%, #f3e6d0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(75, 16, 34, .12);
  border-radius: 50%;
  right: -120px;
  bottom: -190px;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.hero h1 {
  color: var(--wine-dark);
  margin: 20px 0 24px;
}

.hero h1 span { color: var(--wine); }

.hero-copy > p {
  max-width: 670px;
  color: #5d5255;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card {
  position: relative;
  min-height: 500px;
  border-radius: 260px 260px 28px 28px;
  background:
    linear-gradient(rgba(3,29,85,.08), rgba(3,29,85,.58)),
    url("pastoral-leadership-group.jpg") center 34% / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 36px;
  color: white;
}

.hero-card::before {
  content: "";
  display: none;
}

.hero-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(3, 29, 85, .76);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(5px);
}

.hero-card h3 {
  margin-bottom: 6px;
  color: var(--gold-light);
}

.hero-card p { color: rgba(255,255,255,.82); }

.quick-strip {
  margin-top: -44px;
  position: relative;
  z-index: 5;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.quick-item:last-child { border-right: 0; }
.quick-item strong {
  display: block;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.quick-item span { color: var(--muted); font-size: .94rem; }

.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-intro p { color: var(--muted); font-size: 1.03rem; }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card-grid,
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.leader-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(45, 7, 19, .07);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.leader-photo {
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(215,180,90,.22), transparent),
    var(--wine);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 3.4rem;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center 34%;
}

.leader-copy {
  padding: 30px;
  flex: 1;
}
.leader-copy small {
  color: var(--wine);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.leader-copy h3 { margin: 8px 0 12px; }
.leader-copy p { color: var(--muted); }

.statement {
  background:
    linear-gradient(rgba(45,7,19,.88), rgba(45,7,19,.92)),
    radial-gradient(circle at 75% 25%, #8f3d58 0%, #2d0713 55%);
  color: white;
}

.statement-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.statement h2,
.statement h3 { color: var(--gold-light); }
.statement p { color: rgba(255,255,255,.82); }

.scripture {
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.25;
}

.ministry-card,
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 34px rgba(45, 7, 19, .06);
}

.ministry-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(75,16,34,.08);
  color: var(--wine);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.ministry-card p,
.info-card p { color: var(--muted); }

.visit {
  background: #f4ead8;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
}

.map-card {
  min-height: 420px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(45,7,19,.08), rgba(215,180,90,.2)),
    repeating-linear-gradient(45deg, #f7f0e4, #f7f0e4 15px, #f2e9d9 15px, #f2e9d9 30px);
  border: 1px solid rgba(75,16,34,.12);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.map-pin {
  width: 84px;
  height: 84px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--wine);
  display: grid;
  place-items: center;
  margin: 0 auto 35px;
  box-shadow: 0 16px 34px rgba(75,16,34,.22);
}
.map-pin span {
  transform: rotate(45deg);
  color: var(--gold-light);
  font-size: 1.6rem;
}

.visit-details {
  background: white;
  border-radius: var(--radius);
  padding: 42px;
  border: 1px solid var(--line);
}

.detail-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: 0; }
.detail-row strong {
  display: block;
  color: var(--wine);
  margin-bottom: 4px;
}
.detail-row span { color: var(--muted); }

.page-hero {
  padding: 110px 0 80px;
  background:
    radial-gradient(circle at 85% 20%, rgba(215, 180, 90, .2), transparent 22%),
    linear-gradient(120deg, #fffaf0, #f2e7d5);
}

.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--wine-dark);
  font-weight: 800;
  font-size: .9rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(75,16,34,.2);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

textarea { min-height: 150px; resize: vertical; }

.form-note {
  font-size: .86rem;
  color: var(--muted);
}

.footer {
  background: var(--wine-dark);
  color: white;
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 48px;
}

.footer h3 { color: var(--gold-light); }
.footer p,
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: white; }

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: .86rem;
}

.notice {
  background: rgba(215,180,90,.18);
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 14px 14px 0;
  color: #5f4b1d;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; }
  .nav-cta { margin-top: 6px; }
  .hero-grid,
  .statement-grid,
  .visit-grid,
  .contact-grid,
  .content-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; gap: 40px; }
  .hero-card { min-height: 430px; }
  .leadership-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ministry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand-text span { display: none; }
  .brand-text strong { max-width: 205px; }
  .hero-grid { padding: 58px 0 88px; }
  .hero-card { min-height: 360px; border-radius: 190px 190px 24px 24px; padding: 28px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-photo,
  .leader-photo img { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-wrap { min-height: 76px; }
  .nav-links { top: 76px; }
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-logo {
  width: 155px;
  height: 155px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gold);
  margin-bottom: 18px;
}


.ministry-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 34px;
}

.ministry-feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 12px 34px rgba(3, 29, 85, .08);
}

.ministry-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.ministry-feature-copy {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 12px 34px rgba(3, 29, 85, .08);
}

.ministry-feature-copy p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .ministry-feature {
    grid-template-columns: 1fr;
  }
}


.ministry-feature + .ministry-feature {
  margin-top: 28px;
}


.youtube-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ff0000;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 0, 0, .20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.youtube-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 0, 0, .28);
}

.youtube-icon {
  width: 24px;
  height: 18px;
  border-radius: 5px;
  background: #ffffff;
  color: #ff0000;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.youtube-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 12px 34px rgba(3, 29, 85, .07);
}

.youtube-card h3 {
  margin-bottom: 12px;
}

.youtube-card p {
  color: var(--muted);
}


.ministry-grid-extended {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ministry-card-image {
  padding: 0;
  overflow: hidden;
}

.ministry-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.ministry-card-image .ministry-card-content {
  padding: 28px 30px 30px;
}

.ministry-card-featured {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 0;
}

.ministry-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(3,29,85,.20), rgba(3,29,85,.84)),
    url("dames-womens-ministry.jpg") center center / cover no-repeat;
}

.ministry-card-featured .ministry-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px;
  color: white;
}

.ministry-card-featured .ministry-card-content p {
  color: rgba(255,255,255,.88);
}

.ministry-card-featured .ministry-icon {
  background: rgba(255,255,255,.18);
  color: #ffffff;
}

@media (max-width: 980px) {
  .ministry-grid-extended {
    grid-template-columns: 1fr;
  }
}


.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.event-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(3,29,85,.08);
}
.event-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #111;
}
.event-card-copy {
  padding: 24px 26px 28px;
}
.event-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7,47,134,.09);
  color: var(--wine);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-label.save {
  background: rgba(217,168,63,.18);
  color: #72520c;
}
.events-section + .events-section {
  margin-top: 72px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) {
  .events-grid { grid-template-columns: 1fr; }
}


.pastors-section {
  background: #ffffff;
}

.pastor-profiles {
  display: grid;
  gap: 34px;
}

.pastor-profile {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(3, 29, 85, .08);
}

.pastor-profile.reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
}

.pastor-profile.reverse .pastor-profile-photo {
  order: 2;
}

.pastor-profile.reverse .pastor-profile-copy {
  order: 1;
}

.pastor-profile-photo {
  min-height: 430px;
  background: #eef3fb;
}

.pastor-profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.pastor-profile-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pastor-role {
  color: var(--wine);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pastor-profile-copy h3 {
  margin: 8px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.pastor-profile-copy p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .pastor-profile,
  .pastor-profile.reverse {
    grid-template-columns: 1fr;
  }

  .pastor-profile.reverse .pastor-profile-photo,
  .pastor-profile.reverse .pastor-profile-copy {
    order: initial;
  }

  .pastor-profile-photo,
  .pastor-profile-photo img {
    min-height: 360px;
  }

  .pastor-profile-copy {
    padding: 30px;
  }
}


.about-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(7,47,134,.18);
  color: var(--wine-dark);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(3,29,85,.05);
  transition: transform .2s ease, background .2s ease;
}

.about-subnav a:hover {
  transform: translateY(-2px);
  background: #fff;
}

.beliefs-section {
  background: #f4ead8;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.belief-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 34px rgba(3,29,85,.06);
}

.belief-card h3 {
  color: var(--wine-dark);
  margin-bottom: 12px;
}

.belief-card p {
  color: var(--muted);
  margin-bottom: 0;
}

#history,
#beliefs,
#pastors {
  scroll-margin-top: 110px;
}

@media (max-width: 820px) {
  .beliefs-grid {
    grid-template-columns: 1fr;
  }

  .about-subnav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-subnav a {
    justify-content: center;
  }
}


.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  min-width: 220px;
  display: none;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 1200;
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px !important;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(7,47,134,.06);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.about-link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 34px rgba(3,29,85,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(3,29,85,.10);
}

.about-link-card p {
  color: var(--muted);
}

.beliefs-top-grid {
  margin-bottom: 56px;
}

.beliefs-statement-intro {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .nav-dropdown {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    box-shadow: none;
    border: 0;
    padding: 4px 0 0 14px;
    background: transparent;
  }

  .nav-dropdown-menu a {
    color: var(--wine-dark);
  }
}


.weekly-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.weekly-service-card {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.weekly-service-card:last-child {
  border-right: 0;
}

.weekly-service-card strong {
  display: block;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 7px;
}

.weekly-service-card span {
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 8px;
}

.weekly-service-card small {
  color: var(--muted);
  line-height: 1.4;
}

.weekly-service-card a {
  margin-top: auto;
  padding-top: 14px;
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .weekly-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .weekly-service-card {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 650px) {
  .weekly-service-grid {
    grid-template-columns: 1fr;
  }
  .weekly-service-card {
    min-height: auto;
    border-right: 0;
  }
}

.youtube-live-section{background:radial-gradient(circle at 85% 10%,rgba(217,168,63,.18),transparent 24%),#f7f9ff}.youtube-live-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:clamp(22px,4vw,38px);box-shadow:0 16px 44px rgba(3,29,85,.09)}.youtube-live-heading{display:flex;align-items:flex-start;gap:18px;margin-bottom:24px}.youtube-live-heading h2{margin:0 0 7px}.youtube-live-heading p{color:var(--muted);margin:0}.live-badge{display:inline-flex;align-items:center;gap:8px;flex:0 0 auto;padding:8px 12px;border-radius:999px;background:#ff0000;color:#fff;font-size:.76rem;font-weight:900;letter-spacing:.08em}.live-dot{width:8px;height:8px;border-radius:50%;background:#fff;box-shadow:0 0 0 4px rgba(255,255,255,.2)}.youtube-live-player{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;border-radius:18px;background:#000}.youtube-live-player iframe{position:absolute;inset:0;width:100%;height:100%;border:0}.youtube-live-actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:20px}.youtube-live-note{color:var(--muted);font-size:.86rem}.youtube-offline{text-align:center;padding:22px 10px}.youtube-offline h2{margin:10px 0 12px}.youtube-offline p{color:var(--muted);max-width:680px;margin:0 auto 22px}@media(max-width:680px){.youtube-live-heading{flex-direction:column}}


.watch-live-hero {
  background:
    radial-gradient(circle at 85% 25%, rgba(217,168,63,.18), transparent 24%),
    linear-gradient(135deg, #f7f9ff 0%, #fffaf0 100%);
}

.watch-live-info {
  background: #fff;
}

.watch-live-cta {
  padding: 18px 0 8px;
  background: #f7f9ff;
}

.watch-live-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 22px;
  border-radius: 16px;
  background: #072f86;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(3,29,85,.16);
}

.watch-live-link strong {
  font-size: 1.05rem;
}

.watch-live-link span:last-child {
  color: rgba(255,255,255,.82);
}

.watch-live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3030;
  box-shadow: 0 0 0 6px rgba(255,48,48,.18);
  flex: 0 0 auto;
}

@media (max-width: 680px) {
  .watch-live-link {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .watch-live-link span:last-child {
    width: 100%;
    padding-left: 22px;
  }
}
