/* =====================================================
   Morizet Garden — main.css
   Mobile-first, BEM-ish, sans framework.
   ===================================================== */

/* ============ TOKENS ============ */
:root {
  --color-bg:          #050505;
  --color-bg-soft:     #0b0b0b;
  --color-panel:       #020617;
  --color-panel-2:     #0b1222;
  --color-text:        #e5e7eb;
  --color-text-soft:   #d1d5db;
  --color-muted:       #9ca3af;
  --color-white:       #f9fafb;

  --color-gold:        #d4b15f;
  --color-gold-soft:   #f0dba0;
  --color-gold-bright: #facc15;

  --color-border:      rgba(31, 41, 55, 0.9);
  --color-border-gold: rgba(212, 177, 95, 0.35);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.75);

  --container: 1120px;
  --header-h: 72px;

  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, video, iframe {
  max-width: 100%;
  display: block;
  height: auto;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--color-gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ============ ACCESSIBILITÉ ============ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-gold);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 177, 95, 0.3);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 48px; width: auto; }

.nav-links {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
  white-space: nowrap;
  color: var(--color-text);
  opacity: 0.92;
  transition: opacity 0.18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--color-gold), var(--color-gold-soft));
  transition: width 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-sep { display: none; }

/* ============ BOUTONS ============ */
.btn-main, .btn-secondary, .btn-service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, border-color 0.2s ease;
  text-align: center;
  line-height: 1.2;
}

.btn-main {
  background: radial-gradient(circle at top left, var(--color-gold-bright), var(--color-gold));
  color: #111827;
  border: 1px solid rgba(250, 204, 21, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  background: radial-gradient(circle at top left, #fde68a, var(--color-gold));
}

.btn-secondary {
  background: rgba(15, 15, 15, 0.7);
  color: var(--color-text);
  border: 1px solid rgba(229, 231, 235, 0.55);
}
.btn-secondary:hover {
  background: rgba(31, 41, 55, 0.95);
  border-color: var(--color-text);
}

.btn-call-header {
  margin-left: auto;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.btn-call-header .call-label { display: none; }
.btn-call-header .call-number { font-weight: 800; }

/* ============ BURGER ============ */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  z-index: 200;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold-soft);
  border-radius: var(--radius-pill);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.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); }

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(8px);
}
.menu-overlay.is-open { display: block; }

body.menu-open { overflow: hidden; }

/* ============ HERO ============ */
.hero {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(5, 5, 5, 0.85),
    rgba(5, 5, 5, 0.65) 50%,
    rgba(5, 5, 5, 0.45)
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 3.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold-soft), transparent);
}

.hero-title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin-bottom: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-title span { color: var(--color-gold-soft); }

.hero-sub {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 65ch;
  margin-bottom: 1.25rem;
}
.hero-sub strong { color: var(--color-white); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.badge {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 177, 95, 0.45);
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  color: var(--color-white);
  background: rgba(15, 15, 15, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-meta {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}
.hero-meta strong {
  color: var(--color-gold-soft);
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.hero-map-frame {
  margin-top: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 177, 95, 0.35);
  box-shadow: var(--shadow-md);
  background: var(--color-panel);
}
.hero-map-frame iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

/* ============ MAIN ============ */
main {
  background: radial-gradient(circle at top left, rgba(212, 177, 95, 0.03), var(--color-panel));
}

.section {
  padding: 3rem 0;
}

.section-header { max-width: 720px; margin-bottom: 2rem; }
.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 0.5rem;
}
.section h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin-bottom: 0.5rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
  font-weight: 800;
}
.section > .container > .section-header > p,
.section p.lede {
  font-size: 0.96rem;
  color: var(--color-muted);
}

/* ============ ABOUT ============ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.about-block {
  background: radial-gradient(circle at top left, rgba(212, 177, 95, 0.12), rgba(15, 23, 42, 0.96));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border-gold);
}
.about-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold-soft);
}
.about-block p { margin-bottom: 0.75rem; color: var(--color-text); }
.about-list { list-style: none; margin-top: 0.5rem; }
.about-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}
.about-list li::before {
  content: "●";
  color: var(--color-gold);
  font-size: 0.55rem;
  margin-top: 0.5rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.about-tags span {
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.about-images figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-panel);
  aspect-ratio: 4 / 3;
}
.about-images img { width: 100%; height: 100%; object-fit: cover; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 177, 95, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 177, 95, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  background: rgba(15, 23, 42, 0.9);
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 0.35rem; color: var(--color-white); }
.service-desc { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 0.9rem; }

.service-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  font-size: 0.85rem;
  padding-top: 0.5rem;
}
.service-price { color: var(--color-gold-soft); font-weight: 700; }
.service-price small { display: block; font-size: 0.78rem; font-weight: 500; color: var(--color-white); }
.service-note { color: var(--color-muted); font-size: 0.78rem; max-width: 11rem; text-align: right; }

.btn-service-cta {
  margin-top: 1.1rem;
  padding: 0.55rem 1.2rem;
  background: radial-gradient(circle at top left, var(--color-gold-bright), var(--color-gold));
  border: 1px solid rgba(250, 204, 21, 0.8);
  color: #111827;
  font-size: 0.88rem;
  align-self: flex-start;
}
.btn-service-cta:hover { transform: translateY(-2px); }

/* ============ ZONE + PROCESS ============ */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.zone-card {
  background: radial-gradient(circle at top left, rgba(212, 177, 95, 0.12), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border-gold);
}
.zone-card h3 { font-size: 1.1rem; margin-bottom: 0.55rem; color: var(--color-gold-soft); }
.zone-card p { font-size: 0.92rem; margin-bottom: 0.6rem; }

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.zone-tags span {
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.process-list { list-style: none; margin-top: 0.6rem; }
.process-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.process-step-number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 177, 95, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-gold-soft);
  font-weight: 700;
}
.process-step strong { font-size: 0.92rem; color: var(--color-text); display: block; margin-bottom: 0.15rem; }
.process-step span { font-size: 0.88rem; color: var(--color-muted); }

/* ============ GALLERIE ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-panel);
  aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}
.gallery-item span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.65);
  color: var(--color-white);
  font-size: 0.78rem;
  z-index: 1;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.contact-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--color-white); }
.contact-card > p { font-size: 0.9rem; color: var(--color-text-soft); margin-bottom: 0.9rem; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 0.82rem; color: var(--color-text-soft); }
.required { color: var(--color-gold-soft); }

input, select, textarea {
  font: inherit;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.6rem 0.8rem;
  background: rgba(15, 23, 42, 0.9);
  color: var(--color-white);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: #6b7280; }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--color-gold-soft);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.18);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-footnote { font-size: 0.78rem; color: var(--color-muted); margin-top: 0.5rem; }

.btn-submit {
  margin-top: 0.5rem;
  height: 48px;
  padding: 0 1.8rem;
  max-width: 320px;
  font-size: 0.92rem;
  border: 0;
  align-self: flex-start;
}

.contact-side {
  background: radial-gradient(circle at top left, rgba(212, 177, 95, 0.15), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border-gold);
}
.contact-side h3 { font-size: 1.08rem; margin-bottom: 0.6rem; color: var(--color-white); }
.contact-side p { font-size: 0.9rem; margin-bottom: 0.9rem; }
.contact-cta-list { list-style: none; margin-bottom: 1.1rem; font-size: 0.92rem; }
.contact-cta-list li { margin-bottom: 0.4rem; }

.contact-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.contact-badges span {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(209, 213, 219, 0.6);
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  background: rgba(15, 23, 42, 0.8);
}

/* ============ FAQ ============ */
.faq details {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  margin-bottom: 0.7rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-white);
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold-soft);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { margin-top: 0.6rem; color: var(--color-text-soft); }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-panel);
  color: var(--color-muted);
  margin-top: 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  font-size: 0.85rem;
}
.footer-col a { color: var(--color-text); }
.footer-col a:hover { color: var(--color-gold-soft); }
.footer-bottom { color: var(--color-muted); padding-top: 0.5rem; border-top: 1px solid var(--color-border); }

/* ============ FLOATING CALL ============ */
.call-floating {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
}
.call-floating a {
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: radial-gradient(circle at top left, var(--color-gold-bright), var(--color-gold));
  color: #111827;
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid rgba(250, 204, 21, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* ============ TOAST ============ */
.form-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(250, 204, 21, 0.7);
  background: rgba(15, 23, 42, 0.98);
  color: var(--color-text);
  max-width: calc(100% - 2rem);
  text-align: center;
}
.form-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.form-toast.success {
  background: radial-gradient(circle at top left, var(--color-gold-bright), var(--color-gold));
  color: #111827;
}
.form-toast.error {
  background: #7f1d1d;
  border-color: #fecaca;
  color: #fff;
}

/* ============ PAGE STATIC (mentions, 404) ============ */
.static-page {
  padding: 3rem 0;
  max-width: 760px;
}
.static-page h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 800;
}
.static-page h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--color-gold-soft);
}
.static-page p, .static-page li { color: var(--color-text-soft); margin-bottom: 0.6rem; }
.static-page ul { margin-left: 1.25rem; margin-bottom: 1rem; }
.static-page a { color: var(--color-gold-soft); text-decoration: underline; }

/* ====================================================
   MEDIA QUERIES — Tablet et Desktop
   ==================================================== */

@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.25rem; }
}

@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  .hero-inner { padding: 4.5rem 0 5rem; }
  .hero-map-frame iframe { height: 240px; }
}

@media (min-width: 960px) {
  .burger { display: none; }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 1.05rem;
    max-width: 660px;
    font-size: 0.9rem;
  }
  .nav-sep {
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--color-border-gold);
  }
  .btn-call-header { margin-left: 1rem; }
  .btn-call-header .call-label { display: inline; }

  .hero-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    padding: 5rem 0 5.5rem;
  }
  .about-layout { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .zone-grid { grid-template-columns: 1.05fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 2fr; }
  .footer-bottom { grid-column: 1 / -1; }
  .hero-map-frame iframe { height: 280px; }

  .call-floating { display: none; }
}

@media (min-width: 1200px) {
  :root { --header-h: 80px; }
  .hero-title { font-size: clamp(34px, 3.4vw, 48px); }
}

/* ====================================================
   MOBILE NAV OVERLAY (< 960px)
   ==================================================== */
@media (max-width: 959px) {
  /* Le backdrop-filter du header crée un bloc de référence qui piégerait
     le menu position:fixed dans la hauteur du header. On le retire sur mobile
     pour que le menu plein écran se positionne par rapport au viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(5, 5, 5, 0.97);
  }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 95;
    padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    overflow-y: auto;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: 1.2rem; width: 100%; padding: 0.25rem 0; }
  .nav-sep {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-border-gold);
    margin: 0.4rem 0;
  }
}

/* ====================================================
   PRINT (basique, propre)
   ==================================================== */
@media print {
  .site-header, .nav-links, .burger, .call-floating, .btn-main, .btn-secondary, iframe { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
