/* =========================================
   KHÉOPS LIVRAISONS — Style Premium
   Thème : Élégance locale, or & vert profond
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-pale: #f5e9c0;
  --green-deep: #0b3d2e;
  --green-mid: #0b6e68;
  --green-accent: #2aa879;
  --green-bright: #3ecf8e;
  --bg: #f0ebe0;
  --bg-dark: #0d1f18;
  --surface: #ede8dd;
  --text: #111c16;
  --text-muted: #6b6255;
  --text-light: #9a8f80;
  --shadow-sm: 0 2px 12px rgba(11,61,46,0.08);
  --shadow-md: 0 8px 32px rgba(11,61,46,0.12);
  --shadow-lg: 0 24px 64px rgba(11,61,46,0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ========= RESET & BASE ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 90%; max-width: 1160px; margin: 0 auto; }

/* ========= NAVIGATION ========= */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(232, 225, 210, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.22);
  box-shadow: 0 2px 16px rgba(11,61,46,0.10);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.nav-logo-wrap {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-img {
  height: 44px; width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  font-weight: 700;
}
.nav-links {
  list-style: none; display: flex; gap: 6px;
}
.nav-links a {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: rgba(11,110,104,0.08);
  color: var(--green-mid);
}
.nav-cta {
  background: var(--green-mid) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 10px !important;
}
.nav-cta:hover { background: var(--green-deep) !important; }

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.4rem; color: var(--green-deep); cursor: pointer;
}

/* ========= HERO ========= */
.hero {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
}

.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: 
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 0.75rem; }

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-content h1 .accent {
  color: var(--gold-light);
  display: block;
}

.hero-lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px;
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  padding: 14px 26px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.5);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 13px 24px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn-green {
  background: var(--green-mid);
  color: #fff;
  padding: 14px 26px;
  box-shadow: var(--shadow-md);
}
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border: 1.5px solid rgba(11,110,104,0.3);
  padding: 13px 22px;
}
.btn-outline:hover { background: rgba(11,110,104,0.06); }

/* Loader bouton */
.loader { display:none; width:16px; height:16px; border-radius:50%; border:2px solid rgba(255,255,255,0.3); border-top-color:rgba(255,255,255,0.9); }
.btn.loading .loader { display:inline-block; animation:spin .9s linear infinite; }
.btn.loading .btn-text { opacity:.85; }
@keyframes spin { to { transform:rotate(360deg); } }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}

.stat {
  display: flex; flex-direction: column; gap: 2px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero image côté droit */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.hero-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  display: block;
}

.hero-pill {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.hero-pill i { color: var(--green-mid); font-size: 1rem; }
.hero-pill.pill-1 { top: 24px; left: -20px; }
.hero-pill.pill-2 { bottom: 36px; right: -20px; }
.pill-sub { display:block; font-size:0.72rem; font-weight:400; color:var(--text-muted); margin-top:1px; }

/* ========= STRIP / BANDEAU PARTENAIRES ========= */
/* ========= SECTION PARTENAIRES ========= */
.section-partners {
  padding: 64px 0;
  background: linear-gradient(180deg, #e4ddd0, #ede7db);
  border-top: 1px solid rgba(11,61,46,0.10);
  border-bottom: 1px solid rgba(11,61,46,0.10);
  text-align: center;
}

.partners-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text);
  margin-bottom: 6px;
}
.partners-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.partners-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #ede8dc;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11,61,46,0.13);
  box-shadow:
    0 6px 20px rgba(11,61,46,0.10),
    0 1px 4px rgba(11,61,46,0.07);
  padding: 28px 32px;
  text-decoration: none;
  min-width: 190px;
  max-width: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 36px rgba(11,61,46,0.15),
    0 2px 6px rgba(11,61,46,0.09);
}

.partner-card-logo {
  width: 120px; height: 120px;
  border-radius: 16px;
  background: #f5f0e6;
  border: 1px solid rgba(11,61,46,0.10);
  box-shadow: inset 0 2px 6px rgba(11,61,46,0.06);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 12px;
}
.partner-card-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
/* Logo sur fond sombre (ex: Casa Bella) */
.partner-card-logo--dark {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.08);
}

.partner-card-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
}
.partner-card-type {
  font-size: 0.78rem;
  color: var(--green-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(11,110,104,0.09);
  border-radius: 20px;
  padding: 3px 10px;
}

@media (max-width: 700px) {
  .partners-cards { gap: 12px; }
  .partner-card { min-width: 110px; max-width: 140px; padding: 14px 12px; gap: 8px; }
  .partner-card-logo { width: 64px; height: 64px; padding: 8px; }
  .partner-card-name { font-size: 0.82rem; }
  .partner-card-type { font-size: 0.70rem; padding: 2px 8px; }
}

/* ========= SECTIONS COMMUNES ========= */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.alt-bg { background: linear-gradient(180deg, #e8e1d3, #ede7db); }
.dark-bg { background: var(--bg-dark); }

.section-header { margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-mid);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 36rem; }

/* ========= STEPS ========= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: #e9e3d6;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(11,61,46,0.12);
  box-shadow: 0 4px 18px rgba(11,61,46,0.12), 0 1px 3px rgba(11,61,46,0.08);
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-number {
  position: absolute; top: -14px; left: 24px;
  width: 28px; height: 28px;
  background: var(--green-mid);
  color: #fff; font-weight: 700; font-size: 0.8rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 14px;
  margin-top: 8px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Connecteur entre steps */
.steps-connector {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; margin-bottom: -18px; position: relative; z-index: 1;
}
.step-arrow { color: var(--green-accent); font-size: 1.2rem; opacity: 0.5; }

/* ========= AVANTAGES CARDS ========= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #e9e3d6;
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(11,61,46,0.12);
  box-shadow: 0 4px 18px rgba(11,61,46,0.12), 0 1px 3px rgba(11,61,46,0.08);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11,110,104,0.12), rgba(42,168,121,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-mid);
}
.card h4 { font-weight: 700; font-size: 0.98rem; color: var(--text); }
.card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ========= FORMULAIRE CONTACT ========= */
.contact-section {
  background: linear-gradient(160deg, var(--green-deep) 0%, #0f4d3a 100%);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(201,162,39,0.03) 0, rgba(201,162,39,0.03) 1px, transparent 0, transparent 40px);
  pointer-events: none;
}

.contact-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-right {
  display: block;
  width: 100%;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-left p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info-items {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px;
}
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
}
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1rem;
}
.ci-text { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.ci-text strong { display:block; color:#fff; margin-bottom:1px; }

/* Partenaires dans contact */
.partners-block { margin-top: 36px; }
.partners-block h3 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 600;
}
.partners-logos {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.partner-link {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  border-radius: 14px;
  overflow: visible;
  transition: transform 0.2s;
}
.partner-link:hover { transform: scale(1.05); }
.partner-logo {
  height: 52px; width: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  padding: 6px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
}
.partner-logo:hover { border-color: rgba(201,162,39,0.5); background: rgba(209, 110, 255, 0.705); }
/* .logo-3marchands — retiré (Les 3 Marchands ne commande plus en ligne) */
.logo-casabella { height: 52px; }

.tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  background: white; color: #222;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 999;
  text-align: center;
}
.partner-link:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-3px);
}

/* Formulaire */
.form-card {
  scroll-margin-top: 80px; /* évite que la nav fixe cache le formulaire */
  background: #f2ede3;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 32px 72px rgba(0,0,0,0.2);
  border: 1px solid rgba(201,162,39,0.15);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 6px;
}
.form-card .form-sub {
  color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px;
}

label {
  display: block; font-weight: 600; font-size: 0.88rem;
  color: var(--text); margin-bottom: 6px; margin-top: 18px;
}
label:first-of-type { margin-top: 0; }

input[type=text], input[type=tel], textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(11,61,46,0.13);
  border-radius: var(--radius-sm);
  background: #faf7f0;
  color: var(--text);
  font-family: var(--font-body); font-size: 0.93rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-shadow:
    0 2px 6px rgba(11,61,46,0.07),
    inset 0 1px 3px rgba(11,61,46,0.05);
}
input:focus, textarea:focus {
  border-color: var(--green-mid);
  background: #fffdf7;
  box-shadow:
    0 4px 12px rgba(11,110,104,0.12),
    inset 0 1px 3px rgba(11,61,46,0.04),
    0 0 0 3px rgba(11,110,104,0.08);
}
textarea { min-height: 100px; resize: vertical; }

.field-note { font-size: 0.8rem; color: var(--text-light); margin-top: 5px; }

.checkbox-wrap {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 18px;
  font-size: 0.87rem; color: var(--text-muted); line-height: 1.5;
}
.checkbox-wrap input { flex-shrink: 0; margin-top: 3px; width:16px; height:16px; accent-color: var(--green-mid); }

.form-actions { display: flex; gap: 12px; margin-top: 22px; }
.form-msg { font-size: 0.9rem; font-weight: 600; margin-top: 12px; min-height: 20px; }

/* ========= INFO IMPORTANTE ========= */
.info-box {
  background: #e9e3d6;
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 5px solid var(--gold);
  box-shadow: 0 4px 18px rgba(11,61,46,0.12), 0 1px 3px rgba(11,61,46,0.08);
}
.info-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 768px) {

  .info-box li {
    display: block !important;

    text-align: left !important;
    word-break: normal;
    overflow-wrap: break-word;

    line-height: 1.7;
    font-size: 0.95rem;

    margin-bottom: 18px;

    position: relative;
    padding-left: 26px;
  }

  .info-box li::before {
    position: absolute;
    left: 0;
    top: 0;

    content: "✓";
    color: var(--green-mid);
    font-weight: bold;
  }

}
/* ========= WHY ========= */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.why-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #e9e3d6;
  border: 1px solid rgba(11,61,46,0.12);
  box-shadow: 0 4px 18px rgba(11,61,46,0.12), 0 1px 3px rgba(11,61,46,0.08);
}
.why-card h3 { font-weight: 700; margin-bottom: 8px; color: var(--green-deep); }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ========= AVIS ========= */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.review {
  background: #e9e3d6; border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(11,61,46,0.12);
  box-shadow: 0 4px 18px rgba(11,61,46,0.12), 0 1px 3px rgba(11,61,46,0.08);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.review cite {
  display: block; margin-top: 12px;
  font-style: normal; font-weight: 600; font-size: 0.82rem;
  color: var(--green-mid);
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }

/* ========= FAQ ========= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
details {
  background: #e9e3d6;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11,61,46,0.14);
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(11,61,46,0.09);
}
details summary {
  padding: 18px 22px;
  font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; color: var(--text);
  transition: background 0.2s;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+'; font-size: 1.2rem; color: var(--green-mid);
  transition: transform 0.2s;
}
details[open] summary::after { transform: rotate(45deg); }
details summary:hover { background: rgba(11,110,104,0.04); }
details p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ========= CARTE ========= */
.map-wrap {
  height: 380px; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,61,46,0.1);
}
.map-wrap iframe { width:100%; height:100%; border:0; }

/* ========= CTA BAND ========= */
.cta-band {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 30px);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff; margin-bottom: 14px; position: relative;
}
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 28px; position: relative; font-size: 1.05rem; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep); padding: 14px 28px;
  font-weight: 700; border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(201,162,39,0.4);
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; font-size: 0.96rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,162,39,0.55); }

/* ========= FABs & FOOTER ========= */
.fab {
  position: fixed; right: 18px; border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 80; text-decoration: none;
  font-size: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.08); }
.fab.whatsapp { bottom: 90px; background: #25D366; }
.fab.call { bottom: 18px; background: var(--green-mid); }

.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.55);
  padding: 28px 0;
  text-align: center;
  font-size: 0.87rem;
}
.site-footer strong { color: rgba(255,255,255,0.85); }

/* ========= SCROLL REVEAL ========= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1000px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #e8e2d5; padding: 14px 16px 18px;
    box-shadow: 0 16px 40px rgba(11,61,46,0.12);
    border-radius: 0 0 20px 20px;
    z-index: 50;
  }
  .hero { min-height: auto; }
  .hero-grid { padding: 48px 0; }
  .hero-pill { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .contact-grid { gap: 32px; }
  .form-card {
  scroll-margin-top: 80px; /* évite que la nav fixe cache le formulaire */ padding: 24px 20px; }
  .section { padding: 60px 0; }
}

/* ========= IMAGE CAMPING ========= */
.camping-image-wrap {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.camping-image-wrap img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.camping-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,61,46,0.85));
  color: #fff;
  padding: 28px 24px 18px;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
}

/* Focus accessibilité */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(42,168,121,0.4); outline-offset: 3px;
}

/* === Correctifs mobile / Facebook WebView — ajout minimal === */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; }
input, textarea, select { max-width: 100%; min-width: 0; }
@media (max-width: 480px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .form-card { padding: 20px 16px !important; }
}

@media (max-width: 480px) {

  .info-box {
    padding: 22px 18px;
  }

  .info-box li {
    font-size: 0.90rem;
    line-height: 1.6;
  }

}
/* ========= HERO NOUVELLE VERSION ========= */

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 52px;
  padding-bottom: 52px;
}

/* ACCROCHE — texte bien blanc et lisible */
.hero-top {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
/* Forcer le titre h1 en blanc dans le hero */
.hero .hero-top h1 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero .hero-top h1 .accent {
  color: var(--gold-light) !important;
}
.hero .hero-lead {
  color: rgba(255,255,255,0.82) !important;
  font-size: 1.05rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* ENCADRÉ COMMANDE — très visible, sur fond blanc cassé */
.hero-order-section {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(201,162,39,0.35);
  border-radius: 24px;
  padding: 22px 20px;
  backdrop-filter: blur(6px);
}

.hero-order-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-order-label i {
  -webkit-text-fill-color: #ff7043;
  font-size: 1rem;
}

/* Cartes restaurant */
.hero-restaurants {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-resto-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .18s, box-shadow .2s;
}
.hero-resto-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--gold-light);
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(201,162,39,0.2);
}

.hero-resto-logo {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}
.hero-resto-logo.dark  { background: #111; border: 1px solid rgba(255,255,255,0.1); }
.hero-resto-logo.light { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); }
.hero-resto-logo img   { width:100%; height:100%; object-fit:contain; }

.hero-resto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.hero-resto-info strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-resto-info > span:not(.hero-resto-open):not(.hero-resto-hours) {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
}
.hero-resto-open {
  font-size: 0.72rem !important;
  color: #6ee7a0 !important;
  font-weight: 700 !important;
}
.hero-resto-hours {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
}

/* BOUTON COMMANDER — bien flashy, grand et visible */
.hero-resto-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #e8c84a, #f5d96a);
  color: #0b3d2e;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(201,162,39,0.45);
  transition: transform .15s, box-shadow .15s;
}
.hero-resto-card:hover .hero-resto-cta {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(201,162,39,0.6);
}

/* Séparateur */
.hero-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 24px auto;
  max-width: 760px; width: 100%;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.10);
}
.hero-divider span {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Autre commande — discret */
.hero-other { max-width: 760px; width: 100%; margin: 0 auto; }
.hero-other-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.hero-other-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-other-actions .btn { font-size: 0.82rem; padding: 9px 16px; opacity: 0.7; }
.hero-other-actions .btn:hover { opacity: 1; }

/* Responsive */
@media (max-width: 700px) {
  .hero .container { padding-top: 32px; padding-bottom: 36px; }
  .hero-top { margin-bottom: 22px; }
  .hero-order-section { padding: 16px 14px; }
  .hero-resto-cta span { display: none; }
  .hero-resto-cta { padding: 9px 12px; }
  .hero-other-actions { flex-direction: column; }
  .hero-other-actions .btn { width: 100%; justify-content: center; opacity: 0.65; }
}

/* ========= HERO PAYMENT INFO ========= */
.hero-payment-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.12);
  border: 1.5px solid rgba(201,162,39,0.35);
  border-radius: 30px;
  padding: 10px 18px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hpi-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.hpi-item i { font-size: 0.78rem; color: var(--gold-light); }
.hpi-highlight {
  color: var(--gold-light) !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
}
.hpi-sep {
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .hero-payment-info { gap: 7px; padding: 9px 14px; }
  .hpi-item { font-size: 0.76rem; }
}
