/* =========================================================
   LE FESTIF — style.css (global)
   Design : Luxury/Festive | Charbon + Or + Ivoire
   ========================================================= */

/* ── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────── */
:root {
  --c-dark:      #0e0e0e;
  --c-dark2:     #161616;
  --c-dark3:     #1e1c1a;
  --c-gold:      #c9a84c;
  --c-gold-light:#e2c97e;
  --c-gold-dark: #a07c2e;
  --c-ivory:     #f4f0e8;
  --c-ivory2:    #ece7dd;
  --c-white:     #ffffff;
  --c-muted:     #9e9585;
  --c-border:    rgba(201,168,76,.2);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --shadow-gold: 0 4px 32px rgba(201,168,76,.18);
  --shadow-dark: 0 8px 48px rgba(0,0,0,.45);

  --nav-h: 80px;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  background: var(--c-dark);
  color: var(--c-ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { max-width: 100%; }

/* ── Utility ──────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section-pad   { padding-block: 100px; }
.section-pad-sm{ padding-block: 60px; }

.text-gold     { color: var(--c-gold); }
.text-ivory    { color: var(--c-ivory); }
.text-muted    { color: var(--c-muted); }
.text-center   { text-align: center; }

/* ── Typography ───────────────────────────────────────── */
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: var(--fw-light);
  line-height: 1.08;
  letter-spacing: -.01em;
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: var(--fw-regular);
  line-height: 1.2;
}
.subtitle {
  font-family: var(--ff-body);
  font-size: clamp(.85rem, 1.5vw, 1rem);
  font-weight: var(--fw-medium);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: var(--fw-light);
  color: var(--c-ivory2);
  max-width: 65ch;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-display);
  line-height: 1.15;
}

/* ── Divider ──────────────────────────────────────────── */
.divider-gold {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 16px auto;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: var(--fw-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--c-gold);
  color: var(--c-dark);
}
.btn-gold:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
}
.btn-outline:hover {
  background: var(--c-gold);
  color: var(--c-dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--c-dark);
  color: var(--c-ivory);
  border: 1px solid var(--c-border);
}
.btn-dark:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* ── NAV ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(14,14,14,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  margin-left: 24px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: var(--fw-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-ivory2);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 8px 0;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-ivory2);
  transition: var(--transition);
}
.nav-dropdown a:hover {
  color: var(--c-gold);
  background: rgba(201,168,76,.06);
}
.nav-dropdown a::after { display: none; }

.nav-cta {
  margin-left: 16px;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--c-ivory);
  transition: var(--transition);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: var(--fw-light);
  color: var(--c-ivory);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--c-gold); }
.nav-mobile .nav-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 2rem;
  color: var(--c-ivory);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-mobile .nav-close:hover { color: var(--c-gold); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--c-dark3);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,.92) 40%, rgba(14,14,14,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 140px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--c-gold);
}
.hero h1 { animation: fadeUp .8s .15s ease both; }
.hero .hero-sub {
  margin-top: 20px;
  animation: fadeUp .8s .3s ease both;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  animation: fadeUp .8s .4s ease both;
}
.hero-tag {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  border: 1px solid rgba(201,168,76,.25);
  padding: 6px 16px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  animation: fadeUp .8s .5s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-muted);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollLine 2s 1.2s ease-in-out infinite;
}

/* ── Stats / Chiffres clés ────────────────────────────── */
.stats-bar {
  background: var(--c-dark2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--c-border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,.04); }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: var(--fw-light);
  color: var(--c-gold);
  line-height: 1;
}
.stat-unit {
  font-size: 1.2rem;
  color: var(--c-gold-dark);
}
.stat-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 8px;
}

/* ── Cards Services ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-dark2);
  transition: var(--transition);
  group: true;
}
.service-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 32px;
}
.service-card-label {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: var(--fw-regular);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  transition: gap var(--transition);
}
.service-card .link-arrow { gap: 16px; }

/* ── Premium Cards (Enhanced Services) ────────────────── */
.premium-services {
  gap: 32px;
}
.premium-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  color: var(--c-dark);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 48px rgba(0,0,0,.15);
  border-color: transparent;
}
.premium-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.premium-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.premium-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: var(--fw-semi);
  color: var(--c-gold);
  background: rgba(201,168,76,.08);
  padding: 6px 12px;
  border-radius: 20px;
}
.premium-card .service-card-img {
  aspect-ratio: 16/10;
}
.premium-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px !important;
}
.premium-body h3 {
  color: var(--c-dark) !important;
  font-size: 1.65rem !important;
  margin-bottom: 12px !important;
}
.premium-body p {
  color: #6b6560 !important;
}
.premium-highlight {
  background: rgba(188,149,75,.08);
  border-left: 3px solid var(--c-gold);
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.premium-highlight p {
  margin: 0 !important;
}
.premium-body .btn {
  align-self: flex-start;
  margin-top: auto;
}
.premium-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

/* ── Feature Block (texte + image côte à côte) ────────── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img {
  position: relative;
}
.feature-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.feature-img::before {
  content: '';
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--c-border);
  z-index: -1;
}
.feature-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 16px 24px;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: var(--fw-semi);
  text-align: center;
  line-height: 1.3;
}
.feature-content { padding-block: 20px; }
.feature-content .subtitle { margin-bottom: 16px; }
.feature-content .display-md { margin-bottom: 24px; }
.feature-content .lead { margin-bottom: 32px; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: var(--c-ivory2);
}
.feature-list li::before {
  content: '✦';
  color: var(--c-gold);
  font-size: .75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── Section en fond clair ────────────────────────────── */
.section-light {
  background: var(--c-ivory);
  color: var(--c-dark);
}
.section-light .subtitle { color: var(--c-gold-dark); }
.section-light .display-md,
.section-light .display-lg { color: var(--c-dark); }
.section-light .lead { color: #4a4540; }
.section-light .divider-gold { opacity: .7; }
.section-light .stat-label { color: #7a7268; }

/* ── Histoire / À propos band ─────────────────────────── */
.story-band {
  background: var(--c-dark3);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* ── Gallery Grid ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
}
.gallery-grid .g-span2 {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,.0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(14,14,14,.45);
}
.gallery-item-label {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  padding: 36px;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars span {
  color: var(--c-gold);
  font-size: 1rem;
}
.testimonial-card blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: var(--fw-light);
  color: var(--c-ivory2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--c-dark);
  font-weight: var(--fw-semi);
}
.testimonial-name { font-size: .9rem; font-weight: var(--fw-medium); }
.testimonial-event { font-size: .78rem; color: var(--c-muted); }

/* ── CTA Band ─────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--c-dark3) 0%, rgba(201,168,76,.08) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}
.cta-band .display-md { margin-bottom: 16px; }
.cta-band .lead { margin: 0 auto 36px; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--c-dark);
  border-top: 1px solid var(--c-border);
  padding-block: 72px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer-tagline {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.footer-col-title {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: .88rem;
  color: var(--c-muted);
  transition: color var(--transition);
}
.footer-col-links a:hover { color: var(--c-ivory); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.footer-contact-item span:first-child { color: var(--c-gold); margin-top: 2px; }
.footer-contact-item a { color: var(--c-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--c-ivory); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
  font-size: .78rem;
  color: var(--c-muted);
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--c-gold); }
.footer-legal {
  display: flex;
  gap: 24px;
}

/* ── Shared Hero Section ──────────────────────────────── */
.hero,
.page-hero {
  padding-block: calc(var(--nav-h) + 40px) 80px;
  background: var(--c-ivory);
  color: var(--c-dark);
}
.page-hero ~ header {
  background: var(--c-dark);
}
.page-nav {
  background: var(--c-dark);
}
.page-nav.scrolled {
  background: rgba(14,14,14,.95);
}
.hero .display-xl,
.page-hero .display-xl {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero .hero-sub,
.page-hero .hero-sub,
.page-hero .hero-description {
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  color: #4a4540;
  max-width: 58ch;
  margin-top: 24px;
  line-height: 1.8;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  gap: 56px;
  align-items: center;
}
.page-hero-text { max-width: 640px; }
.page-hero-image { position: relative; }
.page-hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--c-border);
}
.page-hero-stats {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -24px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--c-gold);
  color: var(--c-dark);
  border: 1px solid rgba(14,14,14,.12);
  padding: 18px;
  gap: 12px;
  box-shadow: var(--shadow-gold);
  width: min(100%, 720px);
}
.page-hero-stat { text-align: center; }
.page-hero-stat .label {
  display: block;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(14,14,14,.75);
  margin-bottom: 8px;
}
.page-hero-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}
.page-hero-stat span {
  display: block;
  font-size: .95rem;
  color: rgba(14,14,14,.85);
}
.page-hero .btn-outline,
.hero .btn-outline {
  border-color: var(--c-dark);
  color: var(--c-dark);
}
.page-hero .btn-outline:hover,
.hero .btn-outline:hover {
  background: var(--c-dark);
  color: var(--c-ivory);
}

.page-hero .btn-outline:hover {
  background: var(--c-dark);
  color: var(--c-ivory);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb-sep { color: var(--c-border); }

/* ── Accordion / FAQ ──────────────────────────────────── */
.accordion { border: 1px solid var(--c-border); }
.accordion-item { border-bottom: 1px solid var(--c-border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: var(--fw-regular);
  color: var(--c-ivory);
  background: transparent;
  cursor: pointer;
  transition: color var(--transition);
  text-align: left;
}
.accordion-trigger:hover { color: var(--c-gold); }
.accordion-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--c-gold);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: var(--c-gold);
  color: var(--c-dark);
  transform: rotate(45deg);
}
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.accordion-body.open { grid-template-rows: 1fr; }
.accordion-inner {
  overflow: hidden;
  padding: 0 28px;
}
.accordion-body.open .accordion-inner { padding-bottom: 24px; }
.accordion-inner p {
  font-size: .92rem;
  color: var(--c-muted);
  line-height: 1.8;
}

/* ── Contact Form ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  color: var(--c-ivory);
  font-family: var(--ff-body);
  font-size: .92rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--c-gold); }
.form-control::placeholder { color: var(--c-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Map ──────────────────────────────────────────────── */
.map-wrapper {
  position: relative;
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(.8) brightness(.75);
  transition: filter var(--transition);
}
.map-wrapper:hover iframe { filter: grayscale(.2) brightness(.9); }

/* ── Badges / Tags ────────────────────────────────────── */
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--c-border);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: var(--transition);
}
.badge:hover { border-color: var(--c-gold); color: var(--c-gold); }
.badge-icon { font-size: .9rem; }

/* ── Equipment Grid ───────────────────────────────────── */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.equip-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  padding: 28px;
  transition: var(--transition);
}
.equip-card:hover {
  border-color: var(--c-gold);
  background: rgba(201,168,76,.04);
}
.equip-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.equip-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  margin-bottom: 8px;
}
.equip-card p {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ── HERO PREMIUM ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,.7) 0%, rgba(14,14,14,.5) 50%, rgba(14,14,14,.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
  font-weight: var(--fw-semi);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 24px;
}
.hero-title em {
  color: var(--c-gold);
  font-style: normal;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--c-ivory2);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tag {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--c-gold-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-gold);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ── STATS SECTION ───────────────────────────────────– */
.stats-section {
  background: var(--c-dark2);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 32px;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
}
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.stat-value {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: var(--fw-semi);
  color: var(--c-gold);
  margin-bottom: 8px;
}
.stat-unit {
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  color: var(--c-muted);
}
.stat-label {
  font-size: 0.95rem;
  color: var(--c-muted);
  letter-spacing: 0.5px;
}

/* ── SERVICES SECTION ────────────────────────────────– */
.services-section {
  background: var(--c-ivory);
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 16px;
  font-weight: var(--fw-semi);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-light);
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #5a5248;
  max-width: 650px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.service-card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.card-icon {
  font-size: 2.5rem;
  padding: 24px 24px 12px;
}
.card-badge {
  display: inline-block;
  width: fit-content;
  margin: 0 24px;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: var(--fw-semi);
  background: rgba(201,168,76,.1);
  color: var(--c-gold);
  padding: 6px 12px;
  border-radius: 16px;
}
.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card-image img.card-image--traiteur {
  object-position: center 70%;
}
.card-image img.card-image--materiel {
  object-position: center 65%;
}
.service-card:hover .card-image img {
  transform: scale(1.05);
}
.card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  font-weight: var(--fw-regular);
  color: var(--c-dark);
  margin-bottom: 16px;
}
.highlight-box {
  background: rgba(201,168,76,.08);
  border-left: 3px solid var(--c-gold);
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.highlight-box p {
  margin: 0 0 8px 0;
  color: #4a4a4a;
  font-size: 0.95rem;
}
.highlight-box p:last-child {
  margin: 0;
}
.card-body p {
  color: #6b6560;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-gold);
  font-weight: var(--fw-semi);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
  align-self: flex-start;
}
.card-link:hover { gap: 12px; }

.services-cta {
  text-align: center;
}
.cta-box {
  background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, rgba(201,168,76,.03) 100%);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 12px;
  padding: 60px 40px;
}
.cta-box h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: var(--fw-regular);
  color: var(--c-dark);
  margin-bottom: 12px;
}
.cta-box p {
  font-size: 1.05rem;
  color: #5a5248;
  margin-bottom: 28px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FEATURE SECTION ─────────────────────────────────– */
.feature-section {
  padding: 100px 0;
}
.dark-bg {
  background: var(--c-dark);
}
.light-bg {
  background: var(--c-ivory);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-image {
  position: relative;
}
.feature-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.feature-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 24px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: var(--fw-semi);
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: var(--shadow-gold);
}
.feature-badge strong {
  font-size: 2rem;
  display: block;
  line-height: 1;
  margin: 4px 0;
}
.feature-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
  font-weight: var(--fw-semi);
}
.feature-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: var(--fw-light);
  line-height: 1.2;
  margin-bottom: 20px;
}
.dark-bg .feature-title { color: var(--c-white); }
.light-bg .feature-title { color: var(--c-dark); }
.feature-intro {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.dark-bg .feature-intro { color: var(--c-ivory2); }
.light-bg .feature-intro { color: #5a5248; }
.feature-list {
  margin-bottom: 32px;
}
.feature-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dark-bg .feature-list li { color: var(--c-muted); }
.light-bg .feature-list li { color: #6b6560; }
.feature-highlight {
  padding: 20px;
  background: rgba(201,168,76,.1);
  border-left: 3px solid var(--c-gold);
  border-radius: 6px;
  margin-bottom: 32px;
  font-style: italic;
}
.dark-bg .feature-highlight { color: var(--c-ivory2); }
.light-bg .feature-highlight { color: #4a4a4a; }

/* ── CTA SECTION ─────────────────────────────────────– */
.cta-section {
  background: var(--c-dark);
  padding: 100px 0;
  text-align: center;
}
.cta-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
  font-weight: var(--fw-semi);
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-light);
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ── STORY SECTION ───────────────────────────────────– */
.story-section {
  padding: 100px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.story-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 16px;
  font-weight: var(--fw-semi);
}
.story-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-light);
  line-height: 1.2;
  margin-bottom: 24px;
}
.light-bg .story-title { color: var(--c-dark); }
.story-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.light-bg .story-text { color: #5a5248; }

/* ── REASONS SECTION ─────────────────────────────────– */
.reasons-section {
  background: var(--c-dark);
  padding: 100px 0;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reason-card {
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.15);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}
.reason-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-8px);
}
.reason-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.reason-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  color: var(--c-gold);
  margin-bottom: 12px;
}
.reason-card p {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── FINAL CTA ───────────────────────────────────────– */
.final-cta-section {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark3) 100%);
  padding: 100px 0;
  text-align: center;
}
.final-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-light);
  color: var(--c-white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.final-subtitle {
  font-size: 1.1rem;
  color: var(--c-ivory2);
  max-width: 700px;
  margin: 0 auto 40px;
}
.final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────– */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: var(--fw-semi);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}
.btn-gold {
  background: var(--c-gold);
  color: var(--c-dark);
}
.btn-gold:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border: 2px solid var(--c-gold);
  background: transparent;
  color: var(--c-gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,.1);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition);
}
.site-nav.scrolled {
  background: rgba(14,14,14,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.nav-cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-cta-group .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ── Unified Header ─────────────────────────────────── */
.site-nav .nav-links {
  gap: clamp(16px, 1.8vw, 28px);
}
.site-nav .nav-cta-group .btn {
  padding: 10px 16px;
  font-size: .78rem;
  letter-spacing: .08em;
  white-space: nowrap;
}
.site-nav .nav-cta-group .btn.active {
  box-shadow: 0 0 0 1px rgba(201,168,76,.28);
}
.nav-mobile a.active {
  color: var(--c-gold);
}
.nav-mobile .nav-mobile-spacer {
  margin-top: 16px;
}

/* ── SEO / Content Pages ─────────────────────────────── */
.content-section {
  background: var(--c-ivory);
  color: var(--c-dark);
  padding: calc(var(--nav-h) + 72px) 0 96px;
}
.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}
.content-hero img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
.content-kicker {
  color: var(--c-gold-dark);
  font-size: .82rem;
  font-weight: var(--fw-semi);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.content-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--c-dark);
  margin-bottom: 18px;
}
.content-lead {
  color: #4a4540;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 66ch;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.content-card {
  background: var(--c-white);
  border: 1px solid rgba(14,14,14,.08);
  border-radius: 8px;
  padding: 28px;
}
.content-card h2,
.content-card h3 {
  color: var(--c-dark);
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.content-card p,
.content-card li {
  color: #5a5248;
  font-size: .98rem;
}
.content-card ul {
  display: grid;
  gap: 8px;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.contact-panel a {
  color: var(--c-gold-dark);
  font-weight: var(--fw-semi);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  margin-top: 72px;
}
.split-band img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
.feature-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.feature-pill-list span {
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.22);
  color: var(--c-gold-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .86rem;
  font-weight: var(--fw-semi);
}
.process-list {
  counter-reset: process;
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  color: #5a5248;
}
.process-list li::before {
  content: counter(process);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--c-gold);
  color: var(--c-dark);
  border-radius: 50%;
  font-weight: var(--fw-bold);
}
.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid rgba(14,14,14,.08);
  border-radius: 8px;
  padding: 24px;
}
.faq-item h3 {
  color: var(--c-dark);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: #5a5248;
}

/* ── Traiteur Page ───────────────────────────────────── */
.traiteur-page {
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}
.traiteur-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--c-dark);
  color: var(--c-white);
}
.traiteur-hero-media {
  position: absolute;
  inset: 0;
}
.traiteur-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}
.traiteur-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,14,.88) 0%, rgba(14,14,14,.58) 48%, rgba(14,14,14,.28) 100%),
    linear-gradient(0deg, rgba(14,14,14,.82) 0%, rgba(14,14,14,0) 45%);
}
.traiteur-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 72px;
}
.traiteur-hero-copy {
  max-width: 760px;
}
.traiteur-eyebrow {
  color: var(--c-gold-light);
  font-size: .82rem;
  font-weight: var(--fw-semi);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.traiteur-title {
  color: var(--c-white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: var(--fw-light);
  line-height: 1.02;
  margin-bottom: 22px;
}
.traiteur-title span {
  color: var(--c-gold-light);
}
.traiteur-intro {
  color: var(--c-ivory2);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 66ch;
}
.traiteur-quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  max-width: 860px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.16);
}
.traiteur-quickfacts div {
  background: rgba(14,14,14,.5);
  padding: 22px;
}
.traiteur-quickfacts strong {
  display: block;
  color: var(--c-gold-light);
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.traiteur-quickfacts span {
  color: var(--c-ivory2);
  font-size: .88rem;
}
.traiteur-section {
  padding: 96px 0;
}
.traiteur-section + .traiteur-section {
  border-top: 1px solid rgba(14,14,14,.08);
}
.traiteur-section.dark {
  background: var(--c-dark);
  color: var(--c-ivory);
}
.traiteur-section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.traiteur-section-head h2 {
  color: inherit;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: var(--fw-light);
}
.traiteur-section-head p {
  color: #5a5248;
  font-size: 1.05rem;
}
.traiteur-section.dark .traiteur-section-head p {
  color: var(--c-muted);
}
.traiteur-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.traiteur-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--c-dark);
  color: var(--c-white);
}
.traiteur-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: .62;
  transition: transform .6s ease, opacity .35s ease;
}
.traiteur-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,14,14,.9), rgba(14,14,14,.12));
}
.traiteur-card:hover img {
  transform: scale(1.06);
  opacity: .74;
}
.traiteur-card-content {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.traiteur-card-content h3 {
  color: var(--c-white);
  font-size: 1.65rem;
  margin-bottom: 10px;
}
.traiteur-card-content p {
  color: var(--c-ivory2);
  font-size: .96rem;
}
.traiteur-formats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.traiteur-format {
  background: var(--c-white);
  border: 1px solid rgba(14,14,14,.08);
  border-radius: 10px;
  padding: 28px;
}
.traiteur-format .num {
  color: var(--c-gold-dark);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  font-size: .8rem;
  text-transform: uppercase;
}
.traiteur-format h3 {
  color: var(--c-dark);
  font-size: 1.45rem;
  margin: 14px 0 10px;
}
.traiteur-format p {
  color: #5a5248;
}
.traiteur-experience {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.traiteur-experience img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
}
.traiteur-checks {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.traiteur-checks li {
  background: rgba(201,168,76,.08);
  border-left: 3px solid var(--c-gold);
  padding: 18px 20px;
  color: #4a4540;
}
.traiteur-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.traiteur-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px;
  padding: 26px;
}
.traiteur-step span {
  color: var(--c-gold-light);
  font-size: .82rem;
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
}
.traiteur-step h3 {
  color: var(--c-white);
  font-size: 1.35rem;
  margin: 14px 0 10px;
}
.traiteur-step p {
  color: var(--c-muted);
}
.traiteur-faq {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 48px;
}
.traiteur-faq-list {
  display: grid;
  gap: 14px;
}
.traiteur-faq-item {
  background: var(--c-white);
  border: 1px solid rgba(14,14,14,.08);
  border-radius: 10px;
  padding: 24px;
}
.traiteur-faq-item h3 {
  color: var(--c-dark);
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.traiteur-faq-item p {
  color: #5a5248;
}
.traiteur-final {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark3) 100%);
  color: var(--c-white);
  padding: 72px;
  border-radius: 14px;
  text-align: center;
}
.traiteur-final h2 {
  color: var(--c-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: var(--fw-light);
}
.traiteur-final p {
  color: var(--c-ivory2);
  max-width: 680px;
  margin: 16px auto 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .nav-logo { margin-left: 0; }
  .nav-cta-group .btn { padding: 9px 14px; font-size: .78rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-span2 { grid-column: span 1; grid-row: span 1; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse { direction: ltr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-stats {
    position: static;
    transform: none;
    margin-top: 16px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .content-hero { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .split-band { grid-template-columns: 1fr; }
  .traiteur-section-head,
  .traiteur-experience,
  .traiteur-faq { grid-template-columns: 1fr; }
  .traiteur-card-grid,
  .traiteur-formats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .traiteur-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta, .nav-cta-group { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--c-border); }
  .stat-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-pad { padding-block: 64px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn,
  .final-buttons .btn,
  .cta-buttons .btn { width: min(100%, 360px); }
  .final-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; }
  .feature-badge { bottom: 20px; right: 20px; width: 100px; height: 100px; }
  .content-section { padding-block: calc(var(--nav-h) + 48px) 64px; }
  .content-grid, .contact-panel { grid-template-columns: 1fr; }
  .content-card { padding: 22px; }
  .page-hero-stats { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 38px 1fr; }
  .process-list li::before { width: 38px; height: 38px; }
  .traiteur-hero { min-height: auto; }
  .traiteur-hero-inner { padding: 88px 0 56px; }
  .traiteur-quickfacts,
  .traiteur-card-grid,
  .traiteur-formats,
  .traiteur-process { grid-template-columns: 1fr; }
  .traiteur-section { padding: 64px 0; }
  .traiteur-final { padding: 44px 22px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .badge-grid   { gap: 6px; }
  .stats-grid { grid-template-columns: 1fr; }
  .reason-card { padding: 24px; }
  .cta-box { padding: 40px 20px; }
  .services-section { padding: 60px 0; }
  .feature-section { padding: 60px 0; }
  .story-section { padding: 60px 0; }
  .reasons-section { padding: 60px 0; }
  .final-cta-section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .cta-title { font-size: 1.8rem; }
  .final-title { font-size: 1.8rem; }
  .btn { width: 100%; padding-inline: 18px; }
  .hero-title { font-size: clamp(2.6rem, 16vw, 4rem); }
  .hero-subtitle br { display: none; }
  .nav-mobile a { font-size: 1.55rem; }
}

/* ── Traiteur Premium v2 (scoped) ────────────────────── */
.traiteur-page {
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}
.traiteur-page .container {
  width: min(1180px, 92vw);
}
.traiteur-hero {
  background:
    linear-gradient(135deg, rgba(14,14,14,.96), rgba(30,28,26,.92)),
    var(--c-dark);
  color: var(--c-white);
  min-height: auto;
  padding: 92px 0 76px;
  overflow: hidden;
}
.traiteur-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr);
  gap: 56px;
  align-items: center;
}
.traiteur-hero-copy {
  max-width: 780px;
}
.traiteur-eyebrow,
.traiteur-kicker {
  color: var(--c-gold-light);
  font-size: .78rem;
  font-weight: var(--fw-semi);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.traiteur-kicker {
  color: var(--c-gold-dark);
}
.traiteur-hero h1 {
  color: var(--c-white);
  font-size: clamp(2.45rem, 5.6vw, 5.25rem);
  font-weight: var(--fw-light);
  line-height: 1.03;
  max-width: 920px;
  margin-bottom: 22px;
}
.traiteur-hero-copy p:not(.traiteur-eyebrow) {
  color: var(--c-ivory2);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 68ch;
}
.traiteur-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.traiteur-hero-visual {
  position: relative;
}
.traiteur-hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,.28);
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
}
.traiteur-hero-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: min(270px, 82%);
  background: var(--c-gold);
  color: var(--c-dark);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-gold);
}
.traiteur-hero-card strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 6px;
}
.traiteur-hero-card span {
  display: block;
  font-size: .92rem;
  line-height: 1.45;
}
.traiteur-section {
  padding: 86px 0;
}
.traiteur-section + .traiteur-section {
  border-top: 1px solid rgba(14,14,14,.08);
}
.traiteur-section-soft {
  background: #eee7da;
}
.traiteur-dark {
  background: var(--c-dark);
  color: var(--c-ivory);
}
.traiteur-intro-grid,
.traiteur-section-heading,
.traiteur-split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}
.traiteur-section-heading {
  align-items: end;
  margin-bottom: 42px;
}
.traiteur-section h2,
.traiteur-intro-grid h2,
.traiteur-section-heading h2,
.traiteur-location h2,
.traiteur-cta h2 {
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
}
.traiteur-intro-grid p,
.traiteur-section-heading p,
.traiteur-split p,
.traiteur-location p,
.traiteur-cta p {
  color: #4f4942;
  font-size: 1.05rem;
  line-height: 1.8;
}
.traiteur-dark .traiteur-section-heading p {
  color: var(--c-muted);
}
.traiteur-card-grid,
.traiteur-service-grid,
.traiteur-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.traiteur-card,
.traiteur-service-card,
.traiteur-benefit-grid article,
.traiteur-faq-list article {
  position: static;
  min-height: auto;
  background: var(--c-white);
  color: var(--c-dark);
  border: 1px solid rgba(14,14,14,.08);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(14,14,14,.05);
  overflow: visible;
}
.traiteur-card::after {
  display: none;
}
.traiteur-card h3,
.traiteur-service-card h3,
.traiteur-benefit-grid h3,
.traiteur-faq-list h3 {
  color: var(--c-dark);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.traiteur-card p,
.traiteur-service-card p,
.traiteur-benefit-grid p,
.traiteur-faq-list p {
  color: #5a5248;
  font-size: .96rem;
  line-height: 1.7;
}
.traiteur-service-card {
  border-left: 3px solid var(--c-gold);
}
.traiteur-split {
  align-items: center;
}
.traiteur-split img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 52px rgba(14,14,14,.12);
}
.traiteur-check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.traiteur-check-list li {
  background: rgba(201,168,76,.09);
  border-left: 3px solid var(--c-gold);
  border-radius: 6px;
  color: #4f4942;
  padding: 14px 16px;
}
.traiteur-dark .traiteur-kicker {
  color: var(--c-gold-light);
}
.traiteur-dark .traiteur-benefit-grid article {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,168,76,.22);
  box-shadow: none;
}
.traiteur-dark .traiteur-benefit-grid h3 {
  color: var(--c-gold-light);
}
.traiteur-dark .traiteur-benefit-grid p {
  color: var(--c-muted);
}
.traiteur-location {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}
.traiteur-location-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.traiteur-location-tags span {
  background: var(--c-white);
  border: 1px solid rgba(14,14,14,.08);
  border-radius: 999px;
  color: #5a5248;
  padding: 8px 14px;
  font-size: .9rem;
}
.traiteur-steps {
  counter-reset: traiteurStep;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.traiteur-steps li {
  counter-increment: traiteurStep;
  background: var(--c-white);
  border: 1px solid rgba(14,14,14,.08);
  border-radius: 10px;
  padding: 26px;
}
.traiteur-steps li::before {
  content: counter(traiteurStep, decimal-leading-zero);
  display: inline-flex;
  color: var(--c-gold-dark);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.traiteur-steps strong,
.traiteur-steps span {
  display: block;
}
.traiteur-steps strong {
  color: var(--c-dark);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.traiteur-steps span {
  color: #5a5248;
  line-height: 1.65;
}
.traiteur-cta {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark3) 100%);
  color: var(--c-white);
  border-radius: 14px;
  padding: 56px;
  text-align: center;
}
.traiteur-cta .traiteur-kicker {
  color: var(--c-gold-light);
}
.traiteur-cta p {
  color: var(--c-ivory2);
  max-width: 700px;
  margin: 16px auto 28px;
}
.traiteur-faq-section {
  padding-top: 54px;
}
.traiteur-faq-list {
  display: grid;
  gap: 14px;
}

@media (max-width: 1024px) {
  .traiteur-hero-grid,
  .traiteur-intro-grid,
  .traiteur-section-heading,
  .traiteur-split {
    grid-template-columns: 1fr;
  }
  .traiteur-card-grid,
  .traiteur-service-grid,
  .traiteur-benefit-grid,
  .traiteur-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .traiteur-hero-card {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .traiteur-hero {
    padding: 58px 0 54px;
  }
  .traiteur-hero-grid {
    gap: 34px;
  }
  .traiteur-hero-visual img {
    aspect-ratio: 16/11;
  }
  .traiteur-hero-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
  .traiteur-section {
    padding: 58px 0;
  }
  .traiteur-card-grid,
  .traiteur-service-grid,
  .traiteur-benefit-grid,
  .traiteur-steps {
    grid-template-columns: 1fr;
  }
  .traiteur-card,
  .traiteur-service-card,
  .traiteur-benefit-grid article,
  .traiteur-faq-list article,
  .traiteur-steps li {
    padding: 22px;
  }
  .traiteur-cta {
    padding: 38px 22px;
  }
  .traiteur-actions,
  .traiteur-actions .btn,
  .traiteur-cta .btn {
    width: 100%;
  }
}

/* ── Traiteur Premium v3: final overrides ───────────── */
.traiteur-page {
  --traiteur-max: 1180px;
  --traiteur-pad-x: 24px;
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}
.traiteur-page *,
.traiteur-page *::before,
.traiteur-page *::after {
  box-sizing: border-box;
}
.traiteur-page .traiteur-container {
  width: min(var(--traiteur-max), calc(100% - (var(--traiteur-pad-x) * 2)));
  margin-inline: auto;
}
.traiteur-page .traiteur-hero {
  position: relative;
  display: block;
  min-height: auto;
  padding: 88px 0 86px;
  background: linear-gradient(135deg, #0e0e0e 0%, #1e1c1a 72%);
  color: var(--c-white);
  overflow: visible;
}
.traiteur-page .traiteur-hero::before,
.traiteur-page .traiteur-hero::after {
  display: none !important;
  content: none !important;
  pointer-events: none !important;
}
.traiteur-page .traiteur-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.traiteur-page .traiteur-hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}
.traiteur-page .traiteur-eyebrow,
.traiteur-page .traiteur-kicker {
  display: inline-block;
  color: var(--c-gold-light);
  font-size: .78rem;
  font-weight: var(--fw-semi);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.traiteur-page .traiteur-kicker {
  color: var(--c-gold-dark);
}
.traiteur-page .traiteur-hero h1 {
  color: var(--c-white);
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
  font-weight: var(--fw-light);
  line-height: 1.04;
  max-width: 900px;
  margin: 0 0 22px;
}
.traiteur-page .traiteur-hero p {
  color: var(--c-ivory2);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.75;
  max-width: 66ch;
  margin: 0;
}
.traiteur-page .traiteur-hero-actions {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.traiteur-page .traiteur-btn {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: var(--fw-semi);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: auto;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.traiteur-page .traiteur-btn-primary {
  background: var(--c-gold);
  color: var(--c-dark);
  border: 1px solid var(--c-gold);
}
.traiteur-page .traiteur-btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}
.traiteur-page .traiteur-btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--c-gold-light);
  border: 1px solid rgba(226,201,126,.72);
}
.traiteur-page .traiteur-btn-secondary:hover {
  background: rgba(226,201,126,.12);
  border-color: var(--c-gold-light);
  transform: translateY(-2px);
}
.traiteur-page .traiteur-hero-media {
  position: relative;
  inset: auto;
  z-index: 2;
}
.traiteur-page .traiteur-hero-media img,
.traiteur-page .traiteur-image-panel img,
.traiteur-page .traiteur-prestations-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}
.traiteur-page .traiteur-hero-media img {
  aspect-ratio: 4/5;
  opacity: 1;
  border: 1px solid rgba(226,201,126,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}
.traiteur-page .traiteur-proof-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
  padding: 0 0 34px;
  background: linear-gradient(180deg, transparent 0 34px, var(--c-ivory) 34px 100%);
}
.traiteur-page .traiteur-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(201,168,76,.24);
  box-shadow: 0 22px 64px rgba(14,14,14,.16);
}
.traiteur-page .traiteur-proof-grid div {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid rgba(201,168,76,.18);
}
.traiteur-page .traiteur-proof-grid div:last-child {
  border-right: 0;
}
.traiteur-page .traiteur-proof-grid strong,
.traiteur-page .traiteur-proof-grid span {
  display: block;
}
.traiteur-page .traiteur-proof-grid strong {
  color: var(--c-dark);
  font-size: 1.02rem;
  line-height: 1.2;
}
.traiteur-page .traiteur-proof-grid span {
  margin-top: 8px;
  color: #5a5248;
  font-size: .94rem;
  line-height: 1.55;
}
.traiteur-page .traiteur-section {
  padding: 80px 0;
  border-top: 0;
}
.traiteur-page .traiteur-section-soft {
  background: #eee7da;
}
.traiteur-page .traiteur-dark {
  background: var(--c-dark);
  color: var(--c-ivory);
}
.traiteur-page .traiteur-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.traiteur-page .traiteur-copy h2,
.traiteur-page .traiteur-heading h2,
.traiteur-page .traiteur-location h2,
.traiteur-page .traiteur-cta h2 {
  color: inherit;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.12;
  font-weight: var(--fw-light);
  max-width: 900px;
  margin: 0;
}
.traiteur-page .traiteur-heading {
  max-width: 850px;
  margin-bottom: 34px;
}
.traiteur-page .traiteur-heading p,
.traiteur-page .traiteur-copy p,
.traiteur-page .traiteur-location p,
.traiteur-page .traiteur-cta p {
  color: #554e46;
  font-size: 1rem;
  line-height: 1.75;
  margin: 16px 0 0;
}
.traiteur-page .traiteur-dark .traiteur-heading p,
.traiteur-page .traiteur-dark .traiteur-copy p,
.traiteur-page .traiteur-dark .traiteur-card p,
.traiteur-page .traiteur-dark .traiteur-feature-list p {
  color: var(--c-muted);
}
.traiteur-page .traiteur-dark .traiteur-kicker,
.traiteur-page .traiteur-dark .traiteur-heading h2,
.traiteur-page .traiteur-dark .traiteur-copy h2 {
  color: var(--c-gold-light);
}
.traiteur-page .traiteur-mini-panel {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.24);
  box-shadow: 0 14px 34px rgba(14,14,14,.06);
}
.traiteur-page .traiteur-mini-panel strong,
.traiteur-page .traiteur-mini-panel span {
  display: block;
}
.traiteur-page .traiteur-mini-panel strong {
  color: var(--c-gold-dark);
  margin-bottom: 6px;
}
.traiteur-page .traiteur-mini-panel span {
  color: #554e46;
}
.traiteur-page .traiteur-signature-section {
  position: relative;
  padding-top: 0;
  background:
    linear-gradient(180deg, var(--c-ivory) 0%, #f2eadc 48%, #eee7da 100%);
}
.traiteur-page .traiteur-signature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 24px;
  align-items: stretch;
}
.traiteur-page .traiteur-signature-card {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 18%, rgba(226,201,126,.2), transparent 33%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, rgba(14,14,14,.98), rgba(34,31,27,.94));
  border: 1px solid rgba(226,201,126,.24);
  box-shadow: 0 22px 70px rgba(14,14,14,.16);
}
.traiteur-page .traiteur-signature-logo {
  position: relative;
  inset: auto;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 230px;
  width: 100%;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(226,201,126,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: none;
}
.traiteur-page .traiteur-signature-logo::before {
  content: "LF";
  position: absolute;
  inset: auto 0 12px;
  color: rgba(226,201,126,.08);
  font-size: 5.8rem;
  line-height: 1;
  font-weight: var(--fw-bold);
  text-align: center;
  pointer-events: none;
}
.traiteur-page .traiteur-signature-logo img {
  width: min(82%, 155px);
  height: auto;
  max-height: 96px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  border: 0;
}
.traiteur-page .traiteur-signature-logo strong,
.traiteur-page .traiteur-signature-logo span {
  position: relative;
  display: block;
  text-align: center;
}
.traiteur-page .traiteur-signature-logo strong {
  color: var(--c-gold-light);
  font-size: 1.12rem;
}
.traiteur-page .traiteur-signature-logo span {
  color: var(--c-ivory2);
  font-size: .8rem;
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.traiteur-page .traiteur-signature-body {
  position: relative;
  z-index: 1;
}
.traiteur-page .traiteur-signature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.traiteur-page .traiteur-signature-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(226,201,126,.12);
  border: 1px solid rgba(226,201,126,.24);
  color: var(--c-gold-light);
  font-size: .84rem;
  font-weight: var(--fw-bold);
}
.traiteur-page .traiteur-signature-card h2 {
  color: var(--c-gold-light);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  font-weight: var(--fw-light);
  margin: 10px 0 0;
}
.traiteur-page .traiteur-signature-card p {
  margin: 18px 0 0;
  color: var(--c-ivory2);
  line-height: 1.75;
}
.traiteur-page .traiteur-signature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.traiteur-page .traiteur-signature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(226,201,126,.26);
  color: var(--c-gold-light);
  font-size: .88rem;
  font-weight: var(--fw-bold);
}
.traiteur-page .traiteur-signature-note {
  align-self: start;
  height: auto;
  min-height: unset;
  display: grid;
  gap: 14px;
  width: min(100%, 360px);
}
.traiteur-page .traiteur-signature-side-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,252,246,.96);
  border: 1px solid rgba(201,168,76,.26);
  box-shadow: 0 14px 34px rgba(14,14,14,.07);
}
.traiteur-page .traiteur-signature-side-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.24);
  color: var(--c-gold-dark);
  font-size: .76rem;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.traiteur-page .traiteur-signature-side-card strong {
  display: block;
  color: var(--c-gold-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}
.traiteur-page .traiteur-signature-side-card p {
  margin: 10px 0 0;
  color: #5a5248;
  line-height: 1.62;
}
.traiteur-page .traiteur-signature-side-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: var(--fw-bold);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease;
}
.traiteur-page .traiteur-signature-side-card a:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}
.traiteur-page .traiteur-image-panel img {
  aspect-ratio: 4/3;
  box-shadow: 0 18px 46px rgba(14,14,14,.12);
}
.traiteur-page .traiteur-grid {
  display: grid;
  gap: 20px;
}
.traiteur-page .traiteur-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.traiteur-page .traiteur-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.traiteur-page .traiteur-card,
.traiteur-page .traiteur-faq-grid article {
  min-height: 100%;
  padding: 26px;
  border-radius: 20px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 12px 30px rgba(14,14,14,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.traiteur-page .traiteur-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.48);
  box-shadow: 0 18px 44px rgba(14,14,14,.1);
}
.traiteur-page .traiteur-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--c-gold-dark);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
}
.traiteur-page .traiteur-card h3,
.traiteur-page .traiteur-feature-list h3,
.traiteur-page .traiteur-steps h3,
.traiteur-page .traiteur-faq-grid h3 {
  color: var(--c-dark);
  font-size: 1.28rem;
  line-height: 1.2;
  margin: 0 0 10px;
}
.traiteur-page .traiteur-card p,
.traiteur-page .traiteur-feature-list p,
.traiteur-page .traiteur-steps p,
.traiteur-page .traiteur-faq-grid p {
  color: #5a5248;
  line-height: 1.65;
  margin: 0;
}
.traiteur-page .traiteur-prestations-layout {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr);
  gap: 28px;
  align-items: stretch;
}
.traiteur-page .traiteur-prestations-image img {
  height: 100%;
  min-height: 420px;
}
.traiteur-page .traiteur-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.traiteur-page .traiteur-feature-list article {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(226,201,126,.22);
}
.traiteur-page .traiteur-feature-list h3 {
  color: var(--c-gold-light);
}
.traiteur-page .traiteur-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}
.traiteur-page .traiteur-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.24);
  color: #554e46;
  white-space: nowrap;
}
.traiteur-page .traiteur-diet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.traiteur-page .traiteur-diet-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(14,14,14,.92);
  border: 1px solid rgba(201,168,76,.42);
  color: var(--c-gold-light);
  font-size: .9rem;
  font-weight: var(--fw-bold);
  letter-spacing: .02em;
  white-space: nowrap;
}
.traiteur-page .traiteur-cuisine-card span {
  margin-bottom: 14px;
  color: var(--c-gold-dark);
}
.traiteur-page .traiteur-location {
  text-align: center;
  max-width: 980px;
}
.traiteur-page .traiteur-location p {
  max-width: 82ch;
  margin-inline: auto;
}
.traiteur-page .traiteur-steps {
  counter-reset: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}
.traiteur-page .traiteur-steps li {
  display: block;
  padding: 26px;
  border-radius: 20px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 12px 30px rgba(14,14,14,.05);
}
.traiteur-page .traiteur-steps li::before {
  display: none;
}
.traiteur-page .traiteur-steps span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--c-gold-dark);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
}
.traiteur-page .traiteur-cta {
  padding: clamp(36px, 6vw, 62px);
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(14,14,14,.96), rgba(30,28,26,.92)),
    var(--c-dark);
  border: 1px solid rgba(226,201,126,.24);
  box-shadow: 0 22px 70px rgba(14,14,14,.16);
}
.traiteur-page .traiteur-cta .traiteur-kicker,
.traiteur-page .traiteur-cta h2 {
  color: var(--c-gold-light);
}
.traiteur-page .traiteur-cta p {
  color: var(--c-ivory2);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 26px;
}
.traiteur-page .traiteur-faq-section {
  display: block;
  padding: 90px 0;
  background: #f5efe6;
  scroll-margin-top: 96px;
}
.traiteur-page .traiteur-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(620px, 1.15fr);
  gap: 60px;
  align-items: start;
}
.traiteur-page .traiteur-faq-intro {
  position: sticky;
  top: 110px;
  max-width: 430px;
}
.traiteur-page .traiteur-faq-intro h2 {
  color: var(--c-dark);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
  font-weight: var(--fw-light);
  margin: 10px 0 0;
}
.traiteur-page .traiteur-faq-intro p {
  color: #5a5248;
  font-size: 1rem;
  line-height: 1.75;
  margin: 18px 0 26px;
}
.traiteur-page .traiteur-faq-accordion {
  width: 100%;
  max-width: 760px;
  justify-self: end;
  display: grid;
  gap: 16px;
}
.traiteur-page .traiteur-faq-item {
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(190,150,70,.25);
  box-shadow: 0 12px 30px rgba(14,14,14,.06);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.traiteur-page .traiteur-faq-item:hover,
.traiteur-page .traiteur-faq-item.is-open {
  border-color: rgba(190,150,70,.48);
  box-shadow: 0 18px 42px rgba(14,14,14,.09);
}
.traiteur-page .traiteur-faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 66px;
  padding: 20px 72px 20px 26px;
  border: 0;
  background: transparent;
  color: var(--c-dark);
  font: inherit;
  font-size: 1.04rem;
  font-weight: var(--fw-bold);
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.traiteur-page .traiteur-faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,168,76,.16);
  color: var(--c-gold-dark);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  transform: translateY(-50%);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.traiteur-page .traiteur-faq-question[aria-expanded="true"]::after {
  content: "-";
  background: var(--c-gold);
  color: var(--c-dark);
}
.traiteur-page .traiteur-faq-question:focus-visible {
  outline: 3px solid rgba(201,168,76,.42);
  outline-offset: -5px;
  border-radius: 18px;
}
.traiteur-page .traiteur-faq-answer {
  padding: 0 26px 22px;
}
.traiteur-page .traiteur-faq-answer p {
  margin: 0;
  max-width: 64ch;
  color: #5a5248;
  line-height: 1.72;
}
.traiteur-page .traiteur-gallery-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,244,236,.96)),
    var(--c-ivory);
}
.traiteur-page .traiteur-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.traiteur-page .traiteur-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 100%;
  border-radius: 22px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 16px 42px rgba(14,14,14,.08);
}
.traiteur-page .traiteur-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s ease;
}
.traiteur-page .traiteur-gallery figure:hover img {
  transform: scale(1.035);
}
.traiteur-page .traiteur-gallery figcaption {
  display: grid;
  gap: 6px;
  padding: 20px 22px 22px;
}
.traiteur-page .traiteur-gallery strong {
  color: var(--c-dark);
  font-size: 1.12rem;
  line-height: 1.2;
}
.traiteur-page .traiteur-gallery span {
  color: #5a5248;
  line-height: 1.6;
}
.traiteur-page .traiteur-media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 44px);
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: rgba(14,14,14,.82);
  border: 1px solid rgba(226,201,126,.34);
  box-shadow: 0 14px 38px rgba(0,0,0,.26);
  backdrop-filter: blur(10px);
}
.traiteur-page .traiteur-media-badge img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(226,201,126,.35);
  box-shadow: none;
}
.traiteur-page .traiteur-media-badge span {
  color: var(--c-gold-light);
  font-weight: var(--fw-bold);
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.traiteur-page .traiteur-dark .traiteur-image-panel {
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 25%, rgba(226,201,126,.18), transparent 36%),
    rgba(255,255,255,.06);
  border: 1px solid rgba(226,201,126,.2);
}
.traiteur-page .traiteur-dark .traiteur-image-panel img[src$=".png"] {
  width: min(78%, 420px);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 34px;
  box-shadow: none;
}
.traiteur-page .traiteur-video-media {
  display: flex;
  justify-content: center;
}
.traiteur-page .traiteur-video-media video {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 18px 50px rgba(14,14,14,.12);
}

@media (max-width: 1024px) {
  .traiteur-page .traiteur-hero-grid,
  .traiteur-page .traiteur-split,
  .traiteur-page .traiteur-prestations-layout,
  .traiteur-page .traiteur-faq-layout,
  .traiteur-page .traiteur-signature {
    grid-template-columns: 1fr;
  }
  .traiteur-page .traiteur-signature-card {
    grid-template-columns: 1fr;
  }
  .traiteur-page .traiteur-signature-logo {
    min-height: 190px;
  }
  .traiteur-page .traiteur-signature-points {
    grid-template-columns: 1fr;
  }
  .traiteur-page .traiteur-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .traiteur-page .traiteur-proof-grid div:nth-child(2) {
    border-right: 0;
  }
  .traiteur-page .traiteur-proof-grid div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(201,168,76,.18);
  }
  .traiteur-page .traiteur-faq-layout {
    gap: 32px;
  }
  .traiteur-page .traiteur-faq-intro {
    position: static;
    max-width: 760px;
  }
  .traiteur-page .traiteur-faq-accordion {
    max-width: none;
    justify-self: stretch;
  }
  .traiteur-page .traiteur-grid-3,
  .traiteur-page .traiteur-grid-2,
  .traiteur-page .traiteur-steps,
  .traiteur-page .traiteur-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .traiteur-page .traiteur-prestations-image img {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .traiteur-page {
    --traiteur-pad-x: 18px;
  }
  .traiteur-page .traiteur-hero {
    padding: 56px 0 48px;
  }
  .traiteur-page .traiteur-proof-strip {
    margin-top: 0;
    padding: 22px 0 0;
    background: var(--c-ivory);
  }
  .traiteur-page .traiteur-proof-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .traiteur-page .traiteur-proof-grid div {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(201,168,76,.18);
  }
  .traiteur-page .traiteur-proof-grid div:last-child {
    border-bottom: 0;
  }
  .traiteur-page .traiteur-section {
    padding: 56px 0;
  }
  .traiteur-page .traiteur-signature-section {
    padding-top: 56px;
  }
  .traiteur-page .traiteur-signature-card {
    border-radius: 20px;
    padding: 28px;
  }
  .traiteur-page .traiteur-signature-logo {
    min-height: 170px;
    padding: 24px;
  }
  .traiteur-page .traiteur-signature-logo img {
    width: min(76%, 140px);
    height: auto;
  }
  .traiteur-page .traiteur-signature-logo span {
    font-size: .76rem;
  }
  .traiteur-page .traiteur-signature-note {
    width: 100%;
  }
  .traiteur-page .traiteur-signature-side-card {
    border-radius: 20px;
    padding: 22px;
  }
  .traiteur-page .traiteur-signature-side-card a {
    width: 100%;
  }
  .traiteur-page .traiteur-faq-section {
    padding: 56px 0;
    scroll-margin-top: 82px;
  }
  .traiteur-page .traiteur-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .traiteur-page .traiteur-hero-media img {
    aspect-ratio: 16/11;
    border-radius: 18px;
  }
  .traiteur-page .traiteur-grid-3,
  .traiteur-page .traiteur-grid-2,
  .traiteur-page .traiteur-feature-list,
  .traiteur-page .traiteur-steps,
  .traiteur-page .traiteur-gallery {
    grid-template-columns: 1fr;
  }
  .traiteur-page .traiteur-hero-actions,
  .traiteur-page .traiteur-btn {
    width: 100%;
  }
  .traiteur-page .traiteur-card,
  .traiteur-page .traiteur-steps li,
  .traiteur-page .traiteur-faq-item {
    padding: 22px;
    border-radius: 18px;
  }
  .traiteur-page .traiteur-faq-item {
    padding: 0;
  }
  .traiteur-page .traiteur-faq-question {
    min-height: 62px;
    padding: 18px 58px 18px 20px;
    font-size: 1rem;
  }
  .traiteur-page .traiteur-faq-question::after {
    right: 18px;
    width: 30px;
    height: 30px;
  }
  .traiteur-page .traiteur-faq-answer {
    padding: 0 20px 22px;
  }
  .traiteur-page .traiteur-media-badge {
    right: 14px;
    bottom: 14px;
    padding: 10px 12px 10px 10px;
  }
  .traiteur-page .traiteur-media-badge img {
    width: 40px;
    height: 40px;
  }
  .traiteur-page .traiteur-media-badge span {
    font-size: .76rem;
  }
}

/* ── Home Hero Premium v2 ───────────────────────────── */
.hero {
  min-height: 100svh;
  padding: calc(var(--nav-h) + 70px) 0 86px;
  isolation: isolate;
}
.hero-bg,
.hero-overlay {
  pointer-events: none;
}
.hero-bg img {
  filter: saturate(.92) contrast(1.04);
}
.hero-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(14,14,14,.3), rgba(14,14,14,.68) 62%),
    linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(14,14,14,.5) 42%, rgba(0,0,0,.78) 100%);
}
.hero-content {
  z-index: 3;
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 0 24px;
  pointer-events: auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(14,14,14,.42);
  border: 1px solid rgba(226,201,126,.42);
  color: var(--c-gold-light);
  font-size: .78rem;
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-title {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--c-white);
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0,0,0,.45);
}
.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--c-white);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.35;
  font-weight: var(--fw-medium);
  text-wrap: balance;
}
.hero-reassurance {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(.98rem, 1.6vw, 1.14rem);
  line-height: 1.65;
}
.hero-tags {
  gap: 10px;
  margin: 26px auto 30px;
}
.hero-tags .tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(226,201,126,.34);
  color: var(--c-gold-light);
  font-size: .86rem;
  font-weight: var(--fw-bold);
  letter-spacing: .02em;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.hero-cta {
  position: relative;
  z-index: 4;
  gap: 14px;
  margin: 0;
}
.hero-cta .btn {
  pointer-events: auto;
  cursor: pointer;
}
.hero-cta .btn-gold {
  box-shadow: 0 18px 44px rgba(201,168,76,.28);
}
.hero-cta .btn-outline {
  background: rgba(14,14,14,.3);
  border-color: rgba(226,201,126,.72);
  color: var(--c-gold-light);
}
.hero-cta .btn-outline:hover {
  background: rgba(226,201,126,.14);
  color: var(--c-gold-light);
  border-color: var(--c-gold-light);
}
.hero-scroll {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--c-gold-light);
  text-decoration: none;
  font-size: .74rem;
  font-weight: var(--fw-bold);
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  animation: heroScrollFloat 2.8s ease-in-out infinite;
  pointer-events: auto;
}
.hero-scroll svg {
  color: currentColor;
}
@keyframes heroScrollFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 48px) 0 84px;
  }
  .hero-content {
    padding-inline: 18px;
  }
  .hero-title {
    font-size: clamp(3rem, 16vw, 4.6rem);
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: clamp(1.12rem, 5vw, 1.35rem);
  }
  .hero-reassurance {
    font-size: .98rem;
  }
  .hero-tags {
    margin: 22px auto 26px;
  }
  .hero-tags .tag {
    min-height: 32px;
    padding: 6px 12px;
    font-size: .8rem;
  }
  .hero-cta {
    width: 100%;
  }
  .hero-cta .btn {
    width: min(100%, 360px);
  }
  .hero-scroll {
    margin-top: 24px;
    gap: 8px;
    font-size: .68rem;
  }
}

/* ── Salle des fêtes Premium ─────────────────────────── */
.salle-page {
  --salle-x: 24px;
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}
.salle-page img {
  max-width: 100%;
}
.salle-page .salle-container {
  width: min(1180px, calc(100% - (var(--salle-x) * 2)));
  margin-inline: auto;
}
.salle-page .salle-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--c-gold-dark);
  font-size: .78rem;
  font-weight: var(--fw-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.salle-page .salle-hero {
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,168,76,.14), transparent 30%),
    linear-gradient(135deg, #f6f0e4 0%, #eee5d6 100%);
}
.salle-page .salle-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.salle-page .salle-hero-content h1,
.salle-page .salle-copy h2,
.salle-page .salle-heading h2,
.salle-page .salle-feature-content h2,
.salle-page .salle-location h2,
.salle-page .salle-cta h2,
.salle-page .salle-faq-intro h2 {
  margin: 0;
  color: var(--c-dark);
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  line-height: 1.02;
  font-weight: var(--fw-light);
  letter-spacing: 0;
  text-wrap: balance;
}
.salle-page .salle-hero-content p,
.salle-page .salle-copy p,
.salle-page .salle-heading p,
.salle-page .salle-feature-content p,
.salle-page .salle-location p,
.salle-page .salle-cta p,
.salle-page .salle-faq-intro p {
  color: #554e46;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 18px 0 0;
}
.salle-page .salle-hero-actions,
.salle-page .salle-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.salle-page .salle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  cursor: pointer;
}
.salle-page .salle-btn-primary {
  background: var(--c-gold);
  color: var(--c-dark);
  box-shadow: 0 16px 38px rgba(201,168,76,.25);
}
.salle-page .salle-btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}
.salle-page .salle-btn-secondary {
  background: rgba(14,14,14,.04);
  color: var(--c-dark);
  border-color: rgba(201,168,76,.48);
}
.salle-page .salle-btn-secondary:hover {
  background: rgba(201,168,76,.12);
  transform: translateY(-2px);
}
.salle-page .salle-hero-media {
  position: relative;
}
.salle-page .salle-hero-media > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(201,168,76,.28);
  box-shadow: 0 24px 72px rgba(14,14,14,.18);
}
.salle-page .salle-hero-stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.salle-page .salle-hero-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(14,14,14,.78);
  border: 1px solid rgba(226,201,126,.28);
  text-align: center;
  backdrop-filter: blur(10px);
}
.salle-page .salle-hero-stats strong,
.salle-page .salle-hero-stats span {
  display: block;
}
.salle-page .salle-hero-stats strong {
  color: var(--c-gold-light);
  font-size: 1.25rem;
}
.salle-page .salle-hero-stats span {
  color: var(--c-ivory2);
  font-size: .82rem;
}
.salle-page .salle-proof {
  padding: 0 0 50px;
  background: var(--c-ivory);
}
.salle-page .salle-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: -26px;
  border-radius: 22px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 18px 50px rgba(14,14,14,.1);
}
.salle-page .salle-proof-grid div {
  padding: 24px;
  border-right: 1px solid rgba(201,168,76,.18);
}
.salle-page .salle-proof-grid div:last-child {
  border-right: 0;
}
.salle-page .salle-proof-grid strong,
.salle-page .salle-proof-grid span {
  display: block;
}
.salle-page .salle-proof-grid strong {
  color: var(--c-dark);
  font-size: 1.05rem;
}
.salle-page .salle-proof-grid span {
  margin-top: 8px;
  color: #5a5248;
  line-height: 1.55;
}
.salle-page .salle-section {
  padding: 82px 0;
}
.salle-page .salle-section-soft {
  background: #eee7da;
}
.salle-page .salle-dark {
  background: var(--c-dark);
  color: var(--c-ivory);
}
.salle-page .salle-dark .salle-kicker,
.salle-page .salle-dark h2,
.salle-page .salle-dark h3 {
  color: var(--c-gold-light);
}
.salle-page .salle-dark p {
  color: var(--c-muted);
}
.salle-page .salle-split,
.salle-page .salle-feature,
.salle-page .salle-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}
.salle-page .salle-image-card img,
.salle-page .salle-feature-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(14,14,14,.12);
}
.salle-page .salle-mini-list,
.salle-page .salle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.salle-page .salle-mini-list span,
.salle-page .salle-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.24);
  color: #554e46;
  font-weight: var(--fw-bold);
  font-size: .88rem;
}
.salle-page .salle-heading {
  max-width: 840px;
  margin-bottom: 34px;
}
.salle-page .salle-grid {
  display: grid;
  gap: 20px;
}
.salle-page .salle-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.salle-page .salle-card,
.salle-page .salle-faq-list article {
  min-height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 12px 30px rgba(14,14,14,.06);
}
.salle-page .salle-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--c-gold-dark);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
}
.salle-page .salle-card h3,
.salle-page .salle-faq-list h3,
.salle-page .salle-feature-list h3 {
  color: var(--c-dark);
  margin: 0 0 10px;
  font-size: 1.24rem;
}
.salle-page .salle-card p,
.salle-page .salle-faq-list p,
.salle-page .salle-feature-list p {
  color: #5a5248;
  line-height: 1.65;
  margin: 0;
}
.salle-page .salle-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.salle-page .salle-feature-list article {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(226,201,126,.2);
}
.salle-page .salle-feature-list h3 {
  color: var(--c-gold-light);
}
.salle-page .salle-feature-list p {
  color: var(--c-muted);
}
.salle-page .salle-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.salle-page .salle-plan-grid figure,
.salle-page .salle-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--c-white);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 16px 42px rgba(14,14,14,.08);
}
.salle-page .salle-plan-grid img,
.salle-page .salle-gallery img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.salle-page .salle-plan-grid figcaption,
.salle-page .salle-gallery figcaption {
  padding: 16px 18px;
  color: var(--c-dark);
  font-weight: var(--fw-bold);
}
.salle-page .salle-gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 26px;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(201,168,76,.24);
  box-shadow: 0 16px 42px rgba(14,14,14,.07);
}
.salle-page .salle-gallery-cta h3 {
  margin: 0;
  color: var(--c-dark);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
}
.salle-page .salle-gallery-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.salle-page .salle-video-media {
  display: flex;
  justify-content: center;
}
.salle-page .salle-video-media video {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 18px 50px rgba(14,14,14,.12);
}
.salle-page .salle-location {
  max-width: 960px;
  text-align: center;
}
.salle-page .salle-location p {
  max-width: 82ch;
  margin-inline: auto;
}
.salle-page .salle-badges {
  justify-content: center;
}
.salle-page .salle-cta {
  padding: clamp(36px, 6vw, 64px);
  border-radius: 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(226,201,126,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(226,201,126,.22);
}
.salle-page .salle-cta h2 {
  color: var(--c-gold-light);
  max-width: 860px;
  margin-inline: auto;
}
.salle-page .salle-cta p {
  max-width: 720px;
  margin-inline: auto;
}
.salle-page .salle-cta-actions {
  justify-content: center;
}
.salle-page .salle-dark .salle-btn-secondary {
  color: var(--c-gold-light);
  background: rgba(255,255,255,.06);
  border-color: rgba(226,201,126,.62);
}
.salle-page .salle-faq-section {
  background: #f5efe6;
}
.salle-page .salle-faq-layout {
  align-items: start;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}
.salle-page .salle-faq-intro {
  position: sticky;
  top: 110px;
}
.salle-page .salle-faq-list {
  display: grid;
  gap: 14px;
}

@media (max-width: 1024px) {
  .salle-page .salle-hero-grid,
  .salle-page .salle-split,
  .salle-page .salle-feature,
  .salle-page .salle-faq-layout {
    grid-template-columns: 1fr;
  }
  .salle-page .salle-grid-4,
  .salle-page .salle-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .salle-page .salle-gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .salle-page .salle-faq-intro {
    position: static;
  }
}

@media (max-width: 768px) {
  .salle-page {
    --salle-x: 18px;
  }
  .salle-page .salle-hero,
  .salle-page .salle-section {
    padding: 56px 0;
  }
  .salle-page .salle-hero-content h1,
  .salle-page .salle-copy h2,
  .salle-page .salle-heading h2,
  .salle-page .salle-feature-content h2,
  .salle-page .salle-location h2,
  .salle-page .salle-cta h2,
  .salle-page .salle-faq-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .salle-page .salle-hero-stats {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }
  .salle-page .salle-proof-grid,
  .salle-page .salle-grid-4,
  .salle-page .salle-feature-list,
  .salle-page .salle-plan-grid {
    grid-template-columns: 1fr;
  }
  .salle-page .salle-proof-grid {
    margin-top: 0;
  }
  .salle-page .salle-proof-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(201,168,76,.18);
  }
  .salle-page .salle-gallery-cta {
    padding: 22px;
  }
  .salle-page .salle-hero-actions,
  .salle-page .salle-cta-actions,
  .salle-page .salle-gallery-cta div,
  .salle-page .salle-btn {
    width: 100%;
  }
}


/* ════════════════════════════════════════════════════════════════════════════
   RUBRIQUE PHOTOS — Design premium, fidèle à lefestif.fr/rubrique-photos
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Variables & conteneur ─────────────────────────────────────────────────── */
.photos-page {
  --pg-x:    24px;
  --pg-max:  1200px;
  --pg-r:    20px;
  --pg-gold: #c9a84c;
  --pg-dark: #0e0e0e;
  --pg-soft: #f0ece3;
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}
.photos-page .pg-wrap {
  width: min(var(--pg-max), calc(100% - var(--pg-x) * 2));
  margin-inline: auto;
}

/* ── Kicker pill ───────────────────────────────────────────────────────────── */
.photos-page .pg-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--pg-gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.photos-page .pg-hero {
  padding: 72px 0 68px;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(201,168,76,.18) 0%, transparent 38%),
    radial-gradient(ellipse at 82% 80%, rgba(201,168,76,.10) 0%, transparent 35%),
    linear-gradient(140deg, #f6efe2 0%, #ece5d6 100%);
}
.photos-page .pg-hero-inner {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(440px,1.05fr);
  gap: clamp(36px,5vw,72px);
  align-items: center;
}
.photos-page .pg-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem,4.2vw,3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--c-dark);
  text-wrap: balance;
}
.photos-page .pg-hero-copy p {
  margin: 0 0 32px;
  font-size: 1.04rem;
  line-height: 1.76;
  color: #554e46;
}
.photos-page .pg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Boutons page ──────────────────────────────────────────────────────────── */
.photos-page .pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}
.photos-page .pg-btn:hover { transform: translateY(-2px); }
.photos-page .pg-btn--gold {
  background: var(--pg-gold);
  color: #0e0e0e;
  box-shadow: 0 14px 32px rgba(201,168,76,.28);
}
.photos-page .pg-btn--gold:hover { box-shadow: 0 20px 42px rgba(201,168,76,.38); }
.photos-page .pg-btn--outline {
  background: transparent;
  color: var(--c-dark);
  border-color: rgba(201,168,76,.5);
}
.photos-page .pg-btn--outline:hover { background: rgba(201,168,76,.08); }
.photos-page .pg-btn--outline-light {
  background: rgba(255,255,255,.08);
  color: #f4f0e8;
  border-color: rgba(226,201,126,.4);
}
.photos-page .pg-btn--outline-light:hover { background: rgba(255,255,255,.14); }

/* ── Mosaïque hero ─────────────────────────────────────────────────────────── */
.photos-page .pg-hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.photos-page .pg-hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--pg-r);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 16px 44px rgba(14,14,14,.13);
  display: block;
}
.photos-page .pg-hero-mosaic img:first-child { grid-row: span 2; }

/* ── Filtre catégories ─────────────────────────────────────────────────────── */
.photos-page .pg-filter-bar {
  background: #fff;
  border-bottom: 1px solid rgba(201,168,76,.2);
  border-top: 1px solid rgba(201,168,76,.12);
  padding: 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}
.photos-page .pg-filter-inner {
  display: flex;
  gap: 6px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.photos-page .pg-filter-inner::-webkit-scrollbar { display: none; }
.photos-page .pg-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.3);
  background: transparent;
  color: #554e46;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.photos-page .pg-filter-btn:hover,
.photos-page .pg-filter-btn.is-active {
  background: var(--pg-gold);
  color: #0e0e0e;
  border-color: var(--pg-gold);
}

/* ── Sections galerie ──────────────────────────────────────────────────────── */
.photos-page .pg-section {
  padding: 86px 0;
}
.photos-page .pg-section--alt {
  background: var(--pg-soft);
}
.photos-page .pg-section--dark {
  background: var(--c-dark);
}
.photos-page .pg-section-head {
  margin-bottom: 40px;
  max-width: 820px;
}
.photos-page .pg-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem,3.2vw,2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-dark);
}
.photos-page .pg-section--dark .pg-section-head h2 {
  color: #f4f0e8;
}
.photos-page .pg-section--dark .pg-kicker {
  background: rgba(201,168,76,.18);
  color: var(--c-gold-light);
}
.photos-page .pg-section-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.76;
  color: #6a6257;
}
.photos-page .pg-section--dark .pg-section-head p {
  color: #9e9585;
}
.photos-page .pg-section-sub {
  display: block;
  margin-top: 6px;
  font-size: .95rem;
  font-style: italic;
  color: var(--pg-gold);
  font-weight: 500;
}

/* ── Grille photos carrées ─────────────────────────────────────────────────── */
.photos-page .pg-grid {
  display: grid;
  gap: 16px;
}
/* 6 images : 3 colonnes */
.photos-page .pg-grid--6 {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
/* 3 images : 3 colonnes */
.photos-page .pg-grid--3 {
  grid-template-columns: repeat(3, minmax(0,1fr));
}
/* 8 images : 4 colonnes */
.photos-page .pg-grid--8 {
  grid-template-columns: repeat(4, minmax(0,1fr));
}
/* 4 images : 4 colonnes */
.photos-page .pg-grid--4 {
  grid-template-columns: repeat(4, minmax(0,1fr));
}
/* 2 images : 2 colonnes */
.photos-page .pg-grid--2 {
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin-top: 16px;
}
/* Variante premium : 1 grande + reste */
.photos-page .pg-grid--featured {
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
}
.photos-page .pg-grid--featured .pg-card:first-child {
  grid-row: span 2;
}

/* ── Carte photo ───────────────────────────────────────────────────────────── */
.photos-page .pg-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--pg-r);
  aspect-ratio: 1 / 1;
  background: #1a1814;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 8px 28px rgba(14,14,14,.1);
  cursor: pointer;
}
.photos-page .pg-grid--featured .pg-card:first-child {
  aspect-ratio: auto;
}
.photos-page .pg-card--panorama {
  margin: 16px 0 28px;
  aspect-ratio: 21 / 7;
  border-radius: 20px;
}
.photos-page .pg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.photos-page .pg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.photos-page .pg-card:hover img { transform: scale(1.07); }
.photos-page .pg-card:hover::after { opacity: 1; }
.photos-page .pg-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 12px 16px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  transform: translateY(4px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.photos-page .pg-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .photos-page .pg-card figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}
.photos-page .pg-kicker--light {
  background: rgba(201,168,76,.18);
  color: #e2c97e;
}

/* ── Vidéos ────────────────────────────────────────────────────────────────── */
.photos-page .pg-video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.photos-page .pg-video-card {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.photos-page .pg-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 18px 50px rgba(14,14,14,.4);
}
.photos-page .pg-video-caption {
  margin: 14px 0 0;
  color: #e2c97e;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ── Lightbox ──────────────────────────────────────────────────────────────── */
.photos-page .pg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,9,7,.94);
  padding: 60px 40px;
}
.photos-page .pg-lightbox.open { display: flex; }
.photos-page .pg-lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: pgLightboxIn .25s ease;
}
@keyframes pgLightboxIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.photos-page .pg-lightbox-caption {
  position: absolute;
  left: 0; right: 0; bottom: 26px;
  text-align: center;
  color: #f4f0e8;
  font-size: .95rem;
  letter-spacing: .03em;
}
.photos-page .pg-lightbox-close,
.photos-page .pg-lightbox-nav {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.photos-page .pg-lightbox-close:hover,
.photos-page .pg-lightbox-nav:hover {
  background: rgba(201,168,76,.3);
}
.photos-page .pg-lightbox-close {
  top: 22px; right: 26px;
  width: 44px; height: 44px;
  font-size: 1.1rem;
}
.photos-page .pg-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 1.8rem;
}
.photos-page .pg-lightbox-prev { left: 18px; }
.photos-page .pg-lightbox-next { right: 18px; }
@media (max-width: 600px) {
  .photos-page .pg-lightbox { padding: 30px 14px; }
  .photos-page .pg-lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .photos-page .pg-lightbox-close { width: 36px; height: 36px; top: 12px; right: 12px; }
}

/* ── Séparateur décoratif ──────────────────────────────────────────────────── */
.photos-page .pg-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 56px 0 52px;
  color: rgba(201,168,76,.5);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}
.photos-page .pg-divider::before,
.photos-page .pg-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4), transparent);
}

/* ── Section rassurante ────────────────────────────────────────────────────── */
.photos-page .pg-reassure {
  padding: 80px 0;
  background: var(--c-dark);
}
.photos-page .pg-reassure-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
}
.photos-page .pg-reassure h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem,3vw,2.4rem);
  font-weight: 300;
  color: #f4f0e8;
  line-height: 1.15;
}
.photos-page .pg-reassure p {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.76;
  color: #9e9585;
}
.photos-page .pg-reassure-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photos-page .pg-reassure-card {
  padding: 24px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
}
.photos-page .pg-reassure-card strong {
  display: block;
  color: var(--c-gold-light);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.photos-page .pg-reassure-card span {
  font-size: .88rem;
  line-height: 1.6;
  color: #9e9585;
}

/* ── CTA final ─────────────────────────────────────────────────────────────── */
.photos-page .pg-cta-section {
  padding: 86px 0;
  background: #f5efe6;
}
.photos-page .pg-cta-box {
  padding: clamp(40px,6vw,64px);
  border-radius: 26px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 20px 56px rgba(14,14,14,.08);
}
.photos-page .pg-cta-box .pg-kicker { margin-bottom: 18px; }
.photos-page .pg-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem,3vw,2.5rem);
  font-weight: 300;
  color: var(--c-dark);
  max-width: 780px;
  margin-inline: auto;
  text-wrap: balance;
}
.photos-page .pg-cta-box p {
  margin: 0 auto 30px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.72;
  color: #6a6257;
}
.photos-page .pg-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .photos-page .pg-grid--8 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .photos-page .pg-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .photos-page .pg-hero-inner  { grid-template-columns: 1fr; }
  .photos-page .pg-hero-mosaic { grid-template-columns: 1.2fr .8fr; grid-template-rows: 200px 200px; }
  .photos-page .pg-reassure-inner { grid-template-columns: 1fr; }
  .photos-page .pg-grid--featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photos-page .pg-grid--featured .pg-card:first-child {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
  .photos-page .pg-card--panorama {
    aspect-ratio: 16 / 9;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .photos-page { --pg-x: 18px; }
  .photos-page .pg-hero  { padding: 52px 0 48px; }
  .photos-page .pg-section { padding: 60px 0; }
  .photos-page .pg-hero-mosaic { display: none; }
  .photos-page .pg-hero-inner  { grid-template-columns: 1fr; }
  .photos-page .pg-grid--6,
  .photos-page .pg-grid--8,
  .photos-page .pg-grid--4,
  .photos-page .pg-grid--3,
  .photos-page .pg-grid--featured { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .photos-page .pg-grid--featured .pg-card:first-child {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
  .photos-page .pg-card--panorama {
    aspect-ratio: 4 / 3;
    margin: 12px 0 20px;
  }
  .photos-page .pg-reassure-cards { grid-template-columns: 1fr; }
  .photos-page .pg-hero-actions,
  .photos-page .pg-cta-actions { flex-direction: column; }
  .photos-page .pg-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .photos-page .pg-grid--6,
  .photos-page .pg-grid--8,
  .photos-page .pg-grid--4,
  .photos-page .pg-grid--2,
  .photos-page .pg-grid--3,
  .photos-page .pg-grid--featured { grid-template-columns: 1fr; }
  .photos-page .pg-grid--featured .pg-card:first-child { grid-column: auto; }
}

/* ── Vidéos : grille extensible avec miniature + bouton lecture ─────────────── */
.photos-page .pg-video-grid-many {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}
.photos-page .pg-video-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.25);
  background: #000;
  cursor: pointer;
  padding: 0;
  appearance: none;
}
.photos-page .pg-video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.photos-page .pg-video-tile:hover img { transform: scale(1.06); }
.photos-page .pg-video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.photos-page .pg-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #1a1814;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
  transition: transform .25s ease, background .25s ease;
}
.photos-page .pg-video-tile:hover .pg-video-play {
  transform: translate(-50%,-50%) scale(1.1);
  background: var(--c-gold);
  color: #fff;
}
.photos-page .pg-video-tile-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 10px 12px;
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: left;
}
.photos-page .pg-video-tile-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.25);
  background: #000;
  display: block;
  object-fit: cover;
}
@media (max-width: 600px) {
  .photos-page .pg-video-grid-many { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
  .photos-page .pg-video-play { width: 42px; height: 42px; font-size: .95rem; }
}

/* ════════════════════════════════════════════════════════════════════════════
   LOCATION MATÉRIEL — Design premium cohérent avec le reste du site
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Conteneur & variables ─────────────────────────────────────────────────── */
.lm-page {
  --lm-x:    24px;
  --lm-max:  1200px;
  --lm-r:    22px;
  --lm-gold: #c9a84c;
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}
.lm-page .lm-wrap {
  width: min(var(--lm-max), calc(100% - var(--lm-x) * 2));
  margin-inline: auto;
}

/* ── Kicker ────────────────────────────────────────────────────────────────── */
.lm-page .lm-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,.13);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--c-gold-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lm-page .lm-section--dark .lm-kicker {
  background: rgba(201,168,76,.18);
  color: var(--c-gold-light);
}

/* ── Boutons ───────────────────────────────────────────────────────────────── */
.lm-page .lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.lm-page .lm-btn:hover { transform: translateY(-2px); }
.lm-page .lm-btn--gold {
  background: var(--lm-gold);
  color: #0e0e0e;
  box-shadow: 0 14px 32px rgba(201,168,76,.26);
}
.lm-page .lm-btn--gold:hover { box-shadow: 0 20px 42px rgba(201,168,76,.38); }
.lm-page .lm-btn--outline {
  background: transparent;
  color: var(--c-dark);
  border-color: rgba(201,168,76,.5);
}
.lm-page .lm-btn--outline:hover { background: rgba(201,168,76,.08); }
.lm-page .lm-btn--outline-light {
  background: rgba(255,255,255,.08);
  color: #f4f0e8;
  border-color: rgba(226,201,126,.4);
}
.lm-page .lm-btn--outline-light:hover { background: rgba(255,255,255,.15); }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.lm-page .lm-hero {
  padding: 78px 0 72px;
  background:
    radial-gradient(ellipse at 16% 18%, rgba(201,168,76,.17) 0%, transparent 36%),
    radial-gradient(ellipse at 85% 78%, rgba(201,168,76,.10) 0%, transparent 32%),
    linear-gradient(140deg, #f6efe2 0%, #ece5d6 100%);
}
.lm-page .lm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.lm-page .lm-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.09;
  color: var(--c-dark);
  text-wrap: balance;
}
.lm-page .lm-hero-copy p {
  margin: 0 0 32px;
  font-size: 1.04rem;
  line-height: 1.76;
  color: #554e46;
}
.lm-page .lm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.lm-page .lm-hero-media {
  position: relative;
}
.lm-page .lm-hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--lm-r);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 24px 60px rgba(14,14,14,.14);
  display: block;
}
.lm-page .lm-hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--c-dark);
  border: 1px solid rgba(201,168,76,.3);
  box-shadow: 0 12px 36px rgba(14,14,14,.22);
  display: flex;
  gap: 16px;
  align-items: center;
}
.lm-page .lm-hero-badge-stat {
  text-align: center;
}
.lm-page .lm-hero-badge-stat strong {
  display: block;
  color: var(--c-gold-light);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}
.lm-page .lm-hero-badge-stat span {
  color: var(--c-muted);
  font-size: .74rem;
  letter-spacing: .06em;
}
.lm-page .lm-hero-badge-sep {
  width: 1px;
  height: 32px;
  background: rgba(201,168,76,.3);
}

/* ── Proof strip ───────────────────────────────────────────────────────────── */
.lm-page .lm-proof {
  background: #fff;
  border-bottom: 1px solid rgba(201,168,76,.2);
  border-top: 1px solid rgba(201,168,76,.12);
}
.lm-page .lm-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  divide-x: 1px solid rgba(201,168,76,.18);
}
.lm-page .lm-proof-item {
  padding: 22px 28px;
  border-right: 1px solid rgba(201,168,76,.16);
}
.lm-page .lm-proof-item:last-child { border-right: none; }
.lm-page .lm-proof-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.lm-page .lm-proof-item span {
  font-size: .84rem;
  color: #6a6257;
  line-height: 1.5;
}

/* ── Sections ──────────────────────────────────────────────────────────────── */
.lm-page .lm-section {
  padding: 88px 0;
}
.lm-page .lm-section--soft {
  background: #eee7da;
}
.lm-page .lm-section--dark {
  background: var(--c-dark);
}
.lm-page .lm-section-head {
  max-width: 820px;
  margin-bottom: 48px;
}
.lm-page .lm-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--c-dark);
  text-wrap: balance;
}
.lm-page .lm-section--dark .lm-section-head h2 {
  color: #f4f0e8;
}
.lm-page .lm-section-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.76;
  color: #6a6257;
}
.lm-page .lm-section--dark .lm-section-head p {
  color: var(--c-muted);
}

/* ── Split layout ──────────────────────────────────────────────────────────── */
.lm-page .lm-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.lm-page .lm-split--reverse { direction: rtl; }
.lm-page .lm-split--reverse > * { direction: ltr; }
.lm-page .lm-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.12;
}
.lm-page .lm-section--dark .lm-copy h2 { color: #f4f0e8; }
.lm-page .lm-copy p {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.76;
  color: #554e46;
}
.lm-page .lm-section--dark .lm-copy p { color: var(--c-muted); }
.lm-page .lm-image-panel {
  position: relative;
  border-radius: var(--lm-r);
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(14,14,14,.12);
  border: 1px solid rgba(201,168,76,.2);
}
.lm-page .lm-image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .5s ease;
}
.lm-page .lm-image-panel:hover img { transform: scale(1.03); }

/* ── Illustration centrée ──────────────────────────────────────────────────── */
.lm-page .lm-illus-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  padding: 24px;
  border-radius: var(--lm-r);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
}
.lm-page .lm-section--soft .lm-illus-wrap {
  background: rgba(255,255,255,.7);
}
.lm-page .lm-illus-wrap img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

/* ── Liste d'équipements ───────────────────────────────────────────────────── */
.lm-page .lm-equip-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lm-page .lm-equip-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  line-height: 1.6;
  color: #554e46;
}
.lm-page .lm-section--dark .lm-equip-list li { color: var(--c-muted); }
.lm-page .lm-equip-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--lm-gold);
}
.lm-page .lm-equip-list strong {
  color: var(--c-dark);
  font-weight: 600;
}
.lm-page .lm-section--dark .lm-equip-list strong { color: #f4f0e8; }

/* ── Grille de catégories (3 colonnes) ─────────────────────────────────────── */
.lm-page .lm-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.lm-page .lm-cat-card {
  padding: 32px 28px;
  border-radius: var(--lm-r);
  background: #fff;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 8px 28px rgba(14,14,14,.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.lm-page .lm-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(14,14,14,.11);
}
.lm-page .lm-cat-card .lm-cat-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.lm-page .lm-cat-card .lm-cat-icon img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}
.lm-page .lm-cat-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-dark);
}
.lm-page .lm-cat-card p {
  margin: 0 0 18px;
  font-size: .93rem;
  line-height: 1.65;
  color: #6a6257;
}
.lm-page .lm-cat-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lm-page .lm-cat-tag {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  font-size: .77rem;
  font-weight: 600;
  color: var(--c-gold-dark);
}

/* ── Feature équipements (sombre) ──────────────────────────────────────────── */
.lm-page .lm-equip-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.lm-page .lm-equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.lm-page .lm-equip-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  transition: background .25s ease, border-color .25s ease;
}
.lm-page .lm-equip-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,168,76,.4);
}
.lm-page .lm-equip-card h3 {
  margin: 0 0 8px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-gold-light);
}
.lm-page .lm-equip-card p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.6;
  color: var(--c-muted);
}
.lm-page .lm-equip-media {
  position: relative;
}
.lm-page .lm-equip-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--lm-r);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 20px 50px rgba(14,14,14,.3);
  display: block;
}

/* ── Section "Pourquoi" ────────────────────────────────────────────────────── */
.lm-page .lm-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.lm-page .lm-why-card {
  padding: 28px 22px;
  border-radius: var(--lm-r);
  background: #fff;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 6px 22px rgba(14,14,14,.05);
}
.lm-page .lm-why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--c-gold-dark);
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.lm-page .lm-why-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
}
.lm-page .lm-why-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
  color: #6a6257;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.lm-page .lm-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.6fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.lm-page .lm-faq-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: var(--c-dark);
}
.lm-page .lm-faq-intro p {
  margin: 0 0 28px;
  font-size: .97rem;
  line-height: 1.72;
  color: #6a6257;
}
.lm-page .lm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lm-page .lm-faq-item {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(201,168,76,.2);
  overflow: hidden;
}
.lm-page .lm-section--soft .lm-faq-item {
  background: rgba(255,255,255,.8);
}
.lm-page .lm-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.lm-page .lm-faq-item summary::-webkit-details-marker { display: none; }
.lm-page .lm-faq-item summary h3 {
  margin: 0;
  font-size: .97rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.4;
}
.lm-page .lm-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--c-gold-dark);
  font-weight: 300;
  transition: transform .25s ease;
}
.lm-page .lm-faq-item[open] summary::after { transform: rotate(45deg); }
.lm-page .lm-faq-item > p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: .95rem;
  line-height: 1.72;
  color: #554e46;
}

/* ── CTA final ─────────────────────────────────────────────────────────────── */
.lm-page .lm-cta-section {
  padding: 88px 0;
  background: #f5efe6;
}
.lm-page .lm-cta-box {
  padding: clamp(40px, 6vw, 68px);
  border-radius: 28px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(201,168,76,.24);
  box-shadow: 0 20px 60px rgba(14,14,14,.08);
}
.lm-page .lm-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--c-dark);
  max-width: 780px;
  margin-inline: auto;
  text-wrap: balance;
}
.lm-page .lm-cta-box p {
  margin: 0 auto 30px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.72;
  color: #6a6257;
}
.lm-page .lm-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lm-page .lm-cat-grid       { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lm-page .lm-why-grid       { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lm-page .lm-proof-grid     { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lm-page .lm-equip-feature  { grid-template-columns: 1fr; }
  .lm-page .lm-faq-layout     { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .lm-page .lm-hero-grid { grid-template-columns: 1fr; }
  .lm-page .lm-split     { grid-template-columns: 1fr; }
  .lm-page .lm-split--reverse { direction: ltr; }
  .lm-page .lm-hero-badge { left: 0; bottom: -16px; }
}
@media (max-width: 768px) {
  .lm-page { --lm-x: 18px; }
  .lm-page .lm-hero   { padding: 56px 0 52px; }
  .lm-page .lm-section { padding: 62px 0; }
  .lm-page .lm-hero-media img { height: 280px; }
  .lm-page .lm-image-panel img { height: 260px; }
  .lm-page .lm-cat-grid   { grid-template-columns: 1fr; }
  .lm-page .lm-why-grid   { grid-template-columns: 1fr; }
  .lm-page .lm-equip-grid { grid-template-columns: 1fr; }
  .lm-page .lm-proof-grid { grid-template-columns: 1fr 1fr; }
  .lm-page .lm-hero-actions,
  .lm-page .lm-cta-actions { flex-direction: column; }
  .lm-page .lm-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════════════════
   À PROPOS — Design premium cohérent avec le site
   ════════════════════════════════════════════════════════════════════════════ */

.ap-page {
  --ap-x:   24px;
  --ap-max: 1200px;
  --ap-r:   22px;
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}
.ap-page .ap-wrap {
  width: min(var(--ap-max), calc(100% - var(--ap-x) * 2));
  margin-inline: auto;
}

/* ── Kicker ─────────────────────────────────────────────────────────────────── */
.ap-page .ap-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,.13);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--c-gold-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.ap-page .ap-section--dark .ap-kicker {
  background: rgba(201,168,76,.18);
  color: var(--c-gold-light);
}

/* ── Boutons ────────────────────────────────────────────────────────────────── */
.ap-page .ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.ap-page .ap-btn:hover { transform: translateY(-2px); }
.ap-page .ap-btn--gold {
  background: var(--c-gold);
  color: #0e0e0e;
  box-shadow: 0 14px 32px rgba(201,168,76,.26);
}
.ap-page .ap-btn--gold:hover { box-shadow: 0 20px 42px rgba(201,168,76,.38); }
.ap-page .ap-btn--outline {
  background: transparent;
  color: var(--c-dark);
  border-color: rgba(201,168,76,.5);
}
.ap-page .ap-btn--outline:hover { background: rgba(201,168,76,.08); }
.ap-page .ap-btn--outline-light {
  background: rgba(255,255,255,.08);
  color: #f4f0e8;
  border-color: rgba(226,201,126,.4);
}
.ap-page .ap-btn--outline-light:hover { background: rgba(255,255,255,.14); }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.ap-page .ap-hero {
  padding: 78px 0 72px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(201,168,76,.18) 0%, transparent 36%),
    radial-gradient(ellipse at 88% 75%, rgba(201,168,76,.10) 0%, transparent 32%),
    linear-gradient(140deg, #f6efe2 0%, #ece5d6 100%);
}
.ap-page .ap-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.ap-page .ap-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.09;
  color: var(--c-dark);
  text-wrap: balance;
}
.ap-page .ap-hero-copy p {
  margin: 0 0 32px;
  font-size: 1.04rem;
  line-height: 1.76;
  color: #554e46;
}
.ap-page .ap-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ap-page .ap-hero-visual {
  position: relative;
  border-radius: var(--ap-r);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14,14,14,.14);
  border: 1px solid rgba(201,168,76,.22);
}
.ap-page .ap-hero-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ── Stats strip ─────────────────────────────────────────────────────────────── */
.ap-page .ap-stats {
  background: var(--c-dark);
}
.ap-page .ap-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
}
.ap-page .ap-stat {
  padding: 30px 28px;
  border-right: 1px solid rgba(201,168,76,.18);
  text-align: center;
}
.ap-page .ap-stat:last-child { border-right: none; }
.ap-page .ap-stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1.1;
}
.ap-page .ap-stat span {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  color: var(--c-muted);
  letter-spacing: .06em;
}

/* ── Sections ────────────────────────────────────────────────────────────────── */
.ap-page .ap-section {
  padding: 88px 0;
}
.ap-page .ap-section--soft  { background: #eee7da; }
.ap-page .ap-section--dark  { background: var(--c-dark); }
.ap-page .ap-section--ivory { background: #f4f0e8; }

/* ── Split ───────────────────────────────────────────────────────────────────── */
.ap-page .ap-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.ap-page .ap-split--reverse { direction: rtl; }
.ap-page .ap-split--reverse > * { direction: ltr; }

.ap-page .ap-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--c-dark);
  text-wrap: balance;
}
.ap-page .ap-section--dark .ap-copy h2 { color: #f4f0e8; }
.ap-page .ap-copy .ap-vision-title {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--c-dark);
  text-wrap: balance;
}
.ap-page .ap-copy p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.78;
  color: #554e46;
}
.ap-page .ap-section--dark .ap-copy p { color: var(--c-muted); }
.ap-page .ap-copy p:last-child { margin-bottom: 0; }

.ap-page .ap-image-panel {
  position: relative;
  border-radius: var(--ap-r);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 20px 52px rgba(14,14,14,.12);
}
.ap-page .ap-image-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ap-page .ap-image-panel:hover img { transform: scale(1.03); }

/* ── Citation fondateur ──────────────────────────────────────────────────────── */
.ap-page .ap-quote-section {
  padding: 100px 0;
  background: var(--c-dark);
  text-align: center;
}
.ap-page .ap-quote-wrap {
  max-width: 860px;
  margin-inline: auto;
}
.ap-page .ap-quote-mark {
  display: block;
  font-size: 5rem;
  line-height: .6;
  color: var(--c-gold);
  opacity: .5;
  font-family: Georgia, serif;
  margin-bottom: 28px;
}
.ap-page blockquote {
  margin: 0 0 32px;
  padding: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 300;
  line-height: 1.6;
  color: #f4f0e8;
  font-style: italic;
  text-wrap: balance;
}
.ap-page blockquote em {
  color: var(--c-gold-light);
  font-style: normal;
  font-weight: 500;
}
.ap-page .ap-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ap-page .ap-quote-author-line {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,.5);
}
.ap-page .ap-quote-author-name {
  color: var(--c-gold-light);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.ap-page .ap-quote-author-title {
  color: var(--c-muted);
  font-size: .82rem;
  margin-left: 4px;
}

/* ── Grille 2 images ─────────────────────────────────────────────────────────── */
.ap-page .ap-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ap-page .ap-dual-grid figure {
  margin: 0;
}
.ap-page .ap-dual-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--ap-r);
  display: block;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 12px 36px rgba(14,14,14,.1);
}

/* ── Section head centrée ────────────────────────────────────────────────────── */
.ap-page .ap-section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}
.ap-page .ap-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.12;
}
.ap-page .ap-section--dark .ap-section-head h2 { color: #f4f0e8; }
.ap-page .ap-section-head p {
  font-size: 1rem;
  line-height: 1.76;
  color: #6a6257;
}
.ap-page .ap-section--dark .ap-section-head p { color: var(--c-muted); }

/* ── Valeurs ─────────────────────────────────────────────────────────────────── */
.ap-page .ap-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ap-page .ap-value-card {
  padding: 32px 24px;
  border-radius: var(--ap-r);
  background: #fff;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 6px 22px rgba(14,14,14,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ap-page .ap-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(14,14,14,.1);
}
.ap-page .ap-value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.ap-page .ap-value-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-dark);
}
.ap-page .ap-value-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.65;
  color: #6a6257;
}

/* ── Équipe / Fondateur ──────────────────────────────────────────────────────── */
.ap-page .ap-founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  border-radius: var(--ap-r);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 20px 52px rgba(14,14,14,.09);
}
.ap-page .ap-founder-photo {
  position: relative;
  overflow: hidden;
}
.ap-page .ap-founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}
.ap-page .ap-founder-body {
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ap-page .ap-founder-body h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-dark);
}
.ap-page .ap-founder-body .ap-founder-role {
  display: block;
  margin-bottom: 24px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-gold-dark);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ap-page .ap-founder-body p {
  margin: 0 0 16px;
  font-size: .97rem;
  line-height: 1.78;
  color: #554e46;
}
.ap-page .ap-founder-body p:last-of-type { margin-bottom: 0; }

/* ── Timeline histoire ───────────────────────────────────────────────────────── */
.ap-page .ap-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}
.ap-page .ap-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-gold), rgba(201,168,76,.2));
}
.ap-page .ap-timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.ap-page .ap-timeline-item:last-child { padding-bottom: 0; }
.ap-page .ap-timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-gold);
  border: 3px solid var(--c-ivory);
  box-shadow: 0 0 0 2px rgba(201,168,76,.4);
}
.ap-page .ap-section--soft .ap-timeline-item::before {
  border-color: #eee7da;
}
.ap-page .ap-timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-dark);
}
.ap-page .ap-timeline-item p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: #6a6257;
}

/* ── Localisation ─────────────────────────────────────────────────────────────── */
.ap-page .ap-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.ap-page .ap-location-info h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--c-dark);
}
.ap-page .ap-location-info p {
  font-size: 1rem;
  line-height: 1.76;
  color: #554e46;
  margin-bottom: 20px;
}
.ap-page .ap-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ap-page .ap-location-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.28);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-gold-dark);
}
.ap-page .ap-map-frame {
  border-radius: var(--ap-r);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 16px 44px rgba(14,14,14,.1);
  height: 380px;
}
.ap-page .ap-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── CTA final ────────────────────────────────────────────────────────────────── */
.ap-page .ap-cta-section {
  padding: 88px 0;
  background: #f5efe6;
}
.ap-page .ap-cta-box {
  padding: clamp(40px, 6vw, 68px);
  border-radius: 28px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(201,168,76,.24);
  box-shadow: 0 20px 60px rgba(14,14,14,.08);
}
.ap-page .ap-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--c-dark);
  max-width: 720px;
  margin-inline: auto;
  text-wrap: balance;
}
.ap-page .ap-cta-box p {
  margin: 0 auto 30px;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.72;
  color: #6a6257;
}
.ap-page .ap-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ── Responsive ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ap-page .ap-values-grid   { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ap-page .ap-stats-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ap-page .ap-location-grid { grid-template-columns: 1fr; }
  .ap-page .ap-founder-card  { grid-template-columns: 1fr; }
  .ap-page .ap-founder-photo img { min-height: 300px; height: 300px; }
}
@media (max-width: 900px) {
  .ap-page .ap-hero-grid   { grid-template-columns: 1fr; }
  .ap-page .ap-split       { grid-template-columns: 1fr; }
  .ap-page .ap-split--reverse { direction: ltr; }
  .ap-page .ap-dual-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ap-page { --ap-x: 18px; }
  .ap-page .ap-hero    { padding: 56px 0 52px; }
  .ap-page .ap-section { padding: 62px 0; }
  .ap-page .ap-hero-visual img { height: 280px; }
  .ap-page .ap-image-panel img { height: 260px; }
  .ap-page .ap-values-grid { grid-template-columns: 1fr; }
  .ap-page .ap-stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .ap-page .ap-hero-actions,
  .ap-page .ap-cta-actions { flex-direction: column; }
  .ap-page .ap-btn { width: 100%; justify-content: center; }
  .ap-page .ap-map-frame { height: 260px; }
}

/* ── Extensions premium a-propos ─────────────────────────────────────────────── */

/* Hero badge flottant */
.ap-page .ap-hero-badge-float {
  position: absolute;
  bottom: -24px;
  right: -20px;
  padding: 18px 22px;
  border-radius: 20px;
  background: var(--c-dark);
  border: 1px solid rgba(201,168,76,.35);
  box-shadow: 0 16px 44px rgba(14,14,14,.28);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  min-width: 220px;
}
.ap-page .ap-hero-badge-float img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
}
.ap-page .ap-hero-badge-float-text strong {
  display: block;
  color: var(--c-gold-light);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
}
.ap-page .ap-hero-badge-float-text span {
  font-size: .76rem;
  color: var(--c-muted);
  letter-spacing: .05em;
}

/* Section histoire — style éditorial */
.ap-page .ap-story-block {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(48px,7vw,96px);
  align-items: start;
}
.ap-page .ap-story-copy { position: relative; }
.ap-page .ap-story-copy > p:first-of-type::first-letter {
  float: left;
  font-size: 5rem;
  line-height: .78;
  font-weight: 700;
  color: var(--c-gold);
  margin-right: 12px;
  margin-top: 6px;
  font-family: Georgia, serif;
}
.ap-page .ap-story-copy > p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.82;
  color: #4a4338;
}
.ap-page .ap-story-copy > p:last-child { margin-bottom: 0; }
.ap-page .ap-story-pull {
  margin: 28px 0;
  padding: 22px 24px 22px 28px;
  border-left: 3px solid var(--c-gold);
  background: rgba(201,168,76,.07);
  border-radius: 0 14px 14px 0;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--c-dark);
  font-style: italic;
}
.ap-page .ap-story-visual {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.ap-page .ap-story-img-wrap {
  border-radius: var(--ap-r);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 24px 60px rgba(14,14,14,.14);
}
.ap-page .ap-story-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.ap-page .ap-story-img-wrap:hover img { transform: scale(1.03); }
.ap-page .ap-story-caption {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ap-page .ap-story-caption-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}
.ap-page .ap-story-caption span {
  font-size: .84rem;
  color: var(--c-gold-dark);
  font-weight: 600;
  letter-spacing: .04em;
}

/* Quote avec background image */
.ap-page .ap-quote-section {
  position: relative;
  overflow: hidden;
}
.ap-page .ap-quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ap-page .ap-quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.2) saturate(.5);
}
.ap-page .ap-quote-wrap { position: relative; z-index: 1; }

/* Founder card premium */
.ap-page .ap-founder-card {
  display: grid;
  grid-template-columns: 420px 1fr;
}
.ap-page .ap-founder-photo {
  position: relative;
}
.ap-page .ap-founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255,255,255,.04) 100%);
  pointer-events: none;
}
.ap-page .ap-founder-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(14,14,14,.72);
  border: 1px solid rgba(201,168,76,.4);
  backdrop-filter: blur(10px);
  color: var(--c-gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ap-page .ap-founder-body .ap-founder-divider {
  width: 48px;
  height: 2px;
  background: var(--c-gold);
  margin: 16px 0 22px;
  border-radius: 2px;
}

/* Mosaïque photos */
.ap-page .ap-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.ap-page .ap-mosaic-main {
  grid-row: span 2;
  border-radius: var(--ap-r);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 16px 40px rgba(14,14,14,.1);
}
.ap-page .ap-mosaic-main img,
.ap-page .ap-mosaic-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ap-page .ap-mosaic-main:hover img,
.ap-page .ap-mosaic-side:hover img { transform: scale(1.04); }
.ap-page .ap-mosaic-side {
  border-radius: var(--ap-r);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 12px 32px rgba(14,14,14,.08);
}

/* Pont services */
.ap-page .ap-services-strip {
  padding: 80px 0;
  background: var(--c-dark);
}
.ap-page .ap-services-head {
  text-align: center;
  margin-bottom: 44px;
}
.ap-page .ap-services-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem,3vw,2.5rem);
  font-weight: 300;
  color: #f4f0e8;
}
.ap-page .ap-services-head p {
  color: var(--c-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.ap-page .ap-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.ap-page .ap-service-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  border-radius: var(--ap-r);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.ap-page .ap-service-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.45);
  transform: translateY(-4px);
}
.ap-page .ap-service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.ap-page .ap-service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold-light);
}
.ap-page .ap-service-card p {
  margin: 0 0 20px;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--c-muted);
  flex: 1;
}
.ap-page .ap-service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap .2s ease;
}
.ap-page .ap-service-card:hover .ap-service-card-arrow { gap: 14px; }

/* Valeurs numérotées */
.ap-page .ap-value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.32);
  color: var(--c-gold-dark);
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: .05em;
}
.ap-page .ap-value-card .ap-value-icon { display: none; }

/* Responsive extensions */
@media (max-width: 1024px) {
  .ap-page .ap-founder-card     { grid-template-columns: 320px 1fr; }
  .ap-page .ap-services-grid    { grid-template-columns: 1fr 1fr; }
  .ap-page .ap-story-block      { grid-template-columns: 1fr; }
  .ap-page .ap-story-visual     { position: static; }
}
@media (max-width: 900px) {
  .ap-page .ap-mosaic           { grid-template-columns: 1fr; grid-template-rows: 260px 200px 200px; }
  .ap-page .ap-mosaic-main      { grid-row: auto; }
  .ap-page .ap-hero-badge-float { display: none; }
  .ap-page .ap-founder-card     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ap-page .ap-services-grid    { grid-template-columns: 1fr; }
  .ap-page .ap-story-img-wrap img { height: 320px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE  (ct-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.ct-page {
  --ct-r: 20px;
  --ct-x: clamp(16px, 5vw, 40px);
}

.ct-page .ct-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--ct-x);
  padding-right: var(--ct-x);
}

.ct-page .ct-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.ct-page .ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .22s ease;
  cursor: pointer;
  border: none;
}
.ct-page .ct-btn--gold {
  background: var(--c-gold);
  color: var(--c-dark);
}
.ct-page .ct-btn--gold:hover { background: var(--c-gold-dark); }
.ct-page .ct-btn--outline {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid rgba(14,14,14,.22);
}
.ct-page .ct-btn--outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
}
.ct-page .ct-btn--outline-light {
  border-color: rgba(255,255,255,.18);
  color: #f4f0e8;
}
.ct-page .ct-btn--outline-light:hover {
  border-color: rgba(201,168,76,.75);
  color: #f4f0e8;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.ct-page .ct-hero {
  padding: clamp(80px,10vw,130px) 0 clamp(60px,8vw,100px);
  background: #faf7f2;
  overflow: hidden;
}
.ct-page .ct-hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(40px,6vw,80px);
  align-items: center;
}
.ct-page .ct-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.18;
  text-wrap: balance;
}
.ct-page .ct-hero-copy p {
  margin: 0 0 32px;
  font-size: 1.08rem;
  line-height: 1.76;
  color: #5a5248;
  max-width: 520px;
}
.ct-page .ct-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero dark card */
.ct-page .ct-hero-card {
  background: var(--c-dark);
  border-radius: 24px;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 28px 70px rgba(14,14,14,.2);
  overflow: hidden;
}
.ct-page .ct-hero-card-top {
  padding: 28px 28px 0;
}
.ct-page .ct-hero-card-top h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f4f0e8;
}
.ct-page .ct-hero-card-top p {
  margin: 0 0 20px;
  font-size: .86rem;
  color: var(--c-muted);
  line-height: 1.6;
}
.ct-page .ct-card-list {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.ct-page .ct-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ct-page .ct-card-item:last-child { border-bottom: none; }
.ct-page .ct-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ct-page .ct-card-text strong {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--c-gold-light);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ct-page .ct-card-text span,
.ct-page .ct-card-text a {
  font-size: .9rem;
  color: var(--c-muted);
  text-decoration: none;
  line-height: 1.5;
}
.ct-page .ct-card-text a:hover { color: var(--c-gold-light); }
.ct-page .ct-hero-card-bottom {
  padding: 20px 28px;
  background: rgba(201,168,76,.07);
  border-top: 1px solid rgba(201,168,76,.14);
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.ct-page .ct-hero-card-bottom .ct-btn {
  padding: 12px 22px;
  font-size: .88rem;
  justify-content: center;
}

/* ── Strip ───────────────────────────────────────────────────────────────── */
.ct-page .ct-strip {
  background: var(--c-dark);
  padding: 0;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.ct-page .ct-strip-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.ct-page .ct-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.ct-page .ct-strip-item:last-child { border-right: none; }
.ct-page .ct-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.ct-page .ct-strip-item strong {
  display: block;
  color: var(--c-gold-light);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.ct-page .ct-strip-item span {
  font-size: .82rem;
  color: var(--c-muted);
  line-height: 1.45;
}

/* ── Main section (form + sidebar) ──────────────────────────────────────── */
.ct-page .ct-main {
  padding: clamp(64px,9vw,112px) 0;
  background: #f5efe6;
}
.ct-page .ct-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px,5vw,60px);
  align-items: start;
}

/* Form */
.ct-page .ct-form-wrap {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 20px 60px rgba(14,14,14,.08);
  padding: clamp(28px,5vw,52px);
}
.ct-page .ct-form-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,168,76,.14);
}
.ct-page .ct-form-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 300;
  color: var(--c-dark);
}
.ct-page .ct-form-header p {
  margin: 0;
  font-size: .93rem;
  color: #6a6257;
  line-height: 1.65;
}
.ct-page .ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-page .ct-form-group {
  margin-bottom: 20px;
}
.ct-page .ct-label {
  display: block;
  margin-bottom: 7px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #4a4338;
}
.ct-page .ct-required { color: var(--c-gold-dark); margin-left: 2px; }
.ct-page .ct-input,
.ct-page .ct-select,
.ct-page .ct-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(14,14,14,.13);
  background: #faf8f5;
  font-size: .96rem;
  font-family: inherit;
  color: var(--c-dark);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.ct-page .ct-input:focus,
.ct-page .ct-select:focus,
.ct-page .ct-textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
  background: #fff;
}
.ct-page .ct-input::placeholder,
.ct-page .ct-textarea::placeholder { color: #b8b0a4; }
.ct-page .ct-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23998877' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.ct-page .ct-select option { color: var(--c-dark); background: #fff; }
.ct-page input[type="number"].ct-input::-webkit-outer-spin-button,
.ct-page input[type="number"].ct-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ct-page input[type="number"].ct-input {
  -moz-appearance: textfield;
}
.ct-page .ct-field-hint {
  display: block;
  margin-top: 6px;
  font-size: .8rem;
  color: #9a9182;
}
.ct-page .ct-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Checkboxes */
.ct-page .ct-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.ct-page .ct-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(14,14,14,.14);
  background: #faf8f5;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 600;
  color: #5a5248;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.ct-page .ct-checkbox-label input[type="checkbox"] {
  width: 0; height: 0; opacity: 0; position: absolute;
}
.ct-page .ct-checkbox-label:has(input:checked) {
  border-color: var(--c-gold);
  background: rgba(201,168,76,.1);
  color: var(--c-gold-dark);
}
.ct-page .ct-checkbox-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .55rem;
  color: inherit;
}

/* Submit */
.ct-page .ct-form-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,.12);
  padding-top: 28px;
}
.ct-page .ct-submit-btn {
  padding: 15px 38px;
  border-radius: 999px;
  font-size: .97rem;
  font-weight: 700;
  background: var(--c-gold);
  color: var(--c-dark);
  border: none;
  cursor: pointer;
  transition: background .22s ease, transform .2s ease;
  font-family: inherit;
  flex-shrink: 0;
}
.ct-page .ct-submit-btn:hover {
  background: var(--c-gold-dark);
  transform: translateY(-2px);
}
.ct-page .ct-form-note {
  font-size: .79rem;
  color: #9a9088;
  line-height: 1.55;
}

/* Success message */
.ct-page .ct-success {
  display: none;
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 14px;
  background: rgba(201,168,76,.09);
  border: 1px solid rgba(201,168,76,.28);
  text-align: center;
}
.ct-page .ct-success.is-visible { display: block; }
.ct-page .ct-success strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  margin-bottom: 4px;
}
.ct-page .ct-success span {
  font-size: .9rem;
  color: #6a6257;
}

/* Sidebar */
.ct-page .ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--nav-h) + 28px);
}
.ct-page .ct-scard {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 12px 36px rgba(14,14,14,.07);
  overflow: hidden;
}
.ct-page .ct-scard-head {
  padding: 22px 22px 0;
}
.ct-page .ct-scard-head h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
}
.ct-page .ct-scard-head p {
  margin: 0 0 18px;
  font-size: .83rem;
  color: #7a7268;
  line-height: 1.55;
}
.ct-page .ct-scard-items {
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-page .ct-scard-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.ct-page .ct-scard-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.ct-page .ct-scard-text strong {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1px;
}
.ct-page .ct-scard-text span,
.ct-page .ct-scard-text a {
  font-size: .88rem;
  color: #554e46;
  text-decoration: none;
  line-height: 1.5;
}
.ct-page .ct-scard-text a:hover { color: var(--c-gold-dark); }
.ct-page .ct-scard-bottom {
  padding: 16px 22px;
  background: #faf8f5;
  border-top: 1px solid rgba(201,168,76,.11);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ct-page .ct-scard-bottom .ct-btn {
  padding: 11px 20px;
  font-size: .87rem;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

/* Map card */
.ct-page .ct-map-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 12px 36px rgba(14,14,14,.07);
  overflow: hidden;
}
.ct-page .ct-map-card iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
}
.ct-page .ct-map-footer {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(201,168,76,.1);
}
.ct-page .ct-map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}
.ct-page .ct-map-footer span,
.ct-page .ct-map-footer a {
  font-size: .8rem;
  color: #6a6257;
  font-weight: 600;
  text-decoration: none;
}
.ct-page .ct-map-footer a:hover {
  color: var(--c-gold-dark);
}

/* Responsive */
@media (max-width: 1100px) {
  .ct-page .ct-main-grid { grid-template-columns: 1fr 340px; }
}
@media (max-width: 1024px) {
  .ct-page .ct-hero-grid { grid-template-columns: 1fr; }
  .ct-page .ct-hero-card { max-width: 480px; }
  .ct-page .ct-main-grid { grid-template-columns: 1fr; }
  .ct-page .ct-sidebar   { position: static; }
}
@media (max-width: 768px) {
  .ct-page .ct-hero { padding: 60px 0 44px; }
  .ct-page .ct-strip-grid { grid-template-columns: 1fr; }
  .ct-page .ct-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 18px 20px;
  }
  .ct-page .ct-strip-item:last-child { border-bottom: none; }
  .ct-page .ct-form-row { grid-template-columns: 1fr; gap: 0; }
  .ct-page .ct-hero-actions { flex-direction: column; }
  .ct-page .ct-form-footer  { flex-direction: column; align-items: stretch; }
  .ct-page .ct-submit-btn   { width: 100%; text-align: center; }
  .ct-page .ct-btn { justify-content: center; }
}

/* ── Global Mobile Polish ───────────────────────────── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
  }

  .site-nav {
    height: var(--nav-h);
    background: rgba(14,14,14,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(201,168,76,.14);
  }

  .site-nav .container,
  .site-nav .nav-inner {
    min-height: var(--nav-h);
    padding-inline: 18px;
  }

  .nav-logo {
    margin-left: 0;
    display: inline-flex;
    align-items: center;
  }

  .nav-logo img {
    height: 42px;
    width: auto;
  }

  .nav-burger {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(201,168,76,.24);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
  }

  .nav-burger span {
    width: 18px;
    height: 1.5px;
  }

  .nav-mobile {
    top: calc(var(--nav-h) + 12px);
    right: 0;
    bottom: 0;
    left: 0;
    inset: calc(var(--nav-h) + 12px) 0 0 0;
    height: calc(100dvh - var(--nav-h) - 12px);
    z-index: 990;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 22px 26px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(14,14,14,.98), rgba(24,22,20,.98)),
      var(--c-dark);
  }

  .nav-mobile .nav-close {
    position: static;
    align-self: flex-end;
    width: 38px;
    height: 38px;
    margin: 0 0 4px;
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 999px;
    font-size: 1.25rem;
    line-height: 1;
    display: grid;
    place-items: center;
  }

  .nav-mobile a {
    width: min(100%, 340px);
    padding: 10px 0;
    font-family: var(--ff-body);
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: .02em;
    text-align: center;
  }

  .nav-mobile a:not(.btn) {
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .nav-mobile .nav-mobile-spacer {
    margin-top: 14px;
  }

  .nav-mobile .btn {
    width: min(100%, 280px);
    min-height: 42px;
    padding: 11px 18px;
    margin-inline: auto;
    border-radius: 999px;
    font-family: var(--ff-body);
    font-size: .82rem;
    line-height: 1.15;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .nav-mobile .btn + .btn {
    margin-top: 10px;
  }

  .hero,
  .page-hero,
  .traiteur-page .traiteur-hero,
  .salle-page .salle-hero,
  .photos-page .pg-hero,
  .lm-page .lm-hero,
  .ap-page .ap-hero,
  .ct-page .ct-hero {
    scroll-margin-top: var(--nav-h);
  }
}

@media (max-width: 768px) {
  .container,
  .traiteur-page .container,
  .salle-page .salle-container,
  .photos-page .pg-wrap,
  .lm-page .lm-wrap,
  .ap-page .ap-wrap,
  .ct-page .ct-wrap {
    width: min(100% - 36px, 1180px);
  }

  h1,
  .hero-title,
  .traiteur-page .traiteur-hero h1,
  .salle-page .salle-hero-content h1,
  .photos-page .pg-hero-copy h1,
  .lm-page .lm-hero-copy h1,
  .ap-page .ap-hero-copy h1,
  .ct-page .ct-hero-copy h1 {
    overflow-wrap: anywhere;
  }

  img,
  iframe {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 60px;
  }

  .site-nav .container,
  .site-nav .nav-inner {
    padding-inline: 14px;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-burger {
    width: 38px;
    height: 38px;
  }

  .nav-mobile {
    top: calc(var(--nav-h) + 10px);
    inset: calc(var(--nav-h) + 10px) 0 0 0;
    height: calc(100dvh - var(--nav-h) - 10px);
    padding: 18px 18px 22px;
  }

  .nav-mobile .nav-close {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .nav-mobile a {
    width: 100%;
    padding: 8px 0;
    font-size: 1rem;
  }

  .nav-mobile .btn {
    width: min(100%, 250px);
    min-height: 40px;
    padding: 10px 16px;
    font-size: .76rem;
  }

  .container,
  .traiteur-page .container,
  .salle-page .salle-container,
  .photos-page .pg-wrap,
  .lm-page .lm-wrap,
  .ap-page .ap-wrap,
  .ct-page .ct-wrap {
    width: min(100% - 32px, 1180px);
  }
}

/* ── Simple Premium Footer & Legal Pages ───────────── */
.site-footer {
  background: linear-gradient(180deg, #141311 0%, #0d0d0c 100%);
  color: #f7f0e6;
  border-top: 1px solid rgba(201,168,76,.24);
  padding: 56px 0 0;
}

.footer-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, .72fr) minmax(260px, .9fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 132px;
  height: auto;
  display: block;
}

.footer-brand p {
  max-width: 420px;
  margin: 0 0 18px;
  color: rgba(247,240,230,.72);
  font-size: .96rem;
  line-height: 1.7;
}

.footer-address {
  margin: 0;
  color: rgba(247,240,230,.68);
  font-style: normal;
  font-size: .94rem;
  line-height: 1.65;
}

.footer-title {
  margin: 0 0 16px;
  color: var(--c-gold);
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-links,
.footer-contact-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact-links a,
.footer-address a,
.footer-bottom a {
  color: rgba(247,240,230,.72);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a,
.footer-contact-links a {
  font-size: .94rem;
  line-height: 1.45;
}

.footer-address a {
  display: inline-flex;
  margin-top: 5px;
  color: var(--c-gold);
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact-links a:hover,
.footer-address a:hover,
.footer-bottom a:hover {
  color: var(--c-gold);
}

.footer-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-icon {
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-map {
  width: 100%;
  height: 168px;
  overflow: hidden;
  border: 1px solid rgba(201,162,77,.35);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(.9) contrast(.95);
}

.footer-map-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--c-gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-map-link:hover {
  color: #f7f0e6;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 11px 17px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
}

.footer-btn-gold {
  background: var(--c-gold);
  color: var(--c-dark);
  border: 1px solid var(--c-gold);
}

.footer-btn-outline {
  color: #f7f0e6;
  border: 1px solid rgba(201,168,76,.42);
  background: rgba(255,255,255,.03);
}

.footer-btn-outline:hover {
  border-color: rgba(201,168,76,.75);
  background: rgba(201,168,76,.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(247,240,230,.58);
  font-size: .84rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links a {
  font-size: .84rem;
}

.legal-page {
  background: #f5efe6;
  color: var(--c-dark);
}

.legal-container {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero {
  padding: calc(var(--nav-h) + 58px) 0 58px;
  background:
    linear-gradient(135deg, rgba(14,14,14,.94), rgba(31,28,24,.88)),
    var(--c-dark);
  color: #f4f0e8;
  text-align: center;
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--c-gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 16px;
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.legal-hero p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(244,240,232,.76);
  line-height: 1.75;
}

.legal-content {
  padding: 72px 0 88px;
}

.legal-card {
  padding: clamp(24px, 4vw, 38px);
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(190,150,70,.2);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(14,14,14,.06);
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--c-dark);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.legal-card p {
  margin: 0 0 12px;
  color: #554e46;
  line-height: 1.76;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--c-gold-dark);
  font-weight: 700;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(14,14,14,.08);
}

.legal-list dt {
  color: var(--c-dark);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  color: #554e46;
  line-height: 1.6;
}

.legal-bullets {
  margin: 16px 0;
  padding-left: 20px;
  color: #554e46;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-map-col {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 44px;
  }

  .footer-container,
  .legal-container {
    width: min(100% - 36px, 980px);
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-actions {
    align-items: stretch;
  }

  .footer-btn {
    width: min(100%, 300px);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .footer-map {
    height: 160px;
  }

  .legal-hero {
    padding: calc(var(--nav-h) + 40px) 0 46px;
  }

  .legal-content {
    padding: 52px 0 64px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .footer-container,
  .legal-container {
    width: min(100% - 32px, 980px);
  }

  .footer-logo img {
    width: 118px;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 9px;
  }

  .legal-card {
    border-radius: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   INDEX / HOMEPAGE  (ih-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.ih-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(16px,5vw,40px);
  padding-right: clamp(16px,5vw,40px);
}
.ih-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
}
.ih-kicker--light { color: var(--c-gold); }
.ih-section-title {
  margin: 0 0 14px;
  font-size: clamp(1.9rem,3.5vw,2.8rem);
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.22;
  text-wrap: balance;
}
.ih-section-title--light { color: #f4f0e8; }
.ih-section-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: #6a6257;
  max-width: 560px;
}
.ih-section-sub--light { color: var(--c-muted); }

/* ── Strip (stats bar) ───────────────────────────────────────────────────── */
.ih-strip {
  background: var(--c-dark);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.ih-strip-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.ih-strip-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.ih-strip-item:last-child { border-right: none; }
.ih-strip-val {
  display: block;
  font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: 7px;
  letter-spacing: -.01em;
}
.ih-strip-label {
  font-size: .8rem;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ── Présentation split ──────────────────────────────────────────────────── */
.ih-pres {
  padding: clamp(72px,10vw,120px) 0;
  background: #faf7f2;
}
.ih-pres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px);
  align-items: center;
}
.ih-pres-copy .ih-section-title { margin-bottom: 18px; }
.ih-pres-copy > p {
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.78;
  color: #5a5248;
}
.ih-pres-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.ih-pres-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(201,168,76,.16);
}
.ih-pres-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.ih-pres-pt strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 2px;
}
.ih-pres-pt span {
  font-size: .84rem;
  color: #6a6257;
  line-height: 1.5;
}
.ih-pres-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 24px 64px rgba(14,14,14,.12);
}
.ih-pres-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.ih-pres-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(14,14,14,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.35);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ih-pres-badge strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1.25;
}
.ih-pres-badge span {
  font-size: .75rem;
  color: var(--c-muted);
}
.ih-pres-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

/* ── Services 4 cards ────────────────────────────────────────────────────── */
.ih-services {
  padding: clamp(72px,10vw,120px) 0;
  background: var(--c-ivory);
}
.ih-services-head {
  text-align: center;
  margin-bottom: clamp(40px,6vw,60px);
}
.ih-services-head .ih-section-sub { margin-inline: auto; }
.ih-services-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}
.ih-scard {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(201,168,76,.14);
  box-shadow: 0 10px 32px rgba(14,14,14,.06);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ih-scard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(14,14,14,.11);
  border-color: rgba(201,168,76,.36);
}
.ih-scard-img {
  overflow: hidden;
  height: 185px;
  flex-shrink: 0;
}
.ih-scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ih-scard:hover .ih-scard-img img { transform: scale(1.07); }
.ih-scard-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ih-scard-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  margin-bottom: 13px;
}
.ih-scard-body h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
}
.ih-scard-body p {
  margin: 0 0 18px;
  font-size: .85rem;
  line-height: 1.65;
  color: #6a6257;
  flex: 1;
}
.ih-scard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .79rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: gap .2s ease;
}
.ih-scard:hover .ih-scard-link { gap: 12px; }

/* ── Événements ──────────────────────────────────────────────────────────── */
.ih-events {
  padding: clamp(72px,10vw,120px) 0;
  background: var(--c-dark);
}
.ih-events-head {
  text-align: center;
  margin-bottom: clamp(40px,6vw,60px);
}
.ih-events-head .ih-section-sub { margin-inline: auto; }
.ih-events-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}
.ih-event-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.14);
  transition: background .25s ease, border-color .25s ease;
}
.ih-event-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.32);
}
.ih-event-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.26);
  font-size: .75rem;
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.ih-event-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold-light);
}
.ih-event-card p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.65;
  color: var(--c-muted);
}

/* ── Processus ────────────────────────────────────────────────────────────── */
.ih-process {
  padding: clamp(72px,10vw,120px) 0;
  background: #f5efe6;
}
.ih-process-head {
  text-align: center;
  margin-bottom: clamp(52px,7vw,80px);
}
.ih-process-head .ih-section-sub { margin-inline: auto; }
.ih-process-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
  position: relative;
}
.ih-process-grid::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--c-gold) 0%, rgba(201,168,76,.25) 100%);
  z-index: 0;
}
.ih-process-step {
  padding: 0 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ih-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid var(--c-gold);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-gold-dark);
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(201,168,76,.18);
}
.ih-process-step h3 {
  margin: 0 0 10px;
  font-size: .97rem;
  font-weight: 700;
  color: var(--c-dark);
}
.ih-process-step p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.65;
  color: #6a6257;
}

/* ── Galerie aperçu ───────────────────────────────────────────────────────── */
.ih-gallery {
  padding: clamp(72px,10vw,120px) 0;
  background: var(--c-ivory);
}
.ih-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px,5vw,48px);
  flex-wrap: wrap;
}
.ih-gallery-head .ih-section-title { margin: 0; }
.ih-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
}
.ih-gimg {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: 0 8px 24px rgba(14,14,14,.07);
}
.ih-gimg:first-child { grid-row: span 2; }
.ih-gimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ih-gimg:hover img { transform: scale(1.05); }
.ih-gallery-cta {
  text-align: center;
  margin-top: 36px;
}

/* ── Localisation ─────────────────────────────────────────────────────────── */
.ih-location {
  padding: clamp(72px,10vw,120px) 0;
  background: var(--c-dark);
}
.ih-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px);
  align-items: center;
}
.ih-location-copy .ih-section-title--light { margin-bottom: 18px; }
.ih-location-copy > p {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--c-muted);
}
.ih-loc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.ih-loc-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.24);
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-gold-light);
  letter-spacing: .04em;
}
.ih-loc-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.18);
  margin-bottom: 28px;
}
.ih-loc-address-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ih-loc-address strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-gold-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}
.ih-loc-address span {
  font-size: .92rem;
  color: #c0b8ae;
  line-height: 1.5;
}
.ih-map-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 24px 64px rgba(14,14,14,.3);
  height: 380px;
}
.ih-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── CTA final ────────────────────────────────────────────────────────────── */
.ih-cta {
  padding: clamp(72px,10vw,112px) 0;
  background: #faf7f2;
}
.ih-cta-box {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px,6vw,72px) clamp(32px,5vw,60px);
  border-radius: 28px;
  background: var(--c-dark);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: 0 28px 80px rgba(14,14,14,.2);
}
.ih-cta-box .ih-kicker--light { display: block; margin-bottom: 14px; }
.ih-cta-box .ih-section-title--light { margin-bottom: 16px; }
.ih-cta-box > p {
  margin: 0 auto 36px;
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--c-muted);
}
.ih-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ── Responsive homepage ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ih-services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 1024px) {
  .ih-pres-grid     { grid-template-columns: 1fr; }
  .ih-pres-visual img { height: 380px; }
  .ih-events-grid   { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ih-process-grid  { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 32px; }
  .ih-process-grid::before { display: none; }
  .ih-location-grid { grid-template-columns: 1fr; }
  .ih-map-wrap      { height: 300px; }
  .ih-gallery-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .ih-gimg:first-child { grid-row: auto; }
}
@media (max-width: 900px) {
  .ih-strip-grid { grid-template-columns: repeat(2,1fr); }
  .ih-strip-item:nth-child(2) { border-right: none; }
  .ih-strip-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 768px) {
  .ih-services-grid { grid-template-columns: 1fr; }
  .ih-events-grid   { grid-template-columns: 1fr; }
  .ih-process-grid  { grid-template-columns: 1fr; gap: 28px; }
  .ih-gallery-grid  { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ih-gimg          { height: 220px; }
  .ih-cta-btns      { flex-direction: column; }
  .ih-cta-btns .btn { width: 100%; justify-content: center; }
  .ih-gallery-head  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ih-pres-visual img { height: 280px; }
}
@media (max-width: 480px) {
  .ih-strip-grid { grid-template-columns: 1fr; }
  .ih-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .ih-strip-item:last-child { border-bottom: none; }
  .ih-strip-item:nth-child(3) { border-top: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RUBRIQUE PHOTOS — Galerie unique avec filtres (refonte)
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Hero image unique ─────────────────────────────────────────────────────── */
.photos-page .pg-hero-image {
  border-radius: var(--pg-r);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14,14,14,.18);
  border: 1px solid rgba(201,168,76,.22);
}
.photos-page .pg-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

/* ── Galerie : filtres ─────────────────────────────────────────────────────── */
.photos-page .gal-section {
  padding: 56px 0 96px;
}
.photos-page .gal-section-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--c-dark);
}
.photos-page .gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.photos-page .gal-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.3);
  background: transparent;
  color: #554e46;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.photos-page .gal-filter-btn:hover,
.photos-page .gal-filter-btn.is-active {
  background: var(--pg-gold);
  color: #0e0e0e;
  border-color: var(--pg-gold);
}
.photos-page .gal-count {
  text-align: center;
  margin: -28px 0 36px;
  color: #8a8174;
  font-size: .86rem;
}

/* ── Galerie : grille ──────────────────────────────────────────────────────── */
.photos-page .gal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.photos-page .gal-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--pg-r);
  aspect-ratio: 1 / 1;
  background: #1a1814;
  border: 1px solid rgba(201,168,76,.18);
  box-shadow: 0 8px 28px rgba(14,14,14,.1);
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  appearance: none;
  text-align: left;
}
.photos-page .gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.photos-page .gal-card:hover img { transform: scale(1.07); }
.photos-page .gal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
}
.photos-page .gal-cat {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(14,14,14,.55);
  color: #e2c97e;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.photos-page .gal-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.photos-page .gal-card--video .gal-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #1a1814;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
  transition: transform .25s ease, background .25s ease;
}
.photos-page .gal-card--video:hover .gal-play {
  transform: translate(-50%,-50%) scale(1.1);
  background: var(--c-gold);
  color: #fff;
}
.photos-page .gal-card-player {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #000;
  border-radius: var(--pg-r);
}
.photos-page .gal-card.is-hidden { display: none; }
.photos-page .gal-empty {
  text-align: center;
  padding: 60px 0;
  color: #8a8174;
  font-size: .95rem;
  display: none;
}
.photos-page .gal-empty.is-visible { display: block; }

@media (max-width: 1100px) {
  .photos-page .gal-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .photos-page .gal-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .photos-page .gal-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 28px;
    scrollbar-width: none;
  }
  .photos-page .gal-filters::-webkit-scrollbar { display: none; }
  .photos-page .gal-title { font-size: .8rem; padding: 10px 12px; }
  .photos-page .gal-cat { font-size: .6rem; padding: 3px 9px; }
}
@media (max-width: 420px) {
  .photos-page .gal-grid { grid-template-columns: 1fr; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Texte SEO par catégorie ──────────────────────────────────────────────── */
.photos-page .gal-cat-desc {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: #6a6257;
  font-size: .98rem;
  line-height: 1.7;
}
.photos-page .pg-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.photos-page .pg-cta-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.25);
  color: var(--c-gold-light);
  font-size: .84rem;
  transition: var(--transition);
}
.photos-page .pg-cta-links a:hover {
  background: rgba(201,168,76,.12);
  color: #fff;
  border-color: rgba(201,168,76,.45);
}
.photos-page .gal-cat-desc a {
  color: var(--pg-gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,.4);
}
.photos-page .gal-cat-desc a:hover { text-decoration-color: var(--pg-gold); }

/* ── Sous-groupes visuels (catégorie Traiteur) ────────────────────────────── */
.photos-page .gal-subhead {
  grid-column: 1 / -1;
  margin: 8px 0 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.photos-page .gal-grid > .gal-subhead:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.photos-page .gal-subhead.is-hidden { display: none; }

/* ── Bandeau distances section situation a-propos ─────────────────────────── */
.ap-page .ap-dist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .ap-page .ap-dist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .ap-page .ap-dist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION VIDÉOS DÉDIÉE — rubrique-photos.html
   ════════════════════════════════════════════════════════════════════════════ */

.photos-page .vid-section {
  padding: 80px 0 96px;
  background: #0e0e0e;
}
.photos-page .vid-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.photos-page .vid-section-head .pg-kicker {
  background: rgba(201,168,76,.18);
  color: #e2c97e;
}
.photos-page .vid-section-head h2 {
  font-size: clamp(1.8rem,3.2vw,2.8rem);
  font-weight: 300;
  color: #f4f0e8;
  margin: 0 0 14px;
}
.photos-page .vid-section-head p {
  color: #9e9585;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.photos-page .vid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.photos-page .vid-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.22);
  background: #111;
  cursor: pointer;
  padding: 0;
  appearance: none;
}
.photos-page .vid-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.photos-page .vid-tile:hover img { transform: scale(1.05); }
.photos-page .vid-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.photos-page .vid-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-58%);
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #1a1814;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.5);
  transition: transform .25s ease, background .25s ease;
}
.photos-page .vid-tile:hover .vid-play {
  transform: translate(-50%,-58%) scale(1.12);
  background: var(--c-gold);
  color: #fff;
}
.photos-page .vid-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 10px 14px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.photos-page .vid-tile-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #000;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .photos-page .vid-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .photos-page .vid-grid { grid-template-columns: 1fr; gap: 14px; }
  .photos-page .vid-section { padding: 56px 0 64px; }
}
