/* ============================================================
   L'AUDACIEUX — style.css
   Traiteur rôtisseur haut de gamme | Tarbes & Sud-Ouest
   ============================================================ */

/* ======================
   1. FONTS
====================== */
/* Fonts chargées via <link> dans le <head> de chaque page pour de meilleures performances */

/* ======================
   2. VARIABLES
====================== */
:root {
  --orange:         #FF7A00;
  --gold:           #FFC300;
  --dark:           #0F0F0F;
  --dark-2:         #1A1A1A;
  --dark-3:         #141414;
  --text:           #F5F5F5;
  --text-muted:     rgba(245, 245, 245, 0.7);
  --text-dim:       #aaa;
  --border:         rgba(255, 122, 0, 0.2);
  --gradient:       linear-gradient(135deg, #FF7A00, #FFC300);
  --gradient-h:     linear-gradient(90deg,  #FF7A00, #FFC300);
  --shadow-orange:  0 12px 30px rgba(255, 122, 0, 0.4);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     0.3s ease;
  --header-h:       72px;
}

/* ======================
   3. RESET
====================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* ======================
   4. BASE
====================== */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }

/* ======================
   5. TYPOGRAPHIE
====================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ======================
   6. CONTAINER
====================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======================
   7. SECTION HEADER
====================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
  color: var(--text);
}

.section-header p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ======================
   8. BOUTONS
====================== */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #0F0F0F;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-orange);
  color: #0F0F0F;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 13px 28px;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: white;
  border-color: white;
  color: black;
}

.btn-outline {
  display: inline-block;
  padding: 13px 28px;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--orange);
  color: black;
  box-shadow: var(--shadow-orange);
}

/* ======================
   9. HEADER
====================== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(15, 15, 15, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-icon {
  background: var(--gradient);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.logo-sub {
  font-size: 11px;
  color: var(--orange);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================
   10. HERO (GÉNÉRAL)
====================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.overlay-orange {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 55%, rgba(255, 122, 0, 0.32), transparent 65%);
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.52) 60%,
    rgba(15, 15, 15, 0.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: 40px 24px;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-content h1 span { color: var(--orange); }

.hero-content > p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse .dot {
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease infinite;
}

@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ======================
   11. HERO RÉALISATIONS
====================== */
.hero-realisations {
  position: relative;
  height: 62vh;
  min-height: 400px;
  max-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-realisations .hero-content h1 span { color: var(--orange); }

.hero-realisations p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(245, 245, 245, 0.85);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======================
   12. BLOC SEO
====================== */
.seo-text {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}

.seo-text h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 20px;
  color: var(--text);
}

.seo-text h2 span { color: var(--orange); }

.seo-text p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.85;
}

/* ======================
   13. PRESTATIONS
====================== */
.prestations {
  padding: 100px 0;
  background: var(--dark-2);
}

.prestations-header {
  text-align: center;
  margin-bottom: 60px;
}

.prestations-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 12px;
  color: var(--text);
}

.prestations-header h2 span { color: var(--orange); }
.prestations-header p { color: var(--text-muted); font-size: 16px; }

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(255, 122, 0, 0.18);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.card-content {
  padding: 52px 24px 30px;
  text-align: center;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: -32px auto 18px;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

.card-content h3 { font-size: 20px; margin-bottom: 10px; color: var(--text); }
.card-content p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ======================
   14. SAVOIR-FAIRE
====================== */
.savoir-faire {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
}

.savoir-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.savoir-image { position: relative; }

.savoir-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.savoir-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-orange);
  text-align: center;
}

.savoir-badge .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: black;
  line-height: 1;
}

.savoir-badge p { font-size: 13px; color: black; margin-top: 4px; }

.savoir-content h2 { font-size: clamp(30px, 3.5vw, 44px); margin-bottom: 20px; }
.savoir-content h2 span { color: var(--orange); }
.savoir-content .intro { color: #ccc; font-size: 15px; line-height: 1.85; margin-bottom: 36px; }

.features { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }

.feature { display: flex; gap: 16px; align-items: flex-start; }

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.feature h3 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.feature p  { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

/* ======================
   15. GALERIE (APERÇU)
====================== */
.galerie { padding: 100px 0; background: var(--dark); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}

.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.galerie-item:hover img { transform: scale(1.1); }

.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 122, 0, 0.78), transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  transition: opacity var(--transition);
}

.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay p { color: white; font-weight: 600; font-size: 14px; letter-spacing: 0.5px; }
.galerie-cta { text-align: center; margin-top: 50px; }

/* ======================
   16. GALLERY (RÉALISATIONS)
====================== */
.filter-bar { padding: 40px 0 30px; background: var(--dark); text-align: center; }

.filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filters button {
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--dark-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.filters button:hover,
.filters button.active {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.gallery-section { padding: 20px 0 100px; background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
  animation: fadeInUp 0.4s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-item:hover { border-color: var(--orange); box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.gallery-overlay h3 { color: white; font-size: 16px; font-family: 'Playfair Display', serif; }
.gallery-item.hidden { display: none; }

/* ======================
   17. TÉMOIGNAGES
====================== */
.avis { padding: 100px 0; background: linear-gradient(180deg, var(--dark), var(--dark-2)); }

.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 60px; }

.avis-card {
  position: relative;
  background: var(--dark-3);
  padding: 38px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.avis-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 15px 40px rgba(255, 122, 0, 0.12); }

.avis-quote {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 38px;
  height: 38px;
  background: var(--gradient);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.avis-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.avis-text  { font-size: 14px; color: #ccc; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.avis-author { border-top: 1px solid var(--border); padding-top: 14px; }
.avis-name  { font-weight: 600; font-size: 15px; color: var(--text); }
.avis-event { font-size: 12px; color: var(--orange); margin-top: 2px; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p { font-size: 13px; color: var(--text-dim); }

/* ======================
   18. CTA
====================== */
.cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 122, 0, 0.18), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.cta-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.cta h2 { font-size: clamp(30px, 4.5vw, 52px); margin-bottom: 18px; color: var(--text); }
.cta h2 span { color: var(--orange); }
.cta-content p { color: #ccc; font-size: 17px; margin-bottom: 36px; line-height: 1.7; }

.cta-buttons { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-phone { color: var(--text); font-weight: 500; font-size: 16px; transition: var(--transition); }
.cta-phone:hover { color: var(--orange); }
.cta-trust { font-size: 13px; color: #666; margin-top: 16px; }

.cta-premium { padding: 100px 24px; text-align: center; background: linear-gradient(180deg, var(--dark), #000); }
.cta-premium h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; color: var(--text); }
.cta-premium h2 span { color: var(--orange); }
.cta-premium p { color: var(--text-dim); font-size: 16px; max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }

/* ======================
   19. FOOTER
====================== */
.footer { background: #0A0A0A; padding: 80px 24px 0; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.footer-logo-sub  { font-size: 11px; color: var(--orange); letter-spacing: 0.5px; }
.footer-desc { color: var(--text-dim); font-size: 14px; line-height: 1.7; max-width: 260px; }

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links p { color: var(--text-dim); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.socials { display: flex; gap: 10px; margin-top: 12px; }

.socials a {
  width: 38px;
  height: 38px;
  background: var(--dark-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}

.socials a:hover { background: var(--gradient); color: black; border-color: transparent; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: #555; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: #555; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ======================
   20. ABOUT — HISTOIRE
====================== */
.histoire { padding: 100px 0; background: var(--dark); }

.histoire-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.histoire-text h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 28px; }
.histoire-text h2 span { color: var(--orange); }
.histoire-text p { color: rgba(245, 245, 245, 0.8); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.histoire-text strong { color: var(--gold); }
.histoire-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4 / 3; }

/* ======================
   21. ABOUT — VALEURS
====================== */
.valeurs { padding: 100px 0; background: var(--dark-2); }

.valeurs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.valeur-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: var(--transition);
}

.valeur-card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 15px 40px rgba(255, 122, 0, 0.15); }

.valeur-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.valeur-card h3 { font-size: 18px; font-family: 'Playfair Display', serif; color: var(--text); margin-bottom: 10px; }
.valeur-card p  { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ======================
   22. ABOUT — ÉQUIPE
====================== */
.equipe { padding: 100px 0; background: var(--dark); }

.equipe-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

.chef-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4 / 5; }

.chef-name  { font-size: clamp(26px, 3vw, 38px); margin-bottom: 6px; }
.chef-role  { color: var(--orange); font-size: 16px; margin-bottom: 24px; }
.chef-text p { color: rgba(245, 245, 245, 0.8); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }

.chef-quote { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.quote-line { height: 1px; background: rgba(255, 122, 0, 0.5); flex: 1; }

.chef-quote p {
  color: var(--gold);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
  font-size: 16px;
  margin-bottom: 0;
}

/* ======================
   23. ABOUT — CHIFFRES
====================== */
.chiffres { padding: 100px 0; background: linear-gradient(180deg, var(--dark), #0A0A0A); }

.chiffres-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.chiffre-item  { text-align: center; }

.chiffre-value { display: inline-flex; align-items: baseline; gap: 2px; }

.chiffre-number,
.chiffre-suffix {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.chiffre-number { font-size: clamp(52px, 6vw, 76px); }
.chiffre-suffix { font-size: clamp(28px, 3.5vw, 46px); }
.chiffre-label  { color: rgba(245, 245, 245, 0.8); font-size: 15px; margin-top: 12px; }

/* ======================
   24. RESPONSIVE — TABLETTE
====================== */
@media (max-width: 1024px) {
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 32px; }
  .valeurs-grid        { grid-template-columns: repeat(2, 1fr); }
  .chiffres-grid       { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 900px) {
  .savoir-container    { grid-template-columns: 1fr; gap: 50px; }
  .savoir-badge        { right: 12px; bottom: 12px; }
  .avis-grid           { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 60px; }
  .stats-bar           { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .histoire-inner      { grid-template-columns: 1fr; gap: 40px; }
  .equipe-inner        { grid-template-columns: 1fr; gap: 40px; }
  .chef-image img      { aspect-ratio: 16 / 9; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid        { grid-template-columns: repeat(2, 1fr); }
}

/* ======================
   25. RESPONSIVE — NAV (860px)
   Hamburger activé avant que la nav ne déborde
====================== */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .nav a {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
  }

  .nav a:last-child { border-bottom: none; }
}

/* ======================
   26. RESPONSIVE — MOBILE (768px)
====================== */
@media (max-width: 768px) {
  .prestations-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .galerie-grid      { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: 1fr; }
  .valeurs-grid      { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .chiffres-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .stats-bar         { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons       { flex-direction: column; align-items: center; }
  .hero-buttons      { flex-direction: column; align-items: center; }
  .filters           { gap: 8px; }
  .filters button    { padding: 8px 16px; font-size: 13px; }
  .footer-bottom          { flex-direction: column; text-align: center; }
  .footer-bottom-links    { justify-content: center; }
}

@media (max-width: 480px) {
  .chiffres-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .savoir-badge  { right: 8px; bottom: 8px; padding: 16px 20px; }
  .savoir-badge .badge-number { font-size: 22px; }
}
