/* ============================================
   MAISON LEFÈVRE — gourmand & chaleureux
   Palette : crème beurre, cacao profond, rouge fraise, or
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream:        #f5ead0;
    --cream-soft:   #faf3e0;
    --cream-warm:   #ecd9a8;
    --ivory:        #fdf8ee;
    --cocoa:        #3e2419;
    --cocoa-dark:   #2a1810;
    --cocoa-warm:   #5a3624;
    --berry:        #c8364e;
    --berry-dark:   #a02438;
    --gold:         #d4a658;
    --gold-dark:    #a68040;
    --text:         #2a1810;
    --text-soft:    #5a3e2e;
    --text-muted:   #8a6e58;
    --white:        #ffffff;
    --border:       rgba(62, 36, 25, 0.12);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-hand:    'Caveat', cursive;
    --font-menu:    'Cormorant Garamond', Georgia, serif;
    --container: 1280px;
    --header-h: 84px;
    --radius: 6px;
    --radius-lg: 14px;
    --radius-xl: 24px;
    --shadow-sm: 0 4px 18px rgba(62, 36, 25, 0.07);
    --shadow-md: 0 14px 40px rgba(62, 36, 25, 0.1);
    --shadow-lg: 0 30px 80px rgba(62, 36, 25, 0.18);
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cocoa); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--berry); }

.skip-link { position: absolute; left: -9999px; background: var(--berry); color: var(--ivory); padding: 12px 20px; z-index: 9999; }
.skip-link:focus { left: 10px; top: 10px; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* Canvas farine fixe sur tout le site */
#flour-canvas {
    position: fixed;
    inset: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    color: var(--cocoa);
    letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--berry);
}

p { line-height: 1.75; color: var(--text-soft); }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--berry);
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 22px; height: 1px;
    background: var(--berry);
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    line-height: 1;
    border-radius: 40px;
}
.btn-primary {
    background: var(--berry);
    color: var(--ivory);
    box-shadow: 0 6px 22px rgba(200, 54, 78, 0.3);
}
.btn-primary:hover {
    background: var(--berry-dark);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(200, 54, 78, 0.4);
}
.btn-large { padding: 20px 44px; font-size: 0.88rem; }
.btn-small { padding: 12px 26px; font-size: 0.78rem; }
.btn-full  { width: 100%; padding: 18px; }

.btn-link, .btn-link-dark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 0;
    border-bottom: 1px solid rgba(253, 248, 238, 0.3);
}
.btn-link { color: var(--ivory); }
.btn-link:hover { color: var(--gold); border-color: var(--gold); }
.btn-link-dark { color: var(--cocoa); border-bottom-color: var(--border); }
.btn-link-dark:hover { color: var(--berry); border-color: var(--berry); }
.btn-link .arrow, .btn-link-dark .arrow { transition: transform 0.3s ease; }
.btn-link:hover .arrow, .btn-link-dark:hover .arrow { transform: translateX(6px); }

/* ============================================
   TOP BAR + HEADER
   ============================================ */
.top-bar {
    background: var(--cocoa);
    color: var(--cream);
    font-size: 0.82rem;
    padding: 10px 0;
    position: relative;
    z-index: 51;
}
.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-item {
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
a.top-bar-item:hover { color: var(--gold); }
.top-bar-sep { opacity: 0.4; }
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ab04c;
    box-shadow: 0 0 0 3px rgba(106, 176, 76, 0.25);
    animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 0 3px rgba(106, 176, 76, 0.25); }
    50%      { box-shadow: 0 0 0 6px rgba(106, 176, 76, 0.12); }
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 51;
    background: rgba(253, 248, 238, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.site-logo .site-title-link {
    display: flex;
    flex-direction: column;
    color: var(--cocoa);
    line-height: 1;
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
    color: var(--cocoa);
}
.logo-tagline {
    font-size: 0.7rem;
    color: var(--berry);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 700;
}

.nav-list { list-style: none; display: flex; gap: 32px; align-items: center; }
.nav-list a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cocoa);
    padding: 6px 0;
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--berry);
    transition: width 0.3s ease;
}
.nav-list a:hover { color: var(--berry); }
.nav-list a:hover::after { width: 100%; }
.nav-cta {
    background: var(--berry) !important;
    color: var(--ivory) !important;
    padding: 10px 22px !important;
    border-radius: 40px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--berry-dark) !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--cocoa); transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   HERO ARDOISE — tableau noir avec carte du jour
   ============================================ */
.hero-ardoise {
    position: relative;
    min-height: calc(100vh - var(--header-h) - 40px);
    background:
        radial-gradient(ellipse at 25% 25%, rgba(245, 234, 208, 0.06), transparent 60%),
        radial-gradient(ellipse at 75% 80%, rgba(212, 166, 88, 0.08), transparent 55%),
        linear-gradient(135deg, #1a1410 0%, #2a1810 100%);
    color: var(--cream);
    padding: 90px 0 70px;
    overflow: hidden;
}
.ardoise-noise {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        radial-gradient(circle, rgba(245, 234, 208, 0.04) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(245, 234, 208, 0.025) 1px, transparent 1.5px);
    background-size: 8px 8px, 14px 14px;
    background-position: 0 0, 4px 4px;
    pointer-events: none;
    mix-blend-mode: overlay;
}
.ardoise-frame {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(212, 166, 88, 0.25);
    pointer-events: none;
}
.ardoise-frame::before, .ardoise-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 166, 88, 0.4);
}
.ardoise-frame::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.ardoise-frame::after  { bottom: -8px; right: -8px; border-left: none; border-top: none; }

.ardoise-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ardoise-header {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--gold);
}
.ardoise-divider { color: var(--berry); font-size: 1.1rem; }
.ardoise-time {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.6rem;
}

.ardoise-title {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 0.92;
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.ardoise-title .line-1 { display: block; font-size: clamp(3.5rem, 9vw, 7rem); }
.ardoise-title .line-2 { display: block; font-size: clamp(3.5rem, 9vw, 7rem); }
.ardoise-title em { font-style: italic; color: var(--gold); }

.ardoise-tagline {
    font-family: var(--font-hand);
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    color: var(--berry);
    margin-bottom: 50px;
    transform: rotate(-1deg);
}

.ardoise-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 920px;
    margin: 0 auto 50px;
    text-align: left;
}
.board-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 26px;
    border: 1px solid rgba(245, 234, 208, 0.15);
    border-radius: 8px;
    background: rgba(245, 234, 208, 0.025);
    transition: all 0.3s ease;
    position: relative;
}
.board-item:hover {
    border-color: rgba(212, 166, 88, 0.4);
    background: rgba(245, 234, 208, 0.05);
}
.board-time {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold);
    line-height: 1;
    min-width: 56px;
}
.board-product h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 2px;
}
.board-product p {
    font-size: 0.82rem;
    color: rgba(245, 234, 208, 0.85);
    margin: 0;
    font-weight: 500;
}
.board-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--berry);
    margin-top: 4px;
}
.board-status {
    text-align: right;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 234, 208, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-dot-warm, .status-dot-fresh, .status-dot-soon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.status-dot-warm  { background: #ff6b35; box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2); animation: pulseWarm 2s infinite; }
.status-dot-fresh { background: var(--gold); box-shadow: 0 0 0 3px rgba(212, 166, 88, 0.2); }
.status-dot-soon  { background: rgba(245, 234, 208, 0.4); }
@keyframes pulseWarm {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2); }
    50%      { box-shadow: 0 0 0 7px rgba(255, 107, 53, 0.05); }
}

.ardoise-actions {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cream {
    background: var(--cream);
    color: var(--cocoa);
    box-shadow: 0 6px 22px rgba(245, 234, 208, 0.15);
}
.btn-cream:hover {
    background: var(--ivory);
    color: var(--cocoa);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(245, 234, 208, 0.2);
}
.btn-link-cream {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    padding: 4px 0;
    border-bottom: 1px solid rgba(212, 166, 88, 0.3);
}
.btn-link-cream:hover { color: var(--cream); border-color: var(--cream); }
.btn-link-cream .arrow { transition: transform 0.3s ease; }
.btn-link-cream:hover .arrow { transform: translateX(6px); }

.doodle {
    position: absolute;
    pointer-events: none;
}
.doodle-flour {
    width: 90px; height: 90px;
    top: 16%; left: 6%;
    transform: rotate(-12deg);
    animation: doodleFloat 8s ease-in-out infinite;
}
.doodle-arrow {
    width: 130px; height: 80px;
    bottom: 30%; right: 8%;
    transform: rotate(8deg) scaleX(-1);
    animation: doodleFloat 9s ease-in-out infinite reverse;
}
@keyframes doodleFloat {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50%      { transform: rotate(-10deg) translateY(-10px); }
}

/* (Ancien .hero-bakery conserve pour fallback) */
.hero-bakery {
    position: relative;
    min-height: calc(100vh - var(--header-h) - 40px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 140px 0 80px;
    color: var(--ivory);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowKenBurns 20s ease-in-out infinite;
    will-change: transform;
}
@keyframes slowKenBurns {
    0%, 100% { transform: scale(1.05); }
    50%      { transform: scale(1.18) translateX(-1%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(42, 24, 16, 0.4) 0%,
            rgba(42, 24, 16, 0.15) 30%,
            rgba(42, 24, 16, 0.3) 60%,
            rgba(42, 24, 16, 0.85) 100%),
        radial-gradient(ellipse at 30% 70%, rgba(200, 54, 78, 0.25) 0%, transparent 60%);
    z-index: 1;
}

/* Steam */
.steam-wrap {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 300px;
    z-index: 2;
    pointer-events: none;
}
.steam {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(253, 248, 238, 0.85) 0%, rgba(253, 248, 238, 0.15) 50%, transparent 75%);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    animation: steamRise 5s ease-in-out infinite;
}
.steam-1 { left: 20%; animation-delay: 0s; }
.steam-2 { left: 45%; animation-delay: 1.3s; width: 38px; height: 170px; }
.steam-3 { left: 70%; animation-delay: 2.6s; }
.steam-4 { left: 35%; animation-delay: 3.9s; width: 28px; height: 120px; }
@keyframes steamRise {
    0%   { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
    20%  { opacity: 0.7; }
    60%  { transform: translateY(-120px) translateX(12px) scale(1.2); opacity: 0.4; }
    100% { transform: translateY(-260px) translateX(-16px) scale(1.8); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}
.kicker-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ivory);
    margin-bottom: 36px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero-title .line-1,
.hero-title .line-2 {
    display: block;
    font-size: clamp(3.5rem, 10vw, 8.5rem);
}
.hero-title .line-2 {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
    margin-left: clamp(30px, 6vw, 100px);
}

.hero-lead {
    font-size: 1.1rem;
    color: rgba(253, 248, 238, 0.9);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.65;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tag-pill {
    padding: 8px 18px;
    background: rgba(253, 248, 238, 0.15);
    border: 1px solid rgba(253, 248, 238, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ivory);
    letter-spacing: 0.5px;
}

.hero-stamp {
    position: absolute;
    top: 25%;
    right: 5%;
    width: 160px;
    height: 160px;
    z-index: 4;
    animation: stampSpin 28s linear infinite;
    pointer-events: none;
}
.hero-stamp svg { width: 100%; height: 100%; }
@keyframes stampSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.hero-scroll-ind {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-scroll-ind .scroll-bar {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50%      { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-band {
    background: var(--cocoa);
    color: var(--ivory);
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--cocoa-dark);
}
.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marqueeScroll 45s linear infinite;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
}
.marquee-track .dot { color: var(--gold); font-size: 0.8em; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 140px 0; position: relative; z-index: 1; }
.section, .hero-ardoise { scroll-margin-top: var(--header-h); }

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 22px;
}
.section-header .section-label { margin-left: 50%; transform: translateX(-50%); }
.section-intro { color: var(--text-soft); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* ============================================
   QUICK INFO BAND
   ============================================ */
.quick-info-band {
    background: var(--cream);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 2;
}
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.quick-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text-soft);
}
.quick-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    filter: grayscale(0.1);
}
.quick-text { display: flex; flex-direction: column; line-height: 1.3; }
.quick-text strong { color: var(--cocoa); font-weight: 700; font-size: 0.95rem; }

/* ============================================
   CARTE DU JOUR — menu format papier ardoise
   ============================================ */
.carte-section {
    background: var(--cream-soft);
    background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 28px, rgba(62, 36, 25, 0.03) 28px, rgba(62, 36, 25, 0.03) 29px);
}
.carte-paper {
    max-width: 980px;
    margin: 0 auto;
    background: var(--ivory);
    padding: 70px 80px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    position: relative;
}
.carte-paper::before, .carte-paper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.12), transparent 60%);
    left: 0;
}
.carte-paper::before { top: -12px; }
.carte-paper::after  { bottom: -12px; }

.carte-category {
    margin-bottom: 50px;
}
.carte-category:last-child { margin-bottom: 0; }
.cat-title {
    font-family: var(--font-menu);
    font-size: 2rem;
    font-weight: 500;
    font-style: italic;
    color: var(--berry);
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.cat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}
.cat-subtitle {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--border);
}

.carte-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.carte-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: baseline;
    transition: opacity 0.3s ease;
}
.carte-list li.sold-out {
    opacity: 0.4;
    text-decoration: line-through;
    text-decoration-color: var(--berry);
}
.carte-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.carte-item-info strong {
    font-family: var(--font-menu);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cocoa);
    display: flex;
    align-items: center;
    gap: 8px;
}
.carte-item-info span {
    font-size: 0.86rem;
    color: var(--text-soft);
    font-style: italic;
}
.badge-bio, .badge-house, .badge-season {
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    background: var(--gold);
    color: var(--cocoa);
    line-height: 1;
    vertical-align: middle;
}
.badge-house  { background: var(--berry); color: var(--ivory); }
.badge-season { background: #6b8e7f; color: var(--ivory); }

.carte-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(62, 36, 25, 0.25);
    margin: 0 4px;
    transform: translateY(-4px);
    min-width: 30px;
}
.carte-price {
    font-family: var(--font-menu);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--berry);
    white-space: nowrap;
}
.sold-out .carte-price { color: var(--text-muted); }

.carte-note {
    margin-top: 50px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}
.carte-note em { font-style: normal; font-weight: 700; color: var(--cocoa); margin-right: 6px; }

/* ============================================
   VITRINE : galerie polaroid eparpillee
   ============================================ */
.vitrine-section {
    background: #f0e4c8;
    background-image:
        linear-gradient(120deg, #f0e4c8 0%, #ecd9a8 50%, #f5ead0 100%);
    position: relative;
    overflow: hidden;
}
.vitrine-bg-noise {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(62, 36, 25, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 166, 88, 0.06) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(62, 36, 25, 0.015) 100px, rgba(62, 36, 25, 0.015) 101px);
    pointer-events: none;
}

.polaroid-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 28px;
    padding: 30px 0 50px;
    perspective: 1200px;
    position: relative;
}

.polaroid {
    background: var(--ivory);
    padding: 14px 14px 60px;
    box-shadow:
        0 1px 2px rgba(62, 36, 25, 0.08),
        0 12px 28px rgba(62, 36, 25, 0.16);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    position: relative;
    will-change: transform;
}
.polaroid::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    pointer-events: none;
}
/* Rotations naturelles pour effet "eparpille" */
.polaroid.p-1 { transform: rotate(-3.5deg) translateY(0); }
.polaroid.p-2 { transform: rotate(2.5deg) translateY(20px); }
.polaroid.p-3 { transform: rotate(-1.5deg) translateY(-10px); }
.polaroid.p-4 { transform: rotate(4deg) translateY(15px); }
.polaroid.p-5 { transform: rotate(-2.5deg) translateY(5px); }
.polaroid.p-6 { transform: rotate(3deg) translateY(-15px); }
.polaroid.p-7 { transform: rotate(-4deg) translateY(10px); }
.polaroid.p-8 { transform: rotate(1.5deg) translateY(-8px); }

.polaroid:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05) !important;
    box-shadow:
        0 4px 8px rgba(62, 36, 25, 0.1),
        0 24px 48px rgba(62, 36, 25, 0.28);
    z-index: 10;
}

.polaroid-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--cream-warm);
    margin-bottom: 18px;
    position: relative;
}
.polaroid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 0.6s ease;
}
.polaroid:hover .polaroid-photo img { transform: scale(1.08); }

.polaroid figcaption {
    text-align: center;
    line-height: 1.3;
}
.caption-name {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--cocoa);
    letter-spacing: 0.5px;
}
.caption-note {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--berry);
    font-style: italic;
    margin-top: 2px;
}

/* Petite "scotch" en haut du polaroid */
.polaroid-tape {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 22px;
    background:
        linear-gradient(135deg, rgba(212, 166, 88, 0.5) 0%, rgba(212, 166, 88, 0.7) 100%);
    box-shadow: 0 2px 4px rgba(62, 36, 25, 0.15);
    backdrop-filter: blur(2px);
}
.polaroid:nth-child(2n) .polaroid-tape {
    background: linear-gradient(135deg, rgba(200, 54, 78, 0.45) 0%, rgba(200, 54, 78, 0.55) 100%);
}

.vitrine-cta {
    text-align: center;
    margin-top: 30px;
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--cocoa);
}
.vitrine-cta a {
    color: var(--berry);
    border-bottom: 2px solid var(--berry);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}
.vitrine-cta a:hover { color: var(--berry-dark); border-color: var(--berry-dark); }

/* ============================================
   FABRICATION : Le pain en 24h (timeline horizontal)
   ============================================ */
.fabrication-section {
    background: linear-gradient(180deg, var(--cocoa) 0%, var(--cocoa-dark) 100%);
    color: var(--cream);
    padding: 140px 0;
    overflow: hidden;
}
.fabrication-section .section-label { color: var(--gold); }
.fabrication-section .section-label::before { background: var(--gold); }
.fabrication-section .section-header h2 { color: var(--cream); }
.fabrication-section .section-header h2 em { color: var(--gold); }
.fabrication-section .section-intro { color: rgba(245, 234, 208, 0.75); }

.fabrication-track-wrap {
    position: relative;
    margin: 60px 0 50px;
    padding: 0 40px;
    overflow: hidden;
}
.fabrication-track-wrap::before {
    content: '';
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(212, 166, 88, 0.4) 8%, rgba(212, 166, 88, 0.4) 92%, transparent 100%);
    z-index: 1;
}
.fabrication-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 30px 60px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.fabrication-track::-webkit-scrollbar { height: 6px; }
.fabrication-track::-webkit-scrollbar-track { background: rgba(245, 234, 208, 0.05); }
.fabrication-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.fab-step {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: rgba(245, 234, 208, 0.04);
    border: 1px solid rgba(245, 234, 208, 0.12);
    border-radius: 14px;
    padding: 100px 28px 28px;
    position: relative;
    transition: all 0.4s ease;
}
.fab-step:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    background: rgba(245, 234, 208, 0.08);
}
.fab-step-time {
    position: absolute;
    top: 24px;
    left: 28px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.fab-step-icon {
    position: absolute;
    top: 28px;
    right: 24px;
    font-size: 2.4rem;
    filter: grayscale(0.1);
}
.fab-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 28px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--cocoa);
    z-index: 2;
}
.fab-step h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.fab-step p {
    font-size: 0.92rem;
    color: rgba(245, 234, 208, 0.92);
    line-height: 1.6;
    font-weight: 500;
}

.fabrication-footer {
    text-align: center;
}
.fabrication-footer p {
    color: rgba(245, 234, 208, 0.8);
    font-size: 1rem;
}
.fabrication-footer strong { color: var(--gold); font-weight: 700; }
.fabrication-footer a { color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.fabrication-footer a:hover { color: var(--gold); }

/* ============================================
   SPÉCIALITÉS (legacy, conserve mais cache)
   ============================================ */
.specialites-section { background: var(--cream-soft); }
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}
.specialty-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.specialty-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.specialty-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.specialty-card:hover .specialty-visual img { transform: scale(1.06); }
.specialty-num {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--ivory);
    background: rgba(62, 36, 25, 0.75);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 30px;
}
.specialty-body { padding: 32px 34px 36px; }
.specialty-body h3 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--cocoa);
}
.specialty-body p {
    color: var(--text-soft);
    margin-bottom: 22px;
    font-size: 0.96rem;
}
.specialty-products {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}
.specialty-products li {
    font-size: 0.88rem;
    color: var(--cocoa);
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}
.specialty-products li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* ============================================
   FEATURED / SIGNATURE DU MOIS
   ============================================ */
.featured-section {
    background: linear-gradient(135deg, var(--cocoa) 0%, var(--cocoa-dark) 100%);
    color: var(--ivory);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.featured-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 166, 88, 0.15), transparent 70%);
    pointer-events: none;
}
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.featured-visual {
    position: relative;
    aspect-ratio: 1 / 1.1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-price-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 140px;
    height: 140px;
    background: var(--berry);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--ivory);
    transform: rotate(-8deg);
    box-shadow: 0 12px 30px rgba(200, 54, 78, 0.4);
    animation: badgeFloat 5s ease-in-out infinite;
}
@keyframes badgeFloat {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%      { transform: rotate(-8deg) translateY(-8px); }
}
.price-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(253, 248, 238, 0.85);
}
.price-value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
}
.price-unit {
    font-size: 0.72rem;
    color: rgba(253, 248, 238, 0.85);
}

.featured-text h2 {
    color: var(--ivory);
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 28px;
    line-height: 1.05;
}
.featured-text h2 em { color: var(--gold); }
.featured-text > p {
    color: rgba(253, 248, 238, 0.82);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.65;
}
.featured-text .section-label {
    color: var(--gold);
}
.featured-text .section-label::before {
    background: var(--gold);
}
.featured-details {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(253, 248, 238, 0.15);
    border-bottom: 1px solid rgba(253, 248, 238, 0.15);
    margin-bottom: 36px;
}
.featured-details li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.featured-details strong {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.featured-details span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--ivory);
}

.featured-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* ============================================
   CRÉATIONS GALERIE
   ============================================ */
.creations-section { background: var(--cream); }
.creations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}
.creation-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream-warm);
    border-radius: var(--radius-lg);
    margin: 0;
    transition: all 0.4s ease;
}
.creation-item.tall { grid-row: span 2; }
.creation-item.wide { grid-column: span 2; }
.creation-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.creation-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.creation-item:hover img { transform: scale(1.08); }
.creation-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 22px 18px;
    background: linear-gradient(to top, rgba(42, 24, 16, 0.9) 30%, transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    color: var(--ivory);
}
.creation-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    color: var(--ivory);
}
.creation-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* ============================================
   HISTOIRE
   ============================================ */
.histoire-section { background: var(--cream-soft); }
.histoire-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}
.histoire-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.histoire-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.histoire-visual:hover img { transform: scale(1.05); }
.histoire-years {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--berry);
    color: var(--ivory);
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 28px rgba(200, 54, 78, 0.35);
}
.years-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1;
    color: var(--ivory);
}
.years-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(253, 248, 238, 0.85);
    font-weight: 600;
    line-height: 1.3;
}

.histoire-text h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 28px; }
.histoire-text p { margin-bottom: 18px; color: var(--text-soft); }
.histoire-text p.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text); }
.histoire-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sig-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--berry);
}
.sig-role {
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   VISITE / COMMANDE
   ============================================ */
.visite-section { background: var(--cream); }
.visite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.visite-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.visite-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.visite-card-featured {
    background: var(--cocoa);
    color: var(--ivory);
    transform: scale(1.04);
}
.visite-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.visite-card.visite-card-featured h3 {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.visite-card.visite-card-featured p {
    color: #fdf8ee !important;
    font-weight: 500;
    opacity: 1 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.visite-card.visite-card-featured .visite-icon { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)); }

.visite-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: inline-block;
    filter: grayscale(0.15);
}
.visite-card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: var(--cocoa);
}
.visite-card p {
    color: var(--text-soft);
    margin-bottom: 22px;
    font-size: 0.96rem;
}
.visite-link {
    color: var(--berry);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
    transition: color 0.3s ease;
}
.visite-link:hover { color: var(--berry-dark); }

.visite-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    text-align: left;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
}
.visite-hours li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-size: 0.92rem;
    color: var(--text-soft);
}
.visite-hours em {
    font-style: normal;
    font-weight: 700;
    color: var(--cocoa);
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

/* ============================================
   AVIS
   ============================================ */
.avis-section { background: var(--cream-soft); }
.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.avis-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    margin: 0;
    position: relative;
}
.avis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.avis-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.avis-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 24px;
}
.avis-card footer { padding-top: 18px; border-top: 1px solid var(--border); }
.avis-card cite {
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--berry);
    display: block;
    margin-bottom: 3px;
}
.avis-context {
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--cocoa-dark);
    color: rgba(245, 234, 208, 0.7);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 14px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 700;
}
.footer-col p { font-size: 0.9rem; line-height: 1.75; color: rgba(245, 234, 208, 0.55); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(245, 234, 208, 0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 234, 208, 0.08);
    font-size: 0.8rem;
    color: rgba(245, 234, 208, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade-up { opacity: 0; transform: translateY(40px); }
.anim-hero { opacity: 0; transform: translateY(30px); }

@media (prefers-reduced-motion: reduce) {
    .hero-bg img, .hero-stamp, .steam, .marquee-track, .status-dot { animation: none !important; }
    #flour-canvas { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .ardoise-board { grid-template-columns: 1fr; gap: 14px; }
    .ardoise-actions { flex-direction: column; gap: 20px; }
    .doodle { display: none; }
    .quick-info-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .polaroid-board { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .carte-paper { padding: 50px 36px; }
    .carte-list li { grid-template-columns: 1fr auto; }
    .carte-dots { display: none; }
    .fab-step { flex: 0 0 260px; }
    .specialties-grid { grid-template-columns: 1fr; gap: 24px; }
    .creations-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .creation-item.wide { grid-column: span 2; }
    .creation-item.tall { grid-row: span 1; }
    .featured-grid { grid-template-columns: 1fr; gap: 50px; }
    .histoire-grid { grid-template-columns: 1fr; gap: 60px; }
    .visite-grid { grid-template-columns: 1fr; gap: 20px; }
    .visite-card-featured { transform: none; }
    .visite-card-featured:hover { transform: translateY(-6px); }
    .avis-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-stamp { top: 12%; right: 3%; width: 110px; height: 110px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; align-items: flex-start; }

    .section { padding: 80px 0; }
    .hero-bakery { padding: 90px 0 60px; }
    .hero-title .line-1, .hero-title .line-2 { font-size: 3.2rem; }
    .hero-stamp { display: none; }
    .hero-scroll-ind { display: none; }

    .polaroid-board { grid-template-columns: 1fr; gap: 30px; }
    .polaroid.p-1, .polaroid.p-2, .polaroid.p-3, .polaroid.p-4,
    .polaroid.p-5, .polaroid.p-6, .polaroid.p-7, .polaroid.p-8 {
        transform: rotate(-1deg) translateY(0);
    }
    .creations-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .creation-item.wide, .creation-item.tall { grid-column: auto; grid-row: auto; }
    .featured-details { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .top-bar-sep { display: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn { width: 100%; }
}
