/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --cream: #fbf7f0;
  --cream-dark: #f2e8d8;
  --rose: #c4844a;
  --rose-dark: #a86c35;
  --coral: #c4705a;
  --peach: #d9b98a;
  --peach-light: #ede0c8;
  --espresso: #4a2e1a;
  --espresso-mid: #6b3e28;
  --espresso-light: #966048;
  --white: #ffffff;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;

  --radius: 16px;
  --radius-lg: 32px;
  --radius-xl: 60px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.4s var(--ease);
  --transition-fast: all 0.2s ease;
}

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

html {
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 400;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
}

em {
  font-style: italic;
  color: var(--rose);
}

p {
  line-height: 1.8;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--espresso-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 132, 74, 0.35);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(42, 26, 20, 0.3);
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-outline-dark:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--rose);
  border-color: var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 1px 40px rgba(74, 46, 26, 0.07);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--espresso);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.nav-logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-close {
  display: none;
}

.nav-links a {
  font-weight: 400;
  color: var(--espresso);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--rose);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  background: var(--rose);
  color: var(--white);
  border-radius: 100px;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--espresso);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: var(--transition-fast);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BLOBS (shared)
   ============================================================ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.blob-1 {
  width: 650px;
  height: 650px;
  background: var(--peach);
  opacity: 0.55;
  top: -180px;
  right: -120px;
  animation: floatA 9s ease-in-out infinite;
}
.blob-2 {
  width: 380px;
  height: 380px;
  background: var(--coral);
  opacity: 0.22;
  bottom: -80px;
  left: -100px;
  animation: floatB 11s ease-in-out infinite;
}
.blob-3 {
  width: 220px;
  height: 220px;
  background: var(--rose);
  opacity: 0.12;
  top: 38%;
  left: 28%;
  animation: floatA 13s ease-in-out infinite reverse;
}

@keyframes floatA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(28px, -22px) scale(1.06);
  }
  70% {
    transform: translate(-14px, 18px) scale(0.96);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -28px) scale(1.1);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
}

.hero-title {
  margin-bottom: 1.6rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--espresso-light);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stats .stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 0.74rem;
  color: var(--espresso-light);
  line-height: 1.45;
}
.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--peach);
  flex-shrink: 0;
}

/* Hero image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  width: 420px;
  height: 530px;
  border-radius: 60% 40% 52% 48% / 48% 56% 44% 52%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(196, 132, 74, 0.18);
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 5%;
  transform: none;
}

.hero-img-badge {
  position: absolute;
  bottom: 32px;
  left: -16px;
  background: var(--white);
  padding: 0.75rem 1.4rem;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--espresso);
  box-shadow: 0 10px 35px rgba(74, 46, 26, 0.13);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: badgeBob 4s ease-in-out infinite;
}
.hero-img-badge span {
  color: var(--rose);
}

@keyframes badgeBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-img-deco {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 90px;
  height: 90px;
  border: 2px solid var(--peach);
  border-radius: 50%;
  opacity: 0.6;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(42, 26, 20, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero-scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--rose);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why {
  background: var(--cream-dark);
  color: var(--espresso);
  position: relative;
}

.why .section-eyebrow {
  color: var(--rose);
}
.why .section-title {
  color: var(--espresso);
}
.why em {
  color: var(--rose);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  border-radius: var(--radius);
  border: 1px solid var(--peach);
  background: var(--white);
  transition: var(--transition);
}
.stat-card:hover {
  background: var(--peach-light);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(196, 132, 74, 0.12);
}
.stat-card--highlight {
  background: var(--peach-light);
  border-color: var(--peach);
}
.stat-card--highlight:hover {
  background: var(--peach);
}

.stat-card-inner {
  padding: 2.5rem 1.8rem;
  text-align: center;
}

.stat-number-wrap {
  margin-bottom: 1rem;
}

.stat-big {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--coral);
  vertical-align: super;
  line-height: 1;
}
.stat-card--highlight .stat-suffix {
  color: var(--coral);
}

.stat-card p {
  font-size: 0.88rem;
  color: var(--espresso-light);
  line-height: 1.65;
}
.stat-card--highlight p {
  color: var(--espresso-light);
}

.why-text {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.why-text p {
  font-size: 1.15rem;
  color: var(--espresso-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.why-text strong {
  color: var(--espresso);
  font-weight: 500;
}

/* ============================================================
   FOR WHO
   ============================================================ */
.for-who {
  background: var(--cream);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(196, 132, 74, 0.08);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(196, 132, 74, 0.1);
  border-color: var(--peach);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.card h3 {
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--espresso-light);
  line-height: 1.75;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--cream-dark);
}

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

.service-item {
  padding: 2.5rem 0;
  border-top: 1px solid var(--peach);
  transition: var(--transition);
}
.service-item:hover {
  padding-left: 0.8rem;
  border-top-color: var(--rose);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 0.9rem;
  transition: color 0.3s;
}
.service-item:hover .service-num {
  color: var(--rose);
}

.service-item h3 {
  margin-bottom: 0.7rem;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--espresso-light);
  line-height: 1.75;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 52% 48% 46% 54% / 42% 52% 48% 58%;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(196, 132, 74, 0.15);
}
.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-tag {
  position: absolute;
  bottom: -18px;
  right: 16px;
  background: var(--rose);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(196, 132, 74, 0.4);
}

.about-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--peach);
  border-radius: 50%;
  opacity: 0.7;
}

.about-content .section-eyebrow {
  margin-bottom: 0.8rem;
}
.about-content .section-title {
  margin-bottom: 1.6rem;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--espresso-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-content em {
  font-style: italic;
  color: var(--rose);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2rem 0;
}
.value-tag {
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  background: var(--peach-light);
  color: var(--espresso);
  font-size: 0.84rem;
  font-weight: 500;
  border: 1px solid var(--peach);
}

.about-aside {
  background: var(--peach-light);
  border-left: 3px solid var(--rose);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--espresso);
  line-height: 1.7;
}

.about-aside-hook {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 0.1rem;
}

.offers-commitment {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--espresso-light);
  font-size: 0.95rem;
}

/* ============================================================
   OFFERS
   ============================================================ */
.offers {
  background: var(--cream);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2rem;
  border: 1px solid rgba(196, 132, 74, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: var(--transition);
}
.offer-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(196, 132, 74, 0.1);
}

.offer-card--featured {
  background: var(--espresso);
  border-color: var(--espresso);
  transform: scale(1.04);
}
.offer-card--featured:hover {
  transform: scale(1.04) translateY(-7px);
}

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  padding: 0.32rem 1.2rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.offer-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
  display: block;
}
.offer-card--featured .offer-eyebrow {
  color: var(--peach);
}

.offer-header h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.offer-card--featured h3 {
  color: var(--white);
}

.offer-baseline {
  font-size: 0.88rem;
  color: var(--espresso-light);
  margin-bottom: 2rem;
  line-height: 1.55;
}
.offer-card--featured .offer-baseline {
  color: rgba(255, 255, 255, 0.5);
}

.offer-features {
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: var(--espresso-light);
  line-height: 1.5;
}
.offer-card--featured .offer-features li {
  color: rgba(255, 255, 255, 0.72);
}

.offer-features .check {
  color: var(--rose);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.offer-card--featured .offer-features .check {
  color: var(--coral);
}

.offer-card--featured .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--rose);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob-c1 {
  width: 550px;
  height: 550px;
  background: rgba(255, 255, 255, 0.07);
  top: -220px;
  right: -120px;
  border-radius: 50%;
}
.blob-c2 {
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -160px;
  left: -90px;
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.contact-title em {
  color: var(--peach);
}

.contact-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 490px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-social a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.contact-social a:hover {
  color: var(--white);
}

/* ============================================================
   CAROUSEL — Pour qui
   ============================================================ */
.carousel-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.carousel-track {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-slide {
  display: none;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  min-height: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196, 132, 74, 0.1);
  border: 1px solid var(--peach-light);
}

.carousel-slide.active {
  display: grid;
  animation: slideIn 0.45s var(--ease);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-img {
  width: 100%;
  height: 440px;
  overflow: hidden;
  flex-shrink: 0;
}
.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.carousel-cat-icon {
  font-size: 2.2rem;
}

.carousel-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--espresso);
  line-height: 1.15;
}

.carousel-content p {
  font-size: 0.95rem;
  color: var(--espresso-light);
  line-height: 1.8;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--peach);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--espresso);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196, 132, 74, 0.12);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}
.carousel-btn--prev {
  left: -22px;
}
.carousel-btn--next {
  right: -22px;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--peach);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--rose);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   GALLERY — Pinterest style
   ============================================================ */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  columns: 4;
  column-gap: 1.1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: transform 0.5s var(--ease);
}

/* Photo 14 est plus courte — on la centre verticalement dans sa colonne */
.gallery-item:nth-child(7) img {
  margin: auto;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.55);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  color: var(--white);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--peach);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.25s;
}
.footer-bottom a:hover {
  color: var(--peach);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 4rem;
  }
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .offer-card--featured {
    transform: none;
  }
  .offer-card--featured:hover {
    transform: translateY(-7px);
  }
  .gallery-grid {
    columns: 3;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 2.5rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease);
    box-shadow: -24px 0 60px rgba(42, 26, 20, 0.1);
    z-index: 999;
  }
  .nav-links.nav-open {
    right: 0;
    display: flex;
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    background: var(--cream-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--espresso);
    cursor: pointer;
    transition: background 0.2s;
  }
  .nav-close:hover {
    background: var(--peach);
  }

  .nav-links a {
    font-size: 1.05rem;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
  }
  .hero-img-wrapper {
    width: 260px;
    height: 320px;
    margin: 0 auto;
  }
  .hero-img-badge {
    left: 0;
  }
  .hero-img-deco {
    display: none;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 1.2rem;
  }

  /* Grids */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .offers-grid {
    grid-template-columns: 1fr;
  }

  /* Carousel */
  .carousel-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .carousel-img {
    height: 300px;
  }
  .carousel-btn--prev {
    left: 4px;
  }
  .carousel-btn--next {
    right: 4px;
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
  .about-deco {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
}
