/* ============================================================
   La Miette Dorée — Style.css
   Réalisé par WytsWeb (valentin@wytsweb.fr)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --wheat:        #C8A45E;
  --wheat-dark:   #A8843E;
  --brown:        #5C3D2E;
  --cream:        #FAF6EE;
  --cream-mid:    #F2EAD8;
  --warm-bg:      #FBF8F2;
  --bg-card:      #FFFFFF;
  --border:       #E8DDD0;
  --border-warm:  #D4C4A8;
  --text:         #3C2415;
  --text-muted:   #7A5C40;
  --text-dim:     #B09070;
  --terracotta:   #C4694F;
  --midnight:     #1E1510;
  --sage:         #7A9E7B;
  --radius:       8px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --shadow:       0 1px 3px rgba(60,36,21,0.07);
  --shadow-md:    0 4px 16px rgba(60,36,21,0.10);
  --shadow-warm:  0 4px 20px rgba(200,164,94,0.20);
  --ease:         0.18s ease;
  --font:         'Lora', Georgia, serif;
  --font-ui:      'Inter', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--warm-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 600; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wheat);
  margin-bottom: 0.75rem;
}
.lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  font-family: var(--font-ui); transition: all var(--ease);
  text-decoration: none; letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--wheat); color: #fff; }
.btn-primary:hover { background: var(--wheat-dark); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--wheat); color: var(--wheat); }
.btn-white { background: #fff; color: var(--wheat-dark); }
.btn-white:hover { background: var(--cream-mid); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-sm { font-size: 0.8rem; padding: 0.55rem 1.1rem; }

/* ── Badges ── */
.badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 50px;
  font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-artisan { background: var(--cream-mid); color: var(--brown); border: 1px solid var(--border-warm); }
.badge-coeur { background: #FDE8E0; color: #B44; }
.badge-nouveau { background: #E8F4F8; color: #2A6496; }
.badge-signature { background: #FBF2DC; color: var(--wheat-dark); border: 1px solid #E8D8A0; }
.badge-saison { background: #E8F4E8; color: var(--sage); }
.badge-best { background: var(--wheat); color: #fff; }

/* ── Navigation ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 68px;
}
.nav-logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font); font-size: 1.15rem; font-weight: 700;
  color: var(--brown); letter-spacing: -0.01em;
}
.logo-sub { font-size: 0.65rem; color: var(--text-muted); font-family: var(--font-ui); margin-top: -1px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-family: var(--font-ui); font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); padding: 0.45rem 0.85rem; border-radius: var(--radius);
  transition: all var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--cream-mid); }
.nav-links .nav-cta {
  background: var(--wheat); color: #fff; padding: 0.45rem 1.1rem; margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--wheat-dark); }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; border: none; background: none; cursor: pointer; padding: 6px;
}
.nav-burger span {
  display: block; width: 100%; height: 2px; background: var(--brown);
  border-radius: 2px; transition: all var(--ease);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column; padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid var(--border); background: rgba(251,248,242,0.98);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-ui); font-size: 0.92rem; font-weight: 500;
  color: var(--text); padding: 0.65rem 0; border-bottom: 1px solid var(--border);
}
.nav-mobile .nav-cta-mobile {
  margin-top: 0.75rem; text-align: center; background: var(--wheat);
  color: #fff; padding: 0.7rem 1.5rem; border-radius: var(--radius);
  border: none; font-weight: 600;
}

/* ── Hero ── */
.hero-full {
  position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(20,10,5,0.75) 0%, rgba(20,10,5,0.4) 55%, rgba(20,10,5,0.1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 5rem 0; }
.hero-content .eyebrow { color: var(--wheat); }
.hero-content h1 { color: #fff; margin-bottom: 1rem; }
.hero-content h1 em { font-style: italic; color: var(--wheat); }
.hero-lead { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 0.8rem; color: rgba(255,255,255,0.65);
}
.hero-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ── Trust Bar ── */
.trust-bar { background: var(--brown); padding: 1.25rem 0; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.trust-item:last-child { border-right: none; }
.trust-item span { font-size: 1.4rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.82rem; font-weight: 600; color: #fff; font-family: var(--font-ui); margin-bottom: 0.15rem; }
.trust-item small { font-size: 0.72rem; color: rgba(255,255,255,0.55); font-family: var(--font-ui); }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--brown); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }

/* ── Speciality Section ── */
.speciality-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.speciality-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.speciality-img img { width: 100%; height: 100%; object-fit: cover; }
.speciality-text h2 { color: var(--brown); margin-bottom: 1rem; }
.speciality-text p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }
.speciality-list { margin: 1.25rem 0; }
.speciality-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text-muted); padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.speciality-list li::before { content: "✦"; color: var(--wheat); font-size: 0.65rem; flex-shrink: 0; }

/* ── Product Cards ── */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.prod-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.prod-card:hover {
  border-color: var(--border-warm);
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}
.prod-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-mid); }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-body { padding: 1.25rem; }
.prod-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wheat); font-family: var(--font-ui); }
.prod-body h3 { font-family: var(--font); font-size: 1.05rem; font-weight: 600; color: var(--text); margin: 0.35rem 0 0.3rem; }
.prod-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; font-family: var(--font-ui); }
.prod-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.85rem; }
.prod-price { font-family: var(--font); font-size: 1.1rem; font-weight: 600; color: var(--brown); }

/* Produits liste (pains) */
.prod-list-item {
  display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 0.75rem;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.prod-list-item:hover { box-shadow: var(--shadow-warm); border-color: var(--border-warm); }
.prod-list-img { aspect-ratio: 16/10; overflow: hidden; }
.prod-list-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-list-body { padding: 1.25rem 1.25rem 1.25rem 0; display: flex; flex-direction: column; justify-content: center; }
.prod-list-body h3 { font-family: var(--font); font-size: 1.05rem; color: var(--text); margin-bottom: 0.35rem; }
.prod-list-body p { font-size: 0.83rem; color: var(--text-muted); }
.prod-list-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; }

/* ── Product Tabs ── */
.prod-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.prod-tab {
  font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1.1rem; border-radius: 50px;
  border: 1px solid var(--border); background: var(--cream); color: var(--text-muted);
  cursor: pointer; transition: all var(--ease); font-family: var(--font-ui);
}
.prod-tab:hover { color: var(--wheat); border-color: var(--border-warm); background: var(--cream-mid); }
.prod-tab.active { background: var(--wheat); color: #fff; border-color: var(--wheat); }

/* ── Special Banner ── */
.special-banner {
  display: flex; align-items: center; gap: 1rem;
  background: var(--cream-mid); border: 1px solid var(--border-warm);
  border-left: 4px solid var(--wheat); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.special-banner strong { font-family: var(--font); font-size: 1rem; color: var(--text); }
.special-banner p { font-size: 0.82rem; color: var(--text-muted); font-family: var(--font-ui); margin-top: 0.2rem; }
.special-banner-icon { font-size: 1.8rem; flex-shrink: 0; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: box-shadow var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-warm); }
.testimonial-stars { color: var(--wheat); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-text { font-family: var(--font); font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 1.25rem; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.65rem; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 700; color: var(--wheat); font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--text); font-family: var(--font-ui); }
.testimonial-location { font-size: 0.74rem; color: var(--text-dim); font-family: var(--font-ui); }

/* ── CTA Dark Section ── */
.cta-dark { background: var(--midnight); padding: 5rem 0; text-align: center; }
.cta-dark h2 { color: #fff; margin-bottom: 1rem; }
.cta-dark p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Hours / Info ── */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-row { border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row.today { background: var(--cream-mid); border-radius: var(--radius); }
.hours-day, .hours-time {
  padding: 0.85rem 1rem; font-size: 0.9rem;
  font-family: var(--font-ui);
}
.hours-day { color: var(--text); font-weight: 600; }
.hours-time { color: var(--text-muted); text-align: right; }
.hours-closed { color: var(--terracotta); font-weight: 600; }
.hours-open { color: var(--sage); font-weight: 600; }

.info-box {
  background: var(--cream-mid); border: 1px solid var(--border-warm);
  border-left: 4px solid var(--wheat); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; margin-top: 1.5rem;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}
.info-box strong { color: var(--brown); font-family: var(--font-ui); }

.access-list { list-style: none; }
.access-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted);
}
.access-list li:last-child { border-bottom: none; }

/* Map placeholder */
.map-placeholder {
  background: var(--cream-mid); border: 1px solid var(--border);
  border-radius: var(--radius-lg); height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--text-muted); text-align: center;
  position: relative; overflow: hidden;
}
.map-pin { font-size: 2.5rem; }
.map-placeholder strong { font-family: var(--font); color: var(--brown); font-size: 1.05rem; }
.map-placeholder span { font-size: 0.82rem; font-family: var(--font-ui); }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
label { font-size: 0.82rem; font-weight: 600; color: var(--text); font-family: var(--font-ui); }
input, select, textarea {
  font-family: var(--font-ui); font-size: 0.88rem; color: var(--text);
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0.7rem 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--wheat);
  box-shadow: 0 0 0 3px rgba(200,164,94,0.15);
}
textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.8rem; color: var(--text-muted); cursor: pointer; margin-bottom: 1.25rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--wheat); }
.form-success {
  display: none; text-align: center; padding: 2.5rem;
  background: var(--cream-mid); border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
}
.form-success h3 { font-family: var(--font); color: var(--brown); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* Delays table */
.delays-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.delays-table th, .delays-table td {
  text-align: left; padding: 0.65rem 0.75rem;
  font-size: 0.82rem; font-family: var(--font-ui);
  border-bottom: 1px solid var(--border);
}
.delays-table th { color: var(--text-muted); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.delays-table td { color: var(--text); }
.delays-table tr:last-child td { border-bottom: none; }

/* ── Social Links ── */
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  padding: 0.45rem 0.9rem; border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--ease);
  font-family: var(--font-ui);
}
.social-links a:hover { color: var(--wheat); border-color: var(--wheat); }

/* ── Page Hero ── */
.page-hero {
  position: relative; height: 320px; display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(20,10,5,0.65), rgba(20,10,5,0.5));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.page-hero-content .eyebrow { color: var(--wheat); }

/* ── Legal Pages ── */
.demo-notice {
  background: var(--cream-mid); border: 1px solid var(--border-warm);
  border-left: 4px solid var(--wheat); border-radius: var(--radius-lg);
  padding: 1rem 1.5rem; margin-bottom: 2.5rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.3rem; color: var(--brown); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--cream-mid); }
.legal-section h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; margin-top: 1rem; }
.legal-section p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.75rem; }
.legal-section ul { margin: 0.5rem 0 0.75rem 1.25rem; }
.legal-section ul li { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.3rem; list-style: disc; }

/* ── Footer ── */
.site-footer { background: var(--midnight); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font); font-size: 1.3rem; font-weight: 700; color: var(--wheat); margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; font-family: var(--font-ui); }
.footer-hours-quick { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-family: var(--font-ui); margin-bottom: 1rem; }
.unsplash-credit { font-size: 0.7rem; color: rgba(255,255,255,0.3); font-family: var(--font-ui); }
.unsplash-credit a { color: rgba(255,255,255,0.45); text-decoration: underline; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color var(--ease); font-family: var(--font-ui); }
.footer-col ul li a:hover { color: var(--wheat); }
address { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-family: var(--font-ui); }
address a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
address a:hover { color: var(--wheat); }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-social a {
  font-size: 0.76rem; font-weight: 600; color: rgba(255,255,255,0.5);
  padding: 0.35rem 0.8rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); transition: all var(--ease); font-family: var(--font-ui);
}
.footer-social a:hover { color: var(--wheat); border-color: var(--wheat); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0;
  font-size: 0.76rem; color: rgba(255,255,255,0.3); font-family: var(--font-ui);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color var(--ease); }
.footer-bottom-links a:hover { color: var(--wheat); }
.footer-wytsweb { color: rgba(255,255,255,0.3); }
.footer-wytsweb a { color: var(--wheat); font-weight: 600; }

/* ── Demo Bar ── */
.demo-bar {
  background: #1a0f07; border-top: 2px solid var(--wheat);
  padding: 0.75rem 0; font-size: 0.76rem; color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.demo-bar strong { color: var(--wheat); }
.demo-bar a { color: var(--wheat); font-weight: 600; }
.demo-bar-links { display: flex; gap: 1rem; }
.demo-bar-links a { color: rgba(255,255,255,0.45); transition: color var(--ease); }
.demo-bar-links a:hover { color: var(--wheat); }

/* ── CTA Row (horaires page) ── */
.cta-inline {
  background: var(--cream-mid); border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.cta-inline h3 { font-family: var(--font); color: var(--brown); margin-bottom: 0.5rem; }
.cta-inline p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ── Nouvelles classes layout ── */
.prod-grid-viennoiseries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.snacking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.75rem; }
.formules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* ── Responsive — Tablette large (≤1100px) ── */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid-viennoiseries { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 3; }
}

/* ── Responsive — Tablette (≤960px) ── */
@media (max-width: 960px) {
  .section { padding: 3.5rem 0; }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }

  /* Grilles */
  .speciality-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .speciality-img { max-width: 520px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hours-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2col { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

/* ── Responsive — Mobile (≤720px) ── */
@media (max-width: 720px) {
  /* Navigation */
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* Typographie */
  h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .section { padding: 2.5rem 0; }

  /* Hero */
  .hero-full { min-height: 100svh; min-height: 100vh; }
  .hero-content { padding: 6rem 0 3rem; }
  .hero-meta { flex-direction: column; gap: 0.4rem; font-size: 0.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* Trust bar */
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:last-child { border-bottom: none; }

  /* Spécialité */
  .speciality-grid { grid-template-columns: 1fr; }
  .speciality-img { max-width: 100%; }

  /* Produits grilles */
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid-viennoiseries { grid-template-columns: 1fr 1fr; }
  .snacking-grid { grid-template-columns: 1fr; }
  .formules-grid { grid-template-columns: 1fr; }
  .grid-2col { grid-template-columns: 1fr; gap: 2rem; }

  /* Produits liste */
  .prod-list-item { grid-template-columns: 1fr; }
  .prod-list-img { aspect-ratio: 16/7; max-height: 160px; overflow: hidden; }
  .prod-list-body { padding: 1rem; }

  /* Témoignages */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Formulaire */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Page hero */
  .page-hero { height: 220px; }
  .page-hero-content h1 { font-size: clamp(1.4rem, 7vw, 2rem); }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { text-align: center; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-bottom-links { justify-content: center; }

  /* Demo bar */
  .demo-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .demo-bar-links { flex-wrap: wrap; }

  /* Produits tabs */
  .prod-tabs { gap: 0.35rem; }
  .prod-tab { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
}

/* ── Responsive — Petit mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 2rem 0; }

  /* Tout en colonne unique */
  .prod-grid { grid-template-columns: 1fr; }
  .prod-grid-viennoiseries { grid-template-columns: 1fr; }

  /* Hero plus compact */
  .hero-full { min-height: 100svh; min-height: 100vh; }
  .hero-meta { display: none; }

  /* Trust bar compact */
  .trust-item { padding: 0.6rem 1rem; }

  /* Footer full colonne */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  /* Nav logo */
  .logo-sub { display: none; }

  /* Prod list sans image sur très petit écran */
  .prod-list-img { display: none; }
  .prod-list-item { grid-template-columns: 1fr; }
  .prod-list-body { padding: 1rem; }

  /* Page hero */
  .page-hero { height: 180px; }

  /* Special banner */
  .special-banner { flex-direction: column; gap: 0.5rem; }
  .special-banner-icon { font-size: 1.4rem; }
}
