/* ═══════════════════════════════════════════════════════════════
   TY PLAISIR — FEUILLE DE STYLES PRINCIPALE
   Organic Bakery Landing Page — Mobile First
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   0. VARIABLES CSS
   ───────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:          #FFF8EE;
  --cream-warm:     #FFF3E0;
  --cream-text:     #F5E6C8;
  --chocolate:      #6B3A1F;
  --chocolate-dark: #3D1C0A;
  --chocolate-hover:#4A2610;
  --caramel:        #C8A478;
  --caramel-light:  #E8C89A;
  --caramel-dark:   #A07848;
  --yellow:         #FFD700;
  --yellow-hover:   #F0C800;

  /* Typographies */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Tailles de texte (clamp = responsive fluide) */
  --text-xs:   clamp(0.75rem,  1.5vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 2vw,   1rem);
  --text-base: clamp(1rem,     2.2vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 2.5vw, 1.25rem);
  --text-xl:   clamp(1.25rem,  3vw,   1.5rem);
  --text-2xl:  clamp(1.5rem,   4vw,   2rem);
  --text-3xl:  clamp(2rem,     5vw,   2.75rem);
  --text-4xl:  clamp(2.5rem,   6vw,   3.5rem);
  --text-5xl:  clamp(3rem,     7vw,   4.5rem);

  /* Espacement */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Rayons de bordure */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(107, 58, 31, 0.08);
  --shadow-md:  0 4px 20px rgba(107, 58, 31, 0.12);
  --shadow-lg:  0 8px 40px rgba(107, 58, 31, 0.15);
  --shadow-xl:  0 16px 60px rgba(107, 58, 31, 0.20);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --transition: 0.3s var(--ease-out);

  /* Header */
  --header-height: 80px;
}

/* ─────────────────────────────────────────────
   1. RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:    var(--font-body);
  font-size:      var(--text-base);
  line-height:    1.7;
  color:          var(--chocolate);
  background:     var(--cream);
  overflow-x:     hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover { color: var(--chocolate-hover); }

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* Focus visible accessible */
:focus-visible {
  outline: 3px solid var(--caramel);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────
   2. CONTAINER
   ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

/* ─────────────────────────────────────────────
   3. TYPOGRAPHIE
   ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family:    var(--font-display);
  font-weight:    700;
  line-height:    1.2;
  color:          var(--chocolate);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }

em {
  font-family: var(--font-display);
  font-style:  italic;
  color:       var(--caramel-dark);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-xl);
}

.section-label {
  display:         inline-block;
  font-family:     var(--font-body);
  font-size:       var(--text-xs);
  font-weight:     700;
  letter-spacing:  0.15em;
  text-transform:  uppercase;
  color:           var(--caramel-dark);
  background:      rgba(200, 164, 120, 0.15);
  padding:         0.35em 1em;
  border-radius:   var(--radius-full);
  border:          1px solid rgba(200, 164, 120, 0.3);
  margin-bottom:   var(--space-md);
}

.section-label--light {
  color:       #F5E6C8;
  background:  rgba(245, 230, 200, 0.15);
  border-color:rgba(200, 164, 120, 0.2);
}

.section-title {
  font-size:   var(--text-3xl);
  color:       var(--chocolate);
  margin-bottom: var(--space-sm);
  text-align:  center;
  line-height: 1.26;
  overflow: visible;
}

.section-title--light { color: #FFF5E4; }

.section-subtitle {
  font-size:  var(--text-base);
  color:      var(--caramel-dark);
  max-width:  600px;
  margin:     0 auto;
  line-height: 1.8;
}

.section-subtitle--light { color: rgba(245, 230, 200, 0.8); }

/* ─────────────────────────────────────────────
   4. BOUTONS
   ───────────────────────────────────────────── */
.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             0.5rem;
  font-family:     var(--font-body);
  font-size:       var(--text-sm);
  font-weight:     600;
  padding:         0.875em 2em;
  border-radius:   var(--radius-full);
  text-decoration: none;
  transition:      background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor:          pointer;
  border:          2px solid transparent;
  letter-spacing:  0.02em;
  white-space:     nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--chocolate);
  color:      var(--btn-primary-text, var(--cream-text));
  border-color: var(--chocolate);
  box-shadow: 0 4px 16px rgba(107, 58, 31, 0.3);
}

.btn-primary:hover {
  background:  var(--chocolate-hover);
  border-color: var(--chocolate-hover);
  color:       var(--btn-primary-text, var(--cream-text));
  box-shadow:  0 6px 24px rgba(107, 58, 31, 0.4);
}

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

.btn-outline:hover {
  background:  rgba(245, 230, 200, 0.15);
  color:       var(--cream-text);
}

.btn-caramel {
  background:      linear-gradient(90deg, #C8A478 0%, #E8C89A 40%, #C8A478 70%, #D4A96A 100%);
  background-size: 220% auto;
  color:           var(--btn-caramel-text, var(--chocolate-dark));
  border:          none;
  font-weight:     700;
  position:        relative;
  overflow:        hidden;
  animation:       shimmer-border 3s linear infinite;
  box-shadow:      0 4px 18px rgba(200, 164, 120, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-caramel::before {
  content:    '';
  position:   absolute;
  top:        0; right: -100%;
  left:       auto;
  width:      60%;
  height:     100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform:  skewX(-20deg);
  animation:  caramel-sweep 2.5s ease-in-out infinite;
}

@keyframes caramel-sweep {
  0%   { right: -80%; }
  60%  { right: 120%; }
  100% { right: 120%; }
}

.btn-caramel:hover {
  background-position: right center;
  box-shadow:          0 6px 28px rgba(200, 164, 120, 0.7);
  transform:           translateY(-2px);
  color:               var(--btn-caramel-text, var(--chocolate-dark));
}

/* Hero : teinte du bouton caramel pilotée par --hr-cta-shimmer */
.hero-section .btn-caramel {
  background:      var(--hr-cta-shimmer);
  background-size: auto;
  color:           var(--hr-cta-text, var(--btn-caramel-text, var(--chocolate-dark)));
  animation:       none;
  box-shadow:      0 4px 18px color-mix(in srgb, var(--hr-cta-shimmer) 32%, transparent);
}

.hero-section .btn-caramel::before {
  content: none;
}

.hero-section .btn-caramel:hover {
  background-position: initial;
  color: var(--hr-cta-text, var(--btn-caramel-text, var(--chocolate-dark)));
}

/* Offres : bouton devis caramel aligné sur l’accent de section */
.offres-section .btn-caramel {
  background:      linear-gradient(90deg, var(--of-accent) 0%, color-mix(in srgb, var(--of-accent) 78%, #fff) 38%, var(--of-accent) 70%, color-mix(in srgb, var(--of-accent) 88%, #3d1c0a) 100%);
  background-size: 220% auto;
  color:           var(--of-cta-text, var(--btn-caramel-text, var(--chocolate-dark)));
  box-shadow:      0 4px 18px color-mix(in srgb, var(--of-accent) 45%, transparent), inset 0 1px 0 rgba(255,255,255,0.3);
}

.offres-section .btn-caramel:hover {
  color: var(--of-cta-text, var(--btn-caramel-text, var(--chocolate-dark)));
}

.btn-large {
  padding:     1em 2.5em;
  font-size:   var(--text-base);
  white-space: normal;
  text-align:  center;
  max-width:   320px;
  line-height: 1.4;
}

.btn-full { width: 100%; }

/* WhatsApp */
.btn-whatsapp {
  display:         inline-flex;
  align-items:     center;
  gap:             0.6rem;
  background:      #25D366;
  color:           #fff;
  font-family:     var(--font-body);
  font-weight:     600;
  padding:         0.875em 1.75em;
  border-radius:   var(--radius-full);
  font-size:       var(--text-sm);
  transition:      background var(--transition), transform var(--transition);
  text-decoration: none;
  border:          none;
  cursor:          pointer;
}

.btn-whatsapp:hover {
  background:  #1ebe5a;
  color:       #fff;
  transform:   translateY(-2px);
}

.btn-whatsapp--small { padding: 0.6em 1.4em; font-size: var(--text-xs); }

/* Google Review */
.btn-google-review {
  display:         inline-flex;
  align-items:     center;
  gap:             0.5rem;
  background:      var(--caramel);
  color:           var(--chocolate-dark);
  font-family:     var(--font-body);
  font-weight:     700;
  font-size:       var(--text-sm);
  padding:         0.75em 1.75em;
  border-radius:   var(--radius-full);
  text-decoration: none;
  transition:      all var(--transition);
}

.btn-google-review:hover {
  background:  var(--caramel-light);
  color:       var(--chocolate-dark);
  transform:   translateY(-2px);
  box-shadow:  var(--shadow-md);
}

.btn-google-review--large {
  font-size:     var(--text-base);
  padding:       0.875em 2em;
  margin-top:    var(--space-lg);
  width:         100%;
  justify-content: center;
}

/* ─────────────────────────────────────────────
   5. STICKY HEADER
   ───────────────────────────────────────────── */
.site-header {
  --hdr-bg: #EDD9BB;
  --hdr-bg-scrolled: #EDD9BB;
  --hdr-nav: var(--chocolate-dark);
  --hdr-nav-hover: var(--chocolate);
  --hdr-mobile-bg: var(--cream);
  --hdr-cta: #C8843A;
  --hdr-cta-text: var(--cream-text);
  position:   fixed;
  top:        0;
  left:       0;
  right:      0;
  z-index:    1000;
  height:     var(--header-height);
  background: var(--hdr-bg);
  transition: background var(--transition), box-shadow var(--transition);
}

.mobile-menu-open .site-header {
  z-index: 2000;
}

.site-header.scrolled {
  background: var(--hdr-bg-scrolled);
  box-shadow: 0 2px 16px rgba(107, 58, 31, 0.12);
}

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

@media (min-width: 1024px) {
  .header-inner { padding: 0 var(--space-xl); }
}

/* Logo */
.header-logo {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img,
.logo-img {
  height:           70px;
  width:            auto;
  display:          block;
  image-rendering:  -webkit-optimize-contrast;
  image-rendering:  crisp-edges;
}

.logo-text {
  font-family: var(--font-display);
  font-size:   var(--text-xl);
  font-weight: 700;
  color:       var(--chocolate);
  line-height: 1;
}

.logo-text em {
  font-style: italic;
  color:      var(--caramel-dark);
}

/* Navigation desktop */
.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family:  var(--font-menu, var(--font-display));
  font-size:    var(--text-base);
  font-weight:  700;
  color:        var(--hdr-nav);
  text-decoration: none;
  position:     relative;
  padding-bottom: 3px;
  transition:   color var(--transition);
}

.site-header.scrolled .nav-link {
  color: var(--hdr-nav);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--hdr-nav-hover);
  font-style: italic;
}

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

/* CTA header */
.header-cta {
  display: none;
  font-size: var(--text-xs) !important;
  padding: 0.65em 1.4em !important;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-cta { display: inline-flex; }
}

/* ─────────────────────────────────────────────
   6. HAMBURGER & MENU MOBILE
   ───────────────────────────────────────────── */
.hamburger {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  align-items:     center;
  gap:             5px;
  width:           44px;
  height:          44px;
  padding:         0;
  background:      none;
  border:          none;
  cursor:          pointer;
  flex-shrink:     0;
  z-index:         1100;
  position:        relative;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger-bar {
  display:          block;
  width:            26px;
  height:           2.5px;
  background:       var(--hdr-nav);
  border-radius:    2px;
  transition:       transform 0.35s var(--ease-out), opacity 0.3s ease, width 0.3s ease, background 0.3s ease;
  transform-origin: center;
}

.site-header.scrolled .hamburger-bar {
  background: var(--hdr-nav);
}

/* Hamburger → croix */
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  position:        fixed;
  top:             0;
  left:            0;
  right:           0;
  bottom:          0;
  height:          100dvh;
  background:      var(--hdr-mobile-bg);
  z-index:         1990;
  display:         flex;
  flex-direction:  column;
  align-items:     flex-start;
  justify-content: flex-start;
  padding:         calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  opacity:         0;
  visibility:      hidden;
  transform:       translateY(-20px);
  transition:      opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.4s;
  overflow-y:      auto;
  max-width:       100vw;
  pointer-events:  none;
}

.mobile-menu.is-open {
  opacity:    1;
  visibility: visible;
  transform:  translateY(0);
  pointer-events: auto;
}

.mobile-menu nav {
  width:          100%;
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
}

.mobile-nav-list {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            var(--space-lg);
  margin-bottom:  var(--space-xl);
  width:          100%;
}

.mobile-nav-link {
  font-family:     var(--font-menu, var(--font-display));
  font-size:       var(--text-3xl);
  font-weight:     700;
  color:           var(--hdr-nav);
  text-decoration: none;
  transition:      color var(--transition), transform var(--transition);
  display:         block;
  text-align:      left;
}

.mobile-nav-link:hover {
  color:     var(--hdr-nav-hover);
  transform: translateX(8px);
}

.mobile-cta {
  font-size:       var(--text-base) !important;
  width:           100%;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

/* ─────────────────────────────────────────────
   7. SECTION HERO — v3 (blobs organiques)
   ───────────────────────────────────────────── */
.hero-section {
  --hr-bg: #FFF5EA;
  --hr-title: var(--chocolate-dark);
  --hr-sub: var(--chocolate);
  --hr-accent: var(--caramel-dark);
  --hr-frame-1: var(--caramel);
  --hr-cta-shimmer: #C8A478;
  --hr-cta-text: var(--chocolate-dark);
  position:   relative;
  min-height: 65svh;
  display:    flex;
  align-items: center;
  overflow:   hidden;
  background: var(--hr-bg);
  padding:    0;
}

/* ── Blobs organiques de fond ── */
.hero-blobs {
  display: none;
}

.hero-blob {
  position: absolute;
  display:  block;
}

/* Forme ovale derrière l'image (côté droit) */
.hero-blob-2 {
  width:   34%;
  right:   0%;
  top:     15%;
  fill:    #ECAE65;
  opacity: 0.45;
}

@keyframes blob-breathe {
  0%, 100% { transform: scale(1)    rotate(0deg); }
  33%       { transform: scale(1.03) rotate(1.5deg); }
  66%       { transform: scale(0.98) rotate(-1deg); }
}

/* ── Grille intérieure ── */
.hero-inner {
  position:              relative;
  z-index:               3;
  width:                 100%;
  max-width:             1280px;
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 54% 46%;
  align-items:           center;
  min-height:            65svh;
  padding:               calc(var(--header-height) + var(--space-md)) var(--space-xl) calc(var(--space-xl) + clamp(60px, 7vw, 100px));
  gap:                   var(--space-lg);
}

/* ── Colonne texte ── */
.hero-content {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  text-align:     left;
}

.hero-creator-name {
  font-family:    var(--font-display);
  font-size:      var(--text-xl);
  font-weight:    700;
  color:          var(--hr-accent);
  margin-bottom:  var(--space-sm);
  letter-spacing: 0.02em;
  animation:      h-slide-up 0.6s var(--ease-out) 0.1s both;
}

.hero-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            0.5rem;
  background:     color-mix(in srgb, var(--hr-accent) 12%, transparent);
  border:         1px solid color-mix(in srgb, var(--hr-accent) 32%, transparent);
  color:          var(--hr-accent);
  font-size:      var(--text-xs);
  font-weight:    700;
  padding:        0.45em 1.1em;
  border-radius:  var(--radius-full);
  margin-bottom:  var(--space-md);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  animation:      h-slide-up 0.6s var(--ease-out) 0.2s both;
}

.hero-title {
  font-size:     var(--text-4xl);
  color:         var(--hr-title);
  line-height:   1.16;
  margin-bottom: var(--space-sm);
  animation:     h-reveal 1s var(--ease-out) 0.3s both;
  overflow:      visible;
}

.hero-title em {
  display:                 inline-block;
  padding:                 0 0.08em 0.14em;
  margin:                  0 -0.03em -0.12em;
  background:              linear-gradient(90deg, #C8843A, #F0C060, #C8843A, #E8A050, #C8843A);
  background-size:         300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
  animation:               shimmer-border 5s linear infinite;
  font-style:              italic;
}

@keyframes h-reveal {
  from { opacity: 0; transform: translateY(38px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-subtitle {
  font-size:     var(--text-base);
  color:         color-mix(in srgb, var(--hr-sub) 82%, transparent);
  opacity:       1;
  max-width:     420px;
  line-height:   1.75;
  margin-bottom: var(--space-md);
  animation:     h-slide-up 0.7s var(--ease-out) 0.55s both;
}

.hero-trust {
  display:       flex;
  flex-wrap:     wrap;
  gap:           0.55rem;
  margin-bottom: var(--space-lg);
  animation:     h-slide-up 0.7s var(--ease-out) 0.7s both;
}

.hero-trust-item {
  background:    color-mix(in srgb, var(--hr-accent) 12%, transparent);
  border:        1px solid color-mix(in srgb, var(--hr-accent) 35%, transparent);
  color:         var(--hr-sub);
  font-size:     var(--text-sm);
  font-weight:   700;
  padding:       0.45em 1.1em;
  border-radius: var(--radius-full);
}

.hero-ctas {
  display:   flex;
  flex-wrap: wrap;
  align-items: center;
  gap:       var(--space-sm);
  animation: h-slide-up 0.7s var(--ease-out) 0.85s both;
}

@keyframes h-slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* CTA chocolat pour fond clair */
.btn-hero-dark {
  display:         inline-flex !important;
  align-items:     center !important;
  justify-content: center !important;
  font-family:     var(--font-body) !important;
  font-size:       var(--text-base) !important;
  font-weight:     700 !important;
  padding:         1em 2.4em !important;
  border-radius:   var(--radius-full) !important;
  border:          none !important;
  background:      var(--chocolate-dark) !important;
  color:           var(--cream) !important;
  text-decoration: none !important;
  letter-spacing:  0.02em !important;
  box-shadow:      0 8px 24px rgba(61,28,10,0.25) !important;
  transition:      transform 0.2s, box-shadow 0.2s !important;
}

.btn-hero-dark:hover {
  transform:  translateY(-3px) !important;
  box-shadow: 0 14px 36px rgba(61,28,10,0.35) !important;
}

/* ── Colonne visuelle ── */
.hero-visual {
  position:        relative;
  display:         flex;
  align-items:     center;
  justify-content: center;
  animation:       h-fade-scale 1.1s var(--ease-out) 0.2s both;
}

@keyframes h-fade-scale {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* Image — statique */
.hero-float-wrap {
  position:  relative;
  z-index:   2;
  max-width: min(var(--img-hero-max, 580px), 100%);
  width:     100%;
}

/* Cadre décoratif autour de l'image gaufres */
.hero-img-frame {
  position:      relative;
  border-radius: calc(var(--radius-lg) + 5px);
  padding:       3px;
  background:    color-mix(in srgb, var(--hr-frame-1) 82%, #fff);
  border:        1px solid color-mix(in srgb, var(--hr-frame-1) 45%, #fff);
  box-shadow:    0 18px 42px rgba(61, 28, 10, 0.14),
                 0 6px 16px rgba(61, 28, 10, 0.08),
                 inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero-oriana-img {
  width:         100%;
  height:        auto;
  display:       block;
  object-fit:    cover;
  border-radius: calc(var(--radius-lg) + 2px);
  aspect-ratio:  var(--img-hero-ar-w, 3) / var(--img-hero-ar-h, 4);
}

/* ── Desktop : image à gauche, texte à droite ── */
@media (min-width: 961px) {
  .hero-visual  { order: 1; }
  .hero-content { order: 2; }
}

/* ── Responsive tablette ── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align:  center;
    padding-top: calc(var(--header-height) + var(--space-md));
    gap:         var(--space-md);
  }
  .hero-content  { align-items: center; order: 2; }
  .hero-visual   { order: 1; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-trust    { justify-content: center; }
  .hero-ctas     { justify-content: center; }
  .hero-float-wrap { max-width: min(var(--img-hero-max, 580px), min(340px, 92vw)); }
  .hero-blob-2   { width: 55%; right: -5%; top: 8%; }
}

/* ── Responsive mobile ── */
@media (max-width: 480px) {
  .hero-inner      { padding: calc(var(--header-height) + var(--space-sm)) var(--space-sm) var(--space-xl); }
  .hero-float-wrap { max-width: min(var(--img-hero-max, 580px), min(280px, 90vw)); }
  .hero-blob-2     { display: none; }
}

/* ─────────────────────────────────────────────
   8. SECTION OFFRES
   ───────────────────────────────────────────── */
.offres-section {
  --offres-wave-height: clamp(54px, 6vw, 90px);
  --of-bg: #6B3A1F;
  --of-heading: #FFF5E4;
  --of-sub: #F5E6C8;
  --of-card-bg: #fff;
  --of-card-title: #6B3A1F;
  --of-card-text: #7A5A42;
  --of-accent: #C8A478;
  --of-tag-text: #A07848;
  --of-tag-bg: #F3E8D8;
  --of-chariot-1: #C8A478;
  --of-cta-text: #3D1C0A;
  position: relative;
  margin-top: 0;
  padding: var(--space-3xl) 0;
  background: var(--of-bg);
  overflow: visible;
}

.offres-wave {
  position: absolute;
  top: calc(-1 * var(--offres-wave-height) + 1px);
  left: 0;
  width: 100%;
  height: var(--offres-wave-height);
  line-height: 0;
  pointer-events: none;
  z-index: 3;
}

.offres-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.offres-wave path {
  fill: var(--of-bg);
}

/* Textes clairs sur fond chocolat */
.offres-section .section-label {
  color:        var(--of-heading);
  border-color: color-mix(in srgb, var(--of-accent) 28%, transparent);
  background:   color-mix(in srgb, var(--of-accent) 10%, transparent);
}

.offres-section .section-title--light {
  color: var(--of-heading);
}

.offres-section .section-subtitle--light {
  color: var(--of-sub);
}

.offres-section .offre-card {
  background:   var(--of-card-bg);
  border-color: transparent;
  box-shadow:
    0 16px 34px rgba(0,0,0,0.16),
    0 6px 14px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.62);
}

.offres-section .offre-card:hover {
  background:   var(--of-card-bg);
  border-color: transparent;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.22),
    0 10px 20px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.offres-section .offre-card--featured {
  background:   var(--of-card-bg);
  border-color: transparent;
}

.offres-section .offre-card-title {
  color: var(--of-card-title);
}

.offres-section .offre-card-title span {
  color: color-mix(in srgb, var(--of-accent) 58%, #3d1c0a);
}

.offres-section .offre-card-text {
  color: var(--of-card-text);
}

.offres-section .offre-card-icon svg path,
.offres-section .offre-card-icon svg rect {
  stroke: color-mix(in srgb, var(--of-card-title) 82%, var(--of-accent));
}

.offres-section .offre-card-icon svg rect,
.offres-section .offre-card-icon svg circle,
.offres-section .offre-card-icon svg path[fill]:not([fill="none"]) {
  fill: color-mix(in srgb, var(--of-accent) 42%, #fff);
}

.offres-section .offres-blob {
  background: rgba(255, 248, 238, 0.06);
  opacity: 1;
}

.offres-blob {
  display: none;
}

.offres-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: stretch;
}

@media (min-width: 768px) {
  .offres-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cartes */
.offre-card {
  background:    var(--of-card-bg, #fff);
  border:        1px solid transparent;
  border-radius: 24px;
  padding:       calc(var(--space-xl) - 0.4rem) var(--space-lg) var(--space-xl);
  box-shadow:    var(--shadow-sm);
  transition:    transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position:      relative;
  overflow:      hidden;
  display:       flex;
  flex-direction: column;
  gap:           var(--space-md);
  height:        100%;
  will-change:   transform;
}

.offre-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.62) 0%, transparent 36%),
    radial-gradient(circle at 86% 12%, color-mix(in srgb, var(--of-accent) 16%, transparent), transparent 30%);
  opacity: 0.66;
}

.offre-card > * {
  position: relative;
  z-index: 2;
}

.offre-card:hover {
  transform:    translateY(-7px);
  box-shadow:   var(--shadow-xl);
  border-color: transparent;
}

.offre-card--featured {
  background:  linear-gradient(160deg, color-mix(in srgb, var(--of-card-bg, #fff) 97%, var(--of-accent, var(--caramel))) 0%, color-mix(in srgb, var(--of-card-bg, #fff) 93%, var(--of-accent, var(--caramel))) 100%);
  border-color: transparent;
  box-shadow:
    0 28px 62px rgba(0,0,0,0.24),
    0 10px 24px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.offre-card--featured:hover {
  transform: translateY(-9px);
}

.offre-card-icon {
  width:       72px;
  height:      72px;
  flex-shrink: 0;
  margin:      0 auto;
  display:     flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.offre-card-icon svg {
  width: 52px;
  height: 52px;
}

.offre-card:hover .offre-card-icon {
  transform: translateY(-2px) scale(1.035);
}

.offre-card-title {
  font-size:   var(--text-lg);
  color:       var(--chocolate);
  line-height: 1.3;
}

.offre-card-title span {
  display:   block;
  font-size: var(--text-sm);
  font-style: italic;
  color:     var(--caramel-dark);
  margin-top: 0.2em;
}

.offre-card-text {
  font-size:   var(--text-sm);
  color:       #7a5a42;
  line-height: 1.75;
  flex: 1;
}

.offre-card-btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             0.4em;
  align-self:      stretch;
  margin-top:      var(--space-sm);
  font-size:       var(--text-sm);
  font-weight:     700;
  color:           var(--caramel-dark);
  background:      rgba(200, 164, 120, 0.12);
  border:          1.5px solid rgba(200, 164, 120, 0.4);
  padding:         0.5em 1.1em;
  border-radius:   var(--radius-full);
  text-decoration: none;
  transition:      all var(--transition);
}

.offre-card-btn:hover {
  background:   var(--caramel-dark);
  color:        #fff;
  border-color: var(--caramel-dark);
}

.offre-card-tag {
  align-self:      center;
  margin-top:      auto;
  font-size:       var(--text-xs);
  font-weight:     700;
  color:           var(--of-tag-text);
  background:      var(--of-tag-bg);
  padding:         0.48em 1.05em;
  border-radius:   var(--radius-full);
  letter-spacing:  0.08em;
  text-transform:  uppercase;
  text-align:      center;
  text-decoration: none;
  box-shadow:      inset 0 1px 0 rgba(255,255,255,0.42);
}

.offres-menu-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.offres-menu-ctas .btn {
  min-width: min(100%, 340px);
}

/* ─────────────────────────────────────────────
   PAGE MENU GAUFRES
   ───────────────────────────────────────────── */
.menu-gaufres-page {
  background: #FFF8EE;
}

.menu-gaufres-content {
  padding: calc(var(--space-xl) + 72px) 0 var(--space-3xl);
}

.menu-gaufres-card {
  max-width: 860px;
  margin: 0 auto var(--space-xl);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.menu-gaufres-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.offre-card {
  text-align: center;
}

/* Chariot / stand photo */
.chariot-frame {
  margin:     var(--space-xl) auto;
  max-width:  min(var(--img-chariot-max, 860px), 100%);
  text-align: center;
}

.chariot-img-wrap {
  position:   relative;
  overflow:   hidden;
  border-radius: calc(var(--radius-xl) + 4px);
  padding:    3px;
  background: color-mix(in srgb, var(--of-chariot-1, var(--caramel)) 82%, #fff);
  border: 1px solid color-mix(in srgb, var(--of-chariot-1, var(--caramel)) 45%, #fff);
  box-shadow: 0 14px 36px rgba(61, 28, 10, 0.14),
              0 5px 14px rgba(61, 28, 10, 0.08),
              inset 0 1px 0 rgba(255,255,255,0.18);
}

.chariot-img-wrap::before {
  content: '';
  position: absolute;
  inset: 3px;
  z-index: 2;
  pointer-events: none;
  border-radius: calc(var(--radius-xl) + 1px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.12), transparent 20%);
}

.chariot-img {
  width:         100%;
  height:        100%;
  display:       block;
  object-fit:    cover;
  border-radius: calc(var(--radius-xl) + 1px);
  aspect-ratio:  var(--img-chariot-ar-w, 16) / var(--img-chariot-ar-h, 8);
}

.chariot-caption {
  margin-top:  var(--space-sm);
  font-family: var(--font-display);
  font-style:  italic;
  font-size:   var(--text-sm);
  color:       var(--caramel-dark);
  letter-spacing: 0.04em;
}

.offres-cta {
  display:         flex;
  justify-content: center;
  align-items:     center;
}

/* ─────────────────────────────────────────────
   9. SECTION À PROPOS
   ───────────────────────────────────────────── */
.apropos-section {
  --ap-bg: #FFF5EA;
  --ap-text: #6b4a32;
  --ap-accent: var(--caramel);
  position:   relative;
  padding:    var(--space-3xl) 0;
  background: var(--ap-bg);
  overflow:   hidden;
}

.apropos-blob-1 {
  display:   none;
  position:  absolute;
  width:     450px;
  height:    450px;
  background: color-mix(in srgb, var(--ap-accent) 35%, var(--ap-bg));
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  opacity:   0.35;
  bottom:    -150px;
  right:     -100px;
  animation: morphBlob 14s ease-in-out infinite;
  pointer-events: none;
}

.apropos-blob-2 {
  display:   none;
  position:  absolute;
  width:     300px;
  height:    300px;
  background: color-mix(in srgb, var(--ap-accent) 55%, #3d1c0a);
  border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
  opacity:   0.12;
  top:       -80px;
  left:      -60px;
  animation: morphBlob 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.apropos-layout {
  display:        grid;
  grid-template-columns: 1fr;
  gap:            var(--space-xl);
  align-items:    center;
}

@media (min-width: 900px) {
  .apropos-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  .apropos-content {
    text-align: center;
  }
}

/* Photo */
.apropos-photo-wrapper {
  position: relative;
  max-width: min(var(--img-apropos-max, 560px), 100%);
  margin: 0 auto;
  padding: 6px;
  border-radius: var(--img-apropos-radius, 50%);
  background: var(--ap-accent);
  border: 1px solid color-mix(in srgb, var(--ap-accent) 72%, #fff);
  box-shadow: 0 24px 64px rgba(61, 28, 10, 0.18),
              inset 0 1px 0 rgba(255,255,255,0.28);
}

.apropos-photo {
  width:           100%;
  aspect-ratio:    var(--img-apropos-ar-w, 1) / var(--img-apropos-ar-h, 1);
  object-fit:      cover;
  object-position: center 20%;
  border-radius:   var(--img-apropos-radius, 50%);
  box-shadow:      inset 0 0 0 1px rgba(255,255,255,0.55);
  transition:      transform 0.4s ease, box-shadow 0.4s ease;
}

.apropos-photo:hover {
  transform:  scale(1.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}

.apropos-photo-placeholder {
  width:          100%;
  height:         400px;
  background:     linear-gradient(135deg, color-mix(in srgb, var(--ap-accent) 22%, transparent), color-mix(in srgb, var(--ap-accent) 8%, var(--ap-bg)));
  border-radius:  40% 60% 55% 45% / 45% 40% 60% 55%;
  border:         2px dashed var(--ap-accent);
  display:        flex;
  align-items:    center;
  justify-content: center;
}

.placeholder-inner {
  text-align: center;
  padding:    var(--space-md);
  color:      var(--caramel-dark);
  font-size:  var(--text-sm);
}

.placeholder-inner svg {
  width:         80px;
  height:        80px;
  margin:        0 auto var(--space-sm);
}

/* Badge flottant */
.apropos-badge {
  position:        absolute;
  bottom:          30px;
  right:           -10px;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  width:           90px;
  height:          90px;
  background:      var(--cream);
  border:          3px solid var(--ap-accent);
  border-radius:   50%;
  box-shadow:      var(--shadow-lg);
  text-align:      center;
  animation:       float 4s ease-in-out infinite;
}

.badge-emoji { font-size: 1.8rem; line-height: 1; }
.badge-text {
  font-family:  var(--font-body);
  font-size:    0.6rem;
  font-weight:  700;
  color:        var(--chocolate);
  line-height:  1.3;
  text-align:   center;
}

/* Texte à propos */
.apropos-text {
  display:        flex;
  flex-direction: column;
  gap:            var(--space-md);
  margin-bottom:  var(--space-xl);
  color:          var(--ap-text);
  font-size:      var(--text-base);
}


/* Valeurs */
.apropos-values {
  display:   flex;
  flex-wrap: wrap;
  gap:       var(--space-md);
}

.value-item {
  display:         flex;
  align-items:     center;
  gap:             0.6rem;
  background:      var(--cream);
  border:          1px solid var(--ap-accent);
  border-radius:   var(--radius-full);
  padding:         0.5em 1.2em;
  font-size:       var(--text-sm);
  font-weight:     600;
  color:           var(--chocolate);
}

.value-emoji { font-size: 1.2rem; }

/* ─────────────────────────────────────────────
   9. SECTION GALERIE
   ───────────────────────────────────────────── */
.gallery-section {
  --gl-bg: var(--cream);
  --gl-text: var(--chocolate);
  --gl-accent: var(--caramel);
  --gl-card: #fff;
  --gallery-radius: 24px;
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--gl-bg);
  overflow: hidden;
}

.gallery-section .section-title {
  color: var(--gl-text);
}

.gallery-section .section-subtitle {
  color: color-mix(in srgb, var(--gl-text) 74%, transparent);
}

.gallery-section .section-label {
  color: var(--gl-accent);
  border-color: color-mix(in srgb, var(--gl-accent) 28%, transparent);
  background: color-mix(in srgb, var(--gl-accent) 10%, transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: var(--space-md);
  max-width: 980px;
  margin: 0 auto;
}

.gallery-size--small .gallery-grid {
  max-width: 820px;
  grid-auto-rows: 105px;
}

.gallery-size--large .gallery-grid {
  max-width: 1180px;
  grid-auto-rows: 150px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--gl-card);
  border-radius: var(--gallery-radius);
  box-shadow:
    0 22px 48px rgba(61, 28, 10, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.58);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: var(--space-md);
  color: color-mix(in srgb, var(--gl-text) 68%, transparent);
  text-align: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--gl-accent) 14%, transparent), transparent),
    color-mix(in srgb, var(--gl-card) 92%, var(--gl-bg));
  border: 2px dashed color-mix(in srgb, var(--gl-accent) 36%, transparent);
}

.gallery-placeholder span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--gl-text);
}

.gallery-placeholder small {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gallery-shape--square {
  --gallery-radius: 6px;
}

.gallery-shape--soft {
  --gallery-radius: 24px;
}

.gallery-shape--rounded {
  --gallery-radius: 42px;
}

.gallery-ratio--mixed .gallery-item--1 {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-ratio--mixed .gallery-item--2,
.gallery-ratio--mixed .gallery-item--3 {
  grid-column: span 3;
}

.gallery-ratio--mixed .gallery-item--4 {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-ratio--mixed .gallery-item--5 {
  grid-column: span 3;
}

.gallery-ratio--mixed .gallery-item--6 {
  grid-column: span 5;
}

.gallery-ratio--square .gallery-grid,
.gallery-ratio--portrait .gallery-grid,
.gallery-ratio--landscape .gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}

.gallery-ratio--square .gallery-item,
.gallery-ratio--portrait .gallery-item,
.gallery-ratio--landscape .gallery-item {
  grid-column: auto;
  grid-row: auto;
}

.gallery-ratio--square .gallery-item {
  aspect-ratio: 1 / 1;
}

.gallery-ratio--portrait .gallery-item {
  aspect-ratio: 4 / 5;
}

.gallery-ratio--landscape .gallery-item {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .gallery-grid,
  .gallery-size--small .gallery-grid,
  .gallery-size--large .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    max-width: 680px;
  }

  .gallery-ratio--mixed .gallery-item {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .gallery-grid,
  .gallery-size--small .gallery-grid,
  .gallery-size--large .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .gallery-ratio--mixed .gallery-item,
  .gallery-ratio--square .gallery-item,
  .gallery-ratio--portrait .gallery-item,
  .gallery-ratio--landscape .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

/* ── Presse ── */
/* ─────────────────────────────────────────────
   10. SECTION PRESSE — Même code graphique que Offres
   ───────────────────────────────────────────── */
.presse-section {
  --pr-bg: var(--chocolate);
  --pr-heading: var(--caramel-light);
  --pr-card-bg: #fff;
  --pr-card-text: #7a5a42;
  --pr-accent: var(--caramel);
  position:   relative;
  background: var(--pr-bg);
  padding:    var(--space-3xl) 0;
  overflow:   hidden;
}

/* Blob déco (même style que offres-blob) */
.presse-blob {
  display:       none;
  position:      absolute;
  width:         500px;
  height:        500px;
  background:    color-mix(in srgb, var(--pr-heading) 8%, transparent);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  opacity:       1;
  bottom:        -150px;
  left:          -150px;
  pointer-events: none;
  animation:     morphBlob 14s ease-in-out infinite;
}

/* Label et titres : reprend section-title--light */
.presse-section .section-label {
  color:        var(--pr-heading);
  border-color: color-mix(in srgb, var(--pr-accent) 28%, transparent);
  background:   color-mix(in srgb, var(--pr-accent) 10%, transparent);
}

.presse-section .section-title--light {
  color: var(--pr-heading);
}

.presse-section .section-subtitle--light {
  color: color-mix(in srgb, var(--pr-heading) 90%, #fff);
}

/* Grille des articles (colonne, pleine largeur centrée) */
.presse-grid {
  display:        flex;
  flex-direction: column;
  gap:            var(--space-lg);
  max-width:      860px;
  margin:         0 auto;
}

/* ── Carte presse — même style que offre-card ── */
.presse-card {
  display:         flex;
  flex-direction:  row;
  align-items:     center;
  gap:             var(--space-md);
  background:      var(--pr-card-bg);
  border:          1px solid color-mix(in srgb, var(--pr-accent) 32%, transparent);
  border-radius:   var(--radius-md);
  text-decoration: none;
  overflow:        hidden;
  padding:         var(--space-md) var(--space-lg);
  box-shadow:      0 4px 24px rgba(0, 0, 0, 0.10);
  position:        relative;
  transition:      transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Barre colorée en haut au survol — identique à offre-card::before */
.presse-card::before {
  content:    '';
  position:   absolute;
  top:        0;
  left:       0;
  right:      0;
  height:     4px;
  background: linear-gradient(90deg, var(--pr-accent), color-mix(in srgb, var(--pr-accent) 55%, #3d1c0a));
  opacity:    0;
  transition: opacity var(--transition);
}

.presse-card:hover {
  transform:    translateY(-6px);
  box-shadow:   0 10px 40px rgba(0, 0, 0, 0.16);
  border-color: var(--pr-accent);
}

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

/* Logo du média */
.presse-card-logo {
  flex-shrink:     0;
  width:           160px;
  height:          80px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  overflow:        hidden;
}

.presse-card-logo img {
  width:      100%;
  height:     100%;
  object-fit: contain;
  object-position: center;
  display:    block;
}

.presse-card-logo-fallback {
  display:         none;
  align-items:     center;
  justify-content: center;
  width:           100%;
  height:          100%;
  font-family:     var(--font-body);
  font-weight:     700;
  font-size:       var(--text-xs);
  color:           color-mix(in srgb, var(--pr-card-text) 90%, #000);
  text-align:      center;
  line-height:     1.3;
}

/* Corps de l'article */
.presse-card-body {
  flex:           1;
  display:        flex;
  flex-direction: column;
  gap:            0.75em;
}

.presse-card-extrait {
  font-size:          var(--text-sm);
  color:              var(--pr-card-text);
  font-style:         italic;
  line-height:        1.75;
  display:            -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow:           hidden;
  margin:             0;
}

.presse-card-lire {
  display:     inline-block;
  font-size:   var(--text-xs);
  font-weight: 700;
  font-style:  normal;
  color:       color-mix(in srgb, var(--pr-accent) 70%, #3d1c0a);
  transition:  color var(--transition), letter-spacing var(--transition);
}

.presse-card:hover .presse-card-lire {
  color:          color-mix(in srgb, var(--pr-accent) 45%, #3d1c0a);
  letter-spacing: 0.03em;
}

/* Responsive mobile */
@media (max-width: 640px) {
  .presse-card {
    flex-direction: column;
    align-items:    center;
    text-align:     center;
    gap:            var(--space-md);
    padding:        var(--space-md);
  }
  .presse-card-logo {
    width:  160px;
    height: 80px;
    margin: 0 auto;
  }
  .presse-card-body {
    align-items: center;
  }
}

/* ─────────────────────────────────────────────
   10. SECTION DATES DE MARCHÉ
   ───────────────────────────────────────────── */
.dates-section {
  --dt-bg: #7A4520;
  --dt-accent: var(--caramel);
  --dt-card-title: #FFF5E4;
  --dt-muted: rgba(230, 200, 160, 0.92);
  position:   relative;
  padding:    var(--space-3xl) 0;
  background: var(--dt-bg);
  overflow:   hidden;
}

.dates-menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .dates-menu-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }
}

.dates-list-col {
  min-width: 0;
}

.dates-menu-col {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.dates-menu-col img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.dates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .dates-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .dates-menu-layout .dates-grid {
    grid-template-columns: 1fr;
  }
}

/* Carte date */
.date-card {
  display:       flex;
  align-items:   center;
  gap:           var(--space-md);
  background:    color-mix(in srgb, var(--dt-card-title) 8%, transparent);
  border:        1px solid color-mix(in srgb, var(--dt-accent) 40%, transparent);
  border-radius: var(--radius-md);
  padding:       var(--space-md) var(--space-lg);
  transition:    background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position:      relative;
  box-shadow:    0 2px 12px rgba(0, 0, 0, 0.2);
}

.date-card:hover {
  background:    color-mix(in srgb, var(--dt-card-title) 16%, transparent);
  border-color:  var(--dt-accent);
  transform:     translateY(-3px);
  box-shadow:    0 8px 28px rgba(0, 0, 0, 0.3);
}

/* Bloc date numérique */
.date-card-date {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  min-width:       72px;
  background:      var(--dt-accent);
  border-radius:   var(--radius-sm);
  padding:         0.7em 1em;
  text-align:      center;
  flex-shrink:     0;
  box-shadow:      0 4px 12px rgba(0,0,0,0.2);
}

.date-day-name {
  font-family:    var(--font-body);
  font-size:      0.62rem;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--chocolate-dark);
  opacity:        0.9;
  display:        block;
}

.date-day-num {
  font-family:  var(--font-display);
  font-size:    var(--text-3xl);
  font-weight:  700;
  color:        var(--chocolate-dark);
  line-height:  1;
  display:      block;
}

.date-month {
  font-family:    var(--font-body);
  font-size:      var(--text-xs);
  font-weight:    700;
  color:          var(--chocolate-dark);
  text-transform: capitalize;
  display:        block;
}

/* Infos */
.date-card-info { flex: 1; }

.date-card-title {
  font-size:     var(--text-base);
  font-weight:   700;
  color:         var(--dt-card-title);
  margin-bottom: 0.3em;
  font-family:   var(--font-body);
}

.date-card-heure,
.date-card-adresse {
  display:     flex;
  align-items: center;
  gap:         0.4rem;
  font-size:   var(--text-xs);
  color:       var(--dt-muted);
  line-height: 1.4;
}

.date-card-adresse { margin-top: 0.25em; }

/* Lien maps */
.date-card-maps {
  display:         flex;
  align-items:     center;
  gap:             0.4rem;
  font-size:       var(--text-xs);
  font-weight:     700;
  color:           var(--chocolate-dark);
  background:      var(--dt-accent);
  text-decoration: none;
  white-space:     nowrap;
  transition:      all var(--transition);
  padding:         0.45em 0.9em;
  border:          1px solid var(--dt-accent);
  border-radius:   var(--radius-full);
  flex-shrink:     0;
}

.date-card-maps:hover {
  background:   color-mix(in srgb, var(--dt-accent) 82%, #fff);
  border-color: color-mix(in srgb, var(--dt-accent) 82%, #fff);
}

/* Aucune date */
.dates-empty {
  text-align:    center;
  padding:       var(--space-2xl);
  color:         var(--cream-text);
}

.dates-empty-icon {
  font-size:     3rem;
  display:       block;
  margin-bottom: var(--space-sm);
}

.dates-empty h3 {
  color:          var(--cream-text);
  margin-bottom:  var(--space-sm);
}

.dates-empty p {
  color:          rgba(245, 230, 200, 0.7);
  margin-bottom:  var(--space-lg);
}

/* Instagram pill */
.dates-instagram {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             var(--space-sm);
  margin-top:      var(--space-xl);
  font-size:       var(--text-sm);
  color:           rgba(245, 230, 200, 0.6);
}

.instagram-pill {
  display:         inline-flex;
  align-items:     center;
  gap:             0.5rem;
  background:      rgba(245, 230, 200, 0.1);
  border:          1px solid rgba(200, 164, 120, 0.3);
  color:           var(--caramel-light);
  font-weight:     700;
  font-size:       var(--text-sm);
  padding:         0.5em 1.2em;
  border-radius:   var(--radius-full);
  text-decoration: none;
  transition:      all var(--transition);
}

.instagram-pill:hover {
  background:  rgba(245, 230, 200, 0.18);
  color:       var(--cream-text);
  border-color: var(--caramel);
}

/* ─────────────────────────────────────────────
   11. SECTION DEVIS
   ───────────────────────────────────────────── */
.devis-section {
  --dv-bg: #EDD9BB;
  --dv-form-bg: #fff;
  --dv-accent: var(--caramel);
  --dv-title-em: #C8843A;
  --dv-cta-text: var(--cream-text);
  --dv-choice-bg: #FFF8F3;
  --dv-choice-text: var(--chocolate);
  --dv-choice-selected-bg: rgba(107, 58, 31, 0.06);
  --dv-contact-card-bg: #fff;
  --dv-contact-text: var(--chocolate);
  --dv-contact-accent: var(--caramel);
  position:   relative;
  padding:    var(--space-3xl) 0;
  background: var(--dv-bg);
  overflow:   hidden;
}

.devis-blob-1,
.devis-blob-2 {
  display: none;
}

.devis-layout {
  max-width:    800px;
  margin:       0 auto var(--space-xl);
}
.devis-contact-layout {
  display:               grid;
  grid-template-columns: 1.2fr 1fr;
  gap:                   var(--space-2xl);
  align-items:           start;
}
@media (max-width: 768px) {
  .devis-contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Google Form iframe */
.devis-form-wrapper {
  border-radius: var(--radius-lg);
  overflow:      hidden;
  box-shadow:    var(--shadow-lg);
  background:    var(--dv-form-bg);
  border:        1px solid color-mix(in srgb, var(--dv-accent) 35%, transparent);
}

.devis-form-wrapper iframe {
  display:    block;
  width:      100%;
  min-height: 780px;
  border:     none;
}

/* ── Formulaire multi-étapes ── */
.devis-steps-form {
  padding: var(--space-xl);
}

.dsf-progress-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.dsf-progress-track {
  flex: 1;
  height: 5px;
  background: rgba(107, 58, 31, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.dsf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--dv-accent), color-mix(in srgb, var(--dv-accent) 55%, #3d1c0a));
  border-radius: 3px;
  transition: width 0.4s var(--ease-out);
}
.dsf-counter {
  font-size: var(--text-sm);
  font-weight: 600;
  color: color-mix(in srgb, var(--dv-accent) 65%, #3d1c0a);
  white-space: nowrap;
}

.dsf-step { display: none; }
.dsf-step.active {
  display: block;
  animation: dsfIn 0.35s var(--ease-out);
}
@keyframes dsfIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dsf-question {
  font-family:   var(--font-display);
  font-size:     var(--text-xl);
  color:         var(--chocolate);
  margin-bottom: var(--space-md);
  line-height:   1.3;
}

/* Sous-question (intérieur / extérieur) */
.dsf-question--sub {
  font-size:  var(--text-lg);
  margin-top: var(--space-lg);
}

.dsf-choices {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap:                   var(--space-sm);
  margin-bottom:         var(--space-lg);
}

/* Grille en liste verticale pour les longues listes (étape 1) */
.dsf-choices--list {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.dsf-choices--list .dsf-choice-inner {
  flex-direction: row;
  justify-content: center;
  padding:        0.75em 1em;
  font-size:      1em;
  min-height:     58px;
  text-align:     center;
  gap:            0.5em;
}

/* Grille compacte pour les petites listes (intérieur/extérieur) */
.dsf-choices--small {
  grid-template-columns: repeat(3, 1fr);
}
.dsf-choice {
  cursor: pointer;
  display: flex;
  position: relative;
}
.dsf-choice input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.dsf-choice-inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  justify-content: center;
  gap:            0.35em;
  width:          100%;
  min-height:     76px;
  padding:        var(--space-md) var(--space-sm);
  border:         2px solid color-mix(in srgb, var(--dv-choice-text) 14%, transparent);
  border-radius:  var(--radius-md);
  background:     var(--dv-choice-bg);
  transition:     border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align:     center;
  font-size:      1.6em;
  line-height:    1;
}
.dsf-choice-inner strong {
  font-size:   var(--text-sm);
  font-weight: 700;
  color:       var(--dv-choice-text);
  font-family: var(--font-body);
  font-style:  normal;
  display:     block;
  line-height: 1.2;
}
.dsf-choice input:checked + .dsf-choice-inner {
  border-color: color-mix(in srgb, var(--dv-choice-text) 72%, var(--dv-accent));
  background:   var(--dv-choice-selected-bg);
  box-shadow:   0 0 0 3px color-mix(in srgb, var(--dv-accent) 18%, transparent);
}

.dsf-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.dsf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.dsf-field--full { grid-column: 1 / -1; }
.dsf-field label {
  font-size:   var(--text-sm);
  font-weight: 600;
  color:       var(--chocolate-dark);
}
.dsf-required { color: #c0392b; }
.dsf-input {
  width:       100%;
  padding:     0.7em 1em;
  border:      1.5px solid rgba(107, 58, 31, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size:   var(--text-base);
  color:       var(--chocolate);
  background:  #fff;
  transition:  border-color 0.2s;
  outline:     none;
}
.dsf-input:focus { border-color: color-mix(in srgb, var(--dv-accent) 80%, #000); }
.dsf-textarea { resize: vertical; min-height: 90px; }

.dsf-nav {
  display:     flex;
  align-items: center;
  gap:         var(--space-sm);
  margin-top:  var(--space-md);
}
.dsf-btn-back {
  background: none;
  border:     none;
  color:      var(--caramel-dark);
  font-size:  var(--text-sm);
  font-weight: 600;
  cursor:     pointer;
  padding:    0.5em 0;
  transition: color 0.2s;
}
.dsf-btn-back:hover { color: var(--chocolate); }

.dsf-success {
  text-align: center;
  padding:    var(--space-xl) 0;
  animation:  dsfIn 0.4s var(--ease-out);
}
.dsf-success-icon { font-size: 3rem; margin-bottom: var(--space-sm); }
.dsf-success h3 {
  font-family:   var(--font-display);
  font-size:     var(--text-2xl);
  color:         var(--chocolate);
  margin-bottom: 0.4em;
}
.dsf-success p { color: var(--caramel-dark); }

.dsf-error-msg {
  color:         #c0392b;
  background:    rgba(192, 57, 43, 0.07);
  border-radius: var(--radius-sm);
  padding:       var(--space-sm);
  margin-top:    var(--space-sm);
  font-size:     var(--text-sm);
  text-align:    center;
}

@media (max-width: 600px) {
  .dsf-choices { grid-template-columns: 1fr 1fr; }
  .dsf-fields  { grid-template-columns: 1fr; }
  .devis-steps-form { padding: var(--space-md); }
}

.devis-placeholder {
  padding:    var(--space-xl) var(--space-lg);
  text-align: center;
  color:      var(--chocolate);
  min-height: 200px;
  display:    flex;
  align-items: center;
  justify-content: center;
}
.devis-placeholder p {
  font-size:   var(--text-base);
  line-height: 1.7;
  max-width:   400px;
}

/* Réassurance */
.devis-reassurance {
  display:   flex;
  flex-wrap: wrap;
  gap:       var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.reassurance-item {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             0.5rem;
  text-align:      center;
  font-size:       var(--text-sm);
  color:           var(--caramel-dark);
  background:      rgba(200, 164, 120, 0.1);
  border:          1px solid rgba(200, 164, 120, 0.2);
  border-radius:   var(--radius-md);
  padding:         var(--space-md) var(--space-lg);
  flex:            1;
  min-width:       150px;
}

.reassurance-icon { font-size: 1.75rem; }
.reassurance-item p { line-height: 1.5; }
.reassurance-item strong { color: var(--chocolate); font-weight: 700; }

/* WhatsApp block */
.devis-whatsapp-block {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             var(--space-sm);
  text-align:      center;
}

.devis-alt-text {
  font-size:  var(--text-sm);
  color:      var(--caramel-dark);
}

.devis-no-whatsapp {
  font-size: var(--text-xs);
  color:     var(--caramel-dark);
  opacity:   0.7;
}

/* ─────────────────────────────────────────────
   12. SECTION CONTACT
   ───────────────────────────────────────────── */
.contact-section {
  position:   relative;
  padding:    var(--space-3xl) 0;
  background: #FFF5EA;
  overflow:   hidden;
}

.contact-blob-1 {
  display:    none;
  position:   absolute;
  width:      400px;
  height:     400px;
  background: var(--caramel);
  opacity:    0.1;
  border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
  top:        -80px;
  right:      -100px;
  animation:  morphBlob 11s ease-in-out infinite;
  pointer-events: none;
}

.contact-layout {
  display:        grid;
  grid-template-columns: 1fr;
  gap:            var(--space-xl);
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

/* Formulaire */
.contact-form-wrapper {
  background:    #fff;
  border:        1px solid rgba(200, 164, 120, 0.3);
  border-radius: var(--radius-lg);
  padding:       var(--space-xl);
  box-shadow:    var(--shadow-sm);
}

/* ── Styles CF7 globaux (devis + contact) ── */
.devis-form-wrapper .wpcf7,
.contact-form-wrapper .wpcf7 {
  padding: var(--space-lg);
}

/* CF7 — largeur et centrage */
.devis-form-wrapper .wpcf7-form,
.contact-form-wrapper .wpcf7-form {
  width: 100%;
  box-sizing: border-box;
}
.devis-form-wrapper .wpcf7-form-control-wrap,
.contact-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.devis-form-wrapper .wpcf7-form-control:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-form-wrapper .wpcf7-form-control:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
  width: 100%;
  box-sizing: border-box;
}
.devis-form-wrapper p,
.contact-form-wrapper p {
  margin-bottom: var(--space-sm);
}

/* Mise en page 2 colonnes */
.cf7-row           { margin-bottom: var(--space-md); }
.cf7-two-cols      { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.cf7-submit        { margin-top: var(--space-lg); }

@media (max-width: 600px) {
  .cf7-two-cols { grid-template-columns: 1fr; }
}

/* Labels */
.devis-form-wrapper label,
.contact-form-wrapper label,
.form-group label {
  display:       block;
  font-size:     var(--text-sm);
  font-weight:   600;
  color:         var(--chocolate);
  margin-bottom: 0.4em;
}

/* Inputs, select, textarea */
.devis-form-wrapper input[type="text"],
.devis-form-wrapper input[type="email"],
.devis-form-wrapper input[type="tel"],
.devis-form-wrapper input[type="date"],
.devis-form-wrapper select,
.devis-form-wrapper textarea,
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.form-group input,
.form-group textarea {
  width:         100%;
  font-family:   var(--font-body);
  font-size:     var(--text-base);
  color:         var(--chocolate);
  background:    var(--cream);
  border:        1.5px solid rgba(200, 164, 120, 0.4);
  border-radius: var(--radius-sm);
  padding:       0.8em 1em;
  transition:    border-color var(--transition), box-shadow var(--transition);
  outline:       none;
  appearance:    none;
}

.devis-form-wrapper input:focus,
.devis-form-wrapper select:focus,
.devis-form-wrapper textarea:focus,
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--caramel-dark);
  box-shadow:   0 0 0 3px rgba(200, 164, 120, 0.2);
}

.devis-form-wrapper textarea,
.contact-form-wrapper textarea,
.form-group textarea {
  min-height: 130px;
  resize:     vertical;
}

/* Select arrow */
.devis-form-wrapper select {
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B3A1F' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 1em center;
  padding-right:       2.5em;
  cursor:              pointer;
}

/* Bouton envoi */
.devis-form-wrapper .wpcf7-submit,
.contact-form-wrapper .wpcf7-submit {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  background:      var(--chocolate);
  color:           var(--cream-text);
  font-family:     var(--font-body);
  font-size:       var(--text-base);
  font-weight:     700;
  padding:         0.9em 2.5em;
  border-radius:   var(--radius-full);
  border:          none;
  cursor:          pointer;
  width:           100%;
  white-space:     normal;
  text-align:      center;
  word-break:      break-word;
  transition:      background var(--transition), transform var(--transition);
  letter-spacing:  0.02em;
}
.devis-form-wrapper .wpcf7-submit:hover,
.contact-form-wrapper .wpcf7-submit:hover {
  background: var(--chocolate-hover);
  transform:  translateY(-2px);
}

/* Cases à cocher et boutons radio — une option par ligne */
.devis-form-wrapper .wpcf7-checkbox,
.devis-form-wrapper .wpcf7-radio,
.contact-form-wrapper .wpcf7-checkbox,
.contact-form-wrapper .wpcf7-radio {
  display:        flex;
  flex-direction: column;
  gap:            0.5rem;
  margin-top:     0.5rem;
}

.devis-form-wrapper .wpcf7-list-item,
.contact-form-wrapper .wpcf7-list-item {
  display:     flex;
  align-items: center;
  gap:         0.6rem;
  margin:      0 !important;
}

.devis-form-wrapper .wpcf7-list-item input[type="checkbox"],
.devis-form-wrapper .wpcf7-list-item input[type="radio"],
.contact-form-wrapper .wpcf7-list-item input[type="checkbox"],
.contact-form-wrapper .wpcf7-list-item input[type="radio"] {
  width:         18px;
  height:        18px;
  min-width:     18px;
  accent-color:  var(--chocolate);
  cursor:        pointer;
  margin:        0;
}

.devis-form-wrapper .wpcf7-list-item-label,
.contact-form-wrapper .wpcf7-list-item-label {
  font-size:   var(--text-base);
  font-weight: 400;
  color:       var(--chocolate);
  cursor:      pointer;
}

/* Messages de validation */
.wpcf7-not-valid-tip    { color: #c0392b; font-size: var(--text-xs); margin-top: 4px; display: block; }
.wpcf7-response-output  { margin-top: var(--space-md) !important; padding: 0.8em 1.2em !important; border-radius: var(--radius-sm) !important; font-size: var(--text-sm) !important; border: none !important; }
.wpcf7-mail-sent-ok     { background: #d4edda; color: #155724; }
.wpcf7-mail-sent-ng,
.wpcf7-aborted          { background: #f8d7da; color: #721c24; }

.form-note {
  font-size:  var(--text-xs);
  color:      var(--caramel-dark);
  margin-top: var(--space-sm);
  font-style: italic;
}

/* Infos de contact */
.contact-info-block {
  display:        flex;
  flex-direction: column;
  gap:            var(--space-md);
}

.contact-info-item {
  display:     flex;
  align-items: center;
  gap:         var(--space-md);
  padding:     var(--space-md);
  background:  var(--dv-contact-card-bg);
  border:      1px solid color-mix(in srgb, var(--dv-contact-accent) 28%, transparent);
  border-radius: var(--radius-md);
  transition:  box-shadow var(--transition);
}

.contact-info-item:hover { box-shadow: var(--shadow-sm); }
.contact-info-item--link {
  text-decoration: none;
  cursor:          pointer;
  display:         flex;
  pointer-events:  auto;
  position:        relative;
  z-index:         2;
  -webkit-tap-highlight-color: rgba(200, 164, 120, 0.2);
  touch-action:    manipulation;
}
.contact-info-item--link:hover { box-shadow: var(--shadow-sm); }

.contact-info-icon {
  width:           44px;
  height:          44px;
  min-width:       44px;
  border-radius:   var(--radius-sm);
  background:      color-mix(in srgb, var(--dv-contact-accent) 16%, transparent);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--dv-contact-accent);
}

.contact-info-icon--whatsapp,
.contact-info-icon--instagram,
.contact-info-icon--facebook {
  background: color-mix(in srgb, var(--dv-contact-accent) 16%, transparent);
  color: var(--dv-contact-accent);
}

.contact-info-label {
  font-size:   var(--text-xs);
  font-weight: 700;
  color:       var(--dv-contact-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
}

.contact-info-link {
  font-size:       var(--text-sm);
  font-weight:     600;
  color:           var(--dv-contact-text);
  text-decoration: none;
  transition:      color var(--transition);
}

.contact-info-link:hover { color: var(--dv-contact-accent); }

/* Masquer le tel sur desktop */
.contact-info-tel-mobile {
  display: flex;
}

@media (min-width: 900px) {
  .contact-info-tel-mobile { display: none; }
}

/* ─────────────────────────────────────────────
   13. FOOTER
   ───────────────────────────────────────────── */
.site-footer {
  --ft-bg: var(--chocolate-dark);
  --ft-text: var(--cream);
  --ft-muted: var(--cream-text);
  --ft-accent: var(--caramel-light);
  background: var(--ft-bg);
  padding-top: var(--space-2xl);
}

.footer-inner {
  display:   grid;
  grid-template-columns: 1fr;
  gap:       var(--space-xl);
  max-width: 1200px;
  margin:    0 auto;
  padding:   0 var(--space-md) var(--space-xl);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 0 var(--space-xl) var(--space-xl);
  }
}

/* Logo footer */
.footer-logo img { max-height: 60px; filter: brightness(0) invert(1) sepia(1) saturate(0.5) hue-rotate(0deg); }
.footer-logo-text {
  font-family:  var(--font-display);
  font-size:    var(--text-2xl);
  font-weight:  700;
  color:        var(--ft-accent);
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size:   var(--text-sm);
  color:       var(--ft-muted);
  opacity:     0.85;
  line-height: 1.6;
  margin-top:  var(--space-sm);
}
.footer-tagline span { color: var(--ft-accent); font-weight: 600; }

/* Navigation footer */
.footer-nav-title {
  font-family:    var(--font-menu, var(--font-display));
  font-size:      var(--text-sm);
  font-weight:    700;
  letter-spacing: 0.06em;
  color:          var(--ft-accent);
  margin-bottom:  var(--space-md);
}

.footer-nav ul {
  display:        flex;
  flex-direction: column;
  gap:            0.6rem;
}

.footer-nav a {
  font-size:       var(--text-sm);
  color:           var(--ft-muted);
  opacity:         0.88;
  text-decoration: none;
  transition:      color var(--transition), opacity var(--transition);
}

.footer-nav a:hover { color: var(--ft-accent); opacity: 1; }

/* Social */
.social-links {
  display:   flex;
  flex-direction: column;
  gap:       var(--space-sm);
  margin-bottom: var(--space-md);
}

.social-link {
  display:         flex;
  align-items:     center;
  gap:             0.6rem;
  font-size:       var(--text-sm);
  font-weight:     600;
  color:           var(--ft-muted) !important;
  text-decoration: none;
  transition:      color var(--transition);
}

.social-link:hover { color: var(--ft-accent) !important; }
.social-link svg { flex-shrink: 0; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 248, 238, 0.12);
}

.footer-bottom-inner {
  display:         flex;
  flex-direction:  column;
  gap:             0.5rem;
  align-items:     center;
  text-align:      center;
  max-width:       1200px;
  margin:          0 auto;
  padding:         var(--space-md) var(--space-md);
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
  }
}

.footer-copyright {
  font-size: var(--text-xs);
  color:     var(--cream-text);
  opacity:   0.5;
}

.footer-copyright a {
  color:           var(--cream-text);
  text-decoration: none;
}
.footer-copyright a:hover { color: var(--caramel); }

.footer-sep {
  margin: 0 0.5em;
  opacity: 0.4;
}

.footer-made {
  font-size: var(--text-xs);
  color:     #7A4520;
}

/* ─────────────────────────────────────────────
   14. ANIMATIONS
   ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity:   0;
    transform: translateY(30px);
  }
  to {
    opacity:   1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(2deg); }
  66%       { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 10px) scale(0.97); }
}

@keyframes morphBlob {
  0%, 100% { border-radius: 43% 57% 63% 37% / 38% 52% 48% 62%; }
  25%       { border-radius: 58% 42% 45% 55% / 55% 45% 55% 45%; }
  50%       { border-radius: 38% 62% 52% 48% / 62% 38% 62% 38%; }
  75%       { border-radius: 55% 45% 38% 62% / 45% 55% 45% 55%; }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Reveal on scroll */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity:    0;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity:   1;
  transform: none;
}

/* ─────────────────────────────────────────────
   15. MENTIONS LÉGALES (page séparée)
   ───────────────────────────────────────────── */
.mentions-page {
  padding:    calc(var(--header-height) + var(--space-2xl)) 0 var(--space-3xl);
}

.mentions-content {
  max-width:   800px;
  margin:      0 auto;
  padding:     0 var(--space-md);
}

.mentions-content h1 { margin-bottom: var(--space-xl); }
.mentions-content h2 {
  font-size:    var(--text-xl);
  margin:       var(--space-xl) 0 var(--space-sm);
  color:        var(--chocolate);
}
.mentions-content p, .mentions-content li {
  font-size:  var(--text-base);
  color:      #6b4a32;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.mentions-content a { color: var(--caramel-dark); text-decoration: underline; }


/* ─────────────────────────────────────────────
   16. PAGE 404
   ───────────────────────────────────────────── */
.error-404-page {
  min-height:      80vh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  padding:         calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.error-404-emoji { font-size: 5rem; margin-bottom: var(--space-md); }
.error-404-page h1 { margin-bottom: var(--space-sm); }
.error-404-page p { color: var(--caramel-dark); margin-bottom: var(--space-lg); }

/* ─────────────────────────────────────────────
   17. UTILITAIRES & ACCESSIBILITÉ
   ───────────────────────────────────────────── */

/* Skip to content */
.skip-link {
  position:   absolute;
  top:        -100%;
  left:       var(--space-sm);
  background: var(--chocolate);
  color:      var(--cream-text);
  padding:    0.75em 1.5em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size:  var(--text-sm);
  z-index:    9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Masquer visuellement mais accessible lecteur d'écran */
.sr-only {
  position:    absolute;
  width:       1px;
  height:      1px;
  padding:     0;
  margin:      -1px;
  overflow:    hidden;
  clip:        rect(0,0,0,0);
  white-space: nowrap;
  border:      0;
}

/* Responsive helpers */
.show-mobile { display: block; }
.hide-mobile { display: none; }

@media (min-width: 768px) {
  .show-mobile { display: none; }
  .hide-mobile { display: block; }
}

/* Overflow protection */
#page-wrapper {
  overflow-x: hidden;
  padding-top: var(--header-height);
}

/* ─────────────────────────────────────────────
   18. RESPONSIVE — AJUSTEMENTS
   ───────────────────────────────────────────── */
@media (max-width: 599px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-title { font-size: clamp(1.75rem, 6vw, 2.25rem); }

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

  .date-card {
    flex-wrap:  wrap;
  }

  .date-card-maps {
    width:          100%;
    justify-content: center;
    margin-top:     0.5rem;
  }

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

  .devis-reassurance {
    flex-direction: column;
  }

  .reassurance-item { min-width: unset; }
}

@media (max-width: 767px) {
  /* Apropos */
  .apropos-layout { grid-template-columns: 1fr; }
  .apropos-content { text-align: center; }
  .apropos-photo-wrapper { max-width: min(var(--img-apropos-max, 560px), min(280px, 92vw)); }

  /* Contact (ancienne section) */
  .contact-layout { grid-template-columns: 1fr; }

  /* Devis + contact fusionné */
  .devis-contact-layout { grid-template-columns: 1fr; }
  .contact-info-col { text-align: center; }
  .contact-info-block { align-items: stretch; }
  .contact-info-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: var(--space-md);
    justify-content: flex-start;
  }
  .btn-google-review--large {
    display:         flex;
    justify-content: center;
    white-space:     normal;
    text-align:      center;
    width:           100%;
  }

  /* Header mobile */
  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-inner { position: relative; }
  .hamburger { width: 36px; height: 36px; padding: 4px; }
  .hamburger-bar { width: 20px; }
  .header-cta { font-size: var(--text-xs); padding: 0.5em 0.9em; }

  /* Offres */
  .offre-card { text-align: center; }
  .offre-card-icon { margin: 0 auto; }
  .offre-card-tag { align-self: center; }
  .offres-cta { justify-content: center; }

  /* Dates */
  .date-card { text-align: center; }
  .date-card-maps { justify-content: center; }

  /* Footer */
  .footer-col { text-align: center; }
  .footer-nav ul { align-items: center; }
  .social-links { justify-content: center; }

  /* Boutons */
  .btn-large { max-width: 100%; width: 100%; justify-content: center; }

  /* Liens contact cliquables mobile */
  a.contact-info-item--link { display: flex; -webkit-tap-highlight-color: rgba(0,0,0,0.1); }

  /* Formulaire CF7 */
  .devis-form-wrapper .wpcf7,
  .contact-form-wrapper .wpcf7 { padding: var(--space-md); }
  .devis-form-wrapper,
  .contact-form-wrapper { overflow: hidden; }
}

/* ─────────────────────────────────────────────
   19. PRINT
   ───────────────────────────────────────────── */
@media print {
  .site-header,
  .hamburger,
  .mobile-menu,
  .hero-blob,
  .hero-deco,
  .site-footer { display: none !important; }

  * { color: #000 !important; background: #fff !important; }
  a::after { content: ' (' attr(href) ')'; }
}

/* ═══════════════════════════════════════════════════════
   DRIPS CHOCOLAT + COULEURS BRILLANTES
   ═══════════════════════════════════════════════════════ */

/* ── Diviseurs en gouttes ── */
.choco-drip {
  display:        block;
  line-height:    0;
  font-size:      0;
  margin-top:     -2px;
  margin-bottom:  -2px;
  pointer-events: none;
  position:       relative;
  z-index:        5;
}
.choco-drip svg {
  display: block;
  width:   100%;
  height:  auto;
}

/* ── Animations brillantes ── */
@keyframes shine-sweep {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%)  skewX(-20deg); }
}

@keyframes gold-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1;   }
}

@keyframes shimmer-border {
  0%   { background-position: 200% 50%; }
  100% { background-position: 0% 50%;   }
}

/* ── Boutons primaires brillants ── */
.btn-primary,
.btn.btn-primary {
  background:    linear-gradient(135deg, #C8843A 0%, #A0582A 40%, #C8843A 70%, #E8A050 100%);
  background-size: 200% auto;
  color:         var(--btn-primary-text, var(--cream-text));
  animation:     shimmer-border 4s linear infinite;
  box-shadow:    0 4px 18px rgba(168, 88, 40, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  border:        none;
  position:      relative;
  overflow:      hidden;
}

.btn-primary::before,
.btn.btn-primary::before {
  content:    '';
  position:   absolute;
  top:        0; left: 0;
  width:      50%;
  height:     100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform:  translateX(-120%) skewX(-20deg);
  pointer-events: none;
}

.btn-primary:hover::before,
.btn.btn-primary:hover::before {
  animation: shine-sweep 0.65s ease forwards;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(168, 88, 40, 0.6), inset 0 1px 0 rgba(255,255,255,0.25);
  transform:  translateY(-2px);
}

/* En-tête : dégradé du bouton devis basé sur --hdr-cta */
.site-header .btn-primary,
.site-header .btn.btn-primary {
  background: linear-gradient(135deg,
    var(--hdr-cta) 0%,
    color-mix(in srgb, var(--hdr-cta) 68%, #3d1c0a) 40%,
    var(--hdr-cta) 70%,
    color-mix(in srgb, var(--hdr-cta) 84%, #fff) 100%);
  background-size: 200% auto;
  color: var(--hdr-cta-text);
}

.site-header .btn-primary:hover,
.site-header .btn.btn-primary:hover {
  color: var(--hdr-cta-text);
}

.site-header .btn-primary:hover,
.site-header .btn.btn-primary:hover {
  box-shadow: 0 6px 28px color-mix(in srgb, var(--hdr-cta) 50%, transparent), inset 0 1px 0 rgba(255,255,255,0.25);
}

.devis-section .btn-primary,
.devis-section .btn.btn-primary,
.devis-section .btn-caramel {
  color: var(--dv-cta-text);
}

.devis-section .btn-primary:hover,
.devis-section .btn.btn-primary:hover,
.devis-section .btn-caramel:hover {
  color: var(--dv-cta-text);
}

/* ── Titres avec shimmer doré ── */
.hero-title em,
.section-title em {
  display: inline-block;
  padding: 0 0.08em 0.14em;
  margin: 0 -0.03em -0.12em;
  background:      linear-gradient(90deg, #C8843A, #F0C060, #C8843A, #E8A050, #C8843A);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-border 5s linear infinite;
}

/* Titres clairs (sections sombres) */
.section-title--light em {
  background:      linear-gradient(90deg, #F5E6C8, #FFD580, #F5E6C8, #FFE090, #F5E6C8);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-border 5s linear infinite;
}

.devis-section .section-title em {
  background: linear-gradient(
    90deg,
    var(--dv-title-em),
    color-mix(in srgb, var(--dv-title-em) 50%, #fff),
    var(--dv-title-em),
    color-mix(in srgb, var(--dv-title-em) 72%, #f0c060),
    var(--dv-title-em)
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Header logo : légère lueur au survol ── */
.header-logo:hover .logo-img {
  filter:     drop-shadow(0 0 8px rgba(200,164,120,0.7));
  transition: filter 0.3s ease;
}

/* ── Cartes dates : reflet brillant ── */
.date-card-date {
  background: linear-gradient(135deg, #D4956A 0%, #C8843A 50%, #E8A050 100%);
  box-shadow: 0 4px 14px rgba(168,88,40,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ── Section hero : particules décoratives ── */

/* ── WhatsApp button brillant ── */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1EBE55 50%, #25D366 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::before {
  content:    '';
  position:   absolute;
  top: 0; left: 0;
  width:      50%;
  height:     100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform:  translateX(-120%) skewX(-20deg);
}
.btn-whatsapp:hover::before {
  animation: shine-sweep 0.65s ease forwards;
}
.btn-whatsapp:hover {
  background-position: right center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ═══════════════════════════════════════════════════════
   20. FINITIONS BRILLANTES GLOBALES
   Reflets doux relies aux couleurs personnalisables.
   ═══════════════════════════════════════════════════════ */
:root {
  --gloss-white-soft: rgba(255, 255, 255, 0.12);
  --gloss-white:      rgba(255, 255, 255, 0.22);
  --gloss-gold:       color-mix(in srgb, var(--caramel) 34%, transparent);
}

body {
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--caramel) 16%, transparent), transparent 34rem),
    linear-gradient(180deg, color-mix(in srgb, var(--cream) 92%, #fff), var(--cream));
}

.site-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28), transparent 70%),
    linear-gradient(90deg, color-mix(in srgb, var(--hdr-bg) 86%, #fff), var(--hdr-bg));
  backdrop-filter: blur(12px) saturate(1.08);
}

.hero-section,
.offres-section,
.apropos-section,
.gallery-section,
.presse-section,
.dates-section,
.devis-section,
.site-footer {
  isolation: isolate;
}

.hero-section > .hero-inner,
.offres-section > .container,
.apropos-section > .container,
.gallery-section > .container,
.presse-section > .container,
.dates-section > .container,
.devis-section > .container,
.site-footer > * {
  position: relative;
  z-index: 2;
}

.hero-section::after,
.offres-section::after,
.apropos-section::after,
.gallery-section::after,
.presse-section::after,
.devis-section::after,
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.08) 48%, transparent 58% 100%);
  mix-blend-mode: soft-light;
  opacity: 0.75;
}

.hero-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--hr-bg) 88%, #fff), var(--hr-bg) 58%, color-mix(in srgb, var(--hr-bg) 82%, var(--hr-accent)));
}

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

.offres-section::after {
  display: none;
}

.apropos-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--ap-bg) 90%, #fff), var(--ap-bg));
}

.gallery-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--gl-bg) 92%, #fff), var(--gl-bg) 58%, color-mix(in srgb, var(--gl-bg) 90%, var(--gl-accent)));
}

.presse-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--pr-bg) 92%, #fff), var(--pr-bg) 55%, color-mix(in srgb, var(--pr-bg) 76%, #000));
}

.dates-section {
  background: linear-gradient(145deg, color-mix(in srgb, var(--dt-bg) 88%, #fff), var(--dt-bg) 58%, color-mix(in srgb, var(--dt-bg) 72%, #000));
}

.devis-section {
  background: linear-gradient(145deg, color-mix(in srgb, var(--dv-bg) 88%, #fff), var(--dv-bg) 65%, color-mix(in srgb, var(--dv-bg) 90%, var(--dv-accent)));
}

.site-footer {
  background: linear-gradient(145deg, color-mix(in srgb, var(--ft-bg) 90%, #fff), var(--ft-bg) 58%, color-mix(in srgb, var(--ft-bg) 72%, #000));
}

.offre-card,
.presse-card,
.date-card,
.value-item,
.devis-form-wrapper,
.contact-info-item,
.reassurance-item,
.social-link {
  position: relative;
}

.offre-card::after,
.presse-card::after,
.value-item::after,
.devis-form-wrapper::after,
.contact-info-item::after,
.reassurance-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.38) 0%, transparent 38%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.26), transparent 30%);
  opacity: 0.55;
}

.offre-card > *,
.presse-card > *,
.date-card > *,
.value-item > *,
.devis-form-wrapper > *,
.contact-info-item > *,
.reassurance-item > * {
  position: relative;
  z-index: 2;
}

.offre-card:hover,
.presse-card:hover,
.date-card:hover,
.value-item:hover,
.contact-info-item:hover {
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero-img-frame,
.chariot-img-wrap,
.devis-form-wrapper,
.apropos-photo {
  filter: saturate(1.05) contrast(1.02);
}

.hero-img-frame::after,
.chariot-img-wrap::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.10), transparent 20%);
  z-index: 2;
}

.apropos-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.34), transparent 36%),
    radial-gradient(circle at 76% 12%, rgba(255,255,255,0.22), transparent 24%);
}

.btn,
.btn-primary,
.btn-caramel,
.btn-whatsapp,
.date-card-maps {
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
  box-shadow:
    0 6px 20px color-mix(in srgb, var(--caramel) 30%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.date-card-date {
  background: linear-gradient(135deg, color-mix(in srgb, var(--dt-accent) 80%, #fff) 0%, var(--dt-accent) 52%, color-mix(in srgb, var(--dt-accent) 76%, #3d1c0a) 100%);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--dt-accent) 38%, transparent), inset 0 1px 0 rgba(255,255,255,0.35);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn.btn-primary,
  .btn-caramel,
  .hero-title em,
  .section-title em {
    animation: none !important;
  }
}
