:root {
  --burgundy: #661c28;
  --burgundy-dark: #351018;
  --burgundy-deep: #240b11;
  --gold: #e8be69;
  --gold-light: #f4dda7;
  --cream: #fbf7ef;
  --paper: #ffffff;
  --ink: #211b1b;
  --muted: #706868;
  --line: rgba(63, 42, 42, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 60px rgba(39, 13, 19, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--burgundy-dark);
  border-radius: 0.35rem;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(1160px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  color: white;
  background: var(--burgundy-deep);
}

.topline {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topline-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 2.25rem;
  gap: 1rem;
}

.topline a { text-decoration: none; }
.topline a:hover { color: white; }

.topline-divider {
  width: 1px;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.28);
}

.nav {
  display: flex;
  min-height: 5.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  text-decoration: none;
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  flex: 0 0 auto;
  color: var(--burgundy-dark);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav-menu > a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-menu > a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-menu > a:hover { color: white; }
.nav-menu > a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-action {
  min-height: 2.65rem;
  padding: 0.55rem 1.05rem;
  color: var(--burgundy-dark);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.nav-action:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-action-quiet {
  margin-left: 0.2rem;
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.nav-action-quiet:hover { color: var(--burgundy-dark); }

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-content: center;
  gap: 0.28rem;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 66vw, 47rem);
  align-items: center;
  overflow: hidden;
  color: white;
  background: #3c3840;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  animation: hero-in 1.2s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 8, 12, 0.9) 0%, rgba(31, 13, 17, 0.68) 38%, rgba(28, 14, 18, 0.18) 66%, rgba(17, 8, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(20, 8, 12, 0.44) 0%, transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 6rem 9rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
}

.eyebrow::before {
  width: 2.3rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7.2vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.87;
  text-wrap: balance;
}

.hero-copy {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.15rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--burgundy-dark); background: var(--gold); }
.button-primary:hover { background: var(--gold-light); }

.button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
}

.button-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.service-strip {
  position: relative;
  z-index: 5;
  margin-top: -4.9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.95fr;
  min-height: 9.8rem;
  align-items: stretch;
  color: white;
  background: var(--burgundy);
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-intro,
.service-time,
.service-directions {
  display: flex;
  min-width: 0;
  justify-content: center;
  padding: 1.8rem 2rem;
}

.service-intro {
  flex-direction: column;
  background: var(--burgundy-dark);
}

.service-intro .section-kicker { margin-bottom: 0.3rem; color: var(--gold); }

.service-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.service-time {
  position: relative;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.service-time .day {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-time strong {
  margin: 0.14rem 0;
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.25;
}

.service-time > span:last-child { color: rgba(255, 255, 255, 0.7); font-size: 0.86rem; }

.service-directions {
  align-items: center;
  gap: 0.75rem;
  color: var(--burgundy-dark);
  background: var(--gold);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.service-directions span { font-size: 1.45rem; transition: transform 180ms ease; }
.service-directions:hover span { transform: translateX(4px); }

.section { padding-block: clamp(5rem, 9vw, 8rem); }

.welcome { background: var(--cream); }

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.welcome-copy h2,
.facebook-copy h2,
.visit-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.welcome-copy > p:not(.section-kicker),
.visit-heading > p:not(.section-kicker) {
  max-width: 680px;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.8rem;
  color: var(--burgundy);
  font-weight: 800;
  text-decoration: none;
}

.text-link span { font-size: 1.3rem; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.pastor-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2.1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  box-shadow: 0 20px 55px rgba(51, 26, 31, 0.09);
}

.pastor-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.pastor-monogram {
  display: grid;
  width: 5.3rem;
  height: 5.3rem;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-light);
  background: var(--burgundy-dark);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}

.pastor-card p {
  margin: 0 0 0.15rem;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pastor-card h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; line-height: 1.2; }
.pastor-card span { color: var(--muted); font-size: 0.86rem; }

.facebook-section {
  position: relative;
  color: white;
  background: var(--burgundy-deep);
  overflow: hidden;
}

.facebook-section::before {
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  content: "";
  background: radial-gradient(circle, rgba(232, 190, 105, 0.15), transparent 68%);
  border-radius: 50%;
}

.facebook-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.section-kicker-light { color: var(--gold); }

.facebook-copy h2 { font-size: clamp(2.7rem, 5vw, 4.8rem); }

.facebook-copy p:not(.section-kicker) {
  max-width: 32rem;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.button-light { color: var(--burgundy-dark); background: white; }
.button-light:hover { background: var(--gold-light); }

.facebook-feed {
  padding: 1rem;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.35rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.facebook-feed iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  min-height: 620px;
  margin-inline: auto;
  background: #f4f4f4;
}

.feed-fallback {
  margin: 0.75rem 0 0;
  color: #685f5f;
  font-size: 0.8rem;
  text-align: center;
}

.feed-fallback a { color: var(--burgundy); font-weight: 750; }

.visit { background: white; }

.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.visit-heading h2 { font-size: clamp(2.55rem, 4.5vw, 4rem); }

.contact-list { display: grid; gap: 0.8rem; }

.contact-card {
  position: relative;
  display: flex;
  min-height: 7.25rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem 4rem 1.4rem 1.65rem;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 0.35rem;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-card::after {
  position: absolute;
  right: 1.5rem;
  content: "→";
  color: var(--burgundy);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.contact-card:hover {
  z-index: 1;
  border-color: rgba(102, 28, 40, 0.25);
  box-shadow: 0 15px 40px rgba(43, 21, 26, 0.08);
  transform: translateY(-2px);
}

.contact-card:hover::after { transform: translateX(4px); }

.contact-label {
  color: var(--burgundy);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card strong {
  margin: 0.18rem 0 0.04rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.contact-card > span:last-child { color: var(--muted); font-size: 0.88rem; }

.footer {
  padding-block: 3.5rem 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  background: #18080c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand { display: flex; align-items: center; gap: 0.85rem; }
.footer-brand .brand-mark { width: 2.4rem; height: 2.4rem; font-size: 1.15rem; }
.footer-brand strong { display: block; color: white; font-family: var(--serif); font-size: 1.05rem; }
.footer-brand span { display: block; font-size: 0.76rem; }
.footer-grid > p { margin: 0; font-size: 0.8rem; text-align: center; }

.footer-links { display: flex; justify-content: flex-end; gap: 1.2rem; font-size: 0.8rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.73rem;
}

.notice {
  position: fixed;
  z-index: 200;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: min(24rem, calc(100% - 2.4rem));
  padding: 0.85rem 1.1rem;
  color: white;
  background: var(--burgundy-dark);
  border: 1px solid rgba(232, 190, 105, 0.4);
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.notice.show { opacity: 1; transform: translateY(0); }

@keyframes hero-in {
  from { opacity: 0.5; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1020px) {
  .nav-menu { gap: 0.95rem; }
  .nav-menu > a { display: none; }
  .service-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .service-directions { grid-column: 1 / -1; min-height: 4.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p { display: none; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 2rem, 680px); }
  .topline { display: none; }
  .nav { min-height: 4.9rem; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: 0.6rem; }
  .brand-mark { width: 2.3rem; height: 2.3rem; }
  .menu-toggle { display: grid; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-menu {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 1rem;
    gap: 0;
    background: var(--burgundy-deep);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .nav-menu.open { max-height: 35rem; padding: 0.5rem 1rem 1.2rem; opacity: 1; }
  .nav-menu > a { display: block; padding: 0.82rem 0.25rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav-menu > a::after { display: none; }
  .nav-action { width: 100%; margin: 0.7rem 0 0; }

  .hero { min-height: 38rem; align-items: end; }
  .hero-image { object-position: 45% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(21, 7, 11, 0.96) 0%, rgba(24, 9, 13, 0.77) 54%, rgba(22, 9, 12, 0.12) 100%),
      linear-gradient(90deg, rgba(22, 8, 12, 0.52), transparent 80%);
  }
  .hero-content { padding-block: 8rem 7.5rem; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-copy { max-width: 29rem; }

  .service-strip { margin-top: -3.3rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-intro { grid-column: 1 / -1; padding-block: 1.3rem; }
  .service-time { min-height: 8.2rem; padding: 1.25rem 1.3rem; }
  .service-time:nth-child(3) { border-right: 0; }
  .service-directions { padding-block: 1.1rem; }

  .welcome-grid,
  .facebook-grid,
  .visit-grid { grid-template-columns: 1fr; }
  .welcome-grid,
  .facebook-grid { gap: 3.25rem; }
  .visit-grid { gap: 2.5rem; }
  .pastor-card { max-width: 28rem; }
  .facebook-feed iframe { min-height: 560px; height: 560px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-time { min-height: 7.4rem; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .service-intro { grid-column: auto; }
  .service-directions { grid-column: auto; }
  .pastor-card { align-items: flex-start; padding: 1.45rem; }
  .pastor-monogram { width: 4.4rem; height: 4.4rem; font-size: 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Clean content additions */
.brand-logo {
  overflow: hidden;
  padding: 0.42rem;
  background: var(--gold-light);
}

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

.welcome-grid-clean {
  grid-template-columns: minmax(0, 820px);
}

.beliefs {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: white;
}

.beliefs-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
}

.beliefs-intro h2,
.pastor-profile-copy h2,
.wednesday-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.7vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.beliefs-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.beliefs-list p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.75vw, 1.35rem);
  line-height: 1.45;
}

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

.pastor-profile {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  max-width: 1000px;
}

.pastor-photo-wrap {
  display: grid;
  place-items: center;
}

.pastor-photo {
  display: block;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border: 6px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 24px 55px rgba(24, 8, 12, 0.24);
}

.pastor-profile-copy .section-kicker { color: var(--gold-light); }
.pastor-profile-copy h2 { color: white; }

.pastor-profile-copy p:not(.section-kicker) {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.wednesday { background: var(--cream); }

.wednesday-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.wednesday-copy > p:not(.section-kicker) {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.wednesday-schedule {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  box-shadow: 0 20px 55px rgba(51, 26, 31, 0.08);
}

.schedule-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.5rem 1.6rem;
}

.schedule-row + .schedule-row { border-top: 1px solid var(--line); }

.schedule-time {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.schedule-row strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.schedule-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1020px) {
  .nav-menu { gap: 0.75rem; }
}

@media (max-width: 760px) {
  .beliefs-panel,
  .pastor-profile,
  .wednesday-grid {
    grid-template-columns: 1fr;
  }

  .pastor-profile { text-align: left; }
  .pastor-photo { width: 230px; height: 230px; }
  .pastor-photo-wrap { justify-items: start; }
  .schedule-row { grid-template-columns: 1fr; gap: 0.35rem; }
}

@media (max-width: 480px) {
  .brand-logo { padding: 0.36rem; }
  .pastor-photo { width: 190px; height: 190px; }
}
