/* ============================================
   HOLY SPIRIT MINISTRY — Main Stylesheet
   Clean white theme with glassmorphism effects
   Fully responsive for all devices
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --clr-primary: #7c6fd4;
  --clr-primary-light: #a78bfa;
  --clr-primary-dark: #2d2d5e;
  --clr-accent: #c9a96e;
  --clr-bg: #f8f9fc;
  --clr-white: #ffffff;
  --clr-text: #444444;
  --clr-text-light: #777777;
  --clr-border: rgba(200, 190, 240, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-blur: 16px;
  --shadow-sm: 0 4px 16px rgba(124, 111, 212, 0.06);
  --shadow-md: 0 8px 32px rgba(124, 111, 212, 0.10);
  --shadow-lg: 0 16px 48px rgba(124, 111, 212, 0.15);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lora', serif;
  --font-ui: 'Inter', sans-serif;
  --container-max: 1100px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 40px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--clr-primary-dark);
  letter-spacing: 2px;
  white-space: nowrap;
}

.navbar__logo-img {
  height: clamp(30px, 4vw, 40px);
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .navbar__logo-img {
  height: clamp(25px, 3.5vw, 35px);
}

.navbar__menu {
  display: flex;
  gap: clamp(15px, 2.5vw, 30px);
  list-style: none;
  align-items: center;
}

.navbar__link {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.navbar__toggle span {
  width: 25px;
  height: 2px;
  background: var(--clr-primary-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  margin-left: clamp(10px, 2vw, 20px);
}

.lang-switcher__select {
  font-family: var(--font-ui);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clr-primary-dark);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 6px 28px 6px 12px;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237c6fd4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
}

.lang-switcher__select:hover {
  border-color: var(--clr-primary);
  box-shadow: 0 2px 8px rgba(124, 111, 212, 0.15);
}

.lang-switcher__select:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(124, 111, 212, 0.1);
}

.lang-switcher__select option {
  font-family: var(--font-ui);
  font-size: 13px;
  padding: 8px;
  background: var(--clr-white);
  color: var(--clr-primary-dark);
}

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: clamp(120px, 15vw, 160px) clamp(16px, 4vw, 40px) clamp(60px, 8vw, 100px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(248, 249, 252, 0.95) 100%),
    url('https://images.unsplash.com/photo-1507692949790-de582e06e2e4?w=1600&q=80') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.75) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  color: var(--clr-primary-dark);
  line-height: 1.15;
  margin-bottom: clamp(12px, 2vw, 20px);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.3s;
  word-wrap: break-word;
}

.hero__title span {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.2vw, 22px);
  color: #555;
  line-height: 1.7;
  margin-bottom: clamp(20px, 3vw, 30px);
  font-style: italic;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero__verse {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 40px);
  margin: clamp(20px, 3vw, 30px) auto;
  max-width: 650px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.7s;
}

.hero__verse p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 18px);
  color: #444;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.7;
}

.hero__verse cite {
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--clr-primary);
  font-weight: 600;
  font-style: normal;
}

.hero__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(25px, 4vw, 35px);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.9s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: clamp(12px, 1.5vw, 15px) clamp(28px, 3vw, 38px);
  border-radius: 50px;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  color: var(--clr-white);
  box-shadow: 0 8px 25px rgba(124, 111, 212, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 111, 212, 0.5);
}

.btn--outline {
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
}

/* ── SECTIONS COMMON ── */
.section {
  padding: clamp(60px, 10vw, 100px) clamp(16px, 5vw, 50px);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  padding: 0 clamp(0px, 2vw, 20px);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 42px);
  color: var(--clr-primary-dark);
  margin-bottom: 12px;
  word-wrap: break-word;
}

.section__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
  margin: 15px auto;
  border-radius: 3px;
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--clr-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── GLASS CARD ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── ABOUT JESUS ── */
.about {
  background: var(--clr-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(25px, 4vw, 50px);
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 4/3;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--clr-primary-dark);
  margin-bottom: 18px;
}

.about__text {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.85;
  color: #555;
  margin-bottom: 15px;
}

.about__verse {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--clr-primary);
  border-left: 3px solid var(--clr-primary);
  padding-left: 15px;
  margin-top: 20px;
  font-size: clamp(14px, 1.5vw, 16px);
}

/* ── VERSE BANNER ── */
.verse-banner {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  text-align: center;
  padding: clamp(50px, 8vw, 80px) clamp(20px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.verse-banner::before {
  content: '✝';
  position: absolute;
  font-size: clamp(150px, 25vw, 300px);
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.verse-banner__quote {
  font-family: var(--font-body);
  font-size: clamp(18px, 3vw, 30px);
  color: var(--clr-white);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 15px;
  font-style: italic;
  position: relative;
  word-wrap: break-word;
}

.verse-banner__cite {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255, 255, 255, 0.65);
}

/* ── JOHN THE BAPTIST ── */
.john {
  background: linear-gradient(180deg, var(--clr-bg), #eee8ff);
}

.john__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(25px, 4vw, 50px);
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: center;
}

.john__heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--clr-primary-dark);
  margin-bottom: 18px;
}

.john__text {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.85;
  color: #555;
  margin-bottom: 15px;
}

.john__verse {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--clr-primary);
  border-left: 3px solid var(--clr-primary);
  padding-left: 15px;
  margin-top: 15px;
  font-size: clamp(14px, 1.5vw, 16px);
}

.john__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}

.john__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.john__image:hover img {
  transform: scale(1.03);
}

/* ── SIGNS / TIMES ── */
.times {
  background: var(--clr-white);
}

.times__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  max-width: var(--container-max);
  margin: 0 auto;
}

.times__card {
  text-align: center;
}

.times__icon {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 14px;
  display: block;
}

.times__heading {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--clr-primary-dark);
  margin-bottom: 10px;
}

.times__text {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.75;
  color: #666;
}

/* ── GALLERY ── */
.gallery {
  background: var(--clr-bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 25px);
  max-width: var(--container-max);
  margin: 0 auto;
}

.gallery__item {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery__item img {
  width: 100%;
  height: clamp(180px, 22vw, 280px);
  object-fit: cover;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  padding: clamp(14px, 2vw, 20px) clamp(14px, 2vw, 20px);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery__caption h4 {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--clr-primary-dark);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.gallery__caption p {
  font-size: clamp(12px, 1.3vw, 14px);
  color: #777;
  font-family: var(--font-body);
  font-style: italic;
  line-height: 1.5;
}

/* ── CALL TO ACTION ── */
.cta {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.93)),
    url('https://images.unsplash.com/photo-1490730141103-6cac27aaab96?w=1400&q=80') center/cover;
  text-align: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 40px);
  color: var(--clr-primary-dark);
  margin-bottom: 18px;
}

.cta__text {
  font-size: clamp(15px, 1.6vw, 17px);
  color: #555;
  max-width: 650px;
  margin: 0 auto clamp(20px, 3vw, 30px);
  line-height: 1.7;
}

.cta__verse {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--clr-primary);
}

/* ── FOOTER ── */
.footer {
  background: #1e1e3f;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: clamp(35px, 5vw, 50px) clamp(16px, 3vw, 20px);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--clr-white);
  margin-bottom: 12px;
}

.footer__verse {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
  font-size: clamp(13px, 1.4vw, 15px);
}

.footer__copy {
  font-size: clamp(11px, 1.2vw, 13px);
  color: rgba(255, 255, 255, 0.4);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  color: var(--clr-white);
  border: none;
  cursor: pointer;
  font-size: clamp(16px, 2vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(124, 111, 212, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 111, 212, 0.5);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 25px;
  }

  .navbar.scrolled {
    padding: 10px 25px;
  }

  .times__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid,
  .john__grid {
    gap: 30px;
  }
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__link {
    font-size: 14px;
  }

  .navbar__toggle {
    display: flex;
  }

  .lang-switcher {
    position: fixed;
    top: 14px;
    right: 55px;
    margin: 0;
    z-index: 1001;
  }

  .lang-switcher__select {
    font-size: 11px;
    padding: 5px 24px 5px 10px;
    background-size: 9px;
  }

  .about__grid,
  .john__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .times__grid,
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about__image,
  .john__image {
    aspect-ratio: 16/9;
    max-height: 300px;
  }

  .glass {
    padding: clamp(20px, 4vw, 30px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__verse {
    padding: 20px;
  }

  .glass:hover {
    transform: none;
  }
}

/* ── SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .navbar__logo {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .navbar__menu {
    width: 80%;
    gap: 25px;
  }

  .navbar__link {
    font-size: 13px;
  }

  .lang-switcher {
    right: 50px;
    top: 12px;
  }

  .lang-switcher__select {
    font-size: 10px;
    padding: 4px 20px 4px 8px;
  }

  .times__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section {
    padding: 50px 16px;
  }

  .section__header {
    margin-bottom: 35px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }

  .about__image,
  .john__image {
    aspect-ratio: 16/10;
    max-height: 250px;
  }

  .gallery__item img {
    height: 200px;
  }

  .glass {
    padding: 20px 16px;
    border-radius: var(--radius-sm);
  }

  .verse-banner {
    padding: 40px 16px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ── EXTRA SMALL (max 360px) ── */
@media (max-width: 360px) {
  .navbar__logo {
    font-size: 14px;
  }

  .hero__title {
    font-size: 28px;
  }

  .section__title {
    font-size: 22px;
  }

  .glass {
    padding: 16px 14px;
  }

  .times__heading {
    font-size: 15px;
  }
}

/* ── LANDSCAPE MOBILE ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__verse {
    padding: 16px 20px;
    margin: 16px auto;
  }
}

/* ── HIGH DPI / RETINA ── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .navbar {
    border-bottom-width: 0.5px;
  }

  .glass {
    border-width: 0.5px;
  }
}

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }

  .hero__title, .hero__subtitle, .hero__verse, .hero__actions {
    opacity: 1;
    transform: none;
  }
}
