/* =============================================
   PHONELAND DUNKERQUE — Charte graphique fidèle
   Palette : anthracite #2e2e2e · rouge #d32f2f · blanc
   ============================================= */

:root {
  --grey-dark:   #17151A; /* Encre */
  --grey-mid:    #2e2a33;
  --grey-light:  #FAF7F3; /* Papier */
  --grey-border: #e2dfdb; /* Warm paper-like border */
  --red:         #E11D2A; /* Rouge Phoneland */
  --red-light:   #ff404c;
  --red-dark:    #8A1318; /* Rouge profond */
  --red-glow:    rgba(225, 29, 42, 0.22);
  --white:       #ffffff;
  --ink:         #17151A; /* Encre */
  --muted:       #8C8A92; /* Gris neutre */
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 12px rgba(23,21,26,.04);
  --shadow-md:   0 12px 36px rgba(23,21,26,.08);
  --shadow-lg:   0 32px 64px rgba(23,21,26,.12);
  --font-body:   "Fraunces", Georgia, serif;
  --font-display:"Unbounded", system-ui, sans-serif;
  --font-mono:   "Space Mono", monospace;
  --transition:  .28s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--grey-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(225,29,42,.12); }

.container {
  width: min(1180px, 94vw);
  margin-inline: auto;
}

/* ─── Header ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(23, 21, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--red);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1.5rem;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-transform: uppercase;
}
.logo-txt {
  color: var(--white);
}
.logo-ring {
  height: 0.82em;
  width: 0.82em;
  flex-shrink: 0;
  vertical-align: middle;
  margin: 0 0.04em;
}
.logo-ring .ring-body {
  stroke: var(--white);
}
.logo-ring .ring-segment {
  stroke: var(--red);
}
.logo:hover { text-decoration: none; opacity: .9; }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0.15rem;
  margin: -0.35rem -0.15rem;
  border-radius: 8px;
  transition: background 0.25s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.42s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.28s ease,
    width 0.28s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(9.25px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-9.25px) rotate(-45deg);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-list a {
  color: rgba(255,255,255,.82);
  font-weight: 500;
  font-size: .93rem;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .3rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red-light);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-list a:hover { color: var(--white); text-decoration: none; }
.nav-list a:hover::after { width: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.45rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-call {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px var(--red-glow);
  font-size: .78rem;
}
.btn-call:hover { background: var(--red-dark); box-shadow: 0 8px 24px var(--red-glow); color: var(--white); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); box-shadow: 0 8px 28px var(--red-glow); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--grey-border);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); background: rgba(225,29,42,.05); }

.btn-block { width: 100%; justify-content: center; padding: .85rem 1.5rem; font-size: .88rem; border-radius: var(--radius); }

.btn-facebook {
  background: #1877f2;
  color: var(--white);
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
}
.btn-facebook:hover { background: #1564c0; color: var(--white); }

.btn-hero-primary {
  background: var(--white);
  color: var(--grey-dark);
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(23,21,26,.15);
  padding: .9rem 1.85rem;
  font-size: .85rem;
  border-radius: var(--radius);
}
.btn-hero-primary:hover { background: #fcfcfc; color: var(--grey-dark); box-shadow: 0 12px 40px rgba(23,21,26,.25); }

.btn-hero-outline {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  padding: .9rem 1.85rem;
  font-size: .85rem;
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.65); color: var(--white); }

/* ─── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(88vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.45) saturate(.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,20,22,.88) 0%,
    rgba(20,20,22,.65) 52%,
    rgba(180,22,22,.22) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 5rem 0 4.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
}

.hero-kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
  padding: .35rem .8rem;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,.06);
  border-radius: 0 4px 4px 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-title-red { color: var(--red-light); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 36ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero info card */
.hero-info-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.info-card-row {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.info-card-row svg { flex-shrink: 0; margin-top: .12rem; color: var(--red-light); }
.info-card-row:last-of-type { border-bottom: none; }
.info-card-cta {
  display: block;
  margin-top: 1.1rem;
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  background: var(--red);
  padding: .65rem;
  border-radius: var(--radius);
  letter-spacing: .04em;
  box-shadow: 0 4px 16px var(--red-glow);
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
}
.info-card-cta:hover { background: var(--red-dark); box-shadow: 0 8px 28px var(--red-glow); text-decoration: none; }

/* ─── Stats bar ───────────────────────────── */
.stats-bar {
  background: var(--grey-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .4rem 2rem;
  text-align: center;
}
.stat strong {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat span {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

/* ─── Sections / helpers ──────────────────── */
section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: .4rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: .4rem;
}
.section-title .red { color: var(--red); }
.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 52ch;
  margin: .5rem auto 0;
  line-height: 1.65;
}

/* ─── Services ────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.service-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--grey-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(211,47,47,.25);
}
.service-card:hover::before { opacity: 1; }

.service-card--accent {
  background: var(--grey-dark);
  border-color: var(--red);
  color: var(--white);
}
.service-card--accent::before { opacity: 1; }
.service-card--accent h3 { color: var(--white); }
.service-card--accent p { color: rgba(255,255,255,.72); }
.service-card--accent .service-num { color: rgba(255,255,255,.18); }
.service-card--accent .service-tags span {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.15);
}

.service-card--main-specialty {
  background: var(--white);
  border: 2px solid var(--red);
  box-shadow: var(--shadow-md);
}
.service-card--main-specialty::before {
  opacity: 1;
  height: 5px;
}
.service-card--main-specialty .service-num {
  color: rgba(225, 29, 42, 0.06);
}
.service-card--main-specialty:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,0,0,.05);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
  letter-spacing: .02em;
  user-select: none;
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(145deg, var(--grey-dark), #1a1a1d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.service-icon svg { width: 26px; height: 26px; color: var(--white); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: .45rem;
}
.service-card p { font-size: .95rem; color: var(--muted); line-height: 1.6; margin-bottom: .9rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.service-tags span {
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(23, 21, 26, 0.04);
  border: 1px solid rgba(23, 21, 26, 0.1);
  padding: .2rem .55rem;
  border-radius: 4px;
}

/* ─── About ───────────────────────────────── */
.about-section {
  background: var(--grey-dark);
  color: var(--white);
  overflow: hidden;
}
.about-section .section-title { color: var(--white); }
.about-section .eyebrow { color: #ef9a9a; }

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-visual-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  background: var(--grey-mid);
}
.about-visual-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-visual-wrap:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--red);
  color: var(--white);
  padding: .65rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(23,21,26,.2);
}
.about-badge strong { display: block; font-size: .95rem; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; }
.about-badge span { font-family: var(--font-mono); font-size: .68rem; opacity: .85; text-transform: uppercase; letter-spacing: .05em; display: block; margin-top: .15rem; }

.about-text p { color: rgba(255,255,255,.72); margin-bottom: 1rem; font-size: 1.01rem; line-height: 1.7; }
.about-checklist { list-style: none; margin: 1.5rem 0 2rem; }
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .98rem;
  color: rgba(255,255,255,.88);
}
.about-checklist li:last-child { border-bottom: none; }
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  margin-top: .1rem;
}
.about-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Bouton Facebook sur fond sombre (lisible, pas le gris « secondary ») */
.about-section #facebook-link-about {
  color: #fff;
  background: linear-gradient(180deg, #3b8cff 0%, #1877f2 55%, #166fe5 100%);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.45);
}
.about-section #facebook-link-about:hover {
  color: #fff;
  background: linear-gradient(180deg, #5aa0ff 0%, #2895ff 100%);
  border-color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(24, 119, 242, 0.55);
  transform: translateY(-2px);
}

/* ─── Gallery ─────────────────────────────── */
.gallery-section { background: var(--grey-light); }
.gallery-section .section-title { color: var(--ink); }
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}
@media (min-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grey-border);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item:first-child { aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.33,1,.68,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, transparent 50%, rgba(0,0,0,.4) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ─── Contact ─────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: stretch;
  }
}

.contact-card {
  background: var(--grey-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 1.85rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.contact-card-title svg { color: var(--red-light); }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(225,29,42,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--red-light); }
.contact-item-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.4);
  margin-bottom: .25rem;
}
.contact-item-value {
  font-family: var(--font-mono);
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}
a.contact-item-value:hover { color: #ff9da4; text-decoration: none; }

.contact-social { margin-top: 1.5rem; }
.contact-cta-big { margin-top: .85rem; }

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 240px;
  max-height: 280px;
  background: var(--grey-border);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
}
.map-wrap iframe {
  width: 100%;
  height: 260px;
  min-height: 240px;
  border: 0;
  display: block;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* ─── Footer ──────────────────────────────── */
.site-footer {
  background: var(--grey-dark);
  color: rgba(255,255,255,.65);
  border-top: 3px solid var(--red);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 1.5rem;
}
@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem 3rem; align-items: start; }
}
.footer-brand p {
  margin-top: .75rem;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding-top: .25rem;
}
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-contact { padding-top: .25rem; }
.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.footer-phone:hover { color: #ef9a9a; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.1rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom p { margin: 0; }

/* ─── Mobile nav ──────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 11px 8px;
    margin: -11px -8px;
    border-radius: 10px;
  }
  .nav-toggle span {
    height: 3.5px;
    border-radius: 3px;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(9.25px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-9.25px) rotate(-45deg);
  }

  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    z-index: 199;
    background: var(--grey-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: 0 1.5rem;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.32s ease,
      transform 0.42s cubic-bezier(0.34, 1.1, 0.64, 1),
      visibility 0.45s,
      padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.35s ease;
  }
  .nav.is-open {
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 100%);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    padding: 1.35rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .nav-list li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.1, 0.64, 1);
  }
  .nav.is-open .nav-list li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav.is-open .nav-list li:nth-child(1) { transition-delay: 0.06s; }
  .nav.is-open .nav-list li:nth-child(2) { transition-delay: 0.1s; }
  .nav.is-open .nav-list li:nth-child(3) { transition-delay: 0.14s; }
  .nav.is-open .nav-list li:nth-child(4) { transition-delay: 0.18s; }
  .nav-list a {
    display: block;
    padding: 1.05rem 0.35rem;
    min-height: 3.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-list a::after { display: none; }
  .nav .btn-call {
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    min-height: 3.35rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.2s, transform 0.4s cubic-bezier(0.34, 1.1, 0.64, 1) 0.2s;
  }
  .nav.is-open .btn-call {
    opacity: 1;
    transform: translateY(0);
  }
  .site-header { position: sticky; top: 0; }
  
  /* Stats Grid on Mobile */
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
    padding: 1rem 0;
  }
  .stat {
    padding: 0;
  }
  .stat:last-child {
    grid-column: span 2;
  }
  .stat-divider { display: none; }
  
  /* Hero Optimizations */
  .hero-kicker { font-size: .7rem; }
  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }
  .hero-title br {
    display: none;
  }
  
  @media (max-width: 480px) {
    .hero-actions {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── Popup Vendeur ───────────────────────── */
.vendeur-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-border);
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.vendeur-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(23, 21, 26, 0.4);
  color: var(--white);
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 2;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.popup-close:hover {
  background: rgba(23, 21, 26, 0.7);
}
.popup-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}
.popup-content {
  padding: 1.25rem;
}
.popup-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.popup-content p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.45;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #128C7E;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Social Grid */
.social-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.5rem;
  width: 100%;
}
.social-btn {
  justify-content: center;
  font-size: 0.75rem !important;
  padding: 0.65rem 0.75rem !important;
}
.btn-instagram {
  background: #E1306C;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.20);
}
.btn-instagram:hover {
  background: #c13584;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.35);
  transform: translateY(-2px);
}
.btn-snapchat {
  background: #FFFC00;
  color: #000000;
  box-shadow: 0 4px 12px rgba(255, 252, 0, 0.20);
}
.btn-snapchat:hover {
  background: #e6e300;
  color: #000000;
  box-shadow: 0 6px 16px rgba(255, 252, 0, 0.35);
  transform: translateY(-2px);
}

/* ─── Mobile adjustments for Footer ─── */
@media (max-width: 700px) {
  .footer-inner {
    text-align: center;
    gap: 2.5rem;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ─── Mobile adjustments for Gallery & Popup ─── */
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-item {
    aspect-ratio: 1/1;
  }
  .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1/1;
  }

  /* Large, visible seller popup on mobile */
  .vendeur-popup {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transform: translateY(150%);
  }
  .vendeur-popup.is-visible {
    transform: translateY(0);
  }
  .popup-img {
    width: 100%;
    height: 200px !important; /* Force override height */
    border-radius: 0;
    border: none;
    object-fit: cover;
    object-position: top center;
  }
  .popup-content {
    padding: 1.5rem;
    flex: none;
    min-width: 0;
  }
  .popup-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
  }
  .popup-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .vendeur-popup .popup-content > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100%;
    margin-top: 0;
  }
  .vendeur-popup .btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
    min-height: 3rem;
  }
}

/* =============================================
   LEGAL PAGE STYLES (Mentions Légales)
   ============================================= */

.legal-hero {
  background: var(--grey-dark);
  color: var(--white);
  padding: 5rem 0 4rem 0;
  text-align: left;
  border-bottom: 3px solid var(--red);
}

.legal-hero .legal-kicker {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--red-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.legal-hero .legal-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.legal-hero .legal-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
}

.legal-content-section {
  padding: 4rem 0;
  background: var(--grey-light);
}

.legal-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(90px + 2rem); /* height of header + offset */
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
}

.legal-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-nav a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 0.4rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
}

.legal-nav a:hover,
.legal-nav a.active {
  opacity: 1;
  color: var(--red);
  border-left-color: var(--red);
  text-decoration: none;
}

.legal-article {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--grey-border);
  box-shadow: var(--shadow-md);
}

.legal-block {
  margin-bottom: 3rem;
  scroll-margin-top: 120px; /* Offset for sticky header when jumping from sidebar */
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--grey-border);
  padding-bottom: 0.5rem;
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--red-dark);
  margin: 1.5rem 0 0.5rem 0;
  text-transform: uppercase;
}

.legal-block p {
  margin-bottom: 1rem;
  color: var(--ink);
  opacity: 0.9;
  line-height: 1.75;
}

.legal-block p strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.legal-block ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style-type: square;
}

.legal-block li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.legal-block code {
  font-family: var(--font-mono);
  background: var(--grey-light);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--red-dark);
}

/* ─── Responsive for Legal Page ─── */
@media (max-width: 900px) {
  .legal-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .legal-sidebar {
    position: static;
    padding: 1rem;
  }
  .legal-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .legal-nav a {
    border-left: none;
    padding-left: 0;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.2rem;
  }
  .legal-nav a:hover,
  .legal-nav a.active {
    border-left-color: transparent;
    border-bottom-color: var(--red);
  }
  .legal-article {
    padding: 2rem 1.5rem;
  }
}

