/* =========================
   01. DESIGN SYSTEM
========================= */
:root {
  --primary: #081b2d;
  --primary-dark: #061624;
  --accent: #0d8bff;
  --accent-hover: #006ed6;

  --white: #ffffff;
  --text: #0f1720;
  --muted: #5b6470;
  --bg-light: #f6f8fb;

  --overlay: rgba(0,0,0,0.52);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,0.12);

  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 80px;
  --space-xl: 140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: #000;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

section,
div[id] {
  scroll-margin-top: 100px;
}

/* =========================
   02. TYPOGRAPHY
========================= */
h1,
h2,
h3 {
  margin: 0 0 var(--space-sm);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 5vw, 72px);
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
}

p {
  margin: 0;
  max-width: 65ch;
  font-size: 18px;
  color: var(--muted);
}

.section-label {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* =========================
   03. SHARED BUTTONS
========================= */
.btn,
.micro-btn,
.join-btn,
.suggestion-trigger-btn,
.visit-btn,
.basontas-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover,
.micro-btn:hover,
.join-btn:hover,
.suggestion-trigger-btn:hover,
.visit-btn:hover,
.basontas-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}

/* =========================
   04. NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  /* 🔥 DEFAULT (wie früher) */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    box-shadow 0.4s ease;
}

/* 🔥 SCROLL STATE */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.nav-inner {
  position: relative;
  max-width: 1400px;
  min-height: 82px;
  margin: 0 auto;
  padding: 16px 32px;

  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  grid-column: 1;
}

.logo-img {
  height: 42px;
  display: block;
}

.nav-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: max-content;
}

.nav-center a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 450;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.nav-center a:hover {
  opacity: 1;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.35s ease;
}

.nav-center a:hover::after,
.nav-center a.active::after {
  width: 100%;
}

.nav-socials {
  display: flex;
  align-items: center;
  align-self: center;
  justify-self: end;
  margin-left: auto;
  gap: 14px;
  grid-column: 3;
}

.nav-socials a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-socials svg {
  width: 18px;
  height: 18px;
}

.nav-language {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  justify-self: end;
  grid-column: 4;
}

.nav-language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-language-toggle:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.34);
  transform: translateY(-1px);
}

.nav-language-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-language-current {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(260px, 86vw);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(7, 16, 28, 0.96);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-language-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-language-title {
  margin-bottom: 4px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-language-hint {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.nav-language-options {
  display: grid;
  gap: 10px;
}

.nav-language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: white;
  font: inherit;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.nav-language-option:hover,
.nav-language-option.active {
  background: rgba(13,139,255,0.18);
  border-color: rgba(13,139,255,0.48);
  transform: translateY(-1px);
}

.nav-language-code {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  justify-self: end;
  grid-column: 4;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(6, 12, 20, 0.96);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: center;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu-links a:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1260px) {
  .nav-inner {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-center {
    display: none;
  }

  .logo {
    margin-right: auto;
  }

  .nav-socials {
    display: flex;
    margin-left: 0;
    order: 3;
  }

  .nav-language {
    order: 4;
  }

  .nav-toggle {
    display: flex;
    order: 5;
    margin-left: 6px;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    padding: 14px 24px;
  }

  .nav-socials {
    display: none;
  }

  .logo-img {
    height: 38px;
  }

  .nav-language-toggle {
    min-height: 40px;
    padding: 0 12px;
  }

  .nav-language-menu {
    right: -42px;
    width: min(240px, calc(100vw - 32px));
  }
}

/* =========================
   05. HERO
========================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.45s ease, transform 1.4s ease;
}

.hero-video.loaded {
  opacity: 1;
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--overlay);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-video.loaded + .overlay {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  color: white;
  animation: fadeUp 0.55s ease-out;
}

.hero-content h1,
.hero-content p {
  color: white;
}

.hero-content h1 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  margin-top: 6px;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  text-align: center;
  pointer-events: none;
}

.scroll-indicator span {
  font-size: 18px;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border-left: 3px solid rgba(255,255,255,0.9);
  border-bottom: 3px solid rgba(255,255,255,0.9);
  transform: rotate(-45deg);
  animation: arrowBounce 1.8s infinite;
}

@media (max-width: 768px) {
  #visit {
    scroll-margin-top: -100px;
  }
}

@media (min-width: 769px) {
  #visit {
    scroll-margin-top: 0;
  }
}

/* =========================
   06. ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0.7;
  }

  50% {
    transform: rotate(-45deg) translate(-6px, 6px);
    opacity: 1;
  }
}

.reveal-group .reveal-item {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(4px);
  transition: opacity 0.42s ease, transform 0.42s ease, filter 0.42s ease;
}

.reveal-group.active .reveal-item {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-group .reveal-item:nth-child(1) { transition-delay: 0.03s; }
.reveal-group .reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-group .reveal-item:nth-child(3) { transition-delay: 0.13s; }
.reveal-group .reveal-item:nth-child(4) { transition-delay: 0.18s; }
.reveal-group .reveal-item:nth-child(5) { transition-delay: 0.23s; }
.reveal-group .reveal-item:nth-child(6) { transition-delay: 0.28s; }
/* =========================
   07. LAYOUT BASE
========================= */
.section {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
}

.section:nth-child(even) {
  background: #f8f9fb;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   08. ABOUT SECTION
========================= */
.about-section {
  background: white;
  padding: var(--space-xl) var(--space-md);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-left h2 {
  max-width: 10ch;
  line-height: 1.05;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-right p {
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   09. MICRO SECTION HOME
========================= */
.micro-section {
  background: var(--bg-light);
  padding: 100px var(--space-md) 110px;
}

.micro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: start;
}

.micro-left,
.micro-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.micro-right {
  align-items: flex-start;
}

.micro-text {
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.8;
}

.micro-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
}

.micro-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.micro-info-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.micro-info-card strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.micro-btn {
  align-self: flex-start;
  margin-top: 6px;
}

.micro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.micro-actions .micro-btn,
.micro-actions .suggestion-trigger-btn {
  margin-top: 0;
}

.micro-section-label {
  margin: 0;
}

.micro-title {
  max-width: 9ch;
  line-height: 1.02;
  margin: 0;
}

.micro-images {
  width: 100%;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.micro-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.micro-image-card img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.micro-fullscreen-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: rgba(8, 27, 45, 0.82);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.28s ease;
}

.micro-image-card:hover .micro-fullscreen-btn {
  opacity: 1;
  transform: translateY(0);
}

.micro-fullscreen-btn:hover {
  background: rgba(8, 27, 45, 0.94);
}

/* =========================
   10. VISIT SECTION
========================= */
.visit-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 120px 40px;
}

.visit-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.visit-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visit-label {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-left h2 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.visit-time {
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  font-weight: 600;
}

.visit-location,
.visit-text {
  color: rgba(255,255,255,0.75);
}

.visit-location {
  font-size: 18px;
}

.visit-text {
  max-width: 520px;
  line-height: 1.8;
}

.visit-btn {
  align-self: flex-start;
  margin-top: 10px;
}

.visit-right {
  position: relative;
  isolation: isolate;
}

.visit-right::before {
  content: "";
  position: absolute;
  inset: 12% 5% 4% 12%;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(13, 139, 255, 0.35),
    rgba(13, 139, 255, 0.08) 45%,
    transparent 70%
  );
  filter: blur(40px);
  opacity: 0.9;
}

.visit-right img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto 0 0;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35));
  transition: transform 0.6s ease, filter 0.6s ease;
}

.visit-right:hover img {
  transform: scale(1.04) translateY(-4px);
}

/* =========================
   11. JOIN / CONTACT SECTION
========================= */
.join-section {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.join-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.join-label {
  margin-bottom: 4px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.join-section h2,
.join-section .time {
  color: white;
}

.join-section h2 {
  margin-bottom: 6px;
}

.join-section .time {
  font-size: 24px;
  font-weight: 600;
}

.join-section .location,
.join-text {
  color: rgba(255,255,255,0.82);
}

.join-text {
  max-width: 640px;
  font-size: 17px;
}

/* =========================
   12. FOOTER
========================= */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.88);
  padding: 90px 32px 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-inner-compact {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer-logo {
  height: 42px;
  margin-bottom: 18px;
}

.footer-text {
  max-width: 34ch;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.footer-links,
.footer-contact,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h3,
.footer-contact h3,
.footer-socials h3,
.footer-label h3 {
  margin: 0 0 18px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links a,
.footer-contact a,
.footer-label a,
.contact-mail {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-label a:hover,
.contact-mail:hover {
  color: white;
  text-shadow: 0 0 18px rgba(255,255,255,0.45);
}

.footer-label p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.footer-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255,255,255,0.06);
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.footer-social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.footer-bottom p {
  max-width: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 0;
}

.footer-legal-link {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-legal-link:hover {
  color: white;
  text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

/* =========================
   13. 404 PAGE
========================= */
.not-found-page {
  background: #000;
}

.not-found-main {
  min-height: 78vh;
  padding-top: 96px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.92)),
    url("/images/hero.JPG") center / cover;
}

.not-found-hero {
  min-height: calc(78vh - 96px);
  padding: 120px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-card {
  width: min(720px, 100%);
  padding: 56px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  text-align: center;
  backdrop-filter: blur(14px);
}

.not-found-card .section-label {
  margin: 0 auto 22px;
  text-align: center;
}

.not-found-card h1 {
  color: white;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 0;
  white-space: nowrap;
}

.not-found-card p:not(.section-label) {
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.78);
  font-size: 19px;
}

.not-found-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

.privacy-page {
  background: #000;
}

.privacy-main {
  min-height: 78vh;
  padding-top: 96px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.92)),
    url("/images/hero.JPG") center / cover;
}

.privacy-hero {
  padding: 120px 32px;
}

.privacy-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 56px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(14px);
}

.privacy-card .section-label {
  margin-bottom: 22px;
}

.privacy-card h1 {
  margin-bottom: 16px;
  color: white;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 0;
}

.privacy-card > p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.8;
}

.privacy-section {
  margin-top: 36px;
}

.privacy-section h2 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(22px, 2.2vw, 28px);
}

.privacy-section p,
.privacy-section li,
.privacy-contact {
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

.privacy-section ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.privacy-section li + li {
  margin-top: 8px;
}

.privacy-contact a {
  color: white;
  text-decoration: none;
}

@media (max-width: 700px) {
  .not-found-main {
    min-height: 72vh;
    padding-top: 78px;
  }

  .not-found-hero {
    min-height: calc(72vh - 78px);
    padding: 72px 20px;
  }

  .not-found-card {
    padding: 36px 22px;
    border-radius: 16px;
  }

  .not-found-card h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .not-found-card p:not(.section-label) {
    font-size: 14px;
  }

  .not-found-btn {
    width: 100%;
    min-width: 0;
  }

  .privacy-main {
    min-height: 72vh;
    padding-top: 78px;
  }

  .privacy-hero {
    padding: 72px 20px;
  }

  .privacy-card {
    padding: 36px 22px;
    border-radius: 16px;
  }

  .privacy-card h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .privacy-card > p,
  .privacy-section p,
  .privacy-section li,
  .privacy-contact {
    font-size: 14px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   14. IMAGE LIGHTBOX
========================= */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 40px;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.image-lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.04);
}

/* =========================
   14. DHMM PAGE
========================= */
/* =========================
   DHMM PAGE
========================= */

.dhmm-profile-hero {
  min-height: 100vh;
  padding: 90px 32px 80px;
  background:
    radial-gradient(circle at 75% 45%, rgba(13,139,255,0.12), transparent 32%),
    linear-gradient(90deg, #020406 0%, #05070b 45%, #08121f 100%);
  color: white;
  overflow: hidden;
}

.dhmm-profile-inner {
  max-width: 1400px;
  min-height: calc(100vh - 230px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.dhmm-profile-text {
  max-width: 620px;
}

.dhmm-hero-logo {
  width: min(300px, 10vw);
  height: auto;
  display: block;
  margin: 0 0 -10px;
}

.dhmm-profile-text .section-label {
  color: rgba(255,255,255,0.62);
}

.dhmm-profile-text h1 {
  color: white;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 1;
  margin-bottom: 28px;
}

.dhmm-profile-text p {
  color: rgba(255,255,255,0.72);
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.dhmm-profile-text .btn {
  margin-top: 18px;
}

.dhmm-profile-image {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.dhmm-profile-image::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: 4%;
  bottom: 8%;
  z-index: -1;

  background: radial-gradient(
    circle,
    rgba(13,139,255,0.22),
    rgba(155,53,255,0.10) 42%,
    transparent 70%
  );

  filter: blur(42px);
}

.dhmm-profile-image img {
  width: min(1000px, 100%);
  max-height: 90vh;
  object-fit: contain;
  display: block;

  filter: drop-shadow(0 34px 70px rgba(0,0,0,0.45));
}

/* MOBILE */
@media (max-width: 900px) {
  .dhmm-profile-hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 24px 70px;
    overflow: hidden;
  }

  .dhmm-profile-inner {
    position: relative;
    z-index: 2;
    display: block;
    min-height: auto;
    text-align: left;
  }

  .dhmm-profile-text {
    position: relative;
    z-index: 3;
    max-width: 100%;
    margin: 0;
  }

  .dhmm-hero-logo {
    width: min(190px, 58vw);
    margin: 0 0 34px;
  }


  .dhmm-profile-text h1 {
    font-size: clamp(38px, 10vw, 58px);
    line-height: 1;
  }

  .dhmm-profile-text p {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
  }

  .dhmm-profile-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
  }

  .dhmm-profile-image::before {
    display: none;
  }

  .dhmm-profile-image img {
    position: absolute;
    right: -90px;
    bottom: 0;
    width: 115vw;
    max-width: none;
    height: 88vh;
    max-height: none;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.42;
    filter: drop-shadow(0 34px 70px rgba(0,0,0,0.45));
  }

  .dhmm-profile-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 48%,
      rgba(0,0,0,0.35) 100%
    );
    pointer-events: none;
  }
}

/* =========================
   DHMM CTA FIX
========================= */

.dhmm-btn {
  margin-top: 28px;
}

.join-inner {
  text-align: center;
  align-items: center;
}

.join-btn {
  display: inline-block;
}

/* =========================
   15. BASONTAS PAGE
========================= */
.basontas-hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.basontas-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.06);
  transition: transform 0.25s ease-out;
}

.basontas-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,27,45,0.62), rgba(8,27,45,0.78));
}

.basontas-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  animation: fadeUp 0.5s ease-out both;
}

.basontas-hero-label {
  margin: 0 auto 20px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
}

.basontas-hero h1 {
  color: white;
  margin: 0 auto 18px;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  text-align: center;
}

.basontas-hero-text {
  max-width: 42ch;
  margin: 10px auto 0;
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

.basontas-hero-line {
  width: clamp(120px, 16vw, 260px);
  height: 5px;
  margin: 0 auto 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9b35ff, #0d8bff);
}

.basontas-intro {
  background: white;
  padding: 110px 32px 90px;
  text-align: center;
}

.basontas-intro-center {
  max-width: 900px;
  margin: 0 auto;
}

.basontas-intro-center h2 {
  max-width: 10ch;
  margin: 0 auto 24px;
  line-height: 1.03;
}

.basontas-intro-center p {
  max-width: 58ch;
  margin: 0 auto 18px;
  line-height: 1.85;
}

.basonta-section {
  padding: 100px 32px;
  background: var(--bg-light);
}

.basonta-section:nth-of-type(even) {
  background: white;
}

.basonta-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.basonta-section:nth-of-type(even) .basonta-grid {
  direction: rtl;
}

.basonta-section:nth-of-type(even) .basonta-text,
.basonta-section:nth-of-type(even) .basonta-gallery {
  direction: ltr;
}

.basonta-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.basonta-text h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.basonta-text p {
  max-width: 58ch;
  line-height: 1.85;
}

.basonta-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.basonta-image-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.basonta-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.basonta-image-card:hover .micro-fullscreen-btn {
  opacity: 1;
  transform: translateY(0);
}

.basonta-image-card:first-child {
  grid-column: span 2;
  height: 300px;
}

.basonta-verse {
  margin-top: 10px;
  max-width: 52ch;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}

.basonta-verse span {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.basontas-cta {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
  padding: 110px 32px;
}

.basontas-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.basontas-cta-label {
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
}

.basontas-cta h2 {
  max-width: 900px;
  margin: 0 auto 28px;
  color: white;
  text-align: center;
  line-height: 1.08;
}

.basontas-cta p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.76);
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
}

.basontas-cta-btn {
  display: inline-block;
}

.airport-layout .basonta-image-card:first-child {
  grid-column: auto;
  grid-row: auto;
  height: 220px;
}

.airport-layout .basonta-image-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  height: 220px;
}

.airport-layout .basonta-image-card:nth-child(3) {
  grid-column: 1;
  grid-row: 1 / span 2;
  height: 456px;
}

.airport-layout img {
  width: 100%;
  object-fit: cover;
}

.ushers-layout .basonta-image-card:first-child {
  grid-column: auto;
  grid-row: auto;
  height: 220px;
}

.ushers-layout .basonta-image-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  height: 220px;
}

.ushers-layout .basonta-image-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 456px;
}

.ushers-layout .basonta-image-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  height: 220px;
}

.ushers-layout img {
  width: 100%;
  object-fit: cover;
}

/* =========================
   16. MICRO CHURCHES PAGE
========================= */
/* =========================
   MICRO CHURCHES PAGE HERO
========================= */

.micro-page-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 32px 100px;
  overflow: hidden;
  background: #05070b;
}

.micro-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.06);
  filter: saturate(0.85) contrast(1.08);
  animation: heroImageFloat 3.2s ease-out forwards;
}

.micro-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at 50% 42%, rgba(13,139,255,0.16), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0.56), rgba(5,7,11,0.92));
}

.micro-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 86%;
  height: 1px;
  z-index: 2;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(155,53,255,0.8),
    rgba(13,139,255,0.8),
    transparent
  );
}

.micro-page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  padding: 0 32px;
  color: white;
  text-align: center;
  animation: jesusHeroFadeUp 0.5s ease-out both;
}

.micro-page-hero-label {
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
}

.micro-page-hero h1 {
  color: white;
  margin: 0 auto 18px;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.micro-page-hero-line {
  width: clamp(90px, 12vw, 180px);
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9b35ff, #0d8bff);
  box-shadow: 0 0 26px rgba(13,139,255,0.45);
}

.micro-page-hero-text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

.micro-finder-section {
  background: #05070b;
  color: white;
  padding: 100px 32px 120px;
}

.micro-finder-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.micro-finder-header {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}

.micro-finder-header h2 {
  color: white;
  margin-bottom: 14px;
}

.micro-finder-header p {
  max-width: 60ch;
  margin: 0 auto;
  color: rgba(255,255,255,0.68);
}

.micro-search-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 40px;
}

.micro-search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(132, 78, 255, 0.28);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(132, 78, 255, 0.08);
}

.micro-search-box svg {
  width: 20px;
  height: 20px;
  color: #bf8cff;
  flex-shrink: 0;
}

.micro-search-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font: inherit;
  font-size: 18px;
}

.micro-search-box input::placeholder {
  color: rgba(255,255,255,0.42);
}

.micro-filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 0;
}

.micro-chip {
  border: none;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.74);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.micro-chip:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

.micro-chip.active {
  background: linear-gradient(135deg, #bf52ff, #7a36ff);
  color: white;
  box-shadow: 0 10px 24px rgba(122, 54, 255, 0.28);
}

.micro-results-count {
  margin: 24px auto 0;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.micro-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.micro-locations-loading {
  grid-column: 1 / -1;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}

.micro-locations-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.22);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: micro-spin 0.8s linear infinite;
}

.micro-location-card {
  position: relative;
  min-height: 170px;
  padding: 18px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(132, 78, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.32s ease, border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.micro-location-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(191,140,255,0.18), transparent 35%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.micro-location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(191, 140, 255, 0.42);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
  box-shadow: 0 20px 44px rgba(0,0,0,0.28), 0 0 0 1px rgba(191,140,255,0.08);
}

.micro-location-card:hover::before {
  opacity: 1;
}

.micro-location-thumb {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 134px;
  object-fit: contain;
  border-radius: 16px;
  background: #000;
}

.micro-location-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 4px 8px 0;
}

.micro-location-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.micro-location-card h3 {
  color: white;
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
}

.micro-location-region {
  color: rgba(255,255,255,0.54);
  font-size: 15px;
}

.micro-location-bottom {
  margin-top: 20px;
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  font-size: 15px;
}

.micro-page-cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 110px 32px;
}

.micro-page-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.micro-page-cta-label {
  margin: 0 auto 18px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
}

.micro-page-cta h2 {
  max-width: 900px;
  margin: 0 auto 28px;
  color: white;
  text-align: center;
}

.micro-page-cta p {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  text-align: center;
}

.micro-page-cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.micro-page-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
}

/* =========================
   MICRO CHURCH MODAL
========================= */

.micro-location-card {
  cursor: pointer;
}

.micro-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 22px;
  overflow: hidden;
  overscroll-behavior: contain;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.35s ease, visibility 0.35s ease;
}

html.micro-modal-open,
body.micro-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.micro-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.micro-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    opacity 0.45s ease,
    background 0.45s ease,
    backdrop-filter 0.45s ease,
    -webkit-backdrop-filter 0.45s ease;
}

.micro-modal-panel {
  position: relative;
  z-index: 1;

  width: min(1040px, 100%);
  max-height: calc(100dvh - 44px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: auto;

  background: linear-gradient(135deg, #07111d, #0b1b2d);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);

  transform: translateY(24px);
  transition: transform 0.35s ease, filter 0.25s ease, opacity 0.25s ease;
}

.micro-church-modal-panel {
  --micro-image-ratio: 3 / 4;
  --micro-desktop-height: min(calc(100dvh - 64px), 760px);
  --micro-desktop-image-width: calc(var(--micro-desktop-height) * 0.75);
  --micro-desktop-form-width: clamp(460px, 32vw, 560px);

  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
}

.micro-suggestion-modal-panel {
  display: block;
}

.micro-church-modal-panel > .micro-modal-image,
.micro-church-modal-panel > .micro-modal-content {
  flex: 0 0 auto;
  min-height: 0;
}

.micro-modal.active .micro-modal-backdrop {
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.micro-modal.active .micro-modal-panel {
  transform: translateY(0);
}

.micro-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;

  width: 44px;
  height: 44px;

  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #000000;

  font-size: 28px;
  line-height: 1;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.micro-modal-close:hover {
  transform: scale(1.04);
}

.micro-modal-close.is-dark {
  background: rgba(0,0,0,0.72);
  color: #ffffff;
  border-color: rgba(255,255,255,0.18);
}

.micro-modal-close.is-light {
  background: rgba(255,255,255,0.74);
  color: #000000;
  border-color: rgba(0,0,0,0.18);
}

.micro-modal-close.is-dark:hover {
  background: rgba(0,0,0,0.82);
}

.micro-modal-close.is-light:hover {
  background: rgba(255,255,255,0.88);
}

.micro-modal-image {
  min-height: 560px;
  background: #05070b;
}

.micro-church-modal-panel .micro-modal-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

.micro-modal-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.micro-church-modal-panel .micro-modal-image img {
  height: auto;
  object-fit: unset;
  object-position: center top;
}

.micro-modal-content {
  padding: 72px 62px;
  min-height: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.micro-church-modal-panel .micro-modal-content {
  justify-content: flex-start;
}

.micro-suggestion-modal-panel .micro-modal-content {
  width: 100%;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(7,17,29,0.98), rgba(11,27,45,1));
}

.micro-suggestion-modal-panel .micro-modal-content h2 {
  margin-bottom: 28px;
}

.micro-modal-label {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.micro-modal-content h2 {
  color: white;
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1;
  margin-bottom: 18px;
}

.micro-modal-meta {
  color: var(--accent);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 22px;
}

.micro-modal-text {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
}

.micro-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.micro-modal-form label {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 600;
}

.micro-modal-form input[type="text"],
.micro-modal-form input[type="tel"],
.micro-modal-form textarea,
.micro-modal-form select {
  width: 100%;
  min-height: 58px;
  padding: 18px 20px;

  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;

  color: white;
  font: inherit;
  font-size: 18px;

  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.micro-modal-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-color: rgba(255,255,255,0.06);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.78) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 17px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.micro-modal-form textarea {
  min-height: 132px;
  resize: vertical;
}

.micro-modal-form select:invalid {
  color: rgba(255,255,255,0.38);
}

.micro-modal-form select option {
  background: #101820;
  color: white;
}

.micro-modal-form select::-ms-expand {
  display: none;
}

.micro-modal-form input[type="text"]:focus,
.micro-modal-form input[type="tel"]:focus,
.micro-modal-form textarea:focus,
.micro-modal-form select:focus {
  border-color: rgba(13,139,255,0.7);
  box-shadow: 0 0 0 4px rgba(13,139,255,0.14);
}

.micro-modal-form input::placeholder {
  color: rgba(255,255,255,0.38);
}

.micro-modal-form textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.micro-modal-form input.is-invalid,
.micro-modal-form textarea.is-invalid,
.micro-modal-form select.is-invalid {
  border-color: rgba(255,112,112,0.95);
  box-shadow: 0 0 0 4px rgba(255,112,112,0.14);
}

.micro-privacy-text {
  max-width: none;
  margin-top: 4px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
}

.micro-form-error {
  min-height: 0;
  max-width: none;
  color: #ff8a8a;
  font-size: 14px;
}

.micro-field-error {
  min-height: 18px;
  margin-top: -8px;
  color: #ff8a8a;
  font-size: 13px;
  font-weight: 600;
}

.micro-form-success {
  max-width: min(420px, calc(100vw - 48px));
  color: #7dffb2;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0,0,0,0.42);
  transform: translateY(-44px);
}

.micro-modal-btn {
  margin-top: 10px;
  min-height: 58px;
  padding: 17px 28px;

  border: none;
  border-radius: 999px;

  background: var(--accent);
  color: white;

  font: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.micro-modal-btn:disabled {
  cursor: wait;
  opacity: 0.96;
}

.micro-modal-btn.is-loading:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  background: var(--accent);
}

.micro-modal-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
}

.micro-btn-spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255,255,255,0.34);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: micro-spin 0.8s linear infinite;
}

.micro-modal-feedback {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.micro-modal.is-submitted .micro-modal-feedback {
  opacity: 1;
  transform: translateY(0);
}

.micro-modal.is-submitted .micro-modal-backdrop {
  background: rgba(0,0,0,0.9);
}

.micro-modal.is-submitted .micro-modal-panel {
  filter: brightness(0.24);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes micro-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 851px) {
  .basonta-modal-panel {
    width: min(1120px, 100%);
    max-height: calc(100vh - 36px);
    grid-template-columns: 0.9fr 1.1fr;
  }

  .basonta-modal-panel .micro-modal-image {
    min-height: 0;
  }

  .basonta-modal-panel .micro-modal-content {
    padding: 30px 46px;
  }

  .basonta-modal-panel .micro-modal-label {
    margin-bottom: 8px;
  }

  .basonta-modal-panel .micro-modal-content h2 {
    font-size: clamp(30px, 3.2vw, 44px);
    margin-bottom: 10px;
  }

  .basonta-modal-panel .micro-modal-meta {
    margin-bottom: 10px;
  }

  .basonta-modal-panel .micro-modal-text {
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .basonta-modal-panel .micro-modal-form {
    gap: 8px;
  }

  .basonta-modal-panel .micro-modal-form input[type="text"],
  .basonta-modal-panel .micro-modal-form input[type="tel"],
  .basonta-modal-panel .micro-modal-form select {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .basonta-modal-panel .micro-modal-form select {
    padding-right: 42px;
    background-position:
      calc(100% - 22px) 50%,
      calc(100% - 15px) 50%;
  }

  .basonta-modal-panel .micro-privacy-text {
    font-size: 12px;
    line-height: 1.45;
  }

  .basonta-modal-panel .micro-form-error {
    min-height: 16px;
  }

  .basonta-modal-panel .micro-modal-btn {
    margin-top: 4px;
    padding: 11px 24px;
  }
}

@media (min-width: 1320px) and (min-height: 620px) {
  .micro-church-modal-panel {
    display: grid;
    width: min(calc(var(--micro-desktop-image-width) + var(--micro-desktop-form-width)), 100%);
    height: var(--micro-desktop-height);
    overflow-y: hidden;
    grid-template-columns: var(--micro-desktop-image-width) minmax(0, var(--micro-desktop-form-width));
  }

  .micro-church-modal-panel .micro-modal-image {
    height: 100%;
    aspect-ratio: auto;
  }

  .micro-church-modal-panel .micro-modal-image img {
    height: 100%;
    object-fit: cover;
  }

  .micro-church-modal-panel .micro-modal-content {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
  }
}

@media (max-width: 1319px), (max-height: 619px) {
  .micro-church-modal-panel .micro-modal-content {
    padding: 50px 46px;
  }
}

@media (max-width: 850px) {
  .micro-modal {
    padding: 22px;
    align-items: flex-start;
  }

  .micro-modal-panel {
    max-height: calc(100dvh - 44px);
    border-radius: 22px;
  }

  .micro-church-modal-panel {
    width: 100%;
  }

  .micro-church-modal-panel > .micro-modal-image,
  .micro-church-modal-panel > .micro-modal-content {
    height: auto;
  }

  .micro-church-modal-panel .micro-modal-image {
    width: 100%;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .micro-church-modal-panel .micro-modal-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .micro-suggestion-modal-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .micro-suggestion-modal-panel > .micro-modal-image,
  .micro-suggestion-modal-panel > .micro-modal-content {
    height: auto;
  }

  .micro-suggestion-modal-panel .micro-modal-image {
    width: 100%;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .micro-suggestion-modal-panel .micro-modal-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .micro-suggestion-modal-panel .micro-modal-content {
    margin-top: 0;
    padding-top: 24px;
  }

  .micro-modal-content {
    padding: 28px 24px 24px;
    overflow-y: visible;
  }

  .micro-modal-label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .micro-modal-content h2 {
    font-size: clamp(28px, 6.8vw, 35px);
    margin-bottom: 12px;
  }

  .micro-modal-meta {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .micro-modal-form label {
    font-size: 14px;
  }

  .micro-modal-form input[type="text"],
  .micro-modal-form input[type="tel"],
  .micro-modal-form select {
    min-height: 54px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 13px;
  }

  .micro-modal-btn {
    min-height: 54px;
    padding: 14px 22px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .micro-modal {
    padding: 20px;
  }

  .micro-modal-panel {
    max-height: calc(100dvh - 40px);
    border-radius: 18px;
  }

  .micro-modal-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .micro-church-modal-panel .micro-modal-image {
    max-height: none;
    overflow: visible;
  }

  .micro-modal-content {
    padding: 24px 20px 20px;
  }

  .micro-modal-content h2 {
    font-size: clamp(24px, 7.5vw, 32px);
    margin-bottom: 12px;
  }

  .micro-suggestion-modal-panel .micro-modal-content {
    padding-bottom: 28px;
  }

  .micro-suggestion-modal-panel .micro-modal-content h2 {
    margin-bottom: 20px;
  }

  .micro-modal-meta {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .micro-modal-form {
    gap: 12px;
  }

  .micro-modal-form input[type="text"],
  .micro-modal-form input[type="tel"],
  .micro-modal-form select {
    min-height: 52px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 15px;
  }

  .micro-modal-btn {
    margin-top: 6px;
    min-height: 52px;
    padding: 13px 20px;
    font-size: 15px;
  }

  .micro-form-success {
    font-size: 20px;
  }
}

/* =========================
   17. RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .footer-inner,
  .micro-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-grid,
  .visit-inner,
  .basonta-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-left h2 {
    max-width: none;
  }

  .micro-info {
    grid-template-columns: 1fr;
  }

  .basonta-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .basonta-image-card {
    height: 180px;
  }

  .basonta-image-card:first-child {
    height: 240px;
    grid-column: span 2;
  }

  .airport-layout .basonta-image-card:first-child,
  .airport-layout .basonta-image-card:nth-child(2),
  .ushers-layout .basonta-image-card:nth-child(1),
  .ushers-layout .basonta-image-card:nth-child(3) {
    height: 180px;
  }

  .airport-layout .basonta-image-card:first-child {
    grid-column: 2;
    grid-row: 2;
  }

  .airport-layout .basonta-image-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .airport-layout .basonta-image-card:nth-child(3) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .ushers-layout .basonta-image-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .ushers-layout .basonta-image-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .ushers-layout .basonta-image-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .airport-layout .basonta-image-card:nth-child(3),
  .ushers-layout .basonta-image-card:nth-child(2) {
    height: 372px;
  }

  .basonta-section:nth-of-type(even) .basonta-grid {
    direction: ltr;
  }

  .visit-inner {
    text-align: center;
  }

  .visit-left {
    align-items: center;
  }

  .visit-right img {
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    padding: 14px 24px;
  }

  .nav-center {
    gap: 16px;
  }

  .nav-center a {
    font-size: 11px;
  }

  .nav-socials {
    display: none;
  }

  .site-footer {
    padding: 70px 24px 24px;
  }

  .micro-locations-grid {
    grid-template-columns: 1fr;
  }

  .micro-location-card {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
  }

  .micro-location-thumb {
    min-height: 120px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 36px 18px;
  }

  .footer-brand,
  .footer-label,
  .footer-socials {
    grid-column: 1 / -1;
  }

  .footer-label a {
    white-space: nowrap;
    font-size: clamp(17px, 3.55vw, 20px);
  }

  .footer-logo {
    height: 36px;
  }

  .micro-page-hero {
    padding: 100px 24px;
  }

  .micro-page-hero-content {
    padding: 0 24px;
  }

  .micro-page-hero-text {
    font-size: 18px;
  }

  .micro-finder-section {
    padding: 80px 24px 100px;
  }

  .micro-search-box {
    padding: 16px 18px;
  }

  .micro-search-box input {
    font-size: 14px;
  }

  .micro-page-cta {
    padding: 90px 24px;
  }
}

/* =========================
   JESUS PAGE
========================= */

.jesus-page {
  background: #05070b;
  color: white;
}

/* =========================
   HERO
========================= */

.jesus-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 32px 100px;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.jesus-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  transform: scale(1.06);
  filter: saturate(0.85) contrast(1.08);
  animation: heroImageFloat 3.2s ease-out forwards;
}

/* OVERLAY */
.jesus-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at 50% 42%, rgba(13,139,255,0.16), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0.56), rgba(5,7,11,0.92));
}

/* GRADIENT LINE UNTEN */
.jesus-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 86%;
  height: 1px;
  z-index: 2;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(155,53,255,0.8),
    rgba(13,139,255,0.8),
    transparent
  );
}

/* CONTENT */
.jesus-hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  animation: jesusHeroFadeUp 0.5s ease-out both;
}

.jesus-label {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.jesus-hero h1 {
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.92;
  margin-bottom: 24px;
  text-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.jesus-line {
  width: clamp(90px, 12vw, 180px);
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9b35ff, #0d8bff);
  box-shadow: 0 0 26px rgba(13,139,255,0.45);
}

.jesus-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  line-height: 1.8;
}

/* =========================
   CONTENT SECTIONS
========================= */

.jesus-content,
.jesus-prayer-section,
.jesus-next-section {
  padding: 100px 32px;
}

.jesus-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

/* QUOTE */
.jesus-quote {
  position: relative;
  max-width: 600px;
  padding-left: 28px;
}

.jesus-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;

  width: 4px;
  height: 220px;
  max-height: 70%;

  border-radius: 999px;
  background: #9b35ff;
}

.jesus-quote p {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(22px, 1vw, 30px); /* 🔥 angepasst */
  line-height: 1.55;
  font-style: italic;
}

.jesus-quote span {
  color: #9b35ff;
  font-weight: 700;
}

/* TEXT */
.jesus-text p {
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 22px;
}

/* =========================
   DARK SECTION
========================= */

.jesus-dark-section {
  padding: 100px 32px;
  background: radial-gradient(circle at top, rgba(13,139,255,0.15), transparent 45%);
}

.jesus-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.jesus-columns {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARDS */
.jesus-columns div,
.jesus-next-grid div,
.jesus-prayer-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.jesus-columns h3,
.jesus-next-grid h3,
.jesus-prayer-card h3 {
  margin-bottom: 12px;
}

.jesus-columns p,
.jesus-next-grid p,
.jesus-prayer-card p {
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}

/* =========================
   PRAYER
========================= */

.jesus-prayer-section {
  text-align: center;
}

.jesus-prayer-intro {
  max-width: 980px;
  margin: 0 auto 56px;
  text-align: center;
}

.jesus-prayer-intro .jesus-label,
.jesus-prayer-intro h2,
.jesus-prayer-intro p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.jesus-prayer-intro p {
  max-width: 820px;
  color: rgba(255,255,255,0.58);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.65;
}

.jesus-prayer-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(135deg, rgba(155,53,255,0.24), rgba(13,139,255,0.13));
}

/* =========================
   NEXT STEPS
========================= */

.jesus-next-section {
  text-align: center;
}

.jesus-next-grid {
  margin-top: 48px;
  margin-bottom: 72px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.jesus-next-grid div {
  min-height: 260px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.jesus-next-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: #9b35ff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.jesus-next-grid p {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.jesus-next-section .btn {
  display: inline-block;
  margin: 0 auto;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes jesusHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroImageFloat {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1.06);
  }
}

/* =========================
   RESPONSIVE
========================= */

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

  .jesus-content,
  .jesus-dark-section,
  .jesus-prayer-section,
  .jesus-next-section {
    padding: 80px 24px;
  }

  .jesus-quote::before {
    height: 160px;
  }

  .jesus-next-grid {
    margin-bottom: 52px;
  }

  .jesus-next-grid div {
    min-height: auto;
  }
}

/* =========================
   HOME MICRO SECTION MOBILE
========================= */
@media (max-width: 900px) {
  .micro-section {
    padding: 90px 24px 100px;
  }

  .micro-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
  }

  .micro-right {
    order: 1;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .micro-section-label,
  .micro-title {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .micro-title {
    max-width: 720px;
  }

  .micro-images {
    order: 2;
    width: 100%;
    max-width: 640px;
    margin: 10px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .micro-image-card {
    width: 100%;
    margin: 0 auto;
  }

  .micro-image-card img {
    width: 100%;
    height: clamp(150px, 31vw, 220px);
    display: block;
    object-fit: cover;
  }

  .micro-left {
    order: 3;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .micro-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .micro-info {
    width: 100%;
    max-width: 640px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .micro-info-card {
    padding: 20px 14px;
    text-align: center;
  }

  .micro-info-card strong {
    font-size: clamp(15px, 3.6vw, 18px);
    line-height: 1.35;
  }

  .micro-btn,
  .visit-btn {
    align-self: center;
  }
}

@media (max-width: 520px) {
  .micro-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .micro-image-card img {
    height: clamp(130px, 38vw, 170px);
  }

  .micro-info-card {
    padding: 18px 12px;
  }
}

.mc-landing {
  scroll-behavior: smooth;
}

.mc-landing .nav-inner {
  grid-template-columns: auto 1fr auto auto;
}

.mc-landing .nav-socials {
  grid-column: 3;
  display: flex;
}

.mc-landing .footer-inner {
  grid-template-columns: 1.4fr 1fr 1fr;
}

@media (max-width: 1260px) {
  .mc-landing .nav-inner {
    display: flex;
    align-items: center;
  }

  .mc-landing .nav-socials {
    display: flex;
  }
}

@media (max-width: 1000px) {
  .mc-landing .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .mc-landing .nav-inner {
    display: flex;
    align-items: center;
  }

  .mc-landing .nav-socials {
    display: flex;
    gap: 12px;
  }

  .mc-landing .nav-socials svg {
    width: 17px;
    height: 17px;
  }

  .mc-landing .footer-inner {
    grid-template-columns: 1fr;
  }

  .mc-landing .footer-brand,
  .mc-landing .footer-socials {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .mc-landing .nav-inner {
    padding-inline: 18px;
    gap: 16px;
  }

  .mc-landing .nav-socials {
    gap: 10px;
  }
}
