/* ==========================================================================
   LA TABLE DU MAROC TRAITEUR - LE MANS & SARTHE
   Design System, Custom Styling & Responsive Layout
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-gold: #D4AF37;
  --primary-gold-hover: #B89326;
  --gold-gradient: linear-gradient(135deg, #F5E6B3 0%, #D4AF37 50%, #9E7A1A 100%);
  
  --ochre: #C05A34;
  --ochre-hover: #A34824;
  --terracotta: #B85B35;
  --terracotta-dark: #8F3D1B;
  
  --emerald: #0F4C3A;
  --emerald-dark: #072F24;
  --emerald-light: #166B52;
  
  --bg-cream: #FAF7F2;
  --bg-surface: #FFFFFF;
  --bg-dark: #141311;
  --bg-dark-card: #1E1C19;
  
  --text-main: #24221E;
  --text-muted: #6B665E;
  --text-light: #F7F5F0;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-light: rgba(0, 0, 0, 0.08);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 76, 58, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold { color: var(--primary-gold); }
.text-ochre { color: var(--ochre); }
.text-terracotta { color: var(--terracotta); }
.text-emerald { color: var(--emerald); }

.bg-emerald { background-color: var(--emerald); color: var(--text-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-surface { background-color: var(--bg-surface); }
.bg-cream { background-color: var(--bg-cream); }

/* Badges & Buttons */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(192, 90, 52, 0.1);
  color: var(--ochre);
  border: 1px solid rgba(192, 90, 52, 0.25);
  margin-bottom: 0.75rem;
}

.badge-emerald {
  background: rgba(15, 76, 58, 0.1);
  color: var(--emerald);
  border-color: rgba(15, 76, 58, 0.25);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: #B8860B;
  border-color: rgba(212, 175, 55, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ochre {
  background: var(--ochre);
  color: #FFFFFF;
}

.btn-ochre:hover {
  background: var(--ochre-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 90, 52, 0.3);
}

.btn-emerald {
  background: var(--emerald);
  color: #FFFFFF;
}

.btn-emerald:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--bg-dark);
  border-color: #FFFFFF;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-light);
}

.btn-outline-dark:hover {
  background: var(--text-main);
  color: #FFFFFF;
}

/* HEADER NAVIGATION */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  padding: 0.8rem 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--primary-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-dark);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--ochre);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ochre);
  transition: var(--transition);
}

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

.nav-link.active {
  color: var(--ochre);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--emerald-dark);
  cursor: pointer;
  padding: 0.4rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url('assets/images/couscous_geant.jpg') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding: 4rem 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 47, 36, 0.9) 0%, rgba(20, 19, 17, 0.78) 60%, rgba(192, 90, 52, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-rating .stars {
  color: #FFD700;
  display: flex;
  gap: 0.15rem;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title span {
  color: var(--primary-gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-feature-text h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.hero-feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* PAGE HEADER BANNER (for subpages) */
.page-banner {
  position: relative;
  background: url('assets/images/mariage_reception.jpg') center/cover no-repeat;
  padding: 5rem 0 3.5rem;
  color: var(--text-light);
  text-align: center;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 47, 36, 0.88) 0%, rgba(20, 19, 17, 0.82) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-banner-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.page-banner-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--primary-gold);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover { color: #FFFFFF; }

/* SECTIONS GENERAL */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  color: var(--emerald-dark);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* PRESTATIONS / HIGHLIGHTS GRID */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(192, 90, 52, 0.1);
  color: var(--ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.highlight-card h3 {
  font-size: 1.35rem;
  color: var(--emerald-dark);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.highlight-link {
  color: var(--ochre);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.highlight-link:hover {
  color: var(--terracotta-dark);
  gap: 0.7rem;
}

/* CHEF PRESENTATION SECTION */
.chef-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.chef-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.chef-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.chef-badge-experience {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(7, 47, 36, 0.92);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.chef-badge-experience .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.chef-content h2 {
  font-size: 2.3rem;
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

.chef-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1.25rem;
}

.chef-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.chef-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--emerald-dark);
  font-size: 0.95rem;
}

.chef-highlight-item i {
  color: var(--ochre);
}

/* MENU & DISHES SECTION */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--emerald);
  color: #FFFFFF;
  border-color: var(--emerald);
  box-shadow: var(--shadow-sm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.menu-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(7, 47, 36, 0.85);
  backdrop-filter: blur(6px);
  color: var(--primary-gold);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

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

.menu-card-title {
  font-size: 1.25rem;
  color: var(--emerald-dark);
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.menu-badge {
  font-size: 0.8rem;
  color: var(--ochre);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* QUOTE SIMULATOR SECTION */
.quote-section {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, #0D261E 100%);
  color: var(--text-light);
}

.quote-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.quote-info h2 {
  font-size: 2.3rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.quote-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.quote-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.quote-card h3 {
  font-size: 1.5rem;
  color: var(--emerald-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--ochre);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(192, 90, 52, 0.15);
}

.range-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.range-slider input[type="range"] {
  flex-grow: 1;
  accent-color: var(--ochre);
  height: 6px;
}

.range-value {
  font-weight: 700;
  color: var(--ochre);
  font-size: 1.1rem;
  min-width: 80px;
  text-align: right;
}

.estimate-box {
  background: rgba(192, 90, 52, 0.08);
  border: 1px dashed var(--ochre);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  margin: 1.5rem 0;
}

.estimate-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ochre);
}

/* ZONE D'INTERVENTION */
.zone-section {
  background: var(--bg-surface);
}

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

.zone-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.zone-item {
  background: var(--bg-cream);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-dark);
  border: 1px solid var(--border-light);
}

.zone-item i {
  color: var(--ochre);
}

/* TESTIMONIALS & FAQ */
.testimonials {
  background: var(--bg-cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--emerald-dark);
  font-size: 0.9rem;
}

/* FAQ ACCORDION */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--ochre);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 300px;
}

/* GALERIE GRID & LIGHTBOX */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 47, 36, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0;
  transition: var(--transition);
  padding: 1rem;
  text-align: center;
}

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

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

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--primary-gold);
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--primary-gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-icon {
  color: var(--primary-gold);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a:hover {
  color: var(--primary-gold);
}

/* MODAL DE CONFIRMATION DE DEVIS / DEVIS FORM */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-gold);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ochre);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .quote-container,
  .chef-grid,
  .zone-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  section {
    padding: 3.5rem 0;
  }

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

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
