/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:          #0a0a1e;
  --crimson:       #cc0033;
  --crimson-light: #ff1a4a;
  --gold:          #c9a84c;
  --white:         #ffffff;
  --off-white:     #f7f5f0;
  --grey:          #6b7280;
  --light-grey:    #e5e7eb;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Jost', Arial, sans-serif;
  --nav-height:    70px;
  --ease:          0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* Scoped list resets — not global, avoids killing schedule list markers */
.nav-links,
.nav-links ul,
.footer-col ul { list-style: none; }


/* ─── SCROLL REVEAL ────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ─── NAVBAR ────────────────────────────────────────────────────────────────── */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--nav-height);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(10,10,30,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
  background: rgba(10,10,30,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.logo img { height: 44px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links li { position: relative; }

.nav-link {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
  transition: color var(--ease);
}

.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--crimson);
  width: 0;
  transition: width var(--ease);
  margin-top: 2px;
}

.nav-link:hover            { color: var(--white); }
.nav-link:hover::after     { width: 100%; }

.dropdown-menu {
  /* Hidden by default; revealed on hover/focus via opacity + pointer-events
     so we can transition smoothly without display:none flash.             */
  position: absolute;
  top: calc(100% + 4px); /* reduced gap so hover bridge works reliably    */
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 100;
  list-style: none;
  /* Invisible but still in the layout so mouse can travel into it        */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-4px);
}

/* Invisible pseudo-element that bridges the 4 px gap between trigger and menu,
   preventing the dropdown from closing as the cursor moves downward.        */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background var(--ease), color var(--ease);
}

.dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--crimson);
}

/* Reveal on hover of the parent li */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* The "About ▾" trigger is a button, not a link — style it to match nav-links */
.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle:hover { color: var(--white); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─── HERO CAROUSEL ─────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.carousel { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.slide.active { opacity: 1; pointer-events: auto; }

.slide-media { width: 100%; height: 100%; object-fit: cover; display: block; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,30,0.3) 0%,
    rgba(10,10,30,0.5) 55%,
    rgba(10,10,30,0.75) 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 760px;
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.slide-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 12px;
}

.slide-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
  opacity: 0.88;
}

.hero-btn {
  display: inline-block;
  background: var(--crimson);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(204,0,51,0.4);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.hero-btn:hover {
  background: var(--crimson-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,0,51,0.5);
}

.white-btn {
  background: var(--white);
  color: var(--crimson);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}

.white-btn:hover { background: var(--off-white); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--crimson);
  color: var(--crimson);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease);
}

.btn-outline:hover { background: var(--crimson); color: var(--white); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.3rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform var(--ease);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.dot.active { background: var(--white); transform: scale(1.35); }


/* ─── SECTIONS ──────────────────────────────────────────────────────────────── */

.section { padding: 80px 32px; text-align: center; }
.section.light { background: var(--off-white); }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
  text-align: center;
}

.section-title.left { text-align: left; }


/* ─── SERVICE TIMES ─────────────────────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px 28px;
  border-radius: 12px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,10,30,0.25); }

.service-icon { font-size: 2rem; margin-bottom: 16px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.service-card p { font-size: 0.88rem; opacity: 0.8; }


/* ─── ABOUT ────────────────────────────────────────────────────────────────── */

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.about-text p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.about-text .eyebrow { text-align: left; }

.about-image img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}


/* ─── CARDS / GRID ──────────────────────────────────────────────────────────── */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.card {
  background: var(--white);
  padding: 26px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 3px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  border-top-color: var(--crimson);
}

.card-icon { font-size: 1.8rem; margin-bottom: 12px; }

.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  background: rgba(204,0,51,0.08);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.card-meta     { font-size: 0.8rem; color: var(--grey); margin-bottom: 4px; }

.card-scripture {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 6px;
  margin-bottom: 14px;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--crimson);
  transition: opacity var(--ease);
}

.card-link:hover { opacity: 0.7; }


/* ─── GIVING ────────────────────────────────────────────────────────────────── */

.giving {
  background: linear-gradient(130deg, #0a0a1e 0%, #1a0010 50%, #2a000a 100%);
  color: var(--white);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.giving::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(204,0,51,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.giving-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.giving h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.giving p { font-size: 1rem; opacity: 0.8; margin-bottom: 32px; line-height: 1.7; }

.giving-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.giving-note {
  font-size: 0.8rem;
  opacity: 0.55;
  margin: 0;
  letter-spacing: 0.02em;
}

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


/* ─── FOOTER ────────────────────────────────────────────────────────────────── */

footer { background: var(--navy); color: var(--white); padding: 60px 32px 24px; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-logo    { height: 40px; margin-bottom: 12px; }

.footer-tagline { font-style: italic; font-size: 0.85rem; opacity: 0.55; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a,
.footer-col p,
.footer-col a {
  font-size: 0.83rem;
  opacity: 0.65;
  line-height: 1.8;
  transition: opacity var(--ease);
}

.footer-col ul li a:hover,
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.45;
  max-width: 1100px;
  margin: 0 auto;
}


/* ─── LIVE STREAM SECTION ───────────────────────────────────────────────────── */

.live-dot-nav {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #888;
  margin-right: 5px;
  vertical-align: middle;
  position: relative; top: -1px;
  transition: background 0.3s;
}

.live-dot-nav.pulsing { background: #ff1a1a; animation: navPulse 1.4s infinite; }

@keyframes navPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,26,26,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255,26,26,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,26,26,0); }
}

.live-nav-link.is-live { color: #ff4d4d !important; }

.live-section  { padding-bottom: 60px; }
.live-header   { margin-bottom: 32px; }

/* FIX: no negative margin — was pushing subtitle over the title */
.live-subtitle { color: var(--grey); font-size: 0.95rem; margin-top: 0; }

/* FIX: hidden by default in CSS so there's no flash before JS runs */
.live-player-wrap {
  display: none;
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
  background: #000;
}

.live-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: #dd0000;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: livePulse 1.2s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

.live-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.live-player iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.live-offline {
  max-width: 580px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 44px 28px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 2px dashed var(--light-grey);
}

.live-offline-icon { font-size: 2.8rem; margin-bottom: 14px; }

.live-offline h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.live-offline p {
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.live-offline-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.live-schedule {
  background: var(--off-white);
  border-radius: 10px;
  padding: 14px 22px;
  text-align: left;
  display: inline-block;
}

.live-schedule > p {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.live-schedule ul { list-style: none; padding: 0; margin: 0; }

.live-schedule ul li { font-size: 0.83rem; color: var(--grey); padding: 3px 0; }

.live-schedule ul li::before { content: '→ '; color: var(--crimson); font-weight: 600; }

.live-past { max-width: 1100px; margin: 0 auto; }

.past-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 26px;
}

/* FIX: use !important to cleanly override .card padding */
.past-stream-card { cursor: pointer; padding: 0 !important; overflow: hidden; }

.past-thumb {
  width: 100%;
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: center;
  background-color: #111;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.past-stream-card:hover .past-thumb { transform: scale(1.04); }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.38);
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.past-stream-card:hover .play-overlay { opacity: 1; }

.past-info { padding: 18px 18px 20px; }


/* ─── VIDEO LIGHTBOX MODAL ──────────────────────────────────────────────────── */

.stream-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.stream-modal.open { display: flex; }

.stream-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(4px);
}

.stream-modal-inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 880px;
  background: #0a0a1e;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(14px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.stream-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.stream-modal-close:hover { background: rgba(255,255,255,0.25); }

.stream-modal-title {
  font-family: var(--font-display);
  color: #fff;
  padding: 18px 52px 12px 20px;
  font-size: 1.05rem;
  font-weight: 700;
}

.stream-modal-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.stream-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}


/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {

  .nav-links {
    /* FIX: cancel absolute+transform centering, use fixed slide-in instead */
    position: fixed;
    top: 0; right: -100%;
    left: auto;
    transform: none;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 86px 28px 32px;
    transition: right 0.32s ease;
    z-index: 1050;
    box-shadow: -4px 0 30px rgba(0,0,0,0.45);
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .nav-link { display: block; padding: 15px 0; font-size: 0.95rem; }
  .nav-link::after { display: none; }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    padding: 0 0 8px 16px;
    transition: none;
  }

  .dropdown-menu::before { display: none; }

  /* Make the toggle button full-width on mobile to match nav-link rows */
  .dropdown-toggle {
    width: 100%;
    padding: 15px 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    justify-content: flex-start;
  }

  .dropdown-menu li a { color: rgba(255,255,255,0.65); background: none; font-size: 0.85rem; }
  .dropdown-menu li a:hover { color: var(--white); background: none; }

  .menu-toggle { display: flex; }

  .carousel-btn       { width: 36px; height: 36px; font-size: 1rem; }
  .carousel-btn.prev  { left: 10px; }
  .carousel-btn.next  { right: 10px; }

  .about-inner        { grid-template-columns: 1fr; gap: 28px; }
  .about-image        { display: none; }
  .section-title.left { text-align: center; }
  .about-text .eyebrow{ text-align: center; }
  .btn-outline        { display: block; text-align: center; }

  .section  { padding: 60px 20px; }
  .giving   { padding: 70px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .live-offline-actions { flex-direction: column; align-items: center; }
  .stream-modal-inner   { width: 98%; border-radius: 10px; }
}

@media (max-width: 480px) {
  .navbar        { padding: 0 16px; }
  .slide-content { bottom: 16%; }
  .services-grid { grid-template-columns: 1fr; }
  .grid          { grid-template-columns: 1fr; }
}


/* ─── MAP SECTION ───────────────────────────────────────────────────────────── */

.map-section {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  max-width: 100%;
}

/* Info panel */
.map-info {
  padding: 44px 52px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info .eyebrow  { text-align: left; color: var(--gold); }
.map-info .section-title { color: var(--white); margin-bottom: 20px; }

.map-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.map-detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.map-detail-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

.map-detail-row strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.map-detail-row p {
  font-size: 0.84rem;
  opacity: 0.75;
  line-height: 1.6;
}

.map-detail-row a {
  font-size: 0.84rem;
  opacity: 0.75;
  transition: opacity var(--ease);
}

.map-detail-row a:hover { opacity: 1; }

.map-cta { margin-top: 4px; align-self: flex-start; }

/* Embedded map */
.map-embed {
  position: relative;
  min-height: 360px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.map-embed:hover iframe { filter: grayscale(0%); }

/* Directions button in footer */
.directions-btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--crimson);
  color: var(--white) !important;
  opacity: 1 !important;
  font-size: 0.78rem !important;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background var(--ease);
}

.directions-btn:hover { background: var(--crimson-light); opacity: 1 !important; }

/* Responsive map */
@media (max-width: 768px) {
  .map-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .map-info {
    padding: 52px 24px;
    order: 2;
  }

  .map-embed {
    min-height: 240px;
    order: 1;
  }

  .map-cta { align-self: stretch; text-align: center; }
}


/* ─── SOCIAL LINKS ──────────────────────────────────────────────────────────── */

.social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65) !important;
  opacity: 1 !important;
  transition: background var(--ease), color var(--ease), transform var(--ease);
  font-size: 0;
}

.social-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.social-btn:hover {
  transform: translateY(-3px);
}

/* Individual brand colours on hover */
.social-btn[aria-label="Facebook"]:hover  { background: #1877f2; color: #fff !important; }
.social-btn[aria-label="YouTube"]:hover   { background: #ff0000; color: #fff !important; }
.social-btn[aria-label="Instagram"]:hover { background: #e1306c; color: #fff !important; }