/* ================================================
   ST LUKE'S CHURCH — Design 04: Warm Community
   ================================================ */

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

:root {
  --sage:    #96AA9A;
  --slate:   #5E718B;
  --terra:   #5E718B;
  --amber:   #5E718B;  /* consolidated into terra */
  --blush:   #B8C9D9;
  --mist:    #96AA9A;  /* consolidated into sage */

  --text:        #2e2a27;
  --text-soft:   #7a6e68;
  --bg:          #ffffff;
  --bg-warm:     #faf8f6;
  --border:      #ede9e4;
  --white:       #ffffff;

  --font-serif: 'Josefin Sans', system-ui, sans-serif;
  --font-sans:  'Josefin Sans', system-ui, sans-serif;

  --nav-h:    68px;
  --max-w:    1180px;
  --r-sm:     8px;
  --r-md:     14px;
  --r-lg:     20px;
  --r-pill:   100px;
  --shadow:   0 4px 20px rgba(94,113,139,0.10);
  --shadow-hover: 0 10px 36px rgba(94,113,139,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

/* ================================================
   CONTAINER
   ================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================
   NAVIGATION
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--sage);
  box-shadow: 0 2px 12px rgba(150,170,154,0.30);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-cross {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* Nav list */
.main-nav { flex: 1; display: flex; justify-content: flex-end; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  color: var(--white);
  font-size: 1.025rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

/* Default hover — overridden per-tab below */
.nav-link:hover,
.nav-item:focus-within > .nav-link {
  background: rgba(255,255,255,0.22);
}

/* Per-tab distinct hover colours */
.nav-item .nav-link:hover { background: rgba(184,201,217,0.38); }

.nav-chevron {
  font-size: 0.82rem;
  transform: rotate(90deg);
  display: inline-block;
  opacity: 0.7;
  transition: transform 0.2s;
}

/* Rotate chevron when dropdown is open */
.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron { transform: rotate(-90deg); opacity: 1; }

.nav-link-give {
  font-weight: 600;
  margin-left: 4px;
}

.nav-link-switch {
  background: var(--slate);
  font-weight: 600;
  margin-left: 4px;
}

.nav-link-switch:hover { background: #4a5a6e; }

/* ── Dropdown ──────────────────────────────────── */
.dropdown {
  /* Use opacity/visibility instead of display so transitions work
     AND so there's no gap — pointer-events off when hidden           */
  position: absolute;
  top: 100%;           /* flush to the nav link — no gap              */
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: 0 8px 32px rgba(94,113,139,0.18);
  overflow: hidden;
  z-index: 500;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  /* padding-top bridges any sub-pixel gap that could break hover      */
  padding-top: 4px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.nav-item .dropdown { border-top: 3px solid #B8C9D9; }

.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 1.025rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.dropdown li:last-child a { border-bottom: none; }

.dropdown li a:hover {
  background: var(--bg-warm);
  color: var(--terra);
  padding-left: 24px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: var(--r-sm);
  padding: 8px 10px;
  cursor: pointer;
}

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

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-size: 1.025rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-solid { background: var(--terra); color: var(--white); }
.btn-solid:hover { background: #b8602e; }

.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover { background: rgba(255,255,255,0.28); }

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 10px 28px;
  border-radius: var(--r-pill);
  font-size: 1.025rem;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s;
}

.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

/* ================================================
   HERO CAROUSEL
   ================================================ */
.hero-section {
  padding: 0;
  background: var(--bg-warm);
}

.hero-wrap {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: calc(100vh - var(--nav-h) - 40px);
  min-height: 500px;
  max-height: 740px;
  box-shadow: 0 8px 40px rgba(94,113,139,0.20);
  display: flex;
  align-items: center;
}

/* ---- Video hero ---- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-wrap .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150,170,154,0.55) 0%, rgba(94,113,139,0.68) 100%);
  z-index: 1;
}

.hero-wrap .slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 620px;
  padding: 0 60px;
}

.carousel {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150,170,154,0.55) 0%, rgba(94,113,139,0.68) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 620px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 0.94rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.slide-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.slide-content p {
  font-size: clamp(1.11rem, 2.34vw, 1.29rem);
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.65;
}

.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Carousel controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  line-height: 1;
}

.carousel-prev:hover,
.carousel-next:hover { background: rgba(255,255,255,0.32); }

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

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.3s;
}

.carousel-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* ================================================
   WELCOME STRIP
   ================================================ */
.welcome-strip {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.2;
}

.welcome-text p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.23rem;
}

.welcome-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.info-card:hover { box-shadow: var(--shadow); }

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-size: 1.025rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 2px;
}

.info-card span {
  font-size: 0.96rem;
  color: var(--text-soft);
}

/* ================================================
   SCRIPTURE QUOTE
   ================================================ */
.quote-section {
  background: var(--blush);
  padding: 56px 0;
}

.quote-inner {
  text-align: center;
  position: relative;
  padding: 0 60px;
}

.quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(94,113,139,0.25);
  margin-bottom: 8px;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--slate);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 16px;
}

cite {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.04em;
  font-style: normal;
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate);
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.section-title.light { color: var(--white); }
.section-title.light::after { background: rgba(255,255,255,0.5); }

.section-link {
  font-size: 1.025rem;
  font-weight: 600;
  color: var(--terra);
  transition: color 0.2s;
}

.section-link:hover { color: var(--slate); }

/* ================================================
   NEWS CARDS
   ================================================ */
.news-section {
  background: var(--bg-warm);
  padding: 72px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  height: 210px;
  overflow: hidden;
}

.card-image img {
  height: 100%;
  transition: transform 0.5s;
}

.card:hover .card-image img { transform: scale(1.05); }

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--terra);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.3;
}

.card-date {
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.02em;
}

.card-text {
  font-size: 1.03rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
}

.card-link {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  align-self: flex-start;
  margin-top: 4px;
}

.card-link:hover { color: var(--terra); }

/* ================================================
   WHAT'S ON
   ================================================ */
.whats-on-section {
  background: var(--sage);
  padding: 72px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.event-card {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, transform 0.2s;
}

.event-card:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-3px);
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--terra);
  color: var(--white);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  min-width: 50px;
  flex-shrink: 0;
}

.event-day {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1;
}

.event-month {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.event-info { flex: 1; }

.event-tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.event-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.event-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}

.event-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, transform 0.2s;
}

.event-card:hover .event-arrow {
  color: var(--white);
  transform: translateX(3px);
}

.whats-on-footer { text-align: center; }

/* ================================================
   GET CONNECTED
   ================================================ */
.connect-section {
  background: var(--bg-warm);
  padding: 72px 0;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.connect-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}

.connect-card:hover {
  box-shadow: 0 8px 32px rgba(94,113,139,0.12);
}

.connect-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 12px;
}

.connect-card p {
  font-size: 1.08rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.connect-link {
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}

.connect-link:hover { color: var(--slate); }

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter-section {
  background: var(--blush);
  padding: 64px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.newsletter-text p {
  color: var(--text-soft);
  font-size: 1.17rem;
  line-height: 1.6;
  max-width: 460px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter-form input {
  padding: 13px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(94,113,139,0.25);
  font-size: 1.11rem;
  font-family: var(--font-sans);
  width: 280px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(94,113,139,0.12);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.75);
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

.footer-cross { font-size: 1.2rem; color: #fff; padding-top: 3px; }

.footer-logo-name { display: flex; flex-direction: column; gap: 2px; }

.footer-tagline {
  font-size: 1.025rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 300px;
  text-align: right;
}

.footer-socials-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-partner-logos img {
  width: 90px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.footer-partner-logos img:hover { opacity: 1; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--terra);
  color: var(--white);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul li a {
  font-size: 1.025rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-col ul li {
  font-size: 1.025rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.38);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .connect-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .welcome-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--sage);
    padding: 16px 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .main-nav.open { display: block; }

  .nav-list { flex-direction: column; gap: 2px; }
  .nav-link {
    padding: 9px 14px;
    border-radius: var(--r-sm);
    width: 100%;
    font-weight: 600;
  }
  .nav-link-give { margin-left: 0; margin-top: 6px; justify-content: center; }

  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: var(--r-sm);
    margin-top: 4px;
    background: rgba(255,255,255,0.12);
    border-top: none;
    padding-top: 0;
    /* override opacity/visibility from desktop */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none;
    transition: none;
    overflow: hidden;
  }

  /* Re-override: desktop hover must not open on mobile */
  .has-dropdown:hover .dropdown { opacity: 0; visibility: hidden; }

  .has-dropdown.open-mobile .dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    display: block;
  }

  .dropdown li a {
    color: rgba(255,255,255,0.85);
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.1);
    padding-left: 28px;
  }

  .dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

  .hero-section { padding: 0; }
  .carousel-slide { padding: 0 20px; }
  .hero-wrap .slide-content { padding: 0 24px; }
  .slide-content h1 { font-size: 2rem; }

  .carousel-prev, .carousel-next { display: none; }

  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }

  .quote-inner { padding: 0 20px; }

  .cards-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .connect-grid { grid-template-columns: 1fr; }
  .nav-logo-text { font-size: 1rem; }
  blockquote { font-size: 1.2rem; }
}
