@charset "UTF-8";
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(27, 58, 107, 0.08), 0 2px 0.75rem rgba(27, 58, 107, 0.05);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 0.25rem 2.25rem rgba(27, 58, 107, 0.18);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #1B3A6B;
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-abbr {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: #C9A84C;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.125rem;
  margin: 0 auto;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3D3D4E;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0.1875rem;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: #C9A84C;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover {
  color: #1B3A6B;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  color: #6B6B7E;
}
.lang-toggle .lang {
  transition: color 0.2s ease;
}
.lang-toggle .lang.active {
  color: #1B3A6B;
  font-weight: 500;
}
.lang-toggle .lang-sep {
  color: #D4D4D4;
}

.btn-nav-join {
  padding: 0.5625rem 1.25rem;
  background: #1B3A6B;
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.18s ease;
  font-family: "Inter", sans-serif;
}
.btn-nav-join:hover {
  background: #122850;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
}
.hamburger span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: #1B3A6B;
  border-radius: 2px;
  transition: all 0.28s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 2rem 1.5rem;
  border-top: 1px solid #F0EDE5;
  gap: 0;
  background: #FFFFFF;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 0.8125rem 0;
  color: #3D3D4E;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 300;
  border-bottom: 1px solid #F5F5F5;
  transition: color 0.2s ease;
}
.mobile-menu a:hover {
  color: #1B3A6B;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.125rem;
}

@media (max-width: 48rem) {
  .nav-links, .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 31.25rem) {
  .nav-brand {
    font-size: 1rem;
  }
}
.footer {
  background: #1B3A6B;
  border-top: 3px solid #C9A84C;
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 3.5rem;
  padding-bottom: 3.25rem;
}

.footer-name {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.footer-abbr {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: #C9A84C;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.72;
  margin-bottom: 1.5625rem;
  max-width: 16rem;
}

.social-icons {
  display: flex;
  gap: 0.6875rem;
}

.social-icon {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  color: #C9A84C;
}
.social-icon:hover {
  background: #C9A84C;
  color: #1B3A6B;
}
.social-icon svg {
  width: 0.9375rem;
  height: 0.9375rem;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 0.9375rem;
  height: 0.9375rem;
  color: #C9A84C;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.36);
  font-weight: 300;
}

.footer-glory {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.875rem;
  color: #C9A84C;
}

@media (max-width: 64rem) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > *:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 48rem) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-grid > *:last-child {
    grid-column: auto;
  }
}
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  background: #1E6B45;
  box-shadow: 0 0.25rem 1.25rem rgba(30, 107, 69, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #FFFFFF;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 0.5rem 2rem rgba(30, 107, 69, 0.55);
}
.whatsapp-fab svg {
  width: 1.875rem;
  height: 1.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.25rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: #C9A84C;
  color: #1B3A6B;
}
.btn-gold:hover {
  background: #A8893A;
  box-shadow: 0 0.5rem 1.75rem rgba(201, 168, 76, 0.35);
}

.btn-navy {
  background: #1B3A6B;
  color: #FFFFFF;
}
.btn-navy:hover {
  background: #122850;
  box-shadow: 0 0.5rem 1.5rem rgba(27, 58, 107, 0.28);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.btn-outline-navy {
  background: transparent;
  color: #1B3A6B;
  border: 1.5px solid #1B3A6B;
}
.btn-outline-navy:hover {
  background: #1B3A6B;
  color: #FFFFFF;
}

.btn-outline-gold {
  background: transparent;
  color: #C9A84C;
  border: 1.5px solid #C9A84C;
}
.btn-outline-gold:hover {
  background: #C9A84C;
  color: #1B3A6B;
}

@media (max-width: 48rem) {
  .btn {
    min-height: 3.25rem;
  }
}
.badge-audio, .badge-video, .tag-temoignage, .tag-annonce, .tag-event {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tag-event {
  background: rgba(30, 107, 69, 0.1);
  color: #1E6B45;
}

.tag-annonce {
  background: rgba(201, 168, 76, 0.14);
  color: #A8893A;
}

.tag-temoignage {
  background: rgba(27, 58, 107, 0.09);
  color: #1B3A6B;
}

.badge-video {
  background: rgba(30, 107, 69, 0.3);
  color: #2A8A5C;
}

.badge-audio {
  background: rgba(201, 168, 76, 0.18);
  color: #C9A84C;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #1A1A2E;
  background: #FAFAF7;
  overflow-x: hidden;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #C9A84C;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: #6B6B7E;
  max-width: 35rem;
  line-height: 1.75;
  margin-top: 0.5rem;
}

h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.7rem;
  color: #1B3A6B;
  line-height: 1.25;
}

@media (max-width: 48rem) {
  h2 {
    font-size: 2.2rem;
  }
  .section {
    padding: 4rem 0;
  }
}
@media (max-width: 36rem) {
  h2 {
    font-size: 1.9rem;
  }
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(27, 58, 107, 0.7), rgba(27, 58, 107, 0.7)), url("https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1920&q=85") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 3rem 3rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8.125rem 2rem 6.25rem;
  max-width: 53.75rem;
}

.hero-label {
  display: inline-block;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 500;
  color: #C9A84C;
  text-transform: uppercase;
  padding: 0.375rem 1.125rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 2px;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s ease both 0.2s;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 4rem;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  text-wrap: pretty;
  animation: fadeUp 0.7s ease both 0.45s;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  margin-bottom: 2.6rem;
  animation: fadeUp 0.6s ease both 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease both 0.9s;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.375rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: fadeUp 0.6s ease both 1.2s;
}

.scroll-dot {
  width: 1.75rem;
  height: 2.875rem;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 0.875rem;
  position: relative;
}
.scroll-dot::after {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.5rem;
  background: #C9A84C;
  border-radius: 2px;
  animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  60% {
    opacity: 0;
    transform: translateX(-50%) translateY(1rem);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.375rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 48rem) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 36rem) {
  .hero-title {
    font-size: 2.2rem;
  }
}
/* ============================================================
   VALEURS STRIP
   ============================================================ */
.valeurs {
  background: #1B3A6B;
  padding: 4rem 0;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.valeur-item {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}
.valeur-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.valeur-item:last-child {
  border-right: none;
}

.valeur-icon {
  color: #C9A84C;
  margin-bottom: 1rem;
}
.valeur-icon svg {
  width: 2.375rem;
  height: 2.375rem;
}

.valeur-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.valeur-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

@media (max-width: 48rem) {
  .valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .valeur-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}
@media (max-width: 36rem) {
  .valeurs-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-text p {
  font-weight: 300;
  color: #6B6B7E;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.pull-quote {
  border-left: 3px solid #C9A84C;
  padding: 1.125rem 1.5rem;
  margin: 2rem 0;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 0 0.25rem 0.25rem 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.08rem;
  color: #1B3A6B;
  line-height: 1.7;
}
.pull-quote cite {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #6B6B7E;
  margin-top: 0.5rem;
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 35% 70%, rgba(30, 107, 69, 0.55) 0%, transparent 55%), radial-gradient(ellipse at 70% 25%, rgba(201, 168, 76, 0.25) 0%, transparent 50%), linear-gradient(135deg, #1E6B45 0%, #1B3A6B 55%, #0c1e3e 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}
.about-image::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: -0.625rem;
  bottom: -0.625rem;
  border: 2px solid #C9A84C;
  border-radius: 0.5rem;
  opacity: 0.3;
  z-index: 0;
}

.about-caption {
  position: relative;
  z-index: 1;
  background: rgba(18, 40, 80, 0.88);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  border-radius: 0.25rem;
}
.about-caption strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #C9A84C;
  font-size: 1rem;
  margin-bottom: 2px;
}
.about-caption span {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 48rem) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .about-image {
    aspect-ratio: 16/9;
    order: -1;
  }
}
/* ============================================================
   CULTES
   ============================================================ */
.cultes {
  background: #EEF5F1;
}

.cultes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cultes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 62.5rem;
  margin: 0 auto;
}

.culte-card {
  background: #FFFFFF;
  border-radius: 0.5rem;
  border-top: 3px solid #C9A84C;
  padding: 2rem 1.75rem;
  box-shadow: 0 0.25rem 1.75rem rgba(27, 58, 107, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.culte-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.75rem rgba(27, 58, 107, 0.14);
}

.culte-icon {
  color: #1B3A6B;
  margin-bottom: 1rem;
}
.culte-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.culte-day {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #1B3A6B;
  margin-bottom: 0.2rem;
}

.culte-time {
  font-size: 1.6rem;
  font-weight: 600;
  color: #C9A84C;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.culte-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: #6B6B7E;
  line-height: 1.65;
}

.culte-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(27, 58, 107, 0.07);
  color: #1B3A6B;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 9999px;
  letter-spacing: 0.06em;
}

@media (max-width: 48rem) {
  .cultes-grid {
    grid-template-columns: 1fr;
    max-width: 26.25rem;
    margin: 0 auto;
  }
}
/* ============================================================
   GROUPES
   ============================================================ */
.groupes {
  background: #FFFFFF;
}

.groupes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.groupes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.375rem;
  max-width: 56.25rem;
  margin: 0 auto;
}

.groupe-card {
  background: #f0f8f4;
  border-radius: 0.5rem;
  padding: 2.125rem 1.875rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.groupe-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.25rem 1.75rem rgba(27, 58, 107, 0.1);
}

.groupe-icon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.75rem;
  background: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1B3A6B;
}
.groupe-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.groupe-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #1B3A6B;
  margin-bottom: 0.4rem;
}

.groupe-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: #6B6B7E;
  line-height: 1.65;
}

@media (max-width: 48rem) {
  .groupes-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   MESSAGES (Sermons)
   ============================================================ */
.messages {
  background: #1B3A6B;
}

.messages-header {
  text-align: center;
  margin-bottom: 3rem;
}
.messages-header h2 {
  color: #FFFFFF;
}
.messages-header .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0.5rem auto 0;
}

.messages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sermon-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background 0.2s ease;
}
.sermon-card:hover {
  background: rgba(255, 255, 255, 0.09);
}
.sermon-card:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 0.5rem 2rem rgba(201, 168, 76, 0.65);
}

.sermon-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.play-btn {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1.25rem rgba(201, 168, 76, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #1B3A6B;
}
.play-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 3px;
}

.sermon-body {
  padding: 1.25rem;
}

.sermon-badge {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  margin-bottom: 0.625rem;
}

.sermon-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.02rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.sermon-meta {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.messages-cta {
  text-align: center;
}

@media (max-width: 48rem) {
  .messages-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   ACTUALITÉS
   ============================================================ */
.actualites {
  background: #FAFAF7;
}

.actualites-header {
  text-align: center;
  margin-bottom: 3rem;
}

.actualites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.news-card {
  background: #FFFFFF;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 1.75rem rgba(27, 58, 107, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.75rem rgba(27, 58, 107, 0.13);
}

.news-img {
  height: 12.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.news-date {
  background: #C9A84C;
  color: #1B3A6B;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.2;
}
.news-date span {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.news-body {
  padding: 1.375rem;
}

.news-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.1875rem 0.625rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  border-radius: 9999px;
  text-transform: uppercase;
}

.news-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.08rem;
  color: #1B3A6B;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 0.86rem;
  font-weight: 300;
  color: #6B6B7E;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.news-link {
  color: #1B3A6B;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}
.news-link:hover {
  color: #C9A84C;
}
.news-link svg {
  width: 0.8125rem;
  height: 0.8125rem;
}

@media (max-width: 48rem) {
  .actualites-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   BIBLIOTHÈQUE
   ============================================================ */
.bibliotheque {
  background: #f0f8f4;
}

.biblio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.biblio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.biblio-card {
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0.25rem 1.75rem rgba(27, 58, 107, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.biblio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.25rem rgba(30, 107, 69, 0.14);
}

.biblio-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  color: #C9A84C;
}
.biblio-icon svg {
  width: 100%;
  height: 100%;
}

.biblio-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.08rem;
  color: #1B3A6B;
  margin-bottom: 0.5rem;
}

.biblio-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: #6B6B7E;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.biblio-link {
  color: #C9A84C;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}
.biblio-link:hover {
  color: #1B3A6B;
}
.biblio-link svg {
  width: 0.8125rem;
  height: 0.8125rem;
}

@media (max-width: 48rem) {
  .biblio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 36rem) {
  .biblio-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   JOIN CTA
   ============================================================ */
.join-cta {
  padding: 6rem 0;
  background: #C9A84C;
}

.join-cta-inner {
  text-align: center;
  max-width: 42.5rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.join-cta h2 {
  color: #1B3A6B;
  margin-bottom: 1rem;
  font-size: 2.6rem;
}

.join-cta p {
  color: rgba(27, 58, 107, 0.72);
  font-size: 1.08rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.join-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 48rem) {
  .join-cta h2 {
    font-size: 2.1rem;
  }
  .join-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 36rem) {
  .join-cta h2 {
    font-size: 1.9rem;
  }
}
/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.map-placeholder {
  height: 26.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #e8eef8;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4dcea;
}
.map-placeholder > svg {
  width: 2.75rem;
  height: 2.75rem;
  color: #1B3A6B;
  opacity: 0.35;
  margin-bottom: 0.625rem;
  position: relative;
}
.map-placeholder > p {
  font-size: 0.84rem;
  color: #6B6B7E;
  text-align: center;
  position: relative;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(27, 58, 107, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 58, 107, 0.06) 1px, transparent 1px);
  background-size: 2.375rem 2.375rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 1.0625rem;
  height: 1.0625rem;
  color: #C9A84C;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #1B3A6B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.contact-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: #6B6B7E;
  line-height: 1.6;
}

@media (max-width: 48rem) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}