@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500;1,600&family=Lora:wght@400;500;600&family=Nunito+Sans:wght@400;500;600;700;800&family=Nunito:wght@400;500;600&family=Poppins:wght@500;600&family=Allura&display=swap');

:root {
  --black: #000000;
  --gold: #d4af37;
  --gold2: #f2d57b;
  --purple: #9c2cff;
  --violet: #5b16a3;
  --blue: #3b9eff;
  --cyan: #3bc6c4;
  --white: #ffffff;
  --muted: #c8c3ce;
  --line: rgba(212, 175, 55, .24);
  --panel: rgba(255,255,255,.045);
  --radius: 26px;
}

* { box-sizing: border-box; }

.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;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #000;
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 28%, rgba(120, 34, 180, .24), transparent 32%),
    radial-gradient(circle at 13% 78%, rgba(59, 198, 196, .14), transparent 22%),
    linear-gradient(180deg, #000 0%, #030104 100%);
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .05;
  pointer-events: none;
  z-index: -2;
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3.5vw, 48px);
  flex-wrap: wrap;
  padding: 13px 20px;
  background: linear-gradient(90deg, rgba(156,34,255,.16), rgba(59,198,196,.16));
  border-bottom: 1px solid rgba(212,175,55,.20);
  font-size: 16.5px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  letter-spacing: .01em;
  font-weight: 700;
  transition: color .2s ease, text-shadow .2s ease;
}

.topbar-link:hover {
  color: var(--gold2);
  text-shadow: 0 0 12px rgba(212,175,55,.35);
}

.topbar-icon {
  color: var(--gold);
  font-size: 20px;
}

.topbar-whatsapp .wa-mark {
  width: 22px;
  height: 22px;
}

.topbar-whatsapp {
  color: #04210f;
  background: linear-gradient(135deg, #34e07a, #25D366);
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(37,211,102,.35);
  font-weight: 800;
}

.topbar-whatsapp:hover {
  color: #04210f;
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(37,211,102,.55);
  text-shadow: none;
}

@media (max-width: 720px) {
  .topbar {
    font-size: 15px;
    gap: 12px 18px;
    padding: 10px 14px;
  }
  .topbar-icon { font-size: 17px; }
}

@media (max-width: 460px) {
  .topbar { gap: 14px 20px; font-size: 13px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 110px;
  height: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(22px, 5vw, 70px);
  background: rgba(0,0,0,.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,.16);
  overflow: visible;
}

.brand img {
  height: 78px;
  width: auto;
  display: block;
  margin: 2px 0;
  filter: drop-shadow(0 0 18px rgba(156,44,255,.45));
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
}

.nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 16px;
  font-weight: 700;
  transition: color .2s ease, text-shadow .2s ease;
}

.nav a:hover {
  color: var(--gold2);
  text-shadow: 0 0 12px rgba(212,175,55,.5);
}

.lang-switch {
  display: flex;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255,255,255,.035);
}

.lang-switch a {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
}

.lang-switch a.active {
  background: var(--cyan);
  color: #001414;
  box-shadow: 0 0 22px rgba(59,198,196,.35);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  border-radius: 14px;
  padding: 9px 12px;
  font-size: 22px;
}

.section {
  padding: clamp(80px, 9vw, 150px) clamp(22px, 6vw, 96px);
  position: relative;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(24px, 5vw, 78px);
  padding-top: clamp(52px, 6vw, 96px);
  padding-bottom: clamp(60px, 7vw, 110px);
}

.hero-glow {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156,44,255,.23), rgba(156,44,255,.08) 28%, transparent 62%);
  filter: blur(18px);
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--gold);
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 0 16px rgba(212,175,55,.25);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

h1, h2 {
  margin: 0;
  font-family: Cinzel, Italiana, serif;
  font-weight: 400;
  line-height: .98;
  letter-spacing: .02em;
}

h1 {
  margin-top: 28px;
  font-size: clamp(44px, 5vw, 82px);
  max-width: 720px;
}

h1 em {
  font-family: Italiana, Cinzel, serif;
  color: var(--gold2);
  font-style: italic;
  text-transform: lowercase;
  text-shadow: 0 0 22px rgba(212,175,55,.22);
}

.lead {
  margin: 32px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 1.38vw, 21px);
  line-height: 1.75;
}

.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn::after { content: "→"; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #62e4df);
  color: #001414;
  box-shadow: 0 0 34px rgba(59,198,196,.26);
}

.btn-secondary {
  background: rgba(255,255,255,.035);
  color: var(--gold2);
  border-color: rgba(212,175,55,.46);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}

.hero-visual img {
  width: min(100%, 780px);
  transform: translateY(-42px);
  filter: drop-shadow(0 0 42px rgba(156,44,255,.46)) drop-shadow(0 0 20px rgba(212,175,55,.16));
  animation: float 7s ease-in-out infinite;
}

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

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.028);
  padding: 34px clamp(22px, 6vw, 96px);
  gap: 20px;
}

.feature-strip > div {
  padding: 16px 26px;
  border-left: 1px solid rgba(212,175,55,.12);
}

.feature-strip > div:first-child { border-left: 0; }

.icon, .card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 40px;
  line-height: 1;
}

.feature-strip h3, .card h3 {
  margin: 14px 0 8px;
  font-size: 17px;
}

.feature-strip p, .card p, .about-text p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.section-title {
  max-width: 980px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-title h2 {
  margin-top: 20px;
  font-size: clamp(36px, 4vw, 72px);
}

.section-title > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 24px auto 0;
  max-width: 820px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(0, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  gap: 48px;
  align-items: center;
}

.about-card, .card, .contact-card, .booking-form {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(circle at 20% 0%, rgba(156,44,255,.18), transparent 42%);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(156,44,255,.06), 0 26px 80px rgba(0,0,0,.32);
}

.visual-card {
  overflow: hidden;
  padding: 26px;
  text-align: center;
}

.visual-card img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(156,44,255,.38));
}

.visual-card p {
  color: var(--gold2);
  font-family: Cinzel, serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}

.about-text {
  font-size: clamp(17px, 1.3vw, 21px);
}

.about-text p + p { margin-top: 22px; }

.services {
  background: linear-gradient(180deg, transparent, rgba(87,21,133,.08), transparent);
}

.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  min-height: 235px;
  padding: 30px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,198,196,.45);
  box-shadow: 0 0 42px rgba(59,198,196,.14);
}

.card h3 {
  color: #fff;
  font-size: 21px;
  margin-top: 22px;
}

.card.wide { grid-column: span 2; }
.photo-card {
  overflow: hidden;
  padding: 0;
}

.service-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(212,175,55,.18);
}

.card-content {
  padding: 24px 26px 28px;
}

.photo-card .card-icon {
  display: inline-grid;
  margin-bottom: 12px;
}

.photo-card h3 {
  margin-top: 0;
}

@media (max-width: 960px) {
  .service-image {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .service-image {
    height: 205px;
  }
  .card-content {
    padding: 20px 20px 24px;
  }
}


.benefit-list {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-list div {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  font-weight: 700;
  font-size: 18px;
}

.benefit-list div::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  margin-right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #001414;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(59,198,196,.20);
}

.disclaimer {
  max-width: 900px;
  margin: 36px auto 0;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.booking-form {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-sent-banner {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 32px;
  text-align: center;
  color: var(--gold2);
  background: rgba(212,175,55,.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 17px;
  line-height: 1.6;
}

.form-sent-banner.form-sent-error {
  color: #f2a5a5;
  border-color: rgba(226,75,74,.35);
  background: rgba(226,75,74,.08);
}

.booking-form label {
  display: grid;
  gap: 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.booking-form .full { grid-column: 1 / -1; }

input, textarea {
  width: 100%;
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(255,255,255,.075);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(59,198,196,.12);
}

.booking-form button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 10px;
}

.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 32px;
  min-height: 180px;
}

.contact-card span {
  color: var(--cyan);
  font-size: 28px;
}

.contact-card strong {
  display: block;
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.72);
}

.contact-card p {
  color: #fff;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-card.whatsapp-card {
  border-color: rgba(37,211,102,.55);
  background: rgba(37,211,102,.07);
}

.contact-card.whatsapp-card span {
  color: #34e07a;
}

.contact-card.whatsapp-card:hover {
  border-color: rgba(37,211,102,.85);
  box-shadow: 0 0 42px rgba(37,211,102,.20);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px clamp(22px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.62);
}

.footer img { height: 58px; }

@media (max-width: 1020px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav {
    position: fixed;
    inset: 90px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(0,0,0,.94);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; min-height: auto; }
  .hero-visual img { width: min(92vw, 600px); transform: translateY(0); }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header {
    height: 82px;
    padding: 12px 18px;
  }
  .brand img { height: 66px; max-width: 235px; }
  .lang-switch a { padding: 7px 8px; }
  .hero {
    min-height: auto;
    padding-top: 52px;
  }
  h1 { font-size: clamp(40px, 11vw, 66px); }
  .lead { font-size: 17px; }
  .feature-strip, .about-grid, .cards, .benefit-list, .booking-form {
    grid-template-columns: 1fr;
  }
  .card.wide { grid-column: auto; }
  .booking-form .full { grid-column: auto; }
  .footer { flex-direction: column; text-align: center; }
}


/* V5 WhatsApp + séances enfants */
.free-note {
  margin: 22px 0 0;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .04em;
  padding: 12px 18px;
  border: 1px solid rgba(59,198,196,.34);
  border-radius: 999px;
  background: rgba(59,198,196,.07);
  box-shadow: 0 0 24px rgba(59,198,196,.11);
}

.free-note::before {
  content: "✦";
  color: var(--gold2);
}

.free-note.center {
  margin: 22px auto 0;
}

.btn-whatsapp {
  background: rgba(59,198,196,.08);
  color: var(--cyan);
  border-color: rgba(59,198,196,.58);
  box-shadow: 0 0 26px rgba(59,198,196,.15);
}

.btn-whatsapp::before {
  content: "✆";
  font-size: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: #04210f;
  background: linear-gradient(135deg, #34e07a, #25D366);
  box-shadow: 0 0 34px rgba(37,211,102,.45), 0 12px 34px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 28px;
  font-weight: 900;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 1020px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }
}


/* V6 typography and whatsapp refinements */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #51e59b);
  color: #032412;
  border-color: rgba(37,211,102,.75);
  box-shadow: 0 0 28px rgba(37,211,102,.22);
}
.btn-whatsapp::after { content: ""; }
.btn-whatsapp::before {
  content: "✆";
  font-size: 18px;
  margin-right: 2px;
}
.whatsapp-float span {
  font-size: 0;
}
.whatsapp-float span::before {
  content: "✆";
  font-size: 28px;
}
.section-title .eyebrow {
  font-size: 15px;
}


/* V7 lighter hero buttons */
.no-icon::after {
  content: "";
}
.actions .btn.no-icon {
  gap: 0;
}
.actions .btn.icon-only {
  min-width: 56px;
  width: 56px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  font-size: 0;
}
.actions .btn.icon-only::before {
  content: "✆";
  font-size: 20px;
  margin-right: 0;
}
.actions .btn.icon-only::after {
  content: "";
}
.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;
}


/* V8 flags + lighter hero — V85b: flags enlarged */
.lang-switch a {
  font-size: 24px;
  line-height: 1;
  min-width: 46px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-whatsapp-only {
  margin-top: 34px;
}
.actions.hero-whatsapp-only .only-wa {
  width: 68px;
  min-width: 68px;
  height: 68px;
  min-height: 68px;
  border-radius: 50%;
  padding: 0;
}
.actions.hero-whatsapp-only .only-wa::before,
.actions.hero-whatsapp-only .only-wa::after {
  content: "";
}
/* WhatsApp-like modern icon */
.wa-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M19.11 17.34c-.29-.15-1.71-.84-1.98-.93-.27-.1-.46-.15-.66.15-.19.29-.76.93-.93 1.12-.17.2-.34.22-.63.07-.29-.15-1.21-.45-2.31-1.44-.86-.76-1.44-1.7-1.61-1.99-.17-.29-.02-.45.13-.6.13-.13.29-.34.44-.51.15-.17.2-.29.29-.49.1-.19.05-.37-.02-.51-.07-.15-.66-1.59-.9-2.18-.24-.57-.48-.49-.66-.5h-.56c-.19 0-.51.07-.78.37-.27.29-1.02 1-.96 2.44.05 1.44 1.03 2.84 1.17 3.03.15.2 2.02 3.23 5.02 4.4 3 1.17 3 0 3.54-.05.54-.05 1.71-.7 1.95-1.37.24-.66.24-1.22.17-1.34-.08-.12-.27-.2-.56-.35z'/%3E%3Cpath fill='%23fff' d='M16 3.2C8.93 3.2 3.2 8.88 3.2 15.9c0 2.24.59 4.43 1.72 6.35L3.2 28.8l6.72-1.76c1.85 1 3.93 1.53 6.08 1.53 7.07 0 12.8-5.68 12.8-12.67S23.07 3.2 16 3.2zm0 22.98c-1.95 0-3.86-.53-5.52-1.53l-.4-.24-3.99 1.04 1.07-3.88-.26-.4a10.4 10.4 0 0 1-1.65-5.63c0-5.74 4.8-10.42 10.75-10.42s10.75 4.67 10.75 10.42S21.93 26.18 16 26.18z'/%3E%3C/svg%3E");
}
.btn-whatsapp.icon-only {
  background: linear-gradient(135deg, #25D366, #22c35e);
  border-color: rgba(37,211,102,.80);
  box-shadow: 0 0 36px rgba(37,211,102,.38), 0 0 0 1px rgba(255,255,255,.14);
}
.btn-whatsapp.icon-only .wa-mark,
.whatsapp-card .wa-mark,
.whatsapp-float .wa-mark {
  vertical-align: middle;
}
.contact-card.whatsapp-card .wa-mark {
  width: 26px;
  height: 26px;
}
.whatsapp-float .wa-mark {
  width: 30px;
  height: 30px;
}
.whatsapp-float span { font-size: 0; }
.whatsapp-float span::before { content: none; }


/* V10 contact card alignment refinement */
.contact-card p {
  font-size: 16px;
}
.contact-card.email-card p,
.contact-card.site-card p {
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.contact-card.email-card,
.contact-card.site-card {
  padding-left: 26px;
  padding-right: 26px;
}
@media (max-width: 1180px) {
  .contact-card.email-card p,
  .contact-card.site-card p {
    white-space: normal;
  }
}


/* V15 soft, modern and harmonious typography */
body,
button,
input,
textarea,
select {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

h1,
h2,
.section-title h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  letter-spacing: .005em;
}

h1 {
  font-size: clamp(34px, 3.45vw, 58px);
  line-height: 1.09;
  max-width: 620px;
}

h1 em {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: .005em;
}

.section-title h2 {
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.15;
}

.eyebrow,
.visual-card p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
}

.nav a {
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .035em;
}

.btn {
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .015em;
  min-height: 48px;
  padding: 0 24px;
}

.lead {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
  max-width: 600px;
}

.about-text,
.card p,
.animal-card p,
.contact-card p,
.section-title > p:not(.eyebrow),
.booking-form,
.footer {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
}

.card h3,
.animal-card h3,
.contact-card strong {
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
}

.free-note {
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .025em;
}

.brand img {
  height: 74px;
  max-width: 285px;
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-title h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .brand img {
    height: 62px;
    max-width: 230px;
  }
}


/* V16 logo header larger and overlapping into the page */
.site-header {
  overflow: visible;
}

.header-inner {
  align-items: flex-start;
  min-height: 112px;
}

.brand {
  position: relative;
  z-index: 12;
  margin-top: 2px;
}

.brand img {
  height: 122px;
  max-width: 360px;
  transform: translateY(18px);
  transform-origin: top left;
  filter: drop-shadow(0 8px 22px rgba(106,0,255,.22));
}

.nav-wrap {
  padding-top: 8px;
}

.nav {
  align-items: center;
}

.lang-switch {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .header-inner {
    min-height: 98px;
  }
  .brand img {
    height: 106px;
    max-width: 320px;
    transform: translateY(14px);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 88px;
  }
  .brand img {
    height: 92px;
    max-width: 275px;
    transform: translateY(10px);
  }
  .nav-wrap {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 82px;
  }
  .brand img {
    height: 84px;
    max-width: 245px;
    transform: translateY(8px);
  }
}


/* V17 logo even larger like the original mockup */
.site-header {
  overflow: visible;
}

.header-inner {
  min-height: 132px;
  align-items: flex-start;
}

.brand {
  position: relative;
  z-index: 20;
  margin-top: -2px;
}

.brand img {
  height: 150px;
  max-width: 430px;
  transform: translateY(28px);
  transform-origin: top left;
  filter: drop-shadow(0 10px 28px rgba(106,0,255,.28));
}

.nav-wrap {
  padding-top: 12px;
}

.lang-switch {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .header-inner {
    min-height: 118px;
  }
  .brand img {
    height: 132px;
    max-width: 390px;
    transform: translateY(22px);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 102px;
  }
  .brand img {
    height: 112px;
    max-width: 330px;
    transform: translateY(18px);
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 94px;
  }
  .brand img {
    height: 98px;
    max-width: 290px;
    transform: translateY(14px);
  }
}


/* V19 full header logo with text like original mockup */
.site-header {
  overflow: visible;
}

.header-inner,
.site-header {
  min-height: 138px;
}

.brand {
  position: relative;
  z-index: 20;
  display: block;
}

.brand img {
  width: 430px;
  height: auto;
  max-width: none;
  display: block;
  transform: translateY(14px);
  transform-origin: top left;
  filter: drop-shadow(0 8px 18px rgba(80, 0, 160, .22));
}

.nav {
  padding-top: 8px;
}

.lang-switch {
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .site-header { min-height: 126px; }
  .brand img { width: 380px; transform: translateY(12px); }
}

@media (max-width: 980px) {
  .site-header { min-height: 112px; }
  .brand img { width: 325px; transform: translateY(10px); }
  .nav { padding-top: 4px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 98px; }
  .brand img { width: 280px; transform: translateY(8px); }
}

@media (max-width: 640px) {
  .site-header { min-height: 88px; }
  .brand img { width: 235px; transform: translateY(6px); }
}


/* V20 cleaner header layout with full logo crop */

.site-header {
  height: auto;
  min-height: 148px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
}

.brand {
  display: block;
  align-self: center;
  z-index: 20;
}

.brand img {
  width: clamp(320px, 31vw, 470px);
  height: auto;
  max-width: none;
  transform: none;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(80, 0, 160, .18));
}

.nav {
  align-self: center;
  padding-top: 0;
  gap: clamp(16px, 2vw, 34px);
}

.lang-switch {
  align-self: center;
  margin-top: 0;
}

.hero {
  min-height: calc(100vh - 148px);
  padding-top: clamp(54px, 6vw, 96px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 1180px) {
  .site-header { min-height: 136px; }
  .brand img { width: clamp(280px, 29vw, 400px); }
  .hero { min-height: calc(100vh - 136px); }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 120px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .brand img { width: 300px; }
  .nav { gap: 16px; }
  .nav a { font-size: 14px; }
  .hero { min-height: calc(100vh - 120px); padding-top: 50px; }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 104px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .brand img { width: 248px; }
}

@media (max-width: 640px) {
  .site-header { min-height: 92px; }
  .brand img { width: 210px; }
}


/* V21 enlarge yellow section labels */

.eyebrow,
.section-title .eyebrow,
.visual-card p {
  font-size: 16px;
  letter-spacing: .18em;
}

.hero .eyebrow {
  font-size: 18px;
  letter-spacing: .20em;
}

@media (max-width: 820px) {
  .eyebrow,
  .section-title .eyebrow,
  .visual-card p {
    font-size: 14px;
  }

  .hero .eyebrow {
    font-size: 15px;
  }
}


/* V22 wider header banner so turquoise slogan spans almost full length */

.brand img {
  width: clamp(360px, 38vw, 560px);
  height: auto;
  max-width: none;
}

.site-header {
  min-height: 156px;
}

@media (max-width: 1180px) {
  .brand img {
    width: clamp(320px, 35vw, 470px);
  }
  .site-header {
    min-height: 144px;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: 290px;
  }
  .site-header {
    min-height: 116px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 245px;
  }
  .site-header {
    min-height: 102px;
  }
}


/* V23 move turquoise slogan from logo to centered hero line */

.brand img {
  width: clamp(320px, 33vw, 500px);
}

.hero {
  align-items: start;
}

.hero-slogan {
  grid-column: 1 / -1;
  margin: 0 auto clamp(8px, 1.8vw, 18px);
  width: min(100%, 1240px);
  text-align: center;
  color: var(--cyan);
  font-family: Lora, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: .01em;
  text-shadow: 0 0 20px rgba(59,198,196,.22);
}

.hero-content {
  padding-top: 10px;
}

.hero h1 {
  margin-top: 24px;
  max-width: 760px;
}

.hero h1 em {
  text-transform: none;
}

@media (max-width: 980px) {
  .hero-slogan {
    font-size: clamp(25px, 4.8vw, 42px);
    width: min(100%, 92vw);
  }
}

@media (max-width: 820px) {
  .brand img {
    width: 260px;
  }

  .hero-slogan {
    margin-bottom: 16px;
    font-size: clamp(23px, 6.2vw, 36px);
  }
}


/* V24 remove secondary hero line and reduce typography globally */

.hero-slogan {
  font-size: clamp(24px, 3.2vw, 46px);
  width: min(100%, 1160px);
  margin-bottom: clamp(6px, 1.4vw, 14px);
}

.hero h1 {
  font-size: clamp(26px, 2.6vw, 42px);
  max-width: 540px;
  margin-top: 18px;
}

.hero .lead {
  font-size: clamp(14px, 1vw, 17px);
  max-width: 560px;
  line-height: 1.7;
}

.section-title h2 {
  font-size: clamp(26px, 2.7vw, 40px);
}

.section-title > p:not(.eyebrow),
.about-text,
.card p,
.animal-card p,
.contact-card p,
.booking-form,
.footer,
.lead {
  font-size: 15px;
}

.eyebrow,
.section-title .eyebrow,
.visual-card p,
.hero .eyebrow {
  font-size: 14px;
  letter-spacing: .14em;
}

.nav a {
  font-size: 13px;
}

.btn {
  font-size: 13px;
  min-height: 44px;
}

.card h3,
.animal-card h3,
.contact-card strong {
  font-size: 18px;
}

.free-note {
  font-size: 13px;
}

@media (max-width: 820px) {
  .hero-slogan {
    font-size: clamp(22px, 5.4vw, 34px);
  }

  .hero h1 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .section-title h2 {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  .section-title > p:not(.eyebrow),
  .about-text,
  .card p,
  .animal-card p,
  .contact-card p,
  .booking-form,
  .footer,
  .lead {
    font-size: 14px;
  }

  .eyebrow,
  .section-title .eyebrow,
  .visual-card p,
  .hero .eyebrow,
  .nav a,
  .btn {
    font-size: 12px;
  }
}


/* V25 move right hero visual higher */

.hero-visual {
  align-items: start;
  padding-top: 6px;
}

.hero-visual img {
  transform: translateY(-86px);
}

@keyframes floatV25 {
  0%,100% { transform: translateY(-86px); }
  50% { transform: translateY(-98px); }
}

.hero-visual img {
  animation: floatV25 7s ease-in-out infinite;
}

@media (max-width: 980px) {
  .hero-visual img {
    transform: translateY(-50px);
  }

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

  .hero-visual img {
    animation: floatV25Mobile 7s ease-in-out infinite;
  }
}


/* V26 integrate Jérôme portrait in presentation section */

.portrait-photo {
  width: 100%;
  max-width: 360px;
  max-height: none;
  object-fit: cover;
  border-radius: 24px;
  margin: 0 auto 14px;
  filter: none;
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
}

.about-card.visual-card {
  padding: 22px;
}

@media (max-width: 820px) {
  .portrait-photo {
    max-width: 300px;
  }
}


/* V27 single-frame portrait card */

.about-card.visual-card {
  padding: 0 0 24px;
  overflow: hidden;
}

.about-card.visual-card .portrait-photo {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.about-card.visual-card p {
  padding: 0 22px;
  margin: 0;
}

@media (max-width: 820px) {
  .about-card.visual-card {
    padding: 0 0 20px;
  }
  .about-card.visual-card p {
    padding: 0 18px;
  }
}


/* V30 service cards refinement */
.service-image {
  height: 205px;
  transform: scale(1.055);
  transform-origin: center;
}

.photo-card {
  overflow: hidden;
}

.image-human {
  object-position: center 18%;
}

.image-reiki {
  object-position: center 18%;
}

.image-biomagnetisme {
  object-position: center 16%;
}

.image-animal {
  object-position: center 18%;
}

.photo-card .card-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .service-image {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .service-image {
    height: 205px;
  }
}


/* V31 disclaimer turquoise italic */
.disclaimer {
  color: var(--cyan) !important;
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 0 14px rgba(59,198,196,.16);
}


/* V32 pricing section */
.pricing {
  background: linear-gradient(180deg, transparent, rgba(59,198,196,.045), transparent);
}

.pricing-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(circle at 20% 0%, rgba(59,198,196,.12), transparent 42%);
  padding: 30px;
  min-height: 230px;
  box-shadow: 0 0 0 1px rgba(156,44,255,.05), 0 24px 70px rgba(0,0,0,.28);
}

.price-card.highlight {
  border-color: rgba(59,198,196,.55);
  box-shadow: 0 0 38px rgba(59,198,196,.14), 0 24px 70px rgba(0,0,0,.30);
}

.price-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 38px;
  line-height: 1;
}

.price-icon-green {
  background: none;
  box-shadow: none;
}

.price-card h3 {
  margin: 20px 0 12px;
  color: #fff;
  font-size: 19px;
}

.price {
  color: var(--cyan);
  font-family: Lora, Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-style: italic;
  margin: 0 0 12px;
  text-shadow: 0 0 14px rgba(59,198,196,.16);
}

.price-card p:not(.price) {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}

.pricing-note {
  max-width: 900px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--gold2);
  font-size: 14px;
  line-height: 1.65;
  font-style: italic;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
    padding: 24px;
  }
}


/* V33 recadrage photos services */


/* V35 FAQ section */
.faq {
  background: linear-gradient(180deg, transparent, rgba(156,44,255,.055), transparent);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    radial-gradient(circle at 10% 0%, rgba(59,198,196,.14), transparent 44%);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.faq-placeholder span {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), rgba(212,175,55,.86));
  color: #001414;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(59,198,196,.18);
}

.faq-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

@media (max-width: 640px) {
  .faq-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* V36 FAQ real questions */
.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    radial-gradient(circle at 10% 0%, rgba(59,198,196,.12), transparent 44%);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #001414;
  background: linear-gradient(135deg, var(--cyan), rgba(212,175,55,.86));
  box-shadow: 0 0 24px rgba(59,198,196,.16);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(16px, 1.5vw, 18px);
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 20px;
  }
  .faq-item p {
    padding: 0 20px 22px;
  }
}


/* V37 navigation premium gold sparkle */
.nav {
  gap: clamp(18px, 2.4vw, 34px);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: transparent !important;
  background: linear-gradient(180deg, #fff4c7 0%, #f4d06f 32%, #c99325 72%, #fff0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 10px rgba(212,175,55,.20),
    0 0 22px rgba(212,175,55,.14);
  letter-spacing: .18em;
  font-weight: 850;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: -12px -14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,235,150,.32), transparent 10%),
    radial-gradient(circle at 78% 62%, rgba(255,220,110,.20), transparent 12%),
    linear-gradient(90deg, transparent, rgba(212,175,55,.10), transparent);
  opacity: 0;
  transform: scale(.92);
  transition: opacity .25s ease, transform .25s ease;
  z-index: -1;
}

.nav a::after {
  content: "✦";
  position: absolute;
  right: -13px;
  top: -13px;
  color: #f9d873;
  font-size: 11px;
  opacity: .58;
  text-shadow:
    0 0 6px rgba(255,230,140,.85),
    0 0 16px rgba(212,175,55,.55);
  transform: rotate(8deg) scale(.85);
  transition: opacity .25s ease, transform .25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #ffe89a 22%, #d4af37 64%, #fff5bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 10px rgba(255,236,160,.60),
    0 0 28px rgba(212,175,55,.40),
    0 0 48px rgba(59,198,196,.12);
}

.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: rotate(0deg) scale(1.16);
}

@media (max-width: 1180px) {
  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 13px;
    letter-spacing: .14em;
  }
}

@media (max-width: 960px) {
  .nav {
    background:
      linear-gradient(180deg, rgba(10,5,16,.98), rgba(0,0,0,.96)),
      radial-gradient(circle at 50% 0%, rgba(212,175,55,.13), transparent 42%);
  }

  .nav a {
    justify-content: center;
    font-size: 15px;
  }

  .nav a::after {
    right: auto;
    left: calc(50% + 58px);
    top: -8px;
  }
}


/* V39 header reduced, logo uncropped, flags visible */
.site-header {
  min-height: 122px !important;
  grid-template-columns: auto 1fr auto !important;
  gap: clamp(12px, 1.6vw, 24px) !important;
  padding: 8px clamp(14px, 2vw, 26px) !important;
  overflow: visible !important;
}

.brand {
  display: block;
  align-self: center;
  z-index: 20;
  padding-top: 4px;
  padding-bottom: 4px;
}

.brand img {
  width: clamp(260px, 22vw, 380px) !important;
  height: auto !important;
  max-width: none !important;
  display: block;
  margin: 0;
  transform: none !important;
  filter: drop-shadow(0 6px 16px rgba(80, 0, 160, .16)) !important;
}

.nav {
  gap: clamp(12px, 1.5vw, 24px) !important;
  justify-content: center;
  padding-top: 0 !important;
}

.nav a {
  font-size: 12px !important;
  letter-spacing: .12em !important;
}

.lang-switch {
  margin-top: 0 !important;
  align-self: center;
}

.hero {
  min-height: calc(100vh - 122px) !important;
}

@media (max-width: 1280px) {
  .site-header {
    min-height: 114px !important;
    gap: 14px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .brand img {
    width: clamp(235px, 20vw, 330px) !important;
  }
  .nav {
    gap: 12px !important;
  }
  .nav a {
    font-size: 11px !important;
    letter-spacing: .10em !important;
  }
}

@media (max-width: 1024px) {
  .site-header {
    min-height: 104px !important;
    grid-template-columns: auto 1fr auto !important;
  }
  .brand img {
    width: 270px !important;
  }
  .hero {
    min-height: calc(100vh - 104px) !important;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 92px !important;
    padding: 8px 12px !important;
  }
  .brand img {
    width: 220px !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 84px !important;
  }
  .brand img {
    width: 190px !important;
  }
}


/* V40 — new service images with visible hands + halo icons */
.service-image {
  object-fit: cover;
}
.image-human { object-position: center 44%; }
.image-reiki { object-position: center 40%; }
.image-biomagnetisme { object-position: center 42%; }
.image-animal { object-position: center 42%; }

.halo-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(0,0,0,.35));
  background: radial-gradient(circle at center, rgba(255,255,255,.96) 0 10%, rgba(113,255,245,.78) 11%, rgba(113,255,245,.18) 22%, rgba(113,255,245,.03) 42%, transparent 43%),
              radial-gradient(circle at center, rgba(255,223,122,.68) 0 3%, transparent 4%),
              linear-gradient(135deg, rgba(92,255,238,.18), rgba(212,175,55,.22));
  border: 1px solid rgba(92,255,238,.42);
  box-shadow: 0 0 24px rgba(59,198,196,.28), inset 0 0 18px rgba(255,255,255,.06);
  overflow: visible;
}
.halo-icon::before,
.halo-icon::after {
  content: '';
  position: absolute;
  inset: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  pointer-events: none;
}
.halo-icon::before {
  width: 74%;
  height: 74%;
  border: 1.5px solid rgba(255,227,138,.52);
  box-shadow: 0 0 12px rgba(255,227,138,.26);
}
.halo-icon::after {
  width: 92%;
  height: 92%;
  border: 1px solid rgba(122,255,244,.26);
}
.halo-1 {
  background: radial-gradient(circle at center, rgba(255,255,255,.98) 0 9%, rgba(130,255,247,.82) 10%, rgba(130,255,247,.18) 20%, transparent 38%),
              radial-gradient(circle at center, rgba(255,221,120,.55) 0 3%, transparent 4%),
              linear-gradient(135deg, rgba(92,255,238,.18), rgba(212,175,55,.25));
}
.halo-1::before { width: 76%; height: 76%; }
.halo-2 {
  background: radial-gradient(circle at center, rgba(255,255,255,.95) 0 8%, rgba(186,133,255,.80) 9%, rgba(95,255,238,.18) 20%, transparent 39%),
              linear-gradient(135deg, rgba(145,97,255,.28), rgba(92,255,238,.18));
}
.halo-2::before { border-color: rgba(186,133,255,.48); }
.halo-2::after { width: 82%; height: 82%; border-color: rgba(92,255,238,.38); box-shadow: 0 0 10px rgba(92,255,238,.22); }
.halo-3 {
  background: radial-gradient(circle at center, rgba(255,255,255,.98) 0 7%, rgba(255,210,96,.84) 8%, rgba(178,103,255,.18) 18%, transparent 36%),
              linear-gradient(135deg, rgba(178,103,255,.24), rgba(92,255,238,.20));
}
.halo-3::before { width: 70%; height: 70%; border-color: rgba(178,103,255,.58); }
.halo-3::after { width: 98%; height: 56%; border-radius: 50%; border-color: rgba(92,255,238,.32); }
.halo-4 {
  background: radial-gradient(circle at center, rgba(255,255,255,.96) 0 8%, rgba(123,255,226,.78) 9%, rgba(255,222,124,.16) 22%, transparent 38%),
              linear-gradient(135deg, rgba(123,255,226,.20), rgba(212,175,55,.18));
}
.halo-4::before { width: 80%; height: 80%; }
.halo-4::after { width: 88%; height: 88%; border-style: dashed; border-color: rgba(123,255,226,.30); }
.halo-5 {
  background: radial-gradient(circle at center, rgba(255,255,255,.96) 0 8%, rgba(92,255,238,.84) 9%, rgba(212,175,55,.18) 21%, transparent 39%),
              linear-gradient(135deg, rgba(212,175,55,.22), rgba(92,255,238,.16));
}
.halo-5::before { width: 78%; height: 78%; }
.halo-5::after { width: 108%; height: 66%; border-color: rgba(212,175,55,.28); }

.photo-card .card-icon,
.card.wide .card-icon {
  display: inline-block;
  margin-bottom: 14px;
}


/* V41 nouveaux logos validés */
.brand img {
  width: clamp(260px, 22vw, 380px) !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
}

.hero-visual img {
  width: min(100%, 560px) !important;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 42px rgba(156,44,255,.46))
    drop-shadow(0 0 22px rgba(212,175,55,.22));
}

@media (max-width: 820px) {
  .brand img {
    width: 220px !important;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 190px !important;
  }
}


/* V43 soften right logo: transparent blend, no frame */
.hero-visual {
  background: transparent !important;
}
.hero-visual img {
  width: min(100%, 500px) !important;
  background: transparent !important;
  filter:
    drop-shadow(0 0 56px rgba(155, 62, 255, 0.34))
    drop-shadow(0 0 24px rgba(92, 255, 238, 0.12)) !important;
}
@media (max-width: 980px) {
  .hero-visual img {
    width: min(92vw, 440px) !important;
  }
}


/* V47 accueil sans logo à droite */
.hero {
  grid-template-columns: 1fr !important;
  min-height: calc(100vh - 110px) !important;
  align-items: center !important;
}

.hero-content {
  max-width: 900px !important;
  margin-left: 0 !important;
}

.hero-visual {
  display: none !important;
}

.hero-glow {
  right: -18% !important;
  top: 0 !important;
  opacity: .75;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr !important;
  }
}


/* V48 accueil avec logo transparent sans écriture */
.hero {
  grid-template-columns: minmax(0, .92fr) minmax(330px, .78fr) !important;
  align-items: center !important;
  gap: clamp(30px, 5vw, 76px) !important;
  background: transparent !important;
}

.hero-content {
  max-width: 900px !important;
  margin-left: 0 !important;
}

.hero-visual.hero-logo-transparent {
  display: grid !important;
  place-items: center !important;
  min-height: 420px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.hero-visual.hero-logo-transparent img {
  width: min(100%, 520px) !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: translateY(-18px) !important;
  filter:
    drop-shadow(0 0 46px rgba(156,44,255,.42))
    drop-shadow(0 0 22px rgba(59,198,196,.10)) !important;
  animation: floatLogoV48 7s ease-in-out infinite !important;
}

@keyframes floatLogoV48 {
  0%, 100% { transform: translateY(-18px); }
  50% { transform: translateY(-30px); }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr !important;
  }

  .hero-visual.hero-logo-transparent {
    order: -1;
    min-height: auto !important;
  }

  .hero-visual.hero-logo-transparent img {
    width: min(88vw, 430px) !important;
    transform: translateY(0) !important;
  }

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

@media (max-width: 640px) {
  .hero-visual.hero-logo-transparent img {
    width: min(84vw, 340px) !important;
  }
}


/* V49 - accueil recentré + symbole plus fidèle à l'original */
.hero.section {
  max-width: 1480px !important;
  margin: 0 auto !important;
  width: min(1480px, calc(100% - 28px)) !important;
  overflow: hidden !important;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr) !important;
  gap: clamp(34px, 5.2vw, 88px) !important;
  align-items: center !important;
}

.hero-content {
  max-width: 760px !important;
  padding-left: clamp(4px, 0.5vw, 10px) !important;
}

.hero-content h1 {
  margin-right: 0 !important;
}

.hero-visual.hero-logo-transparent {
  min-height: 640px !important;
  place-items: center !important;
}

.hero-visual.hero-logo-transparent img {
  width: min(100%, 490px) !important;
  max-width: 490px !important;
  transform: translateY(-8px) !important;
  filter: drop-shadow(0 0 52px rgba(156,44,255,.40)) drop-shadow(0 0 18px rgba(59,198,196,.10)) !important;
}

@keyframes floatLogoV48 {
  0%, 100% { transform: translateY(-8px); }
  50% { transform: translateY(-18px); }
}

@media (max-width: 1200px) {
  .hero.section {
    width: min(100%, calc(100% - 24px)) !important;
  }
  .hero {
    grid-template-columns: minmax(0, .95fr) minmax(300px, .9fr) !important;
    gap: 34px !important;
  }
  .hero-visual.hero-logo-transparent img {
    width: min(100%, 430px) !important;
    max-width: 430px !important;
  }
}

@media (max-width: 1020px) {
  .hero.section {
    width: min(100%, calc(100% - 18px)) !important;
  }
  .hero {
    grid-template-columns: 1fr !important;
    text-align: left !important;
  }
  .hero-visual.hero-logo-transparent {
    order: 0 !important;
    min-height: auto !important;
    margin-top: 8px !important;
  }
  .hero-visual.hero-logo-transparent img {
    width: min(82vw, 380px) !important;
    max-width: 380px !important;
    transform: translateY(0) !important;
  }
  @keyframes floatLogoV48 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
}


/* V50 - accueil final équilibré */
.hero.section {
  width: min(100%, 1440px) !important;
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(34px, 5vw, 78px) !important;
  padding-right: clamp(34px, 5vw, 78px) !important;
  overflow: hidden !important;
}

.hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr) !important;
  gap: clamp(34px, 4.6vw, 72px) !important;
  align-items: center !important;
}

.hero-slogan {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(30px, 3.6vw, 58px) !important;
  line-height: 1.04 !important;
}

.hero-content {
  max-width: 720px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: clamp(42px, 4.2vw, 70px) !important;
}

.hero .lead {
  max-width: 660px !important;
}

.hero-visual.hero-logo-transparent {
  min-height: 500px !important;
  display: grid !important;
  place-items: center !important;
  overflow: visible !important;
}

.hero-visual.hero-logo-transparent img {
  width: min(100%, 455px) !important;
  max-width: 455px !important;
  transform: translateY(-4px) !important;
  filter:
    drop-shadow(0 0 46px rgba(156,44,255,.38))
    drop-shadow(0 0 18px rgba(59,198,196,.10)) !important;
}

@keyframes floatLogoV48 {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 1180px) {
  .hero.section {
    padding-left: clamp(26px, 4vw, 54px) !important;
    padding-right: clamp(26px, 4vw, 54px) !important;
  }

  .hero {
    grid-template-columns: minmax(0, .98fr) minmax(300px, .78fr) !important;
    gap: 34px !important;
  }

  .hero-visual.hero-logo-transparent img {
    width: min(100%, 390px) !important;
    max-width: 390px !important;
  }
}

@media (max-width: 1020px) {
  .hero.section {
    width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    text-align: left !important;
  }

  .hero-slogan {
    font-size: clamp(28px, 7vw, 46px) !important;
    text-align: center !important;
  }

  .hero-visual.hero-logo-transparent {
    order: 0 !important;
    min-height: auto !important;
    margin-top: 16px !important;
  }

  .hero-visual.hero-logo-transparent img {
    width: min(82vw, 340px) !important;
    max-width: 340px !important;
    transform: translateY(0) !important;
  }

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

@media (max-width: 640px) {
  .hero.section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 54px) !important;
  }

  .hero-visual.hero-logo-transparent img {
    width: min(80vw, 300px) !important;
    max-width: 300px !important;
  }
}


/* V51 Option A - symbole transparent harmonisé et accueil mieux équilibré */
.hero.section {
  max-width: 1420px !important;
  margin: 0 auto !important;
  padding-left: clamp(28px, 4vw, 64px) !important;
  padding-right: clamp(28px, 4vw, 64px) !important;
}

.hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.28fr) !important;
  gap: clamp(10px, 2vw, 26px) !important;
  align-items: center !important;
}

.hero-content {
  max-width: 700px !important;
}

.hero-visual.hero-logo-transparent {
  justify-self: center !important;
  align-self: center !important;
  min-height: 640px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-visual.hero-logo-transparent img {
  width: min(100%, 700px) !important;
  max-width: 700px !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: translateY(0) !important;
  filter:
    drop-shadow(0 0 54px rgba(156,44,255,.34))
    drop-shadow(0 0 22px rgba(59,198,196,.08)) !important;
}

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

@media (max-width: 1020px) {
  .hero.section {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .hero {
    grid-template-columns: 1fr !important;
  }
  .hero-visual.hero-logo-transparent {
    min-height: auto !important;
    margin-top: 12px !important;
  }
  .hero-visual.hero-logo-transparent img {
    width: min(92vw, 520px) !important;
    max-width: 520px !important;
  }
}


/* V53 final larger right logo */
.hero-visual.hero-logo-transparent { min-height: 640px !important; }
.hero-visual.hero-logo-transparent img { width: min(100%, 560px) !important; max-width: 560px !important; }
@media (max-width: 1020px) { .hero-visual.hero-logo-transparent img { width: min(88vw, 430px) !important; max-width: 430px !important; } }


/* V54 even larger right logo */
.hero { grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.28fr) !important; gap: clamp(10px, 2vw, 26px) !important; }
.hero-visual.hero-logo-transparent { min-height: 640px !important; }
.hero-visual.hero-logo-transparent img { width: min(100%, 700px) !important; max-width: 700px !important; }
@media (max-width: 1180px) { .hero { grid-template-columns: minmax(0, .9fr) minmax(360px, 1.08fr) !important; } .hero-visual.hero-logo-transparent img { width: min(100%, 560px) !important; max-width: 560px !important; } }
@media (max-width: 1020px) { .hero-visual.hero-logo-transparent img { width: min(92vw, 520px) !important; max-width: 520px !important; } .hero-visual.hero-logo-transparent { min-height: auto !important; } }


/* V56 - harmonisation finale de la page d'accueil */
.hero.section {
  max-width: 1500px !important;
  width: min(100%, 1500px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(34px, 5vw, 86px) !important;
  padding-right: clamp(34px, 5vw, 86px) !important;
  overflow: visible !important;
}

.hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr) !important;
  gap: clamp(18px, 2.6vw, 42px) !important;
  align-items: center !important;
  min-height: calc(100vh - 110px) !important;
}

.hero-slogan {
  max-width: 1220px !important;
  margin: 0 auto clamp(18px, 2vw, 34px) auto !important;
  text-align: center !important;
  line-height: 1.03 !important;
}

.hero-content {
  max-width: 705px !important;
  justify-self: end !important;
  padding-left: 0 !important;
  padding-right: clamp(0px, 1vw, 16px) !important;
}

.hero h1 {
  max-width: 705px !important;
  margin-top: 24px !important;
  font-size: clamp(42px, 4.4vw, 72px) !important;
  line-height: .98 !important;
}

.hero .lead {
  max-width: 650px !important;
  margin-top: 28px !important;
}

.hero-visual.hero-logo-transparent {
  min-height: 640px !important;
  justify-self: start !important;
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.hero-visual.hero-logo-transparent img {
  width: min(100%, 660px) !important;
  max-width: 660px !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translateY(-6px) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter:
    drop-shadow(0 0 58px rgba(156,44,255,.34))
    drop-shadow(0 0 22px rgba(59,198,196,.08)) !important;
}

.hero-glow {
  right: -6% !important;
  top: 13% !important;
  width: 54vw !important;
  height: 54vw !important;
  opacity: .92 !important;
}

@keyframes floatLogoV48 {
  0%, 100% { transform: translateY(-6px); }
  50% { transform: translateY(-16px); }
}

@media (max-width: 1280px) {
  .hero.section {
    padding-left: clamp(28px, 4vw, 60px) !important;
    padding-right: clamp(28px, 4vw, 60px) !important;
  }

  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.05fr) !important;
    gap: 20px !important;
  }

  .hero-content {
    justify-self: center !important;
  }

  .hero-visual.hero-logo-transparent img {
    width: min(100%, 580px) !important;
    max-width: 580px !important;
  }
}

@media (max-width: 1020px) {
  .hero.section {
    width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    overflow: hidden !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center !important;
    min-height: auto !important;
  }

  .hero-content {
    max-width: 760px !important;
    justify-self: center !important;
    padding-right: 0 !important;
  }

  .hero .eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero .lead {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-visual.hero-logo-transparent {
    justify-self: center !important;
    min-height: auto !important;
    margin-top: 8px !important;
  }

  .hero-visual.hero-logo-transparent img {
    width: min(88vw, 460px) !important;
    max-width: 460px !important;
    transform: translateY(0) !important;
  }

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

@media (max-width: 640px) {
  .hero.section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-slogan {
    font-size: clamp(28px, 8vw, 44px) !important;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 52px) !important;
  }

  .hero-visual.hero-logo-transparent img {
    width: min(88vw, 380px) !important;
    max-width: 380px !important;
  }
}


/* V57 - remonter le slogan secondaire, le texte et le logo sur l'accueil */
.hero.section {
  align-items: start !important;
  padding-top: 8px !important;
}

.hero-slogan {
  margin-bottom: 0 !important;
}

.hero-content {
  align-self: start !important;
  margin-top: -96px !important;
}

.hero-visual.hero-logo-transparent {
  align-self: start !important;
  margin-top: -110px !important;
  min-height: 560px !important;
}

.hero-visual.hero-logo-transparent img {
  filter: drop-shadow(0 0 58px rgba(156,44,255,.40)) drop-shadow(0 0 22px rgba(59,198,196,.10)) !important;
}

@media (max-width: 1200px) {
  .hero-content { margin-top: -72px !important; }
  .hero-visual.hero-logo-transparent { margin-top: -82px !important; }
}

@media (max-width: 1020px) {
  .hero.section { padding-top: 0 !important; }
  .hero-slogan { margin-bottom: 10px !important; }
  .hero-content { margin-top: -18px !important; }
  .hero-visual.hero-logo-transparent { margin-top: -20px !important; min-height: auto !important; }
}

@media (max-width: 640px) {
  .hero-content { margin-top: 0 !important; }
  .hero-visual.hero-logo-transparent { margin-top: -10px !important; }
}


/* V58 - harmonisation accueil : éviter le chevauchement des phrases */
.hero.section {
  align-items: start !important;
  padding-top: 12px !important;
}

.hero-slogan {
  font-size: clamp(28px, 3.7vw, 56px) !important;
  line-height: 1.02 !important;
  margin: -8px auto 24px !important;
  max-width: min(100%, 1080px) !important;
  position: relative !important;
  z-index: 1 !important;
}

.hero-content {
  align-self: start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.hero .eyebrow {
  margin-top: 0 !important;
}

.hero h1 {
  margin-top: 18px !important;
}

.hero-visual.hero-logo-transparent {
  align-self: start !important;
  margin-top: -26px !important;
  min-height: 540px !important;
}

@media (max-width: 1200px) {
  .hero-slogan {
    font-size: clamp(28px, 3.9vw, 50px) !important;
    margin: -4px auto 20px !important;
  }
  .hero-content { margin-top: 0 !important; }
  .hero-visual.hero-logo-transparent { margin-top: -12px !important; }
}

@media (max-width: 1020px) {
  .hero.section { padding-top: 4px !important; }
  .hero-slogan {
    font-size: clamp(26px, 5.2vw, 42px) !important;
    margin: 0 auto 14px !important;
  }
  .hero-content { margin-top: 0 !important; }
  .hero-visual.hero-logo-transparent {
    margin-top: 0 !important;
    min-height: auto !important;
  }
}

@media (max-width: 640px) {
  .hero-slogan {
    font-size: clamp(24px, 7.6vw, 36px) !important;
    margin: 0 auto 12px !important;
  }
  .hero h1 { margin-top: 12px !important; }
}


/* V59 - écriture plus fluide pour la phrase turquoise */
.hero-slogan {
  font-family: "Cormorant Garamond", "Lora", serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
  letter-spacing: .015em !important;
  color: #3BC6C4 !important;
  font-size: clamp(34px, 4.15vw, 66px) !important;
  line-height: 1.02 !important;
  max-width: min(100%, 1180px) !important;
  margin: -6px auto 26px !important;
  text-align: center !important;
  text-shadow:
    0 0 16px rgba(59,198,196,.28),
    0 0 36px rgba(59,198,196,.10) !important;
}

.hero-content {
  margin-top: 0 !important;
}

.hero-visual.hero-logo-transparent {
  margin-top: -22px !important;
}

@media (max-width: 1200px) {
  .hero-slogan {
    font-size: clamp(32px, 4.4vw, 58px) !important;
    max-width: min(100%, 980px) !important;
    margin: -2px auto 22px !important;
  }
}

@media (max-width: 1020px) {
  .hero-slogan {
    font-size: clamp(28px, 5.6vw, 46px) !important;
    max-width: 92vw !important;
    margin: 0 auto 16px !important;
  }

  .hero-visual.hero-logo-transparent {
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .hero-slogan {
    font-size: clamp(25px, 8vw, 38px) !important;
    line-height: 1.05 !important;
    margin: 0 auto 14px !important;
  }
}


/* V60 - aligner visuellement texte et logo sur l'accueil */

.hero.section {
  padding-top: 18px !important;
}

.hero-content {
  align-self: center !important;
  margin-top: 52px !important;
  padding-top: 22px !important;
}

.hero .eyebrow {
  margin-top: 0 !important;
}

.hero h1 {
  margin-top: 22px !important;
}

.hero-visual.hero-logo-transparent {
  align-self: center !important;
  margin-top: -74px !important;
  min-height: 500px !important;
}

.hero-visual.hero-logo-transparent img {
  width: min(100%, 560px) !important;
}

@media (max-width: 1400px) {
  .hero-content {
    margin-top: 42px !important;
    padding-top: 16px !important;
  }
  .hero-visual.hero-logo-transparent {
    margin-top: -58px !important;
  }
}

@media (max-width: 1200px) {
  .hero-content {
    margin-top: 28px !important;
    padding-top: 10px !important;
  }
  .hero-visual.hero-logo-transparent {
    margin-top: -34px !important;
  }
}

@media (max-width: 1020px) {
  .hero-content {
    align-self: start !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .hero-visual.hero-logo-transparent {
    align-self: start !important;
    margin-top: 0 !important;
    min-height: auto !important;
  }
}

/* V69 — hero eyebrow: fire-cutter on its own centered line, larger size to match nav */
.hero .eyebrow.hero-eyebrow-item {
  display: flex !important;
  width: 100% !important;
  justify-content: flex-start !important;
  text-align: left !important;
  font-size: 20px !important;
  letter-spacing: .22em !important;
  margin: 0 !important;
}

.hero .eyebrow.hero-eyebrow-item::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero .eyebrow.hero-eyebrow-1::before {
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.hero .eyebrow.hero-eyebrow-2::before {
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
}

.hero .eyebrow.hero-eyebrow-3::before {
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
}

.hero .eyebrow.hero-eyebrow-item.hero-eyebrow-special::before {
  content: "🔥";
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(255,140,0,.55));
}

.hero .eyebrow.hero-eyebrow-special {
  margin-top: 10px !important;
}

@media (max-width: 640px) {
  .hero .eyebrow.hero-eyebrow-item {
    font-size: 15px !important;
  }

  .hero .eyebrow.hero-eyebrow-item.hero-eyebrow-special::before {
    font-size: 16px;
  }
}

.hero .lead {
  font-size: clamp(19px, 1.7vw, 25px) !important;
  line-height: 1.7 !important;
}

/* V82 — nav links: responsive sizing so the language flags stay visible
   alongside the larger logo and the new "Pleine lune" nav item */
.nav {
  gap: 13px !important;
}

.nav a {
  font-size: 14px !important;
  letter-spacing: .14em !important;
}

@media (max-width: 1700px) {
  .nav a {
    font-size: 13px !important;
  }
}

@media (max-width: 1450px) {
  .nav a {
    font-size: 11px !important;
    letter-spacing: .10em !important;
  }
}

@media (max-width: 1250px) {
  .nav a {
    font-size: 9.5px !important;
    letter-spacing: .08em !important;
  }
}

@media (max-width: 1020px) {
  .nav a {
    font-size: 15px !important;
    letter-spacing: .18em !important;
  }
}

/* V73 — enlarge header logo image, switch live hero tagline to Allura script */
.brand img {
  width: clamp(340px, 30vw, 620px) !important;
}

@media (max-width: 1180px) {
  .brand img { width: clamp(300px, 34vw, 440px) !important; }
}

@media (max-width: 980px) {
  .brand img { width: 340px !important; }
}

@media (max-width: 640px) {
  .brand img { width: 260px !important; }
}

.hero-slogan {
  font-family: 'Allura', 'Cormorant Garamond', cursive !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: clamp(40px, 5vw, 76px) !important;
}

/* V78 — enlarge the free-note pill (kids free badge) */
.free-note {
  font-size: 18px !important;
  padding: 16px 26px !important;
}

.free-note::before {
  font-size: 20px !important;
}

@media (max-width: 640px) {
  .free-note {
    font-size: 15px !important;
    padding: 13px 20px !important;
  }
  .free-note::before {
    font-size: 17px !important;
  }
}

/* V80 — Magnetismo lunar special event section */
.lunar-event {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.10), transparent 55%);
  border-top: 1px solid rgba(212,175,55,.18);
  border-bottom: 1px solid rgba(212,175,55,.18);
}

.lunar-features {
  max-width: 1000px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.lunar-features div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.lunar-note {
  text-align: center;
  margin: 30px auto 0;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .02em;
}

.lunar-price {
  text-align: center;
  margin: 30px auto 0;
  color: var(--gold2);
  font-family: Lora, Georgia, serif;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  text-shadow: 0 0 14px rgba(212,175,55,.16);
}

.lunar-duo {
  max-width: 760px;
  text-align: center;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* V82b — widen the hamburger-menu breakpoint just for nav/menu-toggle,
   closing the narrow 1021-1250px gap where inline nav still overflowed
   even at the smallest readable font-size */
@media (max-width: 1250px) and (min-width: 1021px) {
  .nav {
    position: fixed !important;
    inset: 90px 16px auto 16px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 28px !important;
    border: 1px solid var(--line) !important;
    border-radius: 22px !important;
    background: rgba(0,0,0,.94) !important;
    gap: 18px !important;
  }
  .nav.open { display: flex !important; }
  .nav a {
    font-size: 15px !important;
    letter-spacing: .18em !important;
  }
  .menu-toggle { display: block !important; }
  .site-header { grid-template-columns: auto 1fr auto !important; }
}

/* V83 — discreet note for soul guidance / entity clearing, moved out of the hero banner */
.services-extra-note {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* V85 — tighten the gap between the turquoise slogan and the eyebrow stack below it */
.hero-slogan {
  margin-bottom: 10px !important;
}

.hero-content {
  margin-top: -24px !important;
}
