/* =========================================================
   LES HALLES DU VERGER — Feuille de style principale
   Palette : naturel & terroir
   ========================================================= */

/* --- Variables ----------------------------------------- */
:root {
  /* Couleurs extraites directement du logo Les Halles du Verger */
  --green-dark:    #3d6655;  /* vert sauge foncé — pomme logo */
  --green-mid:     #5f7a68;  /* vert sauge moyen — identité logo */
  --green-light:   #ecf2ee;  /* vert sauge très clair — fonds alternés */
  --bordeaux:      #7a2d3c;  /* bordeaux/vin — texte "LES HALLES" logo */
  --bordeaux-dark: #561f2a;  /* bordeaux foncé — hover, accents */
  --bordeaux-light:#f5eaec;  /* bordeaux très clair — fonds */
  --brown-dark:    #2e2020;  /* brun très foncé — texte principal */
  --brown-mid:     #5a3a3a;  /* brun bordeaux — texte secondaire */
  --gold:          #b8955a;  /* or doux terroir — CTA, stats (complément naturel) */
  --gold-light:    #e8d0a0;  /* or clair — texte sur fond sombre */
  --cream:         #f7f3ee;  /* crème chaud — fond principal */
  --cream-dark:    #ece5da;  /* crème foncé — bordures, séparateurs */
  --warm-bg:       #faf7f2;  /* fond très doux */
  --text-dark:     #2e2020;  /* texte principal */
  --text-mid:      #5a3a3a;  /* texte secondaire */
  --text-light:    #f0ede6;  /* texte sur fond sombre */
  --white:         #ffffff;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Lato', system-ui, sans-serif;

  --radius:        8px;
  --radius-lg:     16px;
  --shadow:        0 4px 20px rgba(44, 36, 22, 0.10);
  --shadow-lg:     0 8px 40px rgba(44, 36, 22, 0.15);

  --container:     1160px;
  --header-h:      72px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Container ----------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography ---------------------------------------- */
h1, h2 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 700;
}

h3, h4 {
  font-family: var(--font-sans);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 0; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(61, 102, 85, 0.99);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 5px 12px;
  transition: background 0.2s;
}

.logo:hover {
  background: rgba(255, 255, 255, 1);
}


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

/* Nav — positionnée en dehors du header (évite le stacking context) */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding-right: max(calc((100vw - var(--container)) / 2 + 24px), 24px);
  z-index: 1001;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.btn-nav {
  background: var(--bordeaux) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}

.btn-nav:hover {
  background: var(--bordeaux-dark) !important;
  color: var(--white) !important;
}

/* --- Dropdown nav ---------------------------------------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-caret {
  font-size: 0.7em;
  opacity: 0.7;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 10px 0 6px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(100deg, rgba(20,45,28,0.72) 0%, rgba(30,60,40,0.45) 55%, rgba(30,60,40,0.15) 100%),
    url('../img/lhdv-photo3.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(200,160,74,0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.06) 0%, transparent 40%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.018) 60px,
    rgba(255,255,255,0.018) 61px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  max-width: 760px;
  background: rgba(15, 35, 20, 0.55);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--bordeaux);
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-primary-light {
  background: var(--gold);
  color: var(--brown-dark);
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary-light:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-full { width: 100%; text-align: center; }

/* =========================================================
   SECTIONS — commun
   ========================================================= */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--cream);
}

.section-green {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--text-light);
}

.section-warm {
  background: var(--warm-bg);
}

.section-clients {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header-light h2,
.section-header-light .section-intro {
  color: var(--text-light);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(95,122,104,0.12);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.tag-light {
  color: var(--gold-light);
  background: rgba(200,160,74,0.2);
}

.section-header h2 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-green .section-header h2 {
  color: var(--white);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* =========================================================
   QUI SOMMES-NOUS
   ========================================================= */
.founders-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}

.founder-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--green-mid);
}

.founder-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.founder-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 4px 16px rgba(44, 36, 22, 0.15);
}

.founder-card h3 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.founder-card p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
}

.founder-divider {
  font-size: 2.5rem;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  flex-shrink: 0;
}

.founders-photo {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founders-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.founders-caption {
  background: var(--bordeaux-dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  text-align: center;
  padding: 10px 20px;
}

.founders-caption em {
  color: var(--gold);
}

.quote-block {
  background: var(--bordeaux-dark);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  position: relative;
}

.quote-block::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: -10px;
  left: 32px;
  line-height: 1;
}

blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

cite {
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  font-style: normal;
}

/* =========================================================
   PRODUITS
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.product-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.product-card-body {
  padding: 24px 24px 28px;
}

.product-card h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.products-cta {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--cream-dark);
}

.products-cta p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* =========================================================
   ENGAGEMENTS
   ========================================================= */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.engagement-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}

.engagement-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.engagement-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.engagement-item h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.engagement-item p {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* =========================================================
   ACTUALITES
   ========================================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card-featured {
  grid-column: 1 / -1;
  border-top-color: var(--gold);
  background: linear-gradient(135deg, #fff9f0 0%, var(--white) 100%);
}

.news-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-card h3 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.news-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.news-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bordeaux);
  border-bottom: 2px solid var(--bordeaux);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.news-link:hover {
  color: var(--bordeaux-dark);
  border-color: var(--bordeaux-dark);
}

/* =========================================================
   CLIENTS
   ========================================================= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.client-type {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.client-type:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
}

.client-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.client-type h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.client-type p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================================================
   CONTACT COMPACT
   ========================================================= */
.contact-compact {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: background 0.2s, transform 0.2s;
  grid-column: span 1;
}

.contact-card-link:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.contact-card-wa {
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.12);
}

.contact-card-wa:hover { background: rgba(37,211,102,0.22); }

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

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 600;
  word-break: break-all;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* =========================================================
   ACCÈS / VENIR SUR PLACE
   ========================================================= */
.acces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.acces-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.acces-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acces-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.acces-item span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.acces-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.acces-item p { font-size: 0.9rem; color: var(--text-mid); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(90,74,56,0.45);
}

/* =========================================================
   IMPLANTATIONS
   ========================================================= */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.site-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  border-top: 4px solid var(--green-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}

.site-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.site-card-main { border-top-color: var(--bordeaux); }

.site-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-mid);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.site-badge-new { background: var(--bordeaux); }
.site-badge-acquisition { background: var(--brown-mid); }

.site-icon { font-size: 2.4rem; margin-bottom: 12px; }

.site-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.site-dept {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green-mid);
  padding: 2px 8px;
  border-radius: var(--radius);
  margin-left: 6px;
  vertical-align: middle;
  font-family: var(--font-sans);
}

.site-label {
  font-size: 0.82rem;
  color: var(--green-mid);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.site-address {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-style: italic;
}

/* =========================================================
   HORAIRES
   ========================================================= */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green-mid);
}

.hours-card-main { border-top-color: var(--bordeaux); }

.hours-site-name { margin-bottom: 24px; }
.hours-site-name h3 { font-size: 1.3rem; margin: 8px 0 4px; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.hours-table tr {
  border-bottom: 1px solid var(--cream-dark);
}

.hours-table td {
  padding: 9px 4px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.hours-time {
  text-align: right;
  font-weight: 700;
  color: var(--green-dark);
}

.hours-closed td { color: var(--text-mid); opacity: 0.5; }
.hours-closed .hours-time { color: var(--text-mid); font-weight: 400; font-style: italic; }

.hours-tel {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bordeaux);
  transition: color 0.2s;
}

.hours-tel:hover { color: var(--bordeaux-dark); }

@media (max-width: 1000px) {
  .hours-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =========================================================
   ZONE DE LIVRAISON
   ========================================================= */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.delivery-zone {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.delivery-zone h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.dept-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dept-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  gap: 3px;
}

.dept-badge small {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-mid);
  text-align: center;
}

.dept-secondary { background: var(--cream-dark); color: var(--text-mid); }
.dept-bretagne { background: #e8eef8; color: #2d4a7a; }

.delivery-note {
  text-align: center;
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--bordeaux);
}

/* =========================================================
   CALENDRIER SAISONNALITÉ
   ========================================================= */
.calendar-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.cal-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}

.cal-table thead tr {
  background: var(--green-dark);
}

.cal-table thead th {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 8px;
  text-align: center;
}

.cal-table thead th:first-child {
  text-align: left;
  padding-left: 20px;
  min-width: 160px;
}

.cal-table tbody tr:nth-child(even) { background: var(--cream); }
.cal-table tbody tr:hover { background: var(--green-light); }

.cal-product {
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.cal-table td {
  text-align: center;
  padding: 6px 4px;
  border-right: 1px solid rgba(0,0,0,0.05);
}

.cal-table td.on {
  background: rgba(95, 122, 104, 0.3);
  position: relative;
}

.cal-table td.peak {
  background: var(--gold);
}

.cal-table tr:nth-child(even) td.on { background: rgba(95, 122, 104, 0.25); }

.cal-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
}

.legend-on::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--green-mid);
  border: none;
  flex-shrink: 0;
}

.legend-peak::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--gold);
  border: none;
  flex-shrink: 0;
}

/* =========================================================
   GALERIE PRODUITS
   ========================================================= */
.section-gallery {
  background: var(--cream);
  padding: 100px 0;
}

.gallery-grid {
  columns: 4;
  column-gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

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

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { color: var(--bordeaux); background: var(--cream); }

.faq-chevron {
  font-size: 1.4rem;
  color: var(--green-mid);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--bordeaux);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.75;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}

/* =========================================================
   WHATSAPP FLOTTANT
   ========================================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 600px) {
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}

/* =========================================================
   CARTE
   ========================================================= */
.building-photo {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.building-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.building-caption {
  background: rgba(15, 35, 20, 0.6);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  text-align: center;
  padding: 10px 20px;
  font-style: italic;
}

.map-wrapper {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 35, 20, 0.6);
  backdrop-filter: blur(4px);
  padding: 14px 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.map-header span {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-header a {
  color: var(--gold-light);
  font-weight: 700;
  transition: color 0.2s;
}

.map-header a:hover {
  color: var(--white);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 600px) {
  .map-wrapper iframe { height: 280px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bordeaux-dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  padding: 64px 24px 48px;
}

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 8px 16px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.93rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .sites-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .gallery-grid { columns: 3; }

  .main-nav {
    display: none;
    padding-right: 0;
    height: auto;
  }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 102, 85, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open ul {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .main-nav.open a {
    font-size: 1.3rem;
    padding: 10px 24px;
    color: var(--white);
  }

  /* Dropdown en mobile : affiché à plat, légèrement plus petit */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .dropdown-menu li a {
    font-size: 1rem;
    padding: 6px 16px;
    color: rgba(255,255,255,0.82);
  }

  .nav-caret { display: none; }

  .burger { display: flex; }

  .founders-grid {
    flex-direction: column;
  }

  .founder-divider { transform: rotate(90deg); }

  .contact-compact { grid-template-columns: 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .acces-grid { grid-template-columns: 1fr; }

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

  .news-card-featured { grid-column: auto; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .quote-block {
    padding: 36px 32px;
  }
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }

  .hero-content { padding: 60px 24px; }

  .hero-stats {
    gap: 24px;
  }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

  .founders-grid { gap: 16px; }

  .founder-card { padding: 28px 20px; }

  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }

  .engagements-grid,
  .clients-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid { columns: 2; }
}
