/* ============================================================
   HESPER — Atelier d'architecture
   Thème « Mono » : blanc, noir, Space Grotesk, zéro arrondi.
   Portfolio brut : les images en noir & blanc prennent la
   couleur au survol.
   ============================================================ */

:root {
  --ivory: #ffffff;
  --porcelain: #ffffff;
  --ink: #111111;
  --stone: #6b6b6b;
  --gold: #e8501a;            /* accent signal, utilisé avec parcimonie */
  --gold-soft: #e8501a;
  --forest: #111111;          /* bandes noires */
  --forest-soft: #1e1e1e;
  --hairline: #111111;
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --sans: "Space Grotesk", "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: 16px;
  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(1280px, 100% - 3rem); margin-inline: auto; }

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

.eyebrow {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: "— "; color: var(--gold); }

.section-title { font-size: clamp(1.9rem, 4.2vw, 3.2rem); text-transform: uppercase; }
.section-sub { color: var(--stone); max-width: 50ch; margin-top: 0.9rem; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { margin-bottom: clamp(2rem, 4.5vw, 3.6rem); }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--ink);
  transition: all 0.2s var(--ease);
  text-align: center;
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--solid, .btn--gold { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--solid:hover, .btn--gold:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--light { color: #fff; border-color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--ghost { color: var(--ink); }
.btn--block { display: block; width: 100%; margin-top: 0.7rem; }

.link-arrow { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 0.3rem; transition: color 0.2s, border-color 0.2s; }
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- 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: 78px; }
.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.97); box-shadow: 0 1px 0 rgba(17,17,17,0.9); 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; letter-spacing: 0.3em; text-indent: 0.3em; font-weight: 700; text-transform: uppercase; }
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; position: relative; padding-bottom: 0.3rem; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width 0.25s var(--ease); }
.nav-links a:hover::after, .nav-links a.current::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.lang-switch { display: flex; gap: 0.15rem; align-items: center; }
.lang-switch button { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; padding: 0.3rem 0.45rem; opacity: 0.5; transition: opacity 0.2s; }
.lang-switch button.active { opacity: 1; border-bottom: 2px solid var(--gold); }
.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: 2px; 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(--ink); 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.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Hero : N&B, typographie brute ---------- */
.hero { position: relative; min-height: 96svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(100%) contrast(1.05); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.25) 55%, rgba(10,10,10,0.35) 100%); }
.hero .container { position: relative; z-index: 2; padding-bottom: clamp(3.5rem, 8vh, 6rem); }
.hero .eyebrow { color: rgba(255,255,255,0.8); }

.hero__title { font-size: clamp(2.6rem, 7vw, 5.8rem); text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.98; max-width: 14ch; font-weight: 600; }
.hero__title em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px #fff; }
.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.1s; }

.hero__sub { margin-top: 1.6rem; max-width: 52ch; color: rgba(255,255,255,0.85); 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(--ink); }
.hero__ctas .btn--gold:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.hero__scroll { position: absolute; right: 2.2rem; bottom: 2.2rem; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.7); writing-mode: vertical-rl; }
.hero__scroll::after { content: ""; width: 1px; height: 56px; background: #fff; }

@media (max-height: 720px) { .hero__title { font-size: clamp(2.2rem, 5.4vw, 3.6rem); } }

/* ---------- Chiffres ---------- */
.stats { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: clamp(2rem, 4vw, 3rem); }
.stat { padding-inline: 1.4rem; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: var(--ink); }
.stat__n { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 600; letter-spacing: -0.03em; }
.stat__l { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-top: 0.3rem; }

/* ---------- Cartes (projets) : N&B → couleur ---------- */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.prop-card { display: block; border: 1px solid var(--ink); background: #fff; transition: box-shadow 0.2s; }
.prop-card:hover { box-shadow: 6px 6px 0 var(--ink); }
.prop-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #eee; border-bottom: 1px solid var(--ink); }
.prop-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.45s var(--ease), transform 0.7s var(--ease); }
.prop-card:hover .prop-card__media img { filter: grayscale(0%); transform: scale(1.03); }
.prop-card__badge { position: absolute; top: 0; left: 0; background: #fff; color: var(--ink); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.5rem 0.9rem; }
.prop-card__body { padding: 1.3rem 1.4rem 1.5rem; }
.prop-card__commune { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); font-style: normal; }
.prop-card__name { font-size: 1.3rem; font-weight: 600; margin-top: 0.35rem; }
.prop-card__rule { width: 100%; height: 1px; background: var(--ink); margin: 0.9rem 0; }
.prop-card__specs { font-size: 0.8rem; color: var(--stone); }
.prop-card__price { font-size: 1rem; font-weight: 600; color: var(--gold); margin-top: 0.5rem; }

/* ---------- L'atelier ---------- */
.intro { border-block: 1px solid var(--ink); }
.intro .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.intro__media { position: relative; border: 1px solid var(--ink); }
.intro__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(100%); transition: filter 0.5s; }
.intro__media:hover img { filter: grayscale(0%); }
.intro__media::after { display: none; }
.intro__text p { color: var(--stone); margin-bottom: 1.4rem; max-width: 56ch; }
.intro__text .section-title { margin-bottom: 1.4rem; max-width: 20ch; }

/* ---------- Bande projet (noire) ---------- */
.cta-band { background: var(--ink); color: #fff; text-align: left; position: relative; overflow: hidden; }
.cta-band::before { display: none; }
.cta-band .container { position: relative; max-width: none; }
.cta-band .eyebrow { color: rgba(255,255,255,0.75); }
.cta-band .section-title { color: #fff; max-width: 20ch; }
.cta-band p:not(.eyebrow) { color: rgba(255,255,255,0.65); margin: 1.1rem 0 2rem; max-width: 52ch; }

/* ---------- Témoignages ---------- */
.testimonials .prop-grid { grid-template-columns: repeat(3, 1fr); }
.tst { border: 1px solid var(--ink); padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1.4rem; background: #fff; }
.tst q, .tst blockquote { font-size: 1.05rem; font-weight: 400; line-height: 1.55; quotes: none; flex: 1; }
.tst cite { font-style: normal; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ---------- Pages intérieures ---------- */
.page-head { padding: calc(78px + clamp(2.6rem, 6vw, 4.5rem)) 0 clamp(2.2rem, 4vw, 3rem); border-bottom: 1px solid var(--ink); margin-bottom: 2.4rem; }
.page-head .section-title { max-width: 22ch; }

.filters { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; padding-bottom: 2.2rem; }
.filter-pills { display: flex; border: 1px solid var(--ink); }
.filter-pill { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.75rem 1.5rem; color: var(--ink); transition: all 0.15s; }
.filter-pill + .filter-pill { border-left: 1px solid var(--ink); }
.filter-pill.active { background: var(--ink); color: #fff; }
.filter-select { font-family: var(--sans); font-size: 0.8rem; color: var(--ink); background: #fff; border: 1px solid var(--ink); padding: 0.72rem 1rem; cursor: pointer; }
.listing-count { margin-left: auto; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.listing-empty { grid-column: 1 / -1; color: var(--stone); font-size: 1.2rem; padding: 3rem 0; }

/* ---------- Fiche projet ---------- */
.det-gallery { display: grid; grid-template-columns: 2.2fr 1fr; grid-template-rows: minmax(0, 1fr); gap: 0.4rem; padding-top: 78px; height: calc(78px + 64vh); }
.det-main { display: block; width: 100%; height: 100%; overflow: hidden; }
.det-main img { width: 100%; height: 100%; object-fit: cover; }
.det-thumbs { display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 0.4rem; height: 100%; min-height: 0; }
.det-thumb { display: block; width: 100%; overflow: hidden; min-height: 0; }
.det-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.35s; }
.det-thumb:hover img { filter: grayscale(0%); }

.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.9rem, 4vw, 3rem); text-transform: uppercase; margin-top: 0.3rem; }
.det-price { font-size: 1.2rem; font-weight: 600; color: var(--gold); margin-top: 0.7rem; }
.det-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2rem; margin: 2rem 0; border-top: 1px solid var(--ink); }
.det-spec { display: flex; justify-content: space-between; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--ink); }
.det-spec__label { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); align-self: center; }
.det-spec__value { font-size: 0.95rem; font-weight: 600; text-align: right; }
.det-h2 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.04em; margin: 2.2rem 0 0.9rem; }
.det-desc { color: var(--stone); max-width: 64ch; }
.det-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 2rem; }
.det-feats li { padding-left: 1.3rem; position: relative; color: var(--stone); font-size: 0.93rem; }
.det-feats li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 12px; height: 1px; background: var(--ink); }

.det-aside { position: sticky; top: calc(78px + 1.2rem); }
.agent-card { border: 1px solid var(--ink); padding: 2rem; text-align: center; background: #fff; }
.agent-card__photo { width: 88px; height: 88px; border-radius: 0; object-fit: cover; margin: 0 auto 1rem; filter: grayscale(100%); }
.agent-card__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.agent-card__name { font-size: 1.25rem; font-weight: 600; margin-top: 0.3rem; }
.agent-card__langs { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--stone); margin: 0.3rem 0 1.3rem; }
.agent-card__tel { display: block; margin-top: 1rem; font-size: 1rem; font-weight: 600; }
.agent-card__tel:hover { color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(10,10,10,0.96); 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: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close, .lb-prev, .lb-next { position: absolute; color: #fff; font-size: 1.6rem; padding: 1rem; line-height: 1; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.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%); }

/* ---------- Missions ---------- */
.srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.srv { border: 1px solid var(--ink); padding: clamp(1.8rem, 3.5vw, 2.6rem); transition: box-shadow 0.2s; background: #fff; }
.srv:hover { box-shadow: 6px 6px 0 var(--ink); }
.srv::before { content: ""; display: block; width: 34px; height: 1px; background: var(--gold); margin-bottom: 1.4rem; }
.srv h3 { font-size: 1.3rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.8rem; }
.srv p { color: var(--stone); max-width: 54ch; font-size: 0.94rem; }

/* ---------- L'atelier / équipe ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.value { border: 1px solid var(--ink); border-top: 4px solid var(--ink); padding: 1.6rem; }
.value h3 { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.value p { color: var(--stone); font-size: 0.9rem; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.member { border: 1px solid var(--ink); padding-bottom: 1.4rem; background: #fff; }
.member img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s; border-bottom: 1px solid var(--ink); }
.member:hover img { filter: grayscale(0%); }
.member h3 { font-size: 1.15rem; font-weight: 600; margin: 1.1rem 1.3rem 0; }
.member .role { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0.3rem 1.3rem 0; }
.member .langs { font-size: 0.78rem; color: var(--stone); margin: 0.3rem 1.3rem 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.5rem; }
.form-field label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.45rem; }
.form-field input, .form-field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.97rem;
  background: #fff; color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.8rem 1rem;
  transition: box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; box-shadow: 3px 3px 0 var(--ink); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; margin-top: 1.4rem; padding: 1.1rem 1.3rem; border: 1px solid var(--ink); box-shadow: 4px 4px 0 var(--gold); font-weight: 500; }
.form-success.show { display: block; }

.contact-info { border: 1px solid var(--ink); padding: 2.2rem; background: #fff; }
.contact-info h3 { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; 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 { filter: grayscale(1) !important; }

/* ---------- WhatsApp ---------- */
.whatsapp-fab { position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 55; width: 52px; height: 52px; border-radius: 0; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 4px 4px 0 rgba(17,17,17,0.25); transition: background 0.2s; }
.whatsapp-fab:hover { background: var(--gold); }
.whatsapp-fab svg { width: 25px; height: 25px; fill: currentColor; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); }
.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.35rem; }
.ft-tag { margin-top: 0.9rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ft-col h4 { font-weight: 600; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.1rem; }
.ft-col li { margin-bottom: 0.55rem; }
.ft-col a { font-size: 0.9rem; transition: color 0.2s; }
.ft-col a:hover { color: var(--gold); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.16); }
.ft-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.3rem; font-size: 0.76rem; color: rgba(255,255,255,0.4); }

/* ---------- Apparitions ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@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.6rem 0; }
  .stat:nth-child(3)::before { display: none; }
}
@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; }
  .hero__scroll { display: none; }
}
@media (max-width: 620px) {
  .prop-grid, .testimonials .prop-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
  .filters { gap: 0.8rem; }
  .listing-count { margin-left: 0; width: 100%; }
}
