/* ═══════════════════════════════════════════════
   GEC AQUITAINE 33 - Feuille de styles partagée
   ═══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #faf8f4;
  --bg-2: #f2ede5;
  --bg-3: #e9e2d6;
  --black: #1c1917;
  --beige: #f2ede5;
  --beige-2: #ffffff;
  --beige-3: #faf8f4;
  --brown: #df5224;
  --brown-d: #d44418;
  --white: #faf8f4;
  --muted: #8a7a6e;
  --slate: #2e4057;
  --border: #ddd5c8;
  --r: 8px;
  --font-h: "DM Serif Display", serif;
  --font-b: "DM Sans", sans-serif;
}

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

/* grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

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

::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--brown);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
  width: 100%;
  text-align: center;
}
@media (min-width: 480px) {
  .btn {
    width: auto;
  }
}

.btn-yellow {
  background: var(--brown);
  color: #faf8f4;
}
.btn-yellow:hover {
  background: var(--brown-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 90, 40, 0.35);
}

.btn-outline {
  background: transparent;
  color: rgba(250, 248, 244, 0.9);
  border: 1.5px solid rgba(250, 248, 244, 0.3);
}
.btn-outline:hover {
  border-color: var(--brown);
  color: var(--brown);
  background: rgba(192, 90, 40, 0.08);
}

.btn-brown-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-brown-outline:hover {
  background: var(--brown);
  color: #faf8f4;
  transform: translateY(-2px);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 90, 40, 0.12);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(28, 25, 23, 0.1);
}
.nav-logo {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.nav-logo span {
  color: var(--brown);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 24px;
}
.nav-links a {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
}

.nav-cta-desktop {
  display: none;
}

.burger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.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);
}

.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 2px solid var(--brown);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  z-index: 99;
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  padding: 8px 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  transition: color 0.2s;
}
.mobile-menu a:last-of-type {
  border: none;
}
.mobile-menu a:hover {
  color: var(--brown);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta-desktop {
    display: flex;
    font-size: 0.82rem;
    padding: 10px 18px;
  }
  .burger {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ─── SECTION HELPERS ─── */
.s-label {
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.s-title {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 14px;
}
.s-sub {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-size: 0.92rem;
  line-height: 1.75;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── HERO (index) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  overflow: hidden;
  color: #faf8f4;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1600&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 25, 23, 0.92) 0%,
    rgba(44, 30, 20, 0.65) 60%,
    transparent 100%
  );
}
.hero-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.c-svg {
  width: 100%;
  height: 100%;
  opacity: 0.12;
}
.c-line {
  stroke: var(--brown);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.c-line:nth-child(1) {
  animation: cDraw 4s ease-out 0.3s forwards;
}
.c-line:nth-child(2) {
  animation: cDraw 3.5s ease-out 0.9s forwards;
}
.c-line:nth-child(3) {
  animation: cDraw 5s ease-out 1.4s forwards;
}
.c-line:nth-child(4) {
  animation: cDraw 3s ease-out 0.6s forwards;
}
.c-dot {
  fill: var(--brown);
  opacity: 0;
  animation: cDot 0.5s ease forwards;
}
.c-dot:nth-child(5) {
  animation-delay: 1.8s;
}
.c-dot:nth-child(6) {
  animation-delay: 2.4s;
}
.c-dot:nth-child(7) {
  animation-delay: 2.8s;
}
@keyframes cDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes cDot {
  0% {
    opacity: 0;
    r: 0;
  }
  60% {
    opacity: 1;
    r: 5;
  }
  100% {
    opacity: 0.6;
    r: 3;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192, 90, 40, 0.15);
  border: 1px solid rgba(192, 90, 40, 0.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
}
.hero-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--brown);
}
.hero-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 24px;
}
.hero-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--brown);
}
.hero-title {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--brown);
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(250, 248, 244, 0.72);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.55);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.proof-item svg {
  width: 14px;
  height: 14px;
  fill: var(--brown);
  flex-shrink: 0;
}
.hero-cut {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}
.hero-cut svg {
  width: 100%;
  display: block;
}

/* ─── PAGE HERO (secondary pages) ─── */
.page-hero {
  position: relative;
  background: linear-gradient(155deg, #1a1410 0%, #231a10 60%, #1c1510 100%);
  padding: 120px 20px 80px;
  color: #faf8f4;
  overflow: hidden;
  text-align: left;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(192,90,40,0.07)' stroke-width='1'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero .s-label {
  color: rgba(250, 248, 244, 0.6);
}
.page-hero h1 {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #faf8f4;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--brown);
}
.page-hero-sub {
  color: rgba(250, 248, 244, 0.72);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192, 90, 40, 0.15);
  border: 1px solid rgba(192, 90, 40, 0.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}
.page-hero-cut {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}
.page-hero-cut svg {
  width: 100%;
  display: block;
}

/* ─── SERVICES ─── */
.services {
  background: var(--beige);
  padding: 80px 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.svc {
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brown);
  transition: width 0.3s;
}
.svc:hover {
  background: var(--bg);
  border-color: rgba(192, 90, 40, 0.3);
  box-shadow: 0 4px 20px rgba(192, 90, 40, 0.08);
}
.svc:hover::before {
  width: 100%;
}
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(192, 90, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon svg {
  width: 22px;
  height: 22px;
}
.svc-name {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.svc-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.svc-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: auto;
  background: rgba(192, 90, 40, 0.08);
  border: 1px solid rgba(192, 90, 40, 0.22);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  text-align: center;
}
@media (min-width: 480px) {
  .svc-tag {
    display: inline-flex;
    justify-content: flex-start;
    margin-top: 0;
    width: fit-content;
  }
}
.svc-cta {
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
}

/* ─── WHY US ─── */
.whyus {
  background: var(--brown);
  color: #faf8f4;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: -20px 0;
  position: relative;
  z-index: 2;
  padding: 0;
}
@media (min-width: 768px) {
  .whyus {
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin: -30px 0;
  }
}
.whyus-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .whyus-inner {
    padding: 110px 20px;
  }
}
.whyus-head {
  margin-bottom: 40px;
}
.whyus-head .s-label {
  color: rgba(250, 248, 244, 0.6);
}
.whyus-head .s-title {
  color: #faf8f4;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-num {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1;
  color: #faf8f4;
}
.pillar-title {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #faf8f4;
}
.pillar-sub {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.65);
  line-height: 1.5;
}
.whyus-cta {
  margin-top: 40px;
}
.whyus-cta .btn-dark {
  background: #faf8f4;
  color: var(--brown);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .whyus-cta .btn-dark {
    width: auto;
  }
}
.whyus-cta .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.whyus-cta .btn-dark svg {
  width: 16px;
  height: 16px;
  fill: var(--brown);
  flex-shrink: 0;
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--beige);
  padding: 80px 20px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.rev-card {
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.rev-card:hover {
  border-color: rgba(192, 90, 40, 0.25);
  box-shadow: 0 4px 20px rgba(192, 90, 40, 0.07);
}
.rev-stars {
  display: flex;
  gap: 2px;
}
.rev-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--brown);
}
.rev-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.rev-author {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}
.reviews-cta {
  text-align: center;
  margin-top: 36px;
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--bg-3);
  padding: 80px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 230px;
    gap: 12px;
  }
}
@media (min-width: 960px) {
  .gallery-grid {
    grid-auto-rows: 260px;
  }
}
.gal-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gal-item.featured {
  grid-column: span 2;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s;
  filter: saturate(0.8) brightness(0.92);
}
.gal-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) brightness(1);
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 30, 20, 0.55) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.gal-item:hover::after {
  opacity: 1;
}
.gal-item .gal-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(250, 248, 244, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 2;
}
.gal-item:hover .gal-zoom {
  opacity: 1;
  transform: scale(1);
}
.gal-zoom svg {
  width: 16px;
  height: 16px;
  stroke: var(--brown);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--r);
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s;
}
.lb-close:hover {
  background: rgba(192, 90, 40, 0.5);
}

/* ─── ZONES ─── */
.zones {
  background: var(--bg-2);
  padding: 72px 20px;
}
.zones-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 860px;
  margin-top: 20px;
}
.zones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.zone-tag {
  background: rgba(192, 90, 40, 0.06);
  border: 1px solid rgba(192, 90, 40, 0.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: all 0.2s;
  cursor: default;
}
.zone-tag:hover {
  background: rgba(192, 90, 40, 0.12);
  color: var(--brown);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--bg);
  padding: 80px 20px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.hours-list {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--beige-2);
}
.h-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
  transition: background 0.2s;
}
.h-row:last-child {
  border: none;
}
.h-row:hover {
  background: rgba(192, 90, 40, 0.04);
}
.h-row.today {
  background: rgba(192, 90, 40, 0.07);
}
.h-day {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.h-time {
  font-size: 0.82rem;
  color: var(--muted);
}
.h-time.closed {
  color: rgba(28, 25, 23, 0.3);
  font-style: italic;
}
.today .h-day,
.today .h-time {
  color: var(--brown);
}
.contact-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.c-info-row svg {
  width: 16px;
  height: 16px;
  fill: var(--brown);
  flex-shrink: 0;
  margin-top: 2px;
}
.c-info-row span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.c-info-row a {
  color: var(--brown);
  font-weight: 600;
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.8) brightness(1.02);
}

/* ─── FORM ─── */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 479px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
  display: block;
}
.form input,
.form textarea,
.form select {
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  color: var(--black);
  font-family: var(--font-b);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(138, 122, 110, 0.55);
}
.form input:focus,
.form textarea:focus {
  border-color: var(--brown);
}
.form textarea {
  resize: vertical;
  min-height: 90px;
}
.form-submit {
  background: var(--brown);
  color: #faf8f4;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 24px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  min-height: 52px;
  width: 100%;
}
.form-submit:hover {
  background: var(--brown-d);
  transform: translateY(-2px);
}
.form-submit svg {
  width: 15px;
  height: 15px;
  fill: #faf8f4;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--slate);
  padding: 72px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 20h40M20 0v40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-content {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: #faf8f4;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(250, 248, 244, 0.65);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.btn-band {
  background: var(--brown);
  color: #faf8f4;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  max-width: 400px;
}
@media (min-width: 480px) {
  .btn-band {
    width: auto;
  }
}
.btn-band:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.btn-band svg {
  width: 16px;
  height: 16px;
  fill: #faf8f4;
}

/* ─── FOOTER ─── */
footer {
  background: var(--slate);
  padding: 44px 20px 24px;
  color: #faf8f4;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.f-logo {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 1.7rem;
  color: #faf8f4;
  margin-bottom: 10px;
}
.f-logo span {
  color: var(--brown);
}
.f-tagline {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.55);
  max-width: 240px;
  line-height: 1.6;
}
.f-col-title {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  margin-bottom: 14px;
}
.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-links a {
  font-size: 0.83rem;
  color: rgba(250, 248, 244, 0.65);
  transition: color 0.2s;
}
.f-links a:hover {
  color: #faf8f4;
}
.f-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.f-contact-row svg {
  width: 13px;
  height: 13px;
  fill: var(--brown);
  flex-shrink: 0;
  margin-top: 2px;
}
.f-contact-row span {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.65);
  line-height: 1.5;
}
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.3);
}
.footer-bottom a {
  color: rgba(250, 248, 244, 0.45);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #faf8f4;
}

/* ─── FLOAT CALL ─── */
.float-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 200;
  background: var(--brown);
  color: #faf8f4;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 4px 24px rgba(192, 90, 40, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fPulse 3s ease-in-out infinite;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.float-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@keyframes fPulse {
  0%,
  100% {
    box-shadow:
      0 4px 24px rgba(192, 90, 40, 0.45),
      0 2px 8px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow:
      0 6px 32px rgba(192, 90, 40, 0.65),
      0 2px 12px rgba(0, 0, 0, 0.25);
  }
}
.float-call svg {
  width: 16px;
  height: 16px;
  fill: #faf8f4;
}
@media (min-width: 768px) {
  .float-call {
    display: none;
  }
}

/* ─── SCROLL REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv-l {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.rv-l.in {
  opacity: 1;
  transform: none;
}
.rv-r {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.rv-r.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* ─── REALISATIONS CARDS ─── */
.real-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .real-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .real-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.real-card {
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.real-card:hover {
  box-shadow: 0 8px 32px rgba(192, 90, 40, 0.12);
  border-color: rgba(192, 90, 40, 0.3);
  transform: translateY(-4px);
}
.real-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.real-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.real-card:hover .real-card-img img {
  transform: scale(1.05);
}
.real-card-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.real-card-title {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--black);
  line-height: 1.25;
}
.real-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.real-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  transition: gap 0.2s;
  margin-top: 6px;
}
.real-card-link:hover {
  gap: 10px;
}

/* ─── REALISATION DETAIL ─── */
.detail-section {
  padding: 80px 20px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.detail-section:nth-child(even) {
  background: var(--beige);
}
.detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.detail-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.detail-img-wrap:hover img {
  transform: scale(1.04);
}
.detail-img-wrap::after {
  content: "⤢";
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  padding: 4px 7px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.detail-img-wrap:hover::after {
  opacity: 1;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ba-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
  display: inline-block;
}
.ba-label.avant {
  background: rgba(28, 25, 23, 0.08);
  color: var(--muted);
}
.ba-label.apres {
  background: rgba(192, 90, 40, 0.1);
  color: var(--brown);
}
.detail-text h2 {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.detail-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.detail-text ul {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-text ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.detail-text ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brown);
  font-weight: 700;
}
.detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ─── FACEBOOK CTA ─── */
.cta-facebook {
  background: var(--slate);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  margin: 40px 0;
}
.cta-facebook p {
  color: rgba(250, 248, 244, 0.75);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.cta-facebook a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown);
  color: #faf8f4;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--r);
  transition: all 0.2s;
}
.cta-facebook a:hover {
  background: var(--brown-d);
  transform: translateY(-2px);
}

/* ─── LANDING PAGE - TIMELINE ─── */
.timeline {
  padding: 80px 20px;
  background: var(--beige);
}
.timeline-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: step;
}
@media (min-width: 640px) {
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .timeline-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.timeline-step {
  position: relative;
  padding: 24px 20px;
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  counter-increment: step;
}
.timeline-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-h);
  font-size: 2.2rem;
  color: rgba(192, 90, 40, 0.18);
  line-height: 1;
  margin-bottom: 12px;
}
.timeline-step h3 {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── FAQ ACCORDION ─── */
.faq-section {
  padding: 80px 20px;
  background: var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--beige-2);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  color: var(--black);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--brown);
}
.faq-q[aria-expanded="true"] {
  color: var(--brown);
}
.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
  padding: 0 20px;
}
.faq-a.open {
  max-height: 400px;
  padding-bottom: 18px;
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── MENTIONS LÉGALES ─── */
.legal {
  padding: 100px 20px 80px;
}
.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 36px 0 12px;
}
.legal p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal a {
  color: var(--brown);
}

/* ─── INLINE CONTACT FORM (landing pages) ─── */
.lp-contact {
  background: var(--bg-2);
  padding: 80px 20px;
}
.lp-contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .lp-contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.lp-contact-text h2 {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}
.lp-contact-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.lp-contact-text .phone-big {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 400;
  margin-top: 20px;
}
.lp-contact-text .phone-big svg {
  width: 20px;
  height: 20px;
  fill: var(--brown);
}
