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

:root {
  --bg: #f5f7fa;
  --bg2: #ffffff;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-hover: rgba(255, 255, 255, 0.9);
  --border: rgba(139, 92, 246, 0.15);
  --border-hover: rgba(139, 92, 246, 0.4);
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dim: #7c3aed;
  --purple-glow: rgba(139, 92, 246, 0.2);
  --teal: #06b6d4;
  --teal-light: #22d3ee;
  --gold: #f59e0b;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}

/* ANIMATED BACKGROUND */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-hero);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.12;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--purple-glow);
}

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

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .tagline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero .intro-text {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.9;
  font-weight: 400;
}

/* HERO SHORT VARIANT (contact page, etc.) */
.hero--short {
  min-height: 60vh;
  padding-top: 10rem;
  padding-bottom: 4rem;
}

.hero--short h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-1);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(139, 92, 246, 0.4);
}

/* SECTION BASE */
section {
  padding: 7rem 2rem;
  position: relative;
}

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

.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-1);
  margin: 1.2rem 0 2rem;
  border-radius: 10px;
}

/* ABOUT REGRESSIONS */
#regressions {
  background: var(--bg2);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col .text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.visual-box {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  aspect-ratio: 1 / 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15), transparent 70%);
}

.visual-box .symbol {
  font-size: 4rem;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.visual-box p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  position: relative;
}

.visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.visual-box.has-image {
  position: relative;
  overflow: hidden;
}

.visual-box.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(6, 182, 212, 0.3));
  mix-blend-mode: multiply;
}

.visual-box.has-image .symbol,
.visual-box.has-image p {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-section {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: 3rem 0;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* SOINS ENERGETIQUES */
#soins {
  background: var(--bg);
}

#soins > .container > p {
  color: var(--text-muted);
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  padding: 2.5rem 2rem;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.card:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.2));
}

.card h3 {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* SEANCES */
#seances {
  background: var(--bg2);
}

.seances-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.seance-item {
  padding: 2.5rem 2.5rem 2.8rem;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.seance-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-3);
  opacity: 0;
  transition: opacity 0.3s;
}

.seance-item:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seance-item:hover::before {
  opacity: 1;
}

.seance-item .price {
  font-size: 1.8rem;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.seance-item h3 {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}

.seance-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-top: 0.5rem;
}

.seance-item .duration {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  background: rgba(139, 92, 246, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
  align-self: flex-start;
}

/* CONTACT */
#contact {
  background: var(--bg);
}

#contact > .container > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  background: var(--surface-hover);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .section-label,
.cta-section .section-title {
  text-align: center;
}

.cta-section .divider {
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-text {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: center;
}

/* RESOURCE LINKS */
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
}

.resource-link:hover {
  color: var(--purple-dim);
  gap: 0.5rem;
}

/* DISCLAIMER */
.disclaimer {
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.7;
  font-style: italic;
}

/* FAQ LIST */
.faq-list {
  max-width: 800px;
  margin-top: 3rem;
}

/* HERO IMAGE SECTION (seances page) */
.hero-image-section {
  padding: 2rem 2rem 4rem;
}

/* CONTACT INFO SECTION */
.contact-info-section {
  padding: 4rem 2rem;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE — TABLET */
@media (max-width: 1024px) and (min-width: 769px) {
  nav {
    padding: 1rem 2rem;
  }

  .hero {
    padding: 7rem 2rem 4rem;
  }

  .hero h1 {
    letter-spacing: 5px;
  }

  section {
    padding: 5rem 2rem;
  }

  .two-col {
    gap: 3rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  /* NAV */
  nav {
    padding: 0.8rem 1.2rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 150;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    list-style: none;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text);
    padding: 1.2rem 2rem;
    text-align: center;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(139, 92, 246, 0.06);
    color: var(--purple);
  }

  .nav-links a::after {
    display: none;
  }

  /* Mobile nav overlay backdrop */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 140;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 6rem 1.5rem 3rem;
  }

  .hero--short {
    min-height: auto;
    padding: 5.5rem 1.5rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    letter-spacing: 3px;
    word-break: break-word;
  }

  .hero .tagline {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .hero .intro-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }

  /* BUTTONS */
  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }

  /* SECTIONS */
  section {
    padding: 3.5rem 1.2rem;
  }

  .container {
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.3;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .divider {
    margin: 1rem 0 1.5rem;
  }

  /* TWO COLUMN LAYOUT */
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col .text p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  /* VISUAL BOX */
  .visual-box {
    aspect-ratio: 4 / 3;
    padding: 2rem;
    border-radius: 16px;
    min-height: 250px;
  }

  .visual-box .symbol {
    font-size: 3rem;
  }

  .visual-box p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* IMAGE SECTION */
  .image-section {
    height: 250px;
    border-radius: 14px;
    margin: 2rem 0;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .card {
    padding: 1.8rem 1.5rem;
    border-radius: 14px;
  }

  .card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }

  .card p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  /* SÉANCES GRID */
  .seances-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .seance-item {
    padding: 1.8rem 1.5rem 2rem;
    border-radius: 14px;
  }

  .seance-item .price {
    font-size: 1.5rem;
  }

  .seance-item h3 {
    font-size: 1.05rem;
  }

  .seance-item p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  /* CONTACT FORM */
  .contact-form {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  /* CTA SECTION */
  .cta-section .cta-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* FAQ LIST */
  .faq-list {
    margin-top: 2rem;
    max-width: 100%;
  }

  .faq-list .card {
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .faq-list .card h3 {
    font-size: 1rem !important;
  }

  .faq-list .card p {
    font-size: 0.9rem !important;
  }

  /* HERO IMAGE SECTION */
  .hero-image-section {
    padding: 1rem 1.2rem 2rem;
  }

  /* CONTACT INFO */
  .contact-info-section {
    padding: 2rem 1.2rem;
  }

  /* FOOTER */
  footer {
    padding: 2rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* VERY SMALL SCREENS */
@media (max-width: 400px) {
  .hero {
    padding: 5.5rem 1rem 2.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .hero .tagline {
    font-size: 0.85rem;
  }

  .hero .intro-text {
    font-size: 0.9rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .card {
    padding: 1.5rem 1.2rem;
  }

  .seance-item {
    padding: 1.5rem 1.2rem 1.8rem;
  }

  .visual-box {
    min-height: 200px;
    padding: 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  nav {
    padding: 0.7rem 1rem;
  }

  .nav-logo {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}