/* ==========================================================================
   Fay Thaï Massages · Charte graphique
   Bleu marine profond · Crème ivoire · Or · Lotus line-art
   ========================================================================== */

:root {
  --navy: #1c3572;
  --navy-deep: #14264f;
  --navy-ink: #22345c;
  --gold: #c3a15f;
  --gold-deep: #a8863f;
  --cream: #f7f2e8;
  --cream-light: #fcf9f2;
  --text: #3c4257;
  --line: rgba(28, 53, 114, 0.14);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8em 1.9em;
  border-radius: 3px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn--lg { padding: 1em 2.2em; }

.btn--gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 242, 232, 0.7);
}
.btn--outline:hover { background: rgba(247, 242, 232, 0.12); border-color: var(--cream); transform: translateY(-2px); }

.btn--navy {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  letter-spacing: 0.16em;
}
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Bandeau supérieur
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--navy-deep);
  color: rgba(247, 242, 232, 0.85);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5em 1em;
}
.topbar a { color: var(--gold); text-decoration: none; font-weight: 400; white-space: nowrap; }
.topbar a:hover { color: #d8bc82; }

/* --------------------------------------------------------------------------
   En-tête
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 249, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
}

.brand__lotus { width: 52px; height: 34px; flex-shrink: 0; }

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }

.brand__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.brand__sub {
  font-size: 0.68rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy-ink);
  padding: 0.3em 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active,
.nav__link[aria-current="page"] {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.nav__cta { margin-left: 0.5rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  padding: 0 9px;
}
.burger span {
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Héro
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("../assets/interieur.jpeg") center 35% / cover no-repeat, var(--navy-deep);
  color: var(--cream);
  text-align: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 38, 79, 0.78) 0%, rgba(20, 38, 79, 0.55) 55%, rgba(20, 38, 79, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 7rem 0 8rem;
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

.hero__title em {
  font-style: italic;
  color: #ddc48e;
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(247, 242, 232, 0.92);
  margin-bottom: 2.6rem;
}

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

.hero__badges {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-top: 1px solid rgba(247, 242, 232, 0.22);
  background: rgba(15, 26, 60, 0.55);
  backdrop-filter: blur(2px);
}

.hero__badges-inner {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 8vw, 7rem);
  padding: 1.1rem 0;
}

.hero-badge {
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.9);
}

.hero-badge__icon { color: var(--gold); margin-right: 0.45em; }

/* --------------------------------------------------------------------------
   Bannière de sous-page + fil d'Ariane
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  background: url("../assets/interieur.jpeg") center 42% / cover no-repeat, var(--navy-deep);
  color: var(--cream);
  text-align: center;
  padding: 4.8rem 0 4rem;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 38, 79, 0.86) 0%, rgba(15, 26, 60, 0.92) 100%);
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.page-hero__lead {
  margin: 0.9rem auto 0;
  max-width: 640px;
  color: rgba(247, 242, 232, 0.9);
  font-size: 1.05rem;
}

.breadcrumb {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.breadcrumb a { color: var(--navy-ink); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb li[aria-current] { color: var(--gold-deep); }
.breadcrumb li + li::before { content: "›"; margin-right: 0.5rem; color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   Sections · éléments communs
   -------------------------------------------------------------------------- */

.section-head { text-align: center; margin-bottom: 3.2rem; }

.section-head__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.section-head__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: 0.06em;
  color: var(--navy);
}

.section-head__title--left { text-align: left; margin-bottom: 1.2rem; }

.section-head__line {
  display: inline-block;
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.1rem;
}

.lotus-divider {
  width: 74px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 1rem;
}

.lotus-divider--light { color: var(--gold); }

/* --------------------------------------------------------------------------
   Introduction
   -------------------------------------------------------------------------- */

.intro { padding: 5.5rem 0 4.5rem; background: var(--cream-light); }

.intro__inner {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.intro__text { font-size: 1.08rem; }

/* Intro deux colonnes (avec photo de la praticienne) */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.intro__media { position: relative; }

.intro__media img {
  border-radius: 4px;
  box-shadow: 0 22px 55px -26px rgba(20, 38, 79, 0.5);
}

.intro__media::after {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.intro__body { text-align: left; }
.intro__body .lotus-divider { display: block; margin: 0 0 0.8rem; }
.intro__body .intro__title { text-align: left; }

/* --------------------------------------------------------------------------
   Massages & tarifs
   -------------------------------------------------------------------------- */

.massages { padding: 5.5rem 0 6rem; background: var(--cream); }

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

.card {
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.3rem 1.8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Filigrane thématique en fond de carte */
.card > *:not(.card__wm) { position: relative; z-index: 1; }

.card__wm {
  position: absolute;
  right: -20px;
  bottom: -24px;
  width: 150px;
  height: 150px;
  color: var(--navy);
  opacity: 0.055;
  z-index: 0;
  pointer-events: none;
}

.card:hover .card__wm { opacity: 0.09; }

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -18px rgba(20, 38, 79, 0.28);
  border-color: rgba(195, 161, 95, 0.5);
}

.card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.2rem;
  color: var(--gold-deep);
  border: 1px solid rgba(195, 161, 95, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.card__icon svg { width: 100%; height: 100%; }

.card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.card__alt {
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.25rem;
}

.card__desc { font-size: 0.98rem; flex-grow: 1; margin-bottom: 1.4rem; }

.card__prices {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.price {
  background: var(--navy);
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.42em 1.1em;
  border-radius: 3px;
}

.price strong {
  font-weight: 500;
  color: var(--gold);
  margin-right: 0.5em;
}

/* Cartes compactes (aperçu accueil) */
.cards--mini .card { padding: 1.9rem 1.4rem 1.7rem; }
.cards--mini .card__title { font-size: 1.18rem; margin-bottom: 0.5rem; }

.card__from {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
}

.section-cta { text-align: center; margin-top: 2.8rem; }

.massages__note {
  text-align: center;
  max-width: 640px;
  margin: 2.8rem auto 0;
  font-size: 0.98rem;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Bandeau fidélité / bons cadeaux
   -------------------------------------------------------------------------- */

.offers {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: 4.2rem 0;
  overflow: hidden;
}

.offers__lotus {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 250px;
  color: rgba(247, 242, 232, 0.07);
  pointer-events: none;
}

.offers__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.offers__sep {
  width: 1px;
  height: 90px;
  background: rgba(195, 161, 95, 0.5);
}

.offer { text-align: center; }

.offer__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.offer__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.offer__text { color: rgba(247, 242, 232, 0.8); font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   L'espace
   -------------------------------------------------------------------------- */

.espace { padding: 6rem 0; background: var(--cream-light); }

.espace__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.espace__media {
  position: relative;
  border-radius: 4px;
}

.espace__media::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.espace__media img {
  border-radius: 4px;
  box-shadow: 0 24px 60px -24px rgba(20, 38, 79, 0.45);
}

/* Variante image portrait (ex. diplômes) */
.espace--trust { background: var(--cream); }
.espace--trust .espace__grid { grid-template-columns: minmax(260px, 360px) 1fr; }
.espace__media--portrait img { max-height: 520px; width: 100%; object-fit: cover; }

.espace__content p { margin-bottom: 1.1rem; font-size: 1.02rem; }

.espace__list {
  list-style: none;
  margin-top: 1.4rem;
}

.espace__list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.6rem;
}

.espace__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Section SEO local (Metz)
   -------------------------------------------------------------------------- */

.local { padding: 5.5rem 0; background: var(--cream-light); }

.local__inner { max-width: 860px; margin-inline: auto; text-align: center; }

.local__lead {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.local__areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.local__areas li {
  border: 1px solid rgba(195, 161, 95, 0.55);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4em 1.1em;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  background: #fff;
}

/* --------------------------------------------------------------------------
   Infos pratiques
   -------------------------------------------------------------------------- */

.infos { padding: 5.5rem 0 6rem; background: var(--cream); }

.infos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.info-box {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2.2rem 1.9rem;
  text-align: center;
}

.info-box__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.info-box p { font-size: 0.98rem; margin-bottom: 1.2rem; }

.hours { text-align: left; }

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55em 0;
  border-bottom: 1px dashed rgba(28, 53, 114, 0.18);
  font-size: 0.98rem;
}

.hours__row:last-child { border-bottom: none; }

.hours__row dt { color: var(--navy-ink); font-weight: 400; }
.hours__row dd { color: var(--text); }
.hours__row--closed dd { color: var(--gold-deep); font-weight: 400; }

.info-box__list {
  list-style: none;
  text-align: left;
}

.info-box__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}

.info-box__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq { max-width: 800px; margin: 4rem auto 0; }

.faq__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: 0.05em;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.8rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream-light);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  position: relative;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--navy);
  transition: color 0.2s ease;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.25s ease;
}

.faq__item[open] summary { color: var(--gold-deep); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq__answer { padding: 0 1.4rem 1.3rem; }
.faq__answer p { font-size: 1rem; color: var(--text); }
.faq__answer a { color: var(--gold-deep); font-weight: 400; }

/* --------------------------------------------------------------------------
   CTA final
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  background: url("../assets/interieur.jpeg") center 40% / cover no-repeat, var(--navy-deep);
  color: var(--cream);
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 53, 114, 0.9) 0%, rgba(15, 26, 60, 0.94) 100%);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.cta__text {
  color: rgba(247, 242, 232, 0.85);
  margin-bottom: 2.2rem;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.footer {
  background: #0d1730;
  color: rgba(247, 242, 232, 0.82);
  border-top: 3px solid var(--gold);
}

.footer__address {
  font-style: normal;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(247, 242, 232, 0.62);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer__brand .brand__lotus { color: var(--gold); width: 62px; height: 40px; margin-bottom: 0.6rem; }

.footer__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer__name span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer__tagline {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.6);
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__col p { font-size: 0.95rem; margin-bottom: 0.45rem; }

.footer__col a {
  color: rgba(247, 242, 232, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(247, 242, 232, 0.12);
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(247, 242, 232, 0.5);
}

.footer__bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer__bottom a:hover { color: #d8bc82; text-decoration: underline; }

/* --------------------------------------------------------------------------
   Page Contact
   -------------------------------------------------------------------------- */

.contact { padding: 5.5rem 0 6rem; background: var(--cream); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.contact__details { display: flex; flex-direction: column; gap: 1.4rem; }

.contact-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem 1.7rem;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-card p { font-size: 1rem; margin-bottom: 0.3rem; }

.contact-card a { color: var(--gold-deep); text-decoration: none; font-weight: 400; }
.contact-card a:hover { text-decoration: underline; }

.contact-card__phone {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-card__park {
  color: var(--gold-deep);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.contact__map {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 44px -22px rgba(20, 38, 79, 0.4);
  min-height: 440px;
}

.contact__map iframe {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 440px;
  border: 0;
}

/* --------------------------------------------------------------------------
   Animations d'apparition
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .infos__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .burger { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav.is-open { max-height: 420px; }

  .nav__link { padding: 0.9em 0; width: 100%; text-align: center; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: 1rem 0 1.4rem; }

  .intro__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .intro__media { max-width: 520px; margin-inline: auto; }
  .intro__media::after { inset: -8px 8px 8px -8px; }

  .espace__grid { grid-template-columns: 1fr; }
  .espace__media { max-width: 540px; margin-inline: auto; }
  .espace__media::after { inset: 10px -8px -8px 8px; }
  .espace__media--portrait { max-width: 340px; }

  .offers__grid { grid-template-columns: 1fr; gap: 2rem; }
  .offers__sep { width: 90px; height: 1px; margin-inline: auto; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { order: 2; }
}

@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__content { padding: 4rem 0 2.4rem; }
  .hero__eyebrow { font-size: 0.74rem; letter-spacing: 0.16em; margin-bottom: 1rem; }
  .hero__badges { position: static; }
  .hero__badges-inner { flex-direction: row; flex-wrap: wrap; gap: 0.3rem 1rem; padding: 0.85rem 0; }
  .hero-badge { font-size: 0.72rem; letter-spacing: 0.1em; }
  .hero-badge__icon { margin-right: 0.3em; }
  .topbar { font-size: 0.72rem; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .brand__name { font-size: 1.25rem; }
  .brand__sub { font-size: 0.6rem; }
}
