/* ============================================
   La Cuisine de Caroline — Feuille de style
   Palette chaleureuse : crème, safran, terracotta, olive
   ============================================ */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  /* Couleurs */
  --cream: #faf6ee;
  --cream-soft: #f5efe1;
  --cream-dark: #ece2cb;
  --saffron: #d9a441;
  --saffron-dark: #b8862e;
  --saffron-soft: #f4e2b3;
  --terracotta: #c56b4a;
  --terracotta-dark: #a35538;
  --olive: #4a5634;
  --olive-soft: #6e7a52;
  --brown: #2a1f14;
  --brown-mid: #5b4630;
  --brown-soft: #8b7355;

  --text: #2a1f14;
  --text-soft: #5b4630;
  --text-muted: #8b7355;

  /* Typo */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Espace & rayons */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Ombres chaudes */
  --shadow-sm: 0 2px 8px rgba(42, 31, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 31, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(42, 31, 20, 0.14);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --max-w: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--brown);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.1rem;
  font-weight: 500;
}

p {
  color: var(--text-soft);
  line-height: 1.7;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-soft);
  max-width: 60ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}

.italic {
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: rgba(42, 31, 20, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  transition: transform 0.4s var(--ease-out);
}

.brand:hover .brand-logo {
  transform: rotate(-3deg) scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  font-style: italic;
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-list a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease-out);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--terracotta);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--brown);
  transition: background 0.2s var(--ease);
}

.menu-toggle:hover {
  background: var(--cream-dark);
}

.menu-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle .bar::before,
.menu-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.menu-toggle .bar::before { top: -7px; }
.menu-toggle .bar::after  { top: 7px; }

.menu-toggle[aria-expanded="true"] .bar {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] .bar::before {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              background 0.25s var(--ease),
              color 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(197, 107, 74, 0.32);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(197, 107, 74, 0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}

.btn-secondary:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-saffron {
  background: var(--saffron);
  color: var(--brown);
  box-shadow: 0 4px 14px rgba(217, 164, 65, 0.34);
}

.btn-saffron:hover {
  background: var(--saffron-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--brown);
  padding: 0.6rem 0;
}

.btn-ghost::after {
  content: "→";
  margin-left: 0.4rem;
  transition: transform 0.25s var(--ease-out);
  display: inline-block;
}

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

.btn-ghost:hover::after {
  transform: translateX(6px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 164, 65, 0.18), transparent 45%),
    radial-gradient(circle at 88% 92%, rgba(197, 107, 74, 0.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 .accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}

.hero-text .lead {
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(42, 31, 20, 0.12);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 500;
}

.hero-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--olive);
  flex-shrink: 0;
}

/* Hero image */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 0.6s var(--ease-out);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 31, 20, 0.18) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-visual:hover {
  transform: rotate(0deg);
}

.hero-visual:hover img {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: var(--cream);
  color: var(--brown);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--saffron);
  border-radius: 50%;
}

.hero-decor-circle {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--saffron);
  opacity: 0.18;
  z-index: -1;
}

/* ---------- Section header ---------- */
.section-header {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* ---------- Présentation ---------- */
.about {
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.12), transparent 70%);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-text .signature {
  display: inline-flex;
  flex-direction: column;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(42, 31, 20, 0.14);
}

.signature-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--brown);
}

.signature-role {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.98rem;
  color: var(--text-soft);
  font-weight: 500;
}

.about-points li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--saffron-soft);
  background-image:
    linear-gradient(45deg, transparent 40%, var(--olive) 40%, var(--olive) 50%, transparent 50%),
    linear-gradient(-45deg, transparent 50%, var(--olive) 50%, var(--olive) 60%, transparent 60%);
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-deco {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

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

.service-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover .service-card-image img {
  transform: scale(1.07);
}

.service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 31, 20, 0.4) 100%);
}

.service-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  color: var(--brown);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}

.service-card-body {
  padding: 1.6rem 1.5rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 0.6rem;
}

.service-card-body p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

/* ---------- Mariage feature ---------- */
.feature-mariage {
  background: var(--brown);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.feature-mariage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(197, 107, 74, 0.16), transparent 50%);
  pointer-events: none;
}

.feature-mariage h2,
.feature-mariage h3 {
  color: var(--cream);
}

.feature-mariage .eyebrow {
  color: var(--saffron);
}

.feature-mariage .eyebrow::before {
  background: var(--saffron);
}

.feature-mariage p {
  color: rgba(250, 246, 238, 0.78);
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature-image {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
  margin: 1.8rem 0 2.2rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(250, 246, 238, 0.1);
  border-radius: var(--radius-md);
  transition: background 0.3s var(--ease);
}

.feature-list li:hover {
  background: rgba(250, 246, 238, 0.08);
}

.feature-list-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--saffron);
  font-style: italic;
  flex-shrink: 0;
  line-height: 1;
}

.feature-list-content h4 {
  color: var(--cream);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.feature-list-content p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(250, 246, 238, 0.7);
}

/* ---------- Galerie ---------- */
.gallery {
  background: var(--cream-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 31, 20, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-display);
  font-style: italic;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out);
  z-index: 1;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Layouts asymétriques de la galerie */
.gallery-item.size-lg-h { grid-column: span 3; grid-row: span 2; }
.gallery-item.size-md   { grid-column: span 2; grid-row: span 1; }
.gallery-item.size-md-v { grid-column: span 2; grid-row: span 2; }
.gallery-item.size-sm   { grid-column: span 1; grid-row: span 1; }

/* ---------- Réassurance ---------- */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.reassurance-card {
  padding: 2rem 1.6rem;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease);
}

.reassurance-card:hover {
  transform: translateY(-4px);
  background: var(--saffron-soft);
}

.reassurance-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.reassurance-card:hover .reassurance-icon {
  background: var(--brown);
  color: var(--saffron);
}

.reassurance-icon svg {
  width: 24px;
  height: 24px;
}

.reassurance-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.reassurance-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Bandeau CTA ---------- */
.cta-band {
  background: var(--saffron);
  color: var(--brown);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(197, 107, 74, 0.18), transparent 50%);
}

.cta-band > .container {
  position: relative;
}

.cta-band h2 {
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--brown);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto 2rem;
}

.cta-band .btn-primary {
  background: var(--brown);
  color: var(--cream);
}

.cta-band .btn-primary:hover {
  background: var(--terracotta);
}

/* ---------- Contact / Form ---------- */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-info {
  background: var(--brown);
  color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.18);
}

.contact-info h2,
.contact-info h3 {
  color: var(--cream);
}

.contact-info p {
  color: rgba(250, 246, 238, 0.8);
}

.contact-info .eyebrow {
  color: var(--saffron);
}

.contact-info .eyebrow::before {
  background: var(--saffron);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
  position: relative;
}

.contact-list li {
  display: flex;
  gap: 1rem;
}

.contact-list-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  flex-shrink: 0;
}

.contact-list-icon svg {
  width: 18px;
  height: 18px;
}

.contact-list-content {
  display: flex;
  flex-direction: column;
}

.contact-list-content .label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
  margin-bottom: 0.2rem;
}

.contact-list-content .value {
  font-size: 1rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.5;
}

.contact-list-content a.value:hover {
  color: var(--saffron);
}

/* Form */
.contact-form {
  background: var(--cream-soft);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.form-field label .req {
  color: var(--terracotta);
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

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

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%235b4630' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.form-submit {
  margin-top: 0.5rem;
  width: 100%;
}

.form-success {
  display: none;
  padding: 1.2rem;
  background: var(--olive);
  color: var(--cream);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.form-success.show {
  display: block;
}

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown);
  color: rgba(250, 246, 238, 0.7);
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-logo {
  height: 64px;
  filter: brightness(1.05);
}

.footer-about {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.footer-list a,
.footer-list li {
  font-size: 0.92rem;
  color: rgba(250, 246, 238, 0.7);
  transition: color 0.25s var(--ease);
}

.footer-list a:hover {
  color: var(--saffron);
}

.footer-list svg {
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  vertical-align: middle;
  color: var(--saffron);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  font-size: 0.84rem;
  color: rgba(250, 246, 238, 0.5);
}

.footer-bottom .siret {
  letter-spacing: 0.04em;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 238, 0.7);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-social a:hover {
  background: var(--saffron);
  color: var(--brown);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 12px 30px rgba(197, 107, 74, 0.4);
  font-size: 0.95rem;
}

.mobile-call svg {
  width: 18px;
  height: 18px;
}

/* ---------- Page header (sub-pages) ---------- */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.18), transparent 50%);
}

.page-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.1rem;
}

.page-header-image {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

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

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

/* ---------- Pricing / Formules ---------- */
.formulas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.formula-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease-out);
  position: relative;
}

.formula-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  box-shadow: var(--shadow-md);
}

.formula-card.featured {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.formula-card.featured h3,
.formula-card.featured .formula-name {
  color: var(--cream);
}

.formula-card.featured p,
.formula-card.featured .formula-list li {
  color: rgba(250, 246, 238, 0.7);
}

.formula-card.featured .formula-list li::before {
  background: var(--saffron);
}

.formula-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.formula-card.featured .formula-name {
  color: var(--saffron);
}

.formula-card h3 {
  margin-bottom: 1rem;
}

.formula-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 1.4rem 0 1.6rem;
}

.formula-list li {
  font-size: 0.92rem;
  color: var(--text-soft);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.formula-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.formula-tag {
  position: absolute;
  top: -10px;
  right: 1.6rem;
  background: var(--saffron);
  color: var(--brown);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Anim reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ---------- Image fallback (placeholder) ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-dark), var(--saffron-soft));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .feature-grid,
  .contact-grid,
  .page-header-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .feature-image,
  .about-image,
  .page-header-image {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.size-lg-h { grid-column: span 2; grid-row: span 2; }
  .gallery-item.size-md-v { grid-column: span 2; grid-row: span 2; }
  .gallery-item.size-md   { grid-column: span 2; grid-row: span 1; }
  .gallery-item.size-sm   { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 340px);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -20px 0 40px rgba(42, 31, 20, 0.16);
    gap: 0;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(42, 31, 20, 0.08);
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  .header-cta .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta .btn {
    display: none;
  }

  .main-nav .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .main-nav .header-phone {
    display: flex;
    margin-top: 1rem;
    font-size: 1.1rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.size-lg-h,
  .gallery-item.size-md-v,
  .gallery-item.size-md,
  .gallery-item.size-sm {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.featured {
    grid-column: span 2;
  }

  .mobile-call {
    display: flex;
  }

  body {
    padding-bottom: 5rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track { background: var(--cream-soft); }
::-webkit-scrollbar-thumb {
  background: var(--brown-soft);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brown-mid); }

/* Selection */
::selection {
  background: var(--saffron);
  color: var(--brown);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}
