/* ============================================================
   AURELIA — Clinique dentaire & esthétique
   Thème « Fresh » : blanc, aqua, arrondis doux, Manrope.
   Propre, rassurant, moderne — zéro luxe doré.
   ============================================================ */

:root {
  --ivory: #f6fbfa;
  --porcelain: #ffffff;
  --ink: #163238;
  --stone: #587680;
  --gold: #159286;            /* accent aqua */
  --gold-soft: #7fd0c6;
  --forest: #0e3d40;          /* bandes vert d'eau profond */
  --forest-soft: #14555a;
  --soft: #e2f3f0;
  --hairline: #ddeae7;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(14, 80, 80, 0.09);
  --display: "Manrope", "Segoe UI", sans-serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: #fff; }

.container { width: min(1200px, 100% - 3rem); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  background: var(--soft);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.1rem;
}

.section-title { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
.section-sub { color: var(--stone); max-width: 52ch; margin-top: 0.9rem; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ---------- Boutons (pilules) ---------- */
.btn {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700;
  padding: 0.95rem 2rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  transition: all 0.25s var(--ease);
  text-align: center;
}
.btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn--solid, .btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--solid:hover, .btn--gold:hover { background: var(--forest); border-color: var(--forest); }
.btn--light { color: #fff; border-color: #fff; }
.btn--light:hover { background: #fff; color: var(--forest); }
.btn--ghost { color: var(--ink); border-color: var(--hairline); }
.btn--ghost:hover { background: var(--soft); border-color: var(--soft); color: var(--ink); }
.btn--block { display: block; width: 100%; margin-top: 0.7rem; }

.link-arrow { font-size: 0.88rem; font-weight: 700; color: var(--gold); transition: color 0.2s; }
.link-arrow::after { content: " →"; }
.link-arrow:hover { color: var(--forest); }

/* ---------- En-tête ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background 0.3s, box-shadow 0.3s; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.site-header.on-hero { color: #fff; }
.site-header.on-hero .logo, .site-header.on-hero .nav-links a { color: #fff; }
.site-header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 6px 24px rgba(14,80,80,0.07); color: var(--ink); }
.site-header.scrolled .logo, .site-header.scrolled .nav-links a { color: var(--ink); }

.logo { font-family: var(--display); font-size: 1.3rem; font-weight: 800; letter-spacing: 0.16em; text-indent: 0.16em; }
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 600; position: relative; padding: 0.35rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; border-radius: 3px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav-links a:hover::after, .nav-links a.current::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.lang-switch { display: flex; gap: 0.1rem; background: rgba(127, 208, 198, 0.18); border-radius: 999px; padding: 0.2rem; }
.lang-switch button { font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.6rem; border-radius: 999px; opacity: 0.65; transition: all 0.2s; }
.lang-switch button.active { opacity: 1; background: #fff; color: var(--gold); box-shadow: 0 2px 8px rgba(14,80,80,0.12); }
.lang-switch button:hover { opacity: 1; }

.burger { display: none; width: 30px; height: 22px; position: relative; z-index: 70; }
.burger span { position: absolute; left: 0; width: 100%; height: 2.5px; border-radius: 3px; background: currentColor; transition: all 0.3s var(--ease); }
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 65;
  background: var(--forest); color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 1.7rem; font-weight: 800; }
.mobile-menu a:hover { color: var(--gold-soft); }

/* ---------- Hero : dégradé aqua, accueillant ---------- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(14,61,64,0.92) 0%, rgba(21,146,134,0.68) 55%, rgba(21,146,134,0.25) 100%);
}
.hero .container { position: relative; z-index: 2; padding: 8rem 0 5rem; }
.hero .eyebrow { background: rgba(255,255,255,0.16); color: #fff; }

.hero__title { font-size: clamp(2.3rem, 5.4vw, 4.2rem); max-width: 18ch; }
.hero__title em { font-style: normal; color: var(--gold-soft); }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
body.loaded .hero__line > span { transform: translateY(0); }
body.loaded .hero__line:nth-child(2) > span { transition-delay: 0.12s; }

.hero__sub { margin-top: 1.5rem; max-width: 50ch; color: rgba(255,255,255,0.9); font-weight: 500; opacity: 0; transform: translateY(12px); transition: opacity 0.8s var(--ease) 0.45s, transform 0.8s var(--ease) 0.45s; }
.hero__ctas { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; transform: translateY(12px); transition: opacity 0.8s var(--ease) 0.6s, transform 0.8s var(--ease) 0.6s; }
body.loaded .hero__sub, body.loaded .hero__ctas { opacity: 1; transform: none; }
.hero__ctas .btn--gold { background: #fff; border-color: #fff; color: var(--forest); }
.hero__ctas .btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.hero__scroll { display: none; }

@media (max-height: 720px) { .hero__title { font-size: clamp(2rem, 4.4vw, 3rem); } }

/* ---------- Chiffres ---------- */
.stats { background: transparent; }
.stats .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: var(--porcelain); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  transform: translateY(-3rem);
}
.stat { text-align: center; padding-inline: 0.8rem; }
.stat__n { font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--gold); letter-spacing: -0.02em; }
.stat__l { font-size: 0.78rem; font-weight: 600; color: var(--stone); margin-top: 0.3rem; }

/* ---------- Cartes (soins) ---------- */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.prop-card {
  display: block; background: var(--porcelain);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 16px rgba(14,80,80,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prop-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--soft); }
.prop-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.prop-card:hover .prop-card__media img { transform: scale(1.04); }
.prop-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.94); color: var(--gold);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 0.42rem 0.95rem; border-radius: 999px;
}
.prop-card__body { padding: 1.4rem 1.5rem 1.7rem; }
.prop-card__commune { font-size: 0.74rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; font-style: normal; }
.prop-card__name { font-size: 1.25rem; margin-top: 0.35rem; }
.prop-card__rule { width: 40px; height: 4px; border-radius: 4px; background: var(--soft); margin: 0.85rem 0; transition: background 0.3s, width 0.3s var(--ease); }
.prop-card:hover .prop-card__rule { background: var(--gold-soft); width: 64px; }
.prop-card__specs { font-size: 0.85rem; color: var(--stone); }
.prop-card__price { font-weight: 800; font-size: 1.05rem; color: var(--gold); margin-top: 0.55rem; }

/* ---------- La clinique ---------- */
.intro { background: var(--porcelain); }
.intro .container { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.intro__media { position: relative; }
.intro__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.intro__media::after {
  content: ""; position: absolute; right: -1rem; bottom: -1rem;
  width: 45%; height: 45%;
  background: var(--soft); border-radius: var(--radius);
  z-index: -1; border: 0; inset: auto -1rem -1rem auto;
}
.intro__text p { color: var(--stone); margin-bottom: 1.4rem; max-width: 56ch; }
.intro__text .section-title { margin-bottom: 1.4rem; max-width: 22ch; }

/* ---------- Bande rendez-vous ---------- */
.cta-band { background: var(--forest); color: #fff; text-align: center; position: relative; overflow: hidden; border-radius: 0; }
.cta-band::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(127, 208, 198, 0.12);
  transform: none; left: auto; font-size: 0; line-height: 0;
}
.cta-band .container { position: relative; max-width: 720px; }
.cta-band .eyebrow { background: rgba(255,255,255,0.12); color: var(--gold-soft); }
.cta-band .section-title { color: #fff; margin-inline: auto; }
.cta-band p:not(.eyebrow) { color: rgba(255,255,255,0.75); margin: 1.1rem auto 2rem; max-width: 50ch; }
.cta-band .btn--light:hover { color: var(--forest); }

/* ---------- Témoignages ---------- */
.testimonials .prop-grid { grid-template-columns: repeat(3, 1fr); }
.tst {
  background: var(--porcelain); border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(14,80,80,0.06);
  padding: 2.2rem 2rem; display: flex; flex-direction: column; gap: 1.4rem;
}
.tst q, .tst blockquote { font-size: 1.02rem; font-weight: 500; line-height: 1.6; quotes: none; flex: 1; }
.tst cite { font-style: normal; font-size: 0.78rem; font-weight: 700; color: var(--gold); }

/* ---------- Pages intérieures ---------- */
.page-head { padding: calc(82px + clamp(2.6rem, 6vw, 4.5rem)) 0 clamp(2.2rem, 4vw, 3.2rem); }
.page-head .section-title { max-width: 24ch; }

.filters { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-bottom: 2.2rem; }
.filter-pills { display: flex; gap: 0.4rem; background: var(--porcelain); border-radius: 999px; padding: 0.35rem; box-shadow: 0 4px 16px rgba(14,80,80,0.06); }
.filter-pill { font-size: 0.82rem; font-weight: 700; padding: 0.6rem 1.4rem; border-radius: 999px; color: var(--stone); transition: all 0.2s; }
.filter-pill + .filter-pill { border-left: 0; }
.filter-pill.active { background: var(--gold); color: #fff; }
.filter-select { font-family: var(--sans); font-size: 0.85rem; color: var(--ink); background: #fff; border: 1px solid var(--hairline); border-radius: 999px; padding: 0.7rem 1.2rem; cursor: pointer; }
.listing-count { margin-left: auto; font-size: 0.8rem; font-weight: 700; color: var(--stone); }
.listing-empty { grid-column: 1 / -1; color: var(--stone); font-size: 1.1rem; padding: 3rem 0; }

/* ---------- Fiche détail ---------- */
.det-gallery {
  display: grid; grid-template-columns: 2.2fr 1fr; grid-template-rows: minmax(0, 1fr);
  gap: 0.7rem; padding: calc(82px + 1rem) 1rem 0; height: calc(82px + 62vh);
  max-width: 1400px; margin-inline: auto;
}
.det-main { display: block; width: 100%; height: 100%; overflow: hidden; border-radius: var(--radius); }
.det-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.det-main:hover img { transform: scale(1.02); }
.det-thumbs { display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 0.7rem; height: 100%; min-height: 0; }
.det-thumb { display: block; width: 100%; overflow: hidden; min-height: 0; border-radius: var(--radius); }
.det-thumb img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.25s; }
.det-thumb:hover img { opacity: 0.85; }

.det-layout { display: grid; grid-template-columns: 1.8fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); padding-block: clamp(2.6rem, 5vw, 4rem); align-items: start; }
.det-title { font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-top: 0.4rem; }
.det-price { font-weight: 800; font-size: 1.4rem; color: var(--gold); margin-top: 0.7rem; }
.det-layout .eyebrow { margin-bottom: 0; }
.det-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin: 2rem 0; border-top: 0; }
.det-spec {
  display: flex; flex-direction: column; gap: 0.15rem;
  background: var(--porcelain); border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 3px 12px rgba(14,80,80,0.05);
  border-bottom: 0;
}
.det-spec__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--stone); }
.det-spec__value { font-weight: 700; font-size: 1rem; }
.det-h2 { font-size: 1.45rem; margin: 2.2rem 0 0.9rem; }
.det-desc { color: var(--stone); max-width: 62ch; }
.det-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1.6rem; }
.det-feats li { padding-left: 1.7rem; position: relative; color: var(--stone); font-size: 0.95rem; }
.det-feats li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: auto; height: auto; background: none;
  color: var(--gold); font-weight: 800;
}

.det-aside { position: sticky; top: calc(82px + 1.2rem); }
.agent-card { background: var(--porcelain); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.2rem; text-align: center; }
.agent-card__photo { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 4px solid var(--soft); }
.agent-card__label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
.agent-card__name { font-size: 1.3rem; margin-top: 0.3rem; }
.agent-card__langs { font-size: 0.78rem; font-weight: 600; color: var(--stone); margin: 0.3rem 0 1.3rem; }
.agent-card__tel { display: block; margin-top: 1rem; font-weight: 800; font-size: 1.05rem; }
.agent-card__tel:hover { color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(10,35,38,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 86vh; object-fit: contain; border-radius: 12px; }
.lb-close, .lb-prev, .lb-next { position: absolute; color: rgba(255,255,255,0.85); font-size: 1.6rem; padding: 1rem; line-height: 1; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold-soft); }
.lb-close { top: 1.2rem; right: 1.6rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- La clinique (engagements) ---------- */
.srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.srv {
  background: var(--porcelain); border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(14,80,80,0.06);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  border: 0;
}
.srv:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.srv::before { content: ""; display: block; width: 46px; height: 6px; border-radius: 6px; background: var(--gold-soft); margin-bottom: 1.4rem; }
.srv h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.srv p { color: var(--stone); max-width: 54ch; font-size: 0.96rem; }

/* ---------- Équipe / valeurs ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.value { background: var(--porcelain); border-radius: var(--radius); box-shadow: 0 4px 16px rgba(14,80,80,0.06); padding: 1.8rem; border-top: 0; }
.value h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--gold); }
.value p { color: var(--stone); font-size: 0.92rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.member { background: var(--porcelain); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(14,80,80,0.06); padding-bottom: 1.5rem; }
.member img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; }
.member h3 { font-size: 1.2rem; margin: 1.1rem 1.4rem 0; }
.member .role { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); margin: 0.3rem 1.4rem 0; }
.member .langs { font-size: 0.8rem; color: var(--stone); margin: 0.3rem 1.4rem 0; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.form-field { margin-bottom: 1.4rem; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink); margin-bottom: 0.45rem; }
.form-field input, .form-field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem;
  background: var(--porcelain); color: var(--ink);
  border: 2px solid var(--hairline); border-radius: 14px;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.25s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; margin-top: 1.4rem; padding: 1.1rem 1.4rem; border-radius: 14px; background: var(--soft); color: var(--forest); font-weight: 600; }
.form-success.show { display: block; }

.contact-info { background: var(--porcelain); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.4rem; border: 0; }
.contact-info h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.contact-info p { color: var(--stone); margin-bottom: 1.5rem; }
.contact-info .agent-card__tel { text-align: left; margin: 0.2rem 0 1.5rem; }
.contact-info iframe { border-radius: 14px; }

/* ---------- WhatsApp ---------- */
.whatsapp-fab {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(21,146,134,0.4);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); background: var(--forest); }
.whatsapp-fab svg { width: 27px; height: 27px; fill: currentColor; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,0.78); }
.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); padding-block: clamp(3rem, 6vw, 4.5rem) 2.2rem; }
.site-footer .logo { color: #fff; font-size: 1.4rem; }
.ft-tag { margin-top: 0.9rem; font-size: 0.8rem; font-weight: 600; color: var(--gold-soft); }
.ft-col h4 { font-weight: 800; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; }
.ft-col li { margin-bottom: 0.55rem; }
.ft-col a { font-size: 0.92rem; transition: color 0.2s; }
.ft-col a:hover { color: #fff; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.14); }
.ft-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.3rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ---------- Apparitions ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal, .hero__sub, .hero__ctas { opacity: 1; transform: none; }
  .hero__line > span { transform: none; }
}

/* ---------- Adaptatif ---------- */
@media (max-width: 1024px) {
  .prop-grid, .testimonials .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .det-layout { grid-template-columns: 1fr; }
  .det-aside { position: static; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .intro .container { grid-template-columns: 1fr; }
  .srv-grid, .contact-layout { grid-template-columns: 1fr; }
  .det-gallery { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .det-main { aspect-ratio: 16 / 10; height: auto; }
  .det-thumbs { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); height: auto; }
  .det-thumb { aspect-ratio: 4 / 3; }
  .det-specs, .det-feats { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .prop-grid, .testimonials .prop-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr 1fr; transform: translateY(-2rem); }
  .site-footer .container { grid-template-columns: 1fr; }
  .filters { gap: 0.8rem; }
  .listing-count { margin-left: 0; width: 100%; }
}
