/* ══════════════════════════════════════════
   PRESTIGE CARRELAGE & FINITION
   Feuille de style principale
   ══════════════════════════════════════════ */

/* ── Variables ────────────────────────────── */
:root {
  --accent:       #274C6B;
  --accent-dark:  #1e3a52;
  --gray:         #6E7278;
  --dark:         #23384D;
  --beige:        #B8ADA1;
  --beige-light:  #ede8e3;
  --beige-xlight: #f5f2ef;

  --bg-white:     #FFFFFF;
  --bg-warm:      #F7F4F1;

  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:    920px;
  --gutter:       2rem;

  --radius:       4px;
  --radius-lg:    10px;

  --shadow-sm:    0 1px 4px rgba(35, 56, 77, 0.05),
                  0 1px 2px rgba(35, 56, 77, 0.04);
  --shadow-md:    0 4px 20px rgba(35, 56, 77, 0.07),
                  0 2px 6px rgba(35, 56, 77, 0.04);
  --shadow-lg:    0 10px 40px rgba(35, 56, 77, 0.1);

  --transition:   0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background-color: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ── Container ────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #EEE9E2;
  border-bottom: 1px solid rgba(184, 173, 161, 0.45);
}

/* Pleine largeur : logo flush gauche, nav flush droite */
.site-header .container {
  max-width: none;
  padding-left: clamp(1rem, 2.5vw, 2rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.logo-text-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ── Badge 40 ans dans le header ─────────── */
.header-badge {
  /* Sortir du flux flex pour centrage absolu dans le header */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Style */
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(184, 173, 161, 0.6);
  border-radius: 100px;
  background: rgba(184, 173, 161, 0.1);
  white-space: nowrap;
  pointer-events: none; /* ne perturbe pas les clics sur logo / nav */
}

.header-badge-number {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.header-badge-label {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gray);
  line-height: 1;
}

/* ── Navigation ───────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.6rem;
  right: 0.6rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
}

.nav-link--active {
  color: var(--accent);
}

/* Lien Contact — mis en valeur */
.nav-link--cta {
  margin-left: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Bouton hamburger (mobile) ────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(35, 56, 77, 0.06);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 4rem 0 5rem;
  text-align: center;
  background-color: var(--bg-white);
  overflow: hidden;
}

/* Motif quadrillage très subtil évoquant le carrelage */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 173, 161, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 173, 161, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Masque radial : le motif s'estompe vers les bords */
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  animation: fadeUp 0.75s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Badge 40 ans ─────────────────────────── */
.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.25rem 0.55rem 1rem;
  border: 1px solid var(--beige);
  border-radius: 100px;
  background: rgba(184, 173, 161, 0.09);
  animation: fadeUp 0.75s ease 0.1s both;
}

.experience-number {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.experience-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gray);
  line-height: 1;
  white-space: nowrap;
}

/* ── Logo hero ────────────────────────────── */
.hero-logo {
  animation: fadeUp 0.75s ease 0.15s both;
}

.hero-logo-img {
  height: 210px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  margin: 0 auto;
}

/* ── Nom de l'entreprise ──────────────────── */
.company-name {
  animation: fadeUp 0.75s ease 0.2s both;
}

.company-name-prestige {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.company-name-rest {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 400;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 0.2rem;
}

/* ── Tagline ──────────────────────────────── */
.company-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  animation: fadeUp 0.75s ease 0.25s both;
}

/* ── Séparateur ornemental ────────────────── */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 300px;
  animation: fadeUp 0.75s ease 0.3s both;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--beige) 30%,
    var(--beige) 70%,
    transparent
  );
}

.divider-ornament {
  display: flex;
  gap: 3px;
  align-items: center;
  flex-shrink: 0;
}

.divider-ornament span {
  width: 5px;
  height: 5px;
  background: var(--beige);
  transform: rotate(45deg);
}

.divider-ornament span:nth-child(2) {
  background: var(--accent);
  opacity: 0.5;
}

/* ── Message site en développement ───────── */
.coming-soon {
  max-width: 540px;
  animation: fadeUp 0.75s ease 0.35s both;
}

.coming-soon-main {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.coming-soon-sub {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── CTA hero ─────────────────────────────── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
  animation: fadeUp 0.75s ease 0.4s both;
}


/* ══════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition),
              color var(--transition),
              box-shadow var(--transition),
              transform var(--transition),
              border-color var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(39, 76, 107, 0.22);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 18px rgba(39, 76, 107, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(39, 76, 107, 0.05);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
}


/* ══════════════════════════════════════════
   SECTIONS — STRUCTURE COMMUNE
   ══════════════════════════════════════════ */

.section-warm {
  padding: 5.5rem 0;
  background: var(--bg-warm);
}

.section-white {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

/* La phrase des prestations est longue — on laisse l'espace nécessaire */
.services .section-subtitle {
  max-width: none;
}

/* Contact : sous-titre sur une ligne */
.contact-subtitle {
  max-width: none;
}

/* ── Zone d'intervention ──────────────────── */

.zones-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

/* Icône géographique */
.zones-icon {
  width: 72px;
  height: 72px;
  opacity: 0.9;
}

.zones-icon svg {
  width: 100%;
  height: 100%;
}

/* Réduction du margin-bottom du section-header dans ce contexte */
.zones-header {
  margin-bottom: 0;
}

/* Sous-titre : une seule phrase, pas de contrainte de largeur */
.zones-subtitle {
  max-width: none;
}

/* Badges */
.zones-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.zones-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(184, 173, 161, 0.5);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark);
  background: rgba(184, 173, 161, 0.07);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.zones-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   PRESTATIONS
   ══════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 1.75rem;
  background: var(--bg-white);
  border: 1px solid rgba(184, 173, 161, 0.35);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition),
              box-shadow var(--transition),
              transform var(--transition);
}

.service-item:hover {
  border-color: rgba(39, 76, 107, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.3;
}


/* ══════════════════════════════════════════
   ZONES D'INTERVENTION
   ══════════════════════════════════════════ */

.zones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(184, 173, 161, 0.55);
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--dark);
  background: rgba(184, 173, 161, 0.07);
  letter-spacing: 0.02em;
  transition: border-color var(--transition),
              color var(--transition),
              background var(--transition);
}

.zone-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(39, 76, 107, 0.04);
}

.zone-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--beige);
  flex-shrink: 0;
  transition: background var(--transition);
}

.zone-tag:hover .zone-dot {
  background: var(--accent);
}


/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ── Carte générique ──────────────────────── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.6rem;
  background: var(--bg-white);
  border: 1px solid rgba(184, 173, 161, 0.3);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition),
              border-color var(--transition),
              transform var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 173, 161, 0.6);
  transform: translateY(-2px);
}

/* ── Carte adresse — pleine largeur ──────── */
.contact-card--wide {
  grid-column: span 2;
}

/* ── Carte téléphone principal ────────────── */
.contact-card--featured {
  grid-column: span 2;
  background: var(--accent);
  border-color: var(--accent);
  align-items: center;
}

.contact-card--featured:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(39, 76, 107, 0.3);
}

.contact-card--featured .contact-card-icon {
  color: rgba(255, 255, 255, 0.7);
  width: 28px;
  height: 28px;
}

.contact-card--featured .contact-card-label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-card--featured .contact-card-value {
  color: #ffffff;
}

.contact-card--featured .contact-card-value:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Éléments internes ────────────────────── */
.contact-card-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-card-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.contact-card-value {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.45;
  transition: color var(--transition);
}

a.contact-card-value:hover {
  color: var(--accent);
}

/* Téléphone principal — grand format */
.contact-card-value--large {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* E-mail — word-break pour petits écrans */
.contact-card-value--email {
  word-break: break-all;
}

/* ── CTA contact ──────────────────────────── */
.contact-cta {
  text-align: center;
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 1.75rem 0 1.25rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.footer-address {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.footer-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--beige);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: #fff;
}

.footer-aside {
  display: flex;
  align-items: flex-start;
  padding-top: 0.1rem;
}

.footer-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.footer-bottom {
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.25);
}


/* ══════════════════════════════════════════
   ANIMATIONS — ENTRÉE AU DÉFILEMENT
   ══════════════════════════════════════════ */

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais en cascade pour les grilles */
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.10s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.20s; }
.reveal-delay-5 { transition-delay: 0.25s; }


/* ══════════════════════════════════════════
   RESPONSIVE — TABLETTE
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --gutter: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════════ */

@media (max-width: 600px) {
  :root {
    --gutter: 1.25rem;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-content {
    gap: 1.3rem;
  }

  .hero-logo-img {
    height: 160px;
    max-width: 320px;
  }

  /* Services : 2 colonnes, dernier centré */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:last-child {
    grid-column: span 2;
  }

  /* Grille contact : 1 colonne */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card--featured,
  .contact-card--wide {
    grid-column: auto;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
  }

  .section-warm,
  .section-white {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — TRÈS PETIT MOBILE
   ══════════════════════════════════════════ */

@media (max-width: 420px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item:last-child {
    grid-column: auto;
  }

  .logo-img {
    height: 56px;
  }
}


/* ══════════════════════════════════════════
   ACCESSIBILITÉ — FOCUS VISIBLE
   ══════════════════════════════════════════ */

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

/* Masquer les focus pour les utilisateurs à la souris */
:focus:not(:focus-visible) {
  outline: none;
}

/* Masquage visuel accessible (preserves SEO + screen readers) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ══════════════════════════════════════════
   NAVIGATION MOBILE
   ══════════════════════════════════════════ */

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  /* Masquer le badge entre logo et nav sur mobile — pas assez de place */
  .header-badge {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #EEE9E2;
    border-bottom: 1px solid rgba(184, 173, 161, 0.45);
    padding: 0.5rem var(--gutter) 1rem;
    z-index: 99;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(184, 173, 161, 0.25);
  }

  .nav-list li:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 0.84rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link--cta {
    display: inline-block;
    margin-left: 0;
    text-align: center;
  }
}


/* ══════════════════════════════════════════
   PAGE PLACEHOLDER (Réalisations, À propos…)
   ══════════════════════════════════════════ */

.page-placeholder {
  min-height: calc(100vh - 88px - 120px);
  display: flex;
  align-items: center;
  background: var(--bg-white);
}

.page-placeholder-inner {
  text-align: center;
  padding: 5rem 0;
}

.page-placeholder-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 1rem;
}

.page-placeholder-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.page-placeholder-text {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* Corps de texte enrichi pour À propos */
.page-placeholder-body {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page-placeholder-body p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.85;
  text-align: center;
}

.page-placeholder-note {
  font-size: 0.78rem !important;
  color: var(--gray) !important;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 173, 161, 0.4);
}

.page-placeholder-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 200px;
  margin: 1.5rem auto 2.5rem;
}

.page-placeholder-divider span:first-child,
.page-placeholder-divider span:last-child {
  flex: 1;
  height: 1px;
  background: var(--beige);
}

.page-placeholder-divider span:nth-child(2) {
  width: 5px;
  height: 5px;
  background: var(--beige);
  transform: rotate(45deg);
  flex-shrink: 0;
}
