/* ===== Variables & Reset ===== */
:root {
  --sand: #f5f0e8;
  --sand-light: #faf8f3;
  --sand-dark: #e8e0d0;
  --white: #ffffff;
  --sage: #8a9a7b;
  --sage-dark: #6b7d5e;
  --sage-light: #c5d1bc;
  --terracotta: #c67a5c;
  --terracotta-dark: #a8604a;
  --terracotta-light: #e8a88a;
  --brown: #8b6f47;
  --brown-light: #c4a97d;
  --charcoal: #2c2c2c;
  --charcoal-light: #4a4a4a;
  --warm-gray: #7a7168;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(44, 44, 44, 0.06);
  --shadow-lg: 0 12px 40px rgba(44, 44, 44, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 122, 92, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn--outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Section utilities ===== */
.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 48px;
  color: var(--charcoal);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.06);
  transition: var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}

.nav__links a:hover {
  color: var(--terracotta);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500 !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--terracotta-dark);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, #e8dfd2 0%, var(--sand-light) 40%, var(--sand) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(198, 122, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero__logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(44, 44, 44, 0.12);
  border: 4px solid var(--white);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.hero__salon-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.hero__location {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__rdv {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: italic;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--warm-gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== Salon ===== */
.salon {
  padding: 120px 0;
  background: var(--white);
}

.salon__presentation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.salon__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.salon__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.salon__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.salon__text p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.salon__text .btn {
  align-self: flex-start;
  margin-top: 12px;
}

/* ===== Barber ===== */
.barber {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
}

.barber__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.barber .section-label {
  color: var(--terracotta-light);
}

.barber .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.barber__content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 8px;
}

.barber__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.barber__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.barber__list li svg {
  color: var(--terracotta-light);
  flex-shrink: 0;
}

.barber__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.barber__photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .barber__inner {
    grid-template-columns: 1fr;
  }

  .barber__photo {
    order: -1;
  }

  .barber__photo img {
    height: 300px;
  }
}

/* ===== Tarifs ===== */
.tarifs {
  padding: 120px 0;
  background: var(--sand-light);
}

.tarifs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.tarif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tarif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brown-light);
  transition: var(--transition);
}

.tarif-card:hover::before {
  background: var(--terracotta);
}

.tarif-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.tarif-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.tarif-list {
  display: flex;
  flex-direction: column;
}

.tarif-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 0.9rem;
}

.tarif-list li:last-child {
  border-bottom: none;
}

.tarif-list li span:first-child {
  color: var(--charcoal-light);
}

.tarif-list li span:last-child {
  font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
  margin-left: 12px;
}

.tarif-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: italic;
  line-height: 1.5;
}

.tarifs__photo {
  text-align: center;
}

.tarifs__photo img {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ===== Lissage brésilien ===== */
.lissage {
  padding: 120px 0;
  background: var(--white);
}

.lissage__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.lissage__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lissage__photo img {
  width: 100%;
  object-fit: cover;
}

.lissage__content .section-title {
  margin-bottom: 24px;
}

.lissage__intro {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.lissage__sub {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
  font-style: italic;
}

.tarif-list--highlight li {
  padding: 12px 0;
}

.tarif-list--highlight li span:last-child {
  font-size: 1rem;
  font-weight: 600;
}

/* ===== Ambiance ===== */
.ambiance {
  padding: 100px 0;
  background: var(--brown);
  text-align: center;
}

.ambiance__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.ambiance__quote cite {
  display: block;
  margin-top: 24px;
  font-size: 0.9rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* ===== Avis Google ===== */
.avis {
  padding: 120px 0;
  background: var(--white);
}

.avis__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: var(--sand-light);
  border-radius: var(--radius);
  border: 1px solid var(--sand-dark);
}

.avis__score {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.avis__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.avis__stars {
  display: flex;
  gap: 2px;
}

.avis__star {
  width: 24px;
  height: 24px;
  fill: #FBBC04;
}

.avis__star--half {
  fill: none;
}

.avis__count {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.avis__leave-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.avis__card {
  background: var(--sand-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--sand-dark);
  transition: var(--transition);
}

.avis__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta-light);
}

.avis__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avis__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.avis__author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.avis__date {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.avis__card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.avis__card-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBC04;
}

.avis__text {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-style: italic;
}

.avis__cta {
  text-align: center;
}

.avis__google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  transition: var(--transition);
}

.avis__google-link:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ===== Infos pratiques ===== */
.infos {
  padding: 120px 0;
  background: var(--sand);
}

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

.infos__map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  background: var(--sand-dark);
  box-shadow: var(--shadow);
}

.infos__map iframe {
  width: 100%;
  height: 100%;
}

.infos__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.infos__block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.infos__block p,
.infos__block a {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.infos__phone {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--terracotta) !important;
  transition: var(--transition);
}

.infos__phone:hover {
  color: var(--terracotta-dark) !important;
}

.infos__instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.infos__instagram:hover {
  color: var(--terracotta);
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0 32px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.footer__address,
.footer__phone {
  font-size: 0.85rem;
  margin-top: 2px;
}

.footer__phone a:hover {
  color: var(--white);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  opacity: 0.6;
  transition: var(--transition);
}

.footer__social:hover {
  opacity: 1;
  color: var(--white);
}

.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__credit {
  text-align: center;
  font-size: 0.72rem;
  margin-top: 6px;
  opacity: 0.55;
  letter-spacing: 0.02em;
}

.footer__credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.footer__credit a:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}

/* ===== Hero status badge (ouvert/fermé) ===== */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--sand-dark);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-light);
  backdrop-filter: blur(10px);
}

.hero__status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warm-gray);
  flex-shrink: 0;
}

.hero__status--open .hero__status-dot {
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(138, 154, 123, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.hero__status--closed .hero__status-dot {
  background: var(--terracotta);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== Galerie ===== */
.galerie {
  padding: 100px 0;
  background: var(--sand);
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.galerie__item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.galerie__item:hover img {
  transform: scale(1.05);
}

.galerie__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.galerie__item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-dark) 100%);
  border: 2px dashed rgba(139, 111, 71, 0.25);
}

.galerie__item--placeholder span {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--sand-light);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq__item[open] {
  box-shadow: var(--shadow);
  border-color: var(--brown-light);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}

.faq__item summary:hover {
  color: var(--terracotta);
}

.faq__item p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-light);
}

.faq__item p a {
  color: var(--terracotta);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

/* ===== Horaires (infos section) ===== */
.infos__horaires {
  margin: 10px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.infos__horaires li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(139, 111, 71, 0.15);
  color: var(--charcoal-light);
}

.infos__horaires li:last-child {
  border-bottom: none;
}

.infos__horaires li span:first-child {
  font-weight: 500;
  color: var(--charcoal);
}

.infos__todo {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--terracotta);
  margin-top: 4px;
}

/* ===== Sticky call button (mobile) ===== */
.sticky-call {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 32px rgba(198, 122, 92, 0.45);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-call svg {
  flex-shrink: 0;
}

.sticky-call.visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 720px) {
  .sticky-call {
    display: inline-flex;
  }
}

/* ===== Pages annexes (mentions légales / 404) ===== */
.legal {
  padding: 130px 0 100px;
  background: var(--sand-light);
  min-height: 100vh;
}

.legal .section-title {
  margin-bottom: 36px;
}

.legal__block {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.legal__block h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.legal__block p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal__block p + p {
  margin-top: 12px;
}

.legal__block a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}

.legal__todo {
  background: var(--sand);
  border-left: 3px solid var(--terracotta);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.legal__todo em {
  color: var(--warm-gray);
  font-style: italic;
}

.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
  padding: 60px 24px;
}

.notfound__inner {
  max-width: 520px;
  text-align: center;
}

.notfound__logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-lg);
}

.notfound__code {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
}

.notfound__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.notfound__text {
  color: var(--warm-gray);
  font-size: 1rem;
  margin-bottom: 32px;
}

.notfound__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  /* Nav : passage en menu hamburger dès 900px pour éviter la compression du CTA téléphone */
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--sand-light);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav__links.open {
    transform: translateY(0);
  }

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

  .salon__photo img {
    height: 300px;
  }

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

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

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

  .avis__summary {
    flex-direction: column;
    text-align: center;
  }

  .avis__score {
    justify-content: center;
  }

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

  .infos__map {
    height: 300px;
  }

  .galerie__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero__logo {
    width: 120px;
    height: 120px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tarifs__photo img {
    max-width: 100%;
  }
}
