:root {
  /* Design System Pro & Épuré — Identique aux Standards DanyDany & Dôme Hub */
  --bg-dark: #0b0f17;
  --bg-surface: #111827;
  --bg-card: rgba(17, 24, 39, 0.80);
  --bg-card-hover: rgba(31, 41, 55, 0.90);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: #f59e0b;

  --terracotta: #c2521a;
  --terracotta-glow: rgba(194, 82, 26, 0.25);
  --terracotta-dark: #8b3a12;

  --amber-primary: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.25);
  --amber-dark: #b45309;

  --emerald-accent: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.2);

  --swiss-red: #da291c;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.06) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(30, 41, 59, 0.4) 0px, transparent 100%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-smooth);
  width: 100%;
}

.glass-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 35px -10px rgba(245, 158, 11, 0.12);
}

/* Header & Nav */
.header-container {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.nav-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f59e0b, #c2521a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px var(--amber-glow);
  flex-shrink: 0;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-title-badge {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber-primary);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--amber-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-accent);
  white-space: nowrap;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--emerald-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b0f17;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px var(--amber-glow);
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}
.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--amber-primary);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
  display: none;
  background: rgba(11, 15, 23, 0.98);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-dropdown.open {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: slideDown 0.25s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}
.mobile-nav-item:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--amber-primary);
}

/* Layout Main Container */
.main-container {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 0 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

/* Hero Profile Section */
.hero-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.75rem;
  align-items: stretch;
  width: 100%;
}

.profile-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 1.25rem;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-subtle);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.avatar-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #111827;
  border: 2px solid var(--swiss-red);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.25rem;
}

.profile-role {
  color: var(--amber-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.profile-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.origins-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.origin-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}
.origin-badge.africa { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.12); color: var(--amber-primary); }
.origin-badge.world { border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.1); color: #60a5fa; }
.origin-badge.events { border-color: rgba(16,185,129,0.4); background: rgba(16,185,129,0.12); color: var(--emerald-accent); }

.quick-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--amber-primary);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-primary);
  border-color: var(--amber-primary);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  text-align: left;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
}

.contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Bio Card */
.bio-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-primary);
  margin-bottom: 0.75rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-heading span {
  color: var(--amber-primary);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.pillar-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.15rem 1rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.pillar-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
  background: rgba(245, 158, 11, 0.04);
}

.pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pillar-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Benchmark Pillars 3 Modules */
.benchmark-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  width: 100%;
}

.benchmark-pillar-item {
  text-align: left;
  padding: 1.35rem 1.25rem;
}

.benchmark-pillar-item .pillar-title {
  font-size: 1rem;
  color: var(--amber-primary);
}

.benchmark-pillar-item .pillar-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Sections Standards */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Menus Section & Carrousel Horizontal Fluide */
.menus-section {
  padding: 2.25rem;
  overflow: hidden;
  width: 100%;
}

.carousel-counter {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-primary);
  background: rgba(245, 158, 11, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  white-space: nowrap;
}

.menus-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}

.carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-primary) rgba(255, 255, 255, 0.05);
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--amber-primary);
  border-radius: 10px;
}

.menu-card {
  flex: 0 0 320px;
  max-width: 320px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.35rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.05);
}

.swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.75rem;
  color: var(--amber-primary);
  margin-top: 0.5rem;
  font-weight: 600;
}

.menu-emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.menu-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.menu-origin {
  font-size: 0.72rem;
  color: var(--amber-primary);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0.2rem 0 0.5rem;
}

.menu-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

/* Prestations & Tarifs */
.pricing-section {
  padding: 2.25rem;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
  background: rgba(245, 158, 11, 0.05);
  border: 2px solid var(--amber-primary);
  box-shadow: 0 8px 30px var(--amber-glow);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--amber-primary);
  color: #0b0f17;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-category {
  font-size: 0.75rem;
  color: var(--amber-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--amber-primary);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  font-size: 0.85rem;
  color: var(--text-main);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features .check {
  color: var(--emerald-accent);
  font-weight: 800;
}

/* Galerie Photos Carrousel */
.gallery-section {
  padding: 2.25rem;
  overflow: hidden;
  width: 100%;
}

.gallery-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}

.gallery-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--amber-primary) rgba(255, 255, 255, 0.05);
}

.gallery-card {
  flex: 0 0 340px;
  max-width: 340px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 23, 0.95) 0%, rgba(11, 15, 23, 0.2) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.dish-region {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber-primary);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.dish-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.dish-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ==========================================================================
   SIMULATEUR DE DEVIS — ROBUSTE, SANS DÉBORDEMENT & 100% FLUIDE EN MOBILE
   ========================================================================== */
.devis-section {
  padding: 2.25rem;
  width: 100%;
  overflow: hidden;
}

.devis-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  width: 100%;
}

.devis-form-col {
  width: 100%;
  min-width: 0;
}

.devis-result-col {
  width: 100%;
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  min-width: 0;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  word-break: break-word;
}

.form-select, .form-input, .form-textarea {
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
  border-color: var(--amber-primary);
  background: rgba(255, 255, 255, 0.07);
}

.form-select option {
  background: #111827;
  color: #fff;
}

.form-range {
  accent-color: var(--amber-primary);
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
}

.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  width: 100%;
}

.form-checkbox-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  grid-column: span 2;
  width: 100%;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  word-break: break-word;
}

.checkbox-label input {
  accent-color: var(--amber-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.est-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 90px;
  width: 100%;
  box-sizing: border-box;
}

.swiss-stamp {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--swiss-red);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.est-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.est-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber-primary);
  margin: 0.35rem 0;
  line-height: 1.1;
  word-break: break-word;
}

.est-range {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
  word-break: break-word;
}

.est-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  width: 100%;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.est-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.est-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 1rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 24px;
  background: rgba(6, 10, 18, 0.95);
  margin-top: 2rem;
  width: 100%;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-chain {
  font-size: 0.78rem;
  color: var(--emerald-accent);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* Lightbox Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.modal-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.modal-caption {
  margin-top: 1rem;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-display);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS HARMONISÉS
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benchmark-pillars-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
  .devis-grid {
    grid-template-columns: 1fr;
  }
  .est-box {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-wrapper {
    padding: 0.75rem 1rem;
  }
  .brand-title {
    font-size: 1.2rem;
  }
  .hero-heading {
    font-size: 1.6rem;
  }
  .main-container {
    padding: 0 1rem 3rem;
    margin: 1rem auto;
    gap: 1.5rem;
  }
  
  /* Sections Padding */
  .menus-section,
  .pricing-section,
  .gallery-section,
  .devis-section,
  .bio-card,
  .profile-card,
  #benchmark {
    padding: 1.25rem 1rem;
  }

  /* Menus & Galerie Carrousel en Mobile */
  .menu-card,
  .gallery-card {
    flex: 0 0 280px;
    max-width: 280px;
    padding: 1.15rem;
  }
  .gallery-card {
    padding: 0;
  }
  .swipe-hint {
    display: block;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
  }
  .form-checkbox-wrap {
    grid-column: span 1;
    gap: 0.75rem;
  }
  .est-box {
    padding: 1.25rem 1rem;
  }
  .est-amount {
    font-size: 2rem;
  }
  .pillars-grid,
  .benchmark-pillars-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .gallery-filters {
    gap: 0.35rem;
  }
  .filter-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
