/* ============ COP. BARBER STUDIO ============ */

:root {
  --black: #0d0d0d;
  --dark: #161616;
  --gray-800: #2a2a2a;
  --gray-600: #555;
  --gray-400: #9a9a9a;
  --gray-200: #e4e4e4;
  --gray-100: #f2f2f2;
  --white: #ffffff;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-head: "Archivo Expanded", "Archivo", system-ui, sans-serif;
  --header-h: 72px;
  --radius: 6px;
  --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BOUTONS ============ */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius);
  padding: 12px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-primary:hover { background: transparent; color: var(--white); }

/* Sur fond clair, le bouton primaire s'inverse */
.on-light .btn-primary,
.header.scrolled .btn-primary,
.section:not(.section-dark) .btn-primary {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.on-light .btn-primary:hover,
.header.scrolled .btn-primary:hover,
.section:not(.section-dark) .btn-primary:hover {
  background: transparent; color: var(--black);
}

.btn-ghost { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); margin-top: 14px; font-size: 0.85rem; padding: 10px 18px; }
.btn-outline:hover { border-color: var(--white); background: var(--white); color: var(--black); }

/* ============ HEADER ============ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 6px 24px rgba(0,0,0,0.06);
}

/* Header pleine largeur : logo collé à gauche, actions collées à droite. */
.header-inner {
  max-width: none;
  margin: 0;
  padding: 0 40px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo image du header. Blanc sur fond sombre (haut de page) ; une fois scrollé
   (header blanc), on l'inverse en noir via un filtre pour qu'il reste lisible. */
.logo-img {
  display: block;
  height: 34px;
  width: auto;
  transition: filter 0.25s;
}

.header.scrolled .logo-img { filter: brightness(0); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav a:not(.btn):hover { opacity: 1; }

.nav-cta { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta { padding: 10px 20px; font-size: 0.85rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 9px 8px;
  /* Suit la couleur du header : blanc en haut de page, foncé une fois scrollé
     (les <button> n'héritent pas de color par défaut, d'où ce inherit explicite). */
  color: inherit;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: calc(var(--header-h) + 70px) 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.82)),
    url("images/hero.jpg") center 35% / cover no-repeat;
}

.hero-content { position: relative; max-width: 780px; }

/* Logo image du hero (PNG blanc sur fond transparent) sur la photo sombre. */
.hero-logo-img {
  display: block;
  width: min(82%, 480px);
  height: auto;
  margin: 0 auto 26px;
}

.hero-kicker {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-200);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  text-decoration: none;
  color: var(--gray-200);
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.hero-rating:hover { opacity: 0.75; }

.hero-stars {
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.hero-rating strong {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-200);
  text-decoration: none;
  font-size: 1.4rem;
  animation: nudge 2.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes nudge {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.65; }
  50% { transform: translate(-50%, 7px); opacity: 1; }
}

/* ============ SECTIONS ============ */

.section { padding: 96px 0; }

/* Décalage d'ancrage : les titres ne passent pas sous le header fixe après un clic menu */
#salon,
#equipe,
#confiance,
#services,
#mariages,
#avis,
#contact {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-head { max-width: 720px; margin-bottom: 56px; }

.section-kicker {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.section-dark .section-kicker { color: var(--gray-400); }

.section-head h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }

.section-sub { margin-top: 16px; color: var(--gray-600); }
.section-dark .section-sub { color: var(--gray-400); }
.section-sub a { color: inherit; }

/* ============ PHOTOS ============ */

.photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}

.section-dark .photo { background: var(--dark); }

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ LE SALON ============ */

.salon-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.salon-text p { margin-bottom: 18px; color: var(--gray-800); }

.salon-points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.salon-points li {
  padding-left: 20px;
  position: relative;
  color: var(--gray-800);
}

.salon-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray-600);
}

.salon-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}

.ph-tall { grid-row: span 2; min-height: 100%; }

/* ============ ÉQUIPE ============ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--dark);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Ratio 4/5 = format natif de la photo de Damien (aucun recadrage) ;
   pour les autres, le point de cadrage est ajusté sur le visage. */
.team-photo {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.team-photo-corentin img { object-position: center 18%; }
.team-photo-diogo img { object-position: center 30%; }

.team-body { padding: 28px; }

.team-body h3 { font-size: 1.3rem; margin-bottom: 4px; }

.team-role {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.team-body p:last-child { color: var(--gray-200); font-size: 0.97rem; }

/* ============ CONFIANCE ============ */

.trust-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 44px;
}

.trust-photos .photo { aspect-ratio: 1; }

.trust-groups {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 32px;
}

.trust-group {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

.trust-group h3 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list li {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-note {
  margin-top: 36px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--gray-600);
}

/* ============ SERVICES ============ */

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

.service-card {
  border: 1px solid var(--gray-800);
  background: var(--dark);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover { border-color: var(--gray-600); transform: translateY(-3px); }

.service-card h3 { font-size: 1.05rem; }

.service-card p { color: var(--gray-400); font-size: 0.92rem; flex: 1; }

.service-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
}

.services-cta { text-align: center; margin-top: 44px; }

/* ============ ÉVÉNEMENTS & MARIAGES ============ */

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.events-text p { margin-bottom: 18px; color: var(--gray-800); }

.events-text .btn { margin-top: 10px; }

.events-photo { aspect-ratio: 4 / 5; }

/* ============ AVIS ============ */

.section-reviews { background: var(--gray-100); }

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  margin-bottom: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
}

.rating-stars {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--black);
}

.rating-meta {
  font-size: 0.95rem;
  color: var(--gray-600);
  border-left: 1px solid var(--gray-200);
  padding-left: 24px;
}

.rating-meta strong { color: var(--black); }
.rating-meta span { font-size: 0.85rem; color: var(--gray-600); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-card::before {
  content: "★★★★★";
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--black);
}

.review-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--gray-800);
  flex: 1;
}

.review-card footer {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.reviews-cta { text-align: center; margin-top: 44px; }

/* ============ CONTACT ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

.form-intro {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
}

.form-intro-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.form-why {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-why li {
  font-size: 0.92rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}

.form-why li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray-600);
}

.form-why strong { color: var(--black); font-weight: 600; }

.form-privacy {
  font-size: 0.85rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}

.contact-form { display: grid; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { display: grid; gap: 7px; min-width: 0; }

.form-field label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.optional { font-weight: 400; color: var(--gray-600); letter-spacing: 0; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-100);
  transition: border-color 0.2s, background 0.2s;
  color: var(--black);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}

/* Focus clavier : anneau net et visible (WCAG 2.4.7) */
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

/* Flèche personnalisée pour le menu déroulant */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23555' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-field textarea { resize: vertical; }

.form-error { color: #b3261e; font-size: 0.9rem; }

.form-note { font-size: 0.82rem; color: var(--gray-600); }

/* aspect-ratio réserve la hauteur avant chargement (évite le CLS) */
.contact-photo { margin-bottom: 28px; aspect-ratio: 1; }

.contact-info h3 {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin: 22px 0 6px;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info a { text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.map-wrap { margin: 32px 0 0; }

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  filter: grayscale(1);
}

.map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link:hover { color: var(--black); }

/* ============ FOOTER ============ */

.footer {
  background: var(--black);
  color: var(--gray-200);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

/* Footer sur fond noir → le logo blanc s'affiche directement */
.footer-logo-img {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p { color: var(--gray-400); font-size: 0.95rem; }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-800);
  border-radius: 50%;
  color: var(--gray-200);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover { border-color: var(--white); color: var(--white); }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.footer-col address { font-style: normal; }

.footer-col address p { margin-bottom: 10px; font-size: 0.95rem; }

.footer-col a { color: var(--gray-200); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }

.hours {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed var(--gray-800);
  padding-bottom: 8px;
}

.hours-val { color: var(--gray-400); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.link-btn {
  background: none;
  border: 0;
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-btn:hover { color: var(--white); }

/* ============ MODALES ============ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] { display: none; }

.modal-box {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-box h2 { font-size: 1.3rem; margin-bottom: 20px; }

.modal-box p { margin-bottom: 14px; font-size: 0.95rem; color: var(--gray-800); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover { background: var(--gray-200); }

/* ============ REVEAL ============ */

/* Sans JS, le contenu reste visible (pas de dépendance à l'observer).
   L'état masqué initial n'est appliqué que si le JS a posé la classe .js. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
}

/* ============ RESPONSIVE ============ */

/* Tablette — zone critique 768-820px incluse */
@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  }

  .nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav a:not(.btn) {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-800);
    font-size: 1rem;
  }

  .nav-cta { display: block; margin-top: 18px; }

  .burger { display: flex; }

  .salon-grid,
  .events-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }

  /* Sur tablette/mobile, la photo repasse au-dessus du texte */
  .events-photo { order: -1; }

  /* Tablette : cartes équipe horizontales (photo à gauche) pour éviter une carte orpheline */
  .team-grid { grid-template-columns: 1fr; gap: 20px; }

  .team-card { flex-direction: row; }

  .team-card .team-photo {
    width: 236px;
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
    align-self: stretch;
  }

  .trust-groups { grid-template-columns: 1fr; gap: 20px; }

  .trust-photos { grid-template-columns: repeat(4, 1fr); }

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .section { padding: 76px 0; }
}

@media (max-width: 680px) {
  .logo-sub { letter-spacing: 0.18em; }

  .hero h1 br { display: none; }

  .header-inner { padding: 0 20px; }

  .hero-logo-img { width: 88%; }

  .header-cta { display: none; }

  .team-card { flex-direction: column; }

  .team-card .team-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

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

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

  .reviews-rating { flex-direction: column; align-items: flex-start; gap: 16px; }

  .rating-meta { border-left: 0; padding-left: 0; }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Cibles tactiles ≥ 24px de haut sur mobile (WCAG 2.5.8) */
  .footer-legal { gap: 4px 20px; }
  .link-btn { padding: 6px 0; }
  .footer-col address a { display: inline-block; padding: 5px 0; }

  .salon-gallery { grid-template-rows: 160px 160px; }

  .trust-photos { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .modal-box { padding: 28px 22px; }

  .hero-ctas .btn { width: 100%; }

  .section { padding: 64px 0; }
}
