/* ==============================================
   Fonts - Plus Jakarta Sans (self-hosted from Google)
   ============================================== */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_kU7NShXUEKi4Rw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_D07NShXUEKi4Rw.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==============================================
   CSS Variables - Douces Pattes
   Optimisé et consolidé
   ============================================== */

:root {
  /* Colors */
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #1f2421;
  --muted: #6b6660;
  --line: rgba(31, 36, 33, 0.12);
  
  --beige: #f5ede5;
  --sage: #91a88b;
  --sage-ink: #3a4a3e;
  --grey: #e8ebea;
  --terracotta: #c99089;
  --terracotta-light: #f5d0c8;
  --warm-brown: #a86f4c;

  /* Border Radius */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  /* Shadows */
  --shadow: 0 10px 30px rgba(31, 36, 33, 0.08);

  /* Layout */
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 50% 0%, #ffffff 0%, var(--bg) 55%, #f7f5f0 100%);
  line-height: 1.55;
}

h1, h2, h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(251, 250, 247, 0.8);
  border-bottom: 1px solid var(--line);
}
.burger-menu {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--terracotta);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(201, 144, 137, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger-menu:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(201, 144, 137, 0.5);
}
.burger-menu:active {
  transform: scale(0.95);
}
.burger-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.burger-menu.active {
  background: var(--text);
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}
.header-inner-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.brand {
  display: grid;
  grid-template-columns: 44px auto;
  gap: 10px;
  align-items: center;
}
.brand-simple {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 220px;
}
.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background: linear-gradient(140deg, var(--terracotta), var(--terracotta-light));
  box-shadow: 0 6px 16px rgba(201, 144, 137, 0.3);
}
.logo-badge {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.logo-badge.footer {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}
.logo-fallback {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sage-ink);
  font-size: 14px;
}
.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: none;
}
.logo-badge.has-image .brand-logo { display: block; }
.logo-badge.has-image .logo-fallback { display: none; }
.brand-name {
  font-weight: 650;
  letter-spacing: -0.02em;
}
.brand-tag {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover {
  text-decoration: none;
  background: rgba(245, 208, 200, 0.25);
  color: var(--terracotta);
}
.nav-modern {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  .site-header {
    padding: 12px 0;
  }
  .nav-modern {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(251, 250, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 20px 20px;
    gap: 4px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(31, 36, 33, 0.1);
    z-index: 55;
  }
  .nav-modern.open {
    left: 0;
  }
  .nav-modern a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
  }
  .nav-modern a:hover {
    background: rgba(245, 208, 200, 0.4);
  }
  .nav-home {
    display: none;
  }
}
.nav-modern a {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 160ms ease;
}
.nav-modern a:hover {
  text-decoration: none;
  background: rgba(245, 208, 200, 0.25);
  color: var(--terracotta);
}
.nav-home {
  font-weight: 600 !important;
}
.nav-cta {
  color: var(--terracotta) !important;
  background: rgba(245, 208, 200, 0.35);
  border: 1px solid rgba(201, 144, 137, 0.25);
  font-weight: 600 !important;
}

.hero {
  position: relative;
  padding: 58px 0 24px;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -140px -140px auto auto;
  width: 520px;
  height: 520px;
  filter: blur(0px);
  pointer-events: none;
}
.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.hero-logo {
  flex-shrink: 0;
  width: 360px;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-copy {
  flex: 1;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--warm-brown);
  background: rgba(245, 208, 200, 0.35);
  border: 1px solid rgba(201, 144, 137, 0.25);
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.hero h1 {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(34px, 4.6vw, 54px);
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 52ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button:active { transform: translateY(0px); }
.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(245, 208, 200, 0.40);
}

.button.primary {
  background: linear-gradient(140deg, var(--terracotta), #d4a29c);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(201, 144, 137, 0.30);
}
.button.primary:hover { box-shadow: 0 14px 30px rgba(201, 144, 137, 0.35); }

.button.secondary {
  background: rgba(31, 36, 33, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.button.tertiary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--sage-ink);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 2px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--warm-brown);
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--terracotta);
}

.stars svg {
  width: 16px;
  height: 16px;
}

.muted {
  color: var(--muted);
}

.link {
  font-weight: 650;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--warm-brown);
}
.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.icon svg { width: 18px; height: 18px; }

.hero-visual { position: relative; }
.photo-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow);
}
.hero-photo {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(31, 36, 33, 0.10);
}
.photo-placeholder {
  height: 320px;
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(245, 208, 200, 0.25), rgba(245, 237, 229, 0.55)),
    radial-gradient(800px 420px at 20% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  border: 1px solid rgba(31, 36, 33, 0.10);
}
.photo-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.mini-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 12px 25px rgba(31, 36, 33, 0.06);
}
.mini-title { font-weight: 650; letter-spacing: -0.01em; }
.mini-sub { color: var(--muted); font-size: 13px; margin-top: 2px; }

.section {
  padding: 36px 0;
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.is-revealed {
  opacity: 1;
  transform: translateY(0px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
  .card { transition: none; }
  .gallery-item img { transition: none; }
  .reveal { transition: none; transform: none; }
}
.section-header {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
  position: relative;
}
.section-header h2 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 2.7vw, 34px);
}
.section-header p {
  margin: 0;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 14px 28px rgba(31, 36, 33, 0.06);
}
.feature h3 { margin: 12px 0 6px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--muted); }
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 208, 200, 0.40);
  border: 1px solid rgba(201, 144, 137, 0.25);
  color: var(--terracotta);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-icon.icon-emoji {
  font-size: 22px;
  line-height: 1;
  background: transparent;
  border: none;
}
.feature-icon.icon-image {
  background: transparent;
  border: none;
  width: 100%;
  height: auto;
  display: block;
}
.feature-icon.icon-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cards-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 14px 28px rgba(31, 36, 33, 0.06);
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(31, 36, 33, 0.08); }
.card h3 { margin: 0 0 8px; letter-spacing: -0.01em; }
.card-desc { margin: 0 0 10px; color: var(--muted); }
.card-use { margin: 0; }

.about-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}

.about-photo {
  position: sticky;
  top: 100px;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(201, 144, 137, 0.20);
  display: block;
}

.about-text {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 14px 28px rgba(31, 36, 33, 0.06);
}

.about-text p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--terracotta);
  font-weight: 650;
}

.note {
  margin-top: 14px;
  border: 1px dashed rgba(31, 36, 33, 0.22);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.55);
}
.note p { margin: 0; color: var(--muted); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 750;
  color: var(--terracotta);
  background: rgba(245, 208, 200, 0.35);
  border: 1px solid rgba(201, 144, 137, 0.25);
}
.step h3 { margin: 0 0 6px; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--muted); }

.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.price-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 14px 28px rgba(31, 36, 33, 0.06);
}
.price-card h3 { margin: 0 0 8px; letter-spacing: -0.01em; }
.price { margin: 0 0 8px; font-size: 16px; color: var(--terracotta); }
.price strong { font-size: 22px; }
.price-note { margin: 0; color: var(--muted); font-size: 13px; }

.addons { margin-top: 16px; }
.addons h3 { margin: 0 0 10px; letter-spacing: -0.01em; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--muted);
}
.small { color: var(--muted); margin: 10px 0 0; font-size: 13px; }

/* Filtres galerie */
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(245, 208, 200, 0.3);
  border-color: var(--terracotta);
  color: var(--terracotta);
}

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

.gallery-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 0 0 max(24px, calc((100vw - 1200px) / 2));
  margin-top: 32px;
}
.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 24px 12px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-scroll::-webkit-scrollbar {
  display: none;
}
.gallery-photo {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--line);
  overflow: hidden;
}
.gallery-photo:hover {
  transform: translateY(-4px);
}
.gallery-photo > img {
  border-radius: var(--radius-lg);
}
.gallery-photo.hidden {
  display: none;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-photo:hover .photo-caption {
  opacity: 1;
}
.testimonials-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 0 0 max(24px, calc((100vw - 1200px) / 2));
}
.testimonials {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  padding-right: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials::-webkit-scrollbar {
  display: none;
}
.reviews-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 16px;
}

.reviews-metric {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 36, 33, 0.10);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: 0 14px 28px rgba(31, 36, 33, 0.06);
}

.metric-value {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 22px;
  color: var(--terracotta);
}

.metric-label {
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
}

.quote {
  margin: 0;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 14px;
  font-weight: 800;
  font-size: 42px;
  color: rgba(201, 144, 137, 0.25);
  line-height: 1;
}
.quote-gallery {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quote-gallery::-webkit-scrollbar {
  display: none;
}
.quote-cat {
  width: 220px;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.quote-gallery .quote-cat:only-child {
  width: 100%;
}
.quote-rating {
  margin-bottom: 12px;
}
.quote-rating .stars {
  display: inline-flex;
  gap: 2px;
}
.quote-rating .stars svg {
  width: 16px;
  height: 16px;
}
.quote blockquote {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 15px;
}
.quote-pet {
  font-weight: 600;
  color: var(--terracotta);
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.quote figcaption {
  color: var(--muted);
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 4px 14px;
}
.faq-item summary {
  cursor: pointer;
  padding: 12px 2px;
  font-weight: 650;
  color: var(--warm-brown);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { padding: 0 2px 12px; color: var(--muted); }
.faq-body p { margin: 0; }

.contact {
  background: linear-gradient(140deg, rgba(245, 237, 229, 0.55), rgba(245, 208, 200, 0.15));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 36, 33, 0.10);
  border-radius: 16px;
  padding: 12px;
}
.contact-label { color: var(--muted); font-size: 12px; }
.contact-value { font-weight: 650; margin-top: 2px; }
.contact-sub { color: var(--muted); font-size: 12px; margin-top: 2px; }

.closing { margin: 14px 0 0; color: var(--terracotta); font-weight: 600; }

.form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 36, 33, 0.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) {
  .form {
    padding: 20px;
  }
}
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
label { font-size: 13px; color: var(--warm-brown); font-weight: 600; }
input, textarea, select {
  border: 1px solid rgba(31, 36, 33, 0.16);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(251, 250, 247, 0.7);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C99089' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(201, 144, 137, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 208, 200, 0.30);
}

.form-hint {
  color: var(--muted);
  font-size: 12.5px;
  margin: 10px 0 0;
}
.form-status {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--terracotta);
  min-height: 18px;
}

.footer {
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.55);
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding: 24px 0;
}
.footer-left {
  text-align: left;
}
.footer-brand {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(31, 36, 33, 0.10);
}
.footer-sub { 
  color: var(--muted); 
  font-size: 13px; 
  margin-top: 4px;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-socials { 
  display: flex; 
  gap: 12px; 
  justify-content: center;
}
.footer-socials a {
  color: var(--muted);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31, 36, 33, 0.05);
}
.footer-socials a:hover {
  color: var(--terracotta);
  background: rgba(201, 144, 137, 0.1);
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
}
.footer-back-top {
  color: var(--muted);
  font-size: 13px;
}
.footer-back-top a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-back-top a:hover {
  color: var(--terracotta);
}
.footer-right {
  text-align: right;
  color: var(--muted);
  font-size: 13px;
}
.footer-right div {
  margin-bottom: 4px;
}
.footer-right div:last-child {
  margin-bottom: 0;
}
.footer-right a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-right a:hover {
  color: var(--terracotta);
}

@media (max-width: 980px) {
  .hero::after { display: none; }
  .hero-content { flex-direction: column; align-items: center; }
  .hero-logo { width: 260px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .reviews-highlight { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 24px; }
  .about-photo { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { 
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 24px;
  }
  .footer-left,
  .footer-right { text-align: center; }
}

/* Bouton CTA flottant */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--terracotta);
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201, 144, 137, 0.4);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta:hover {
  background: var(--warm-brown);
  box-shadow: 0 6px 30px rgba(201, 144, 137, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
}

.floating-cta svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 14px;
  }
  .floating-cta span {
    display: none;
  }
  .floating-cta {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
  .floating-cta svg {
    width: 24px;
    height: 24px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* Lazy loading shimmer effect */
img[loading="lazy"] {
  background: linear-gradient(
    110deg,
    #f0f0f0 8%,
    #f8f8f8 18%,
    #f0f0f0 33%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

img[loading="lazy"].loaded {
  animation: none;
  background: none;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Micro-animations */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 36, 33, 0.12);
}

.price-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(31, 36, 33, 0.12);
}

.button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.button:active::after {
  width: 300px;
  height: 300px;
}

@media (max-width: 520px) {
  .nav { display: none; }
  .hero { padding-top: 40px; }
  .mini-cards { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .cards-services { grid-template-columns: 1fr; }
  .brand-text { min-width: 0; }
  .brand-tag { white-space: normal; }
}
