/* =============================================================
   LE PIZZAIOLO — SITE STYLESHEET
   Organisation ITCSS (9 couches, spécificité croissante)
   1. TOKENS   2. RESET    3. BASE      4. LAYOUT
   5. COMPONENTS  6. SECTIONS  7. PAGES  8. UTILITIES  9. RESPONSIVE
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
    /* PALETTE */
    --brand-900:  #4a5a3c;
    --brand-800:  #4e5548;
    --brand-700:  #606858;          /* olive baseline (footer, locations, hero a-propos) — corrigé Phase 2 */
    --brand-600:  #6b7a5e;
    --cream-100:  #f9f6f0;
    --cream-200:  #f5f0e9;
    --cream-300:  #e8e1d4;
    --rust-600:   #b1360f;
    --rust-700:   #8f2b0c;
    --rust-800:   #a83a1e;          /* fond card-artisan--rouge baseline */
    --sand-400:   #ceb293;
    --sand-500:   #b89a7a;
    --brown-600:  #5c4a3a;
    --ink-900:    #2c2c2c;
    --ink-700:    #313131;          /* texte fort baseline (titres sections, paragraphes sombres) */
    --ink-100:    #f4efe6;
    --white:      #ffffff;
    --gray-100:   #f6f6f6;          /* fond history baseline */
    --star:       #f5a623;

    /* ALIAS SÉMANTIQUES */
    --bg-page:                var(--cream-200);
    --bg-brand:               var(--brand-700);
    --bg-card:                var(--cream-300);
    --bg-card-alt:            var(--cream-200);
    --text-primary:           var(--ink-900);
    --text-inverted:          var(--ink-100);
    --text-on-brand:          var(--white);
    --text-muted:             var(--brown-600);
    --btn-primary-bg:         var(--rust-600);
    --btn-primary-bg-hover:   var(--rust-700);
    --btn-secondary-bg:       var(--sand-400);
    --btn-secondary-bg-hover: var(--sand-500);
    --btn-tertiary-bg:        var(--brand-700);
    --btn-tertiary-bg-hover:  var(--brand-800);
    --border-subtle:          var(--cream-300);
    --border-strong:          var(--brand-700);

    /* TYPO */
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'Alegreya', Georgia, serif;
    --fs-hero:       clamp(36px, 5vw, 55px);
    --fs-h1:         clamp(32px, 4.5vw, 45px);
    --fs-h2:         clamp(28px, 3.5vw, 40px);
    --fs-h3:         24px;
    --fs-body:       18px;
    --fs-small:      14px;

    /* ESPACES */
    --space-xs:      8px;
    --space-sm:      16px;
    --space-md:      24px;
    --space-lg:      48px;
    --space-xl:      80px;
    --space-2xl:     120px;

    /* AUTRES */
    --radius-sm:     4px;
    --radius-md:     10px;
    --radius-lg:     20px;
    --container:     1140px;
    --header-h:      100px;
    --shadow-sm:        0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md:        0 4px 20px rgba(0, 0, 0, .12);
    --shadow-card:      5px 6px 22px rgba(0, 0, 0, .14);   /* baseline cards (artisan, location) */
    --shadow-card-hov:  8px 10px 32px rgba(0, 0, 0, .22);  /* hover idem */
    --shadow-fixed:     0 5px 6px rgba(0, 0, 0, .50);      /* fixed-buttons baseline */
    --transition:    .3s ease;
    --ease-card:     cubic-bezier(0.25, 0.46, 0.45, 0.94); /* baseline cards transition */

    /* BREAKPOINTS (référence documentaire — pas utilisable en CSS direct)
       --bp-mobile-max:    767px  → 0..767 = mobile
       --bp-tablet-min:    768px  → 768..1023 = tablette
       --bp-desktop-min:  1024px  → 1024+ = desktop (baseline pixel-perfect)
    */
}

/* =============================================================
   2. RESET (aligné baseline — zéro margins/paddings universels)
   ============================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.15;
    scroll-behavior: smooth;
    /* clip (et pas hidden) : ne crée pas de contexte de scroll, n'empêche
       donc pas position:sticky de coller au viewport. Fallback hidden pour
       les navigateurs avant Safari 16 / Chrome 90. */
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-page);
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; }

/* =============================================================
   3. BASE
   ============================================================= */
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

/* =============================================================
   4. LAYOUT
   ============================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* =============================================================
   5. COMPONENTS
   ============================================================= */

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    background-color: var(--btn-primary-bg);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}
.btn:hover {
    background-color: var(--btn-primary-bg-hover);
    transform: translateY(-2px);
}
.btn-icon { width: 18px; height: 18px; }

.btn--outline {
    background: transparent;
    color: #313131;
    border: 1px solid #313131;
    padding: 12px 28px;
    border-radius: var(--radius-md);
}
.btn--outline:hover {
    background-color: #313131;
    color: var(--white);
    transform: translateY(-2px);
}

.btn--gold {
    background-color: var(--btn-secondary-bg);
    color: #313131;
}
.btn--gold:hover {
    background-color: var(--btn-secondary-bg-hover);
    color: #313131;
    transform: translateY(-2px);
}

.btn--olive {
    background-color: var(--btn-tertiary-bg);
    color: var(--white);
}
.btn--olive:hover {
    background-color: var(--btn-tertiary-bg-hover);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- HEADER + NAV --- */
.header {
    position: fixed;
    top: 0;
    padding-top: 20px;
    padding-bottom: 5px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), padding-top var(--transition), padding-bottom var(--transition), backdrop-filter var(--transition);
}
/* Variante "pinned" : header olive plein dès le chargement (pages internes
   sur fond clair, ex. /nos-camions). Posée en CSS pour éviter le flash
   transparent → olive au moment où le JS s'exécute. */
.header--pinned { background: var(--brand-700); }
/* État scrollé (scrollY > 50) : compact + olive 95% + blur. Toggle via JS
   sur <body>.is-scrolled — zéro style inline = zéro forced reflow au scroll. */
body.is-scrolled .header {
    background: rgba(96, 104, 88, 0.95);
    backdrop-filter: blur(8px);
    padding-top: 0;
    padding-bottom: 0;
}
body.is-scrolled .header .nav__logo-img { height: 70px; }
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.nav__logo { text-align: center; margin: 0 40px; flex-shrink: 0; }
.nav__logo-img { height: 90px; width: auto; transition: height var(--transition); }
.nav__links { display: flex; gap: 38px; list-style: none; padding: 0; margin: 0; }
.nav__links a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color var(--transition);
    white-space: nowrap;
}
.nav__links a:hover { color: var(--sand-400); }
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--cream-200); transition: all var(--transition); }
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* Drawer mobile : masqué en desktop */
.nav__drawer { display: none; }

/* --- CARD ARTISAN ---
   Disposition baseline : 3 cards positionnées en absolu dans le parent (.cards-artisan
   min-height 750px), chacune avec rotation, languette ::after semi-circulaire et
   bordure dashed SVG inline (::before). Hover redresse la rotation + scale léger. */
.cards-artisan {
    position: relative;
    min-height: 750px;
    margin-bottom: 115px;
    z-index: 2;
}
.card-artisan {
    position: absolute;
    width: 530px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 0.5s var(--ease-card), box-shadow 0.5s ease;
}
.card-artisan:hover {
    z-index: 10;
    box-shadow: var(--shadow-card-hov);
}
.card-artisan__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 260px;
    padding: 46px;
    border-radius: var(--radius-lg);
    overflow: visible;
}
/* Bordure dashed SVG (rect arrondi en stroke-dasharray) */
.card-artisan__inner::before {
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 14px;
    pointer-events: none;
    z-index: 0;
}
.card-artisan--blanc .card-artisan__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%235a5a5a' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.card-artisan--vert .card-artisan__inner::before,
.card-artisan--rouge .card-artisan__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23ceb293' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.card-artisan__image {
    width: 180px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 2;
}
.card-artisan__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-artisan__content {
    padding: 4px 8px 4px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.card-artisan__content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 22px;
}
.card-artisan__content p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}

/* Card 1 — cream (blanc) */
.card-artisan--blanc { background: var(--white); }
.card-artisan--blanc .card-artisan__image { width: 195px; height: 195px; }
.card-artisan--blanc .card-artisan__content h3,
.card-artisan--blanc .card-artisan__content p { color: var(--ink-700); }
.card-artisan--blanc::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 90px;
    background: var(--white);
    border-radius: 0 0 50% 50%;
    z-index: -1;
}

/* Card 2 — olive */
.card-artisan--vert { background: var(--brand-700); }
.card-artisan--vert .card-artisan__image { width: 200px; align-self: stretch; }
.card-artisan--vert .card-artisan__content h3,
.card-artisan--vert .card-artisan__content p { color: var(--white); }
.card-artisan--vert::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 90px;
    background: var(--brand-700);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

/* Card 3 — red (terracotta) */
.card-artisan--rouge { background: var(--rust-800); }
.card-artisan--rouge .card-artisan__image { width: 200px; height: 200px; }
.card-artisan--rouge .card-artisan__content h3,
.card-artisan--rouge .card-artisan__content p { color: var(--white); }
.card-artisan--rouge::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 90px;
    background: var(--rust-800);
    border-radius: 0 0 50% 50%;
    z-index: -1;
}

/* Positionnement & rotation des 3 cards (asymétrie baseline) */
.card-artisan--gauche-haut { top: 0; left: -40px; min-width: 615px; transform: rotate(-2deg); z-index: 1; }
.card-artisan--droite-milieu { top: 227px; right: 55px; left: auto; min-width: 575px; transform: rotate(5deg); z-index: 2; }
.card-artisan--gauche-bas { bottom: -15px; left: 20px; min-width: 625px; transform: rotate(-5deg); z-index: 3; }

.card-artisan--gauche-haut:hover,
.card-artisan--droite-milieu:hover,
.card-artisan--gauche-bas:hover { transform: rotate(0deg) scale(1.02); }

/* --- LOCATION CARD ---
   Baseline : carte blanche avec bordure dashed SVG (::before), languette ::after
   semi-circulaire (bottom), icône absolument positionnée en haut centrée. */
.location-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 86px 75px 70px 75px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.5s var(--ease-card), box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.location-card:hover { box-shadow: var(--shadow-card-hov); }

.location-card::before {
    content: '';
    position: absolute;
    inset: 35px 25px;
    border-radius: 14px;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23ceb293' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.location-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 90px;
    background: var(--white);
    border-radius: 0 0 50% 50%;
    z-index: 0;
}
.location-card > * { position: relative; z-index: 1; }

.location-card__icon {
    width: auto;
    height: 50px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 2px 20px;
    z-index: 2;
}
.location-card__icon img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.location-card__icon-img { border-radius: 6px; }

/* Animations icônes camion + kiosque */
.location-card:first-child .location-card__icon img {
    animation: camion-roll 2.2s ease-in-out infinite;
}
.location-card:last-child .location-card__icon img {
    animation: kiosque-pulse 2.2s ease-in-out infinite;
}
@keyframes camion-roll {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(4px); }
    75%      { transform: translateX(-4px); }
}
@keyframes kiosque-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--ink-700);
    line-height: 22px;
}
.location-card p {
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 12px;
}
.location-card p:last-of-type { margin-bottom: 30px; }
.location-card .btn { margin-top: auto; }

/* --- MENU CARD (composant partagé : slider a-propos, page notre-carte, page resto-kiosque)
   Base + variante kiosque-2 (utilisée actuellement par le slider a-propos). */
.menu-card {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 60px;
    z-index: 2;
    transition: transform 0.5s var(--ease-card), box-shadow 0.5s ease;
}
.menu-card:hover {
    z-index: 10;
    box-shadow: var(--shadow-card-hov);
}
.menu-card__inner {
    position: relative;
    padding: 50px 55px;
    border-radius: var(--radius-lg);
}
.menu-card__inner::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 14px;
    pointer-events: none;
    z-index: 0;
}
.menu-card::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 90px;
    z-index: -1;
}
.menu-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    position: relative;
    z-index: 1;
}
.menu-card__col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.menu-card__col--image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-card__col-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.menu-card__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4px;
}
.menu-card__desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 20px;
    margin: 0 auto;
}

/* Variante "kiosque-2" : utilisée par le slider a-propos (overridée plus loin)
   et par la page resto-kiosque (Phase 5, à venir). */
.menu-card--kiosque-2 {
    background: #C6B397;
    width: 88%;
    margin-left: 0;
    margin-right: auto;
    transform: rotate(-2deg);
    margin-top: -75px;
    z-index: 2;
}
.menu-card--kiosque-2:hover { transform: scale(1.01); }
.menu-card--kiosque-2 .menu-card__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23313131' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.menu-card--kiosque-2::after {
    bottom: -30px;
    border-radius: 0 0 50% 50%;
    background: #C6B397;
}
.menu-card--kiosque-2 .menu-item__dot { background: #62685A; }
.menu-card--kiosque-2 .menu-card__title { margin-bottom: 16px; }
.menu-card--kiosque-2 .menu-card__title,
.menu-card--kiosque-2 .menu-card__desc,
.menu-card--kiosque-2 .menu-item__name,
.menu-card--kiosque-2 .menu-item__price,
.menu-card--kiosque-2 .menu-item__desc { color: var(--ink-700); }

/* Header (titre + tagline + desc) */
.menu-card__header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.menu-card__tagline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Item (ligne de menu) */
.menu-item { position: relative; }
.menu-item__top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.menu-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}
.menu-item__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    flex: 1;
    text-transform: uppercase;
}
.menu-item__price {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
}
.menu-item__desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 18px;
    padding-left: 16px;
    margin-top: 2px;
}

/* --- VARIANTES MENU-CARD côté CAMIONS (3 cartes décalées) --- */
.nc-camions .menu-card--cream {
    background: #ceb293;
    width: 85%;
    margin-left: 0;
    margin-right: auto;
    transform: rotate(-2deg);
}
.nc-camions .menu-card--cream:hover { transform: rotate(0deg) scale(1.01); }
.nc-camions .menu-card--cream .menu-card__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23313131' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.nc-camions .menu-card--cream::after {
    bottom: -30px;
    border-radius: 0 0 50% 50%;
    background: #ceb293;
}
.menu-card--cream .menu-card__title,
.menu-card--cream .menu-card__tagline,
.menu-card--cream .menu-card__desc,
.menu-card--cream .menu-item__name,
.menu-card--cream .menu-item__price,
.menu-card--cream .menu-item__desc { color: var(--ink-700); }
.menu-card--cream .menu-item__dot { background: #62685A; }

.nc-camions .menu-card--white {
    background: var(--white);
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(0.5deg);
    margin-top: -50px;
}
.nc-camions .menu-card--white:hover { transform: scale(1.01); }
.nc-camions .menu-card--white .menu-card__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23c85a28' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.nc-camions .menu-card--white::after {
    bottom: -30px;
    border-radius: 0 0 50% 50%;
    background: var(--white);
}
.menu-card--white .menu-card__title,
.menu-card--white .menu-card__tagline,
.menu-card--white .menu-card__desc,
.menu-card--white .menu-item__name,
.menu-card--white .menu-item__price,
.menu-card--white .menu-item__desc { color: var(--ink-700); }
.menu-card--white .menu-item__dot { background: #C6B397; }

.nc-camions .menu-card--olive {
    background: var(--brand-700);
    width: 85%;
    margin-left: auto;
    margin-right: 0;
    transform: rotate(2.5deg);
    margin-top: -60px;
}
.nc-camions .menu-card--olive:hover { transform: rotate(0deg) scale(1.01); }
.nc-camions .menu-card--olive .menu-card__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23ffffff' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.nc-camions .menu-card--olive::after {
    bottom: -30px;
    border-radius: 0 0 50% 50%;
    background: var(--brand-700);
}
.menu-card--olive .menu-card__title,
.menu-card--olive .menu-card__tagline,
.menu-card--olive .menu-card__desc,
.menu-card--olive .menu-item__name,
.menu-card--olive .menu-item__price,
.menu-card--olive .menu-item__desc { color: var(--white); }
.menu-card--olive .menu-item__dot { background: var(--ink-700); }

/* --- VARIANTES MENU-CARD côté KIOSQUE (kiosque-1 / kiosque-3 ; kiosque-2 = portefeuille Lot 4) --- */
.menu-card--kiosque-1 {
    background: var(--white);
    width: 88%;
    margin-left: auto;
    margin-right: 50px;
    transform: rotate(1deg);
}
.menu-card--kiosque-1:hover { transform: rotate(0deg) scale(1.01); }
.menu-card--kiosque-1 .menu-card__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23C6B397' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.menu-card--kiosque-1::after {
    bottom: -30px;
    border-radius: 0 0 50% 50%;
    background: var(--white);
}
.menu-card--kiosque-1 .menu-item__dot { background: #9C3F20; }
.menu-card--kiosque-1 .menu-card__title { margin-bottom: 16px; }
.menu-card--kiosque-1 .menu-card__title,
.menu-card--kiosque-1 .menu-card__desc,
.menu-card--kiosque-1 .menu-item__name,
.menu-card--kiosque-1 .menu-item__price,
.menu-card--kiosque-1 .menu-item__desc { color: var(--ink-700); }

.menu-card--kiosque-3 {
    background: #F3F0EA;
    width: 88%;
    margin-left: auto;
    margin-right: 20px;
    transform: rotate(1.5deg);
    margin-top: -70px;
    z-index: 3;
}
.menu-card--kiosque-3:hover { transform: rotate(0deg) scale(1.01); }
.menu-card--kiosque-3 .menu-card__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23313131' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.menu-card--kiosque-3::after {
    bottom: -30px;
    border-radius: 0 0 50% 50%;
    background: #F3F0EA;
}
.menu-card--kiosque-3 .menu-item__dot { background: var(--rust-600); }
.menu-card--kiosque-3 .menu-card__title { margin-bottom: 16px; }
.menu-card--kiosque-3 .menu-card__title,
.menu-card--kiosque-3 .menu-card__desc,
.menu-card--kiosque-3 .menu-item__name,
.menu-card--kiosque-3 .menu-item__price,
.menu-card--kiosque-3 .menu-item__desc { color: var(--ink-700); }

/* --- MENU-CARD SECTIONED (1 card, plusieurs sous-blocs Boissons/Glaces/Desserts) --- */
.menu-card--sectioned .menu-card__section + .menu-card__section {
    margin-top: 28px;
}
.menu-card__section-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--white);
    background: var(--brand-700);
    padding: 14px 16px;
    margin: 0 0 24px;
    border-radius: 4px;
}

/* --- DECO (calques SVG décoratifs, positions baseline) --- */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco--part-de-pizza  { top: -40px; right: 0; width: 400px; opacity: 1; }
.deco--tomates     { bottom: 7%; right: -60px; width: 250px; opacity: 1; }
.deco--feu-bois    { bottom: 90px; left: 11%; transform: translateX(-50%); width: 250px; z-index: 2; }

/* =============================================================
   6. SECTIONS
   ============================================================= */

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}
.hero__video-wrapper {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(35,40,28) 0%, rgb(35,40,28) 100%);
}
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.4; }
.hero .container { width: 100%; align-self: stretch; display: flex; align-items: center; }
.hero__content { position: relative; z-index: 2; max-width: 725px; padding-top: 60px; }
.hero__title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 62px;
    margin-bottom: 40px;
}
.hero__subtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
    color: var(--white);
    margin-bottom: 20px;
}
.hero__text {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
}

/* --- SAVOIR-FAIRE --- */
.savoir-faire {
    background-color: var(--bg-page);
    padding: var(--space-xl) 0 260px;
    position: relative;
    overflow: hidden;
}
.savoir-faire .container { position: relative; }
.savoir-faire__header {
    max-width: 650px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}
.savoir-faire__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
    color: var(--ink-700);
    margin-bottom: 20px;
}
.savoir-faire__intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
}
.savoir-faire__cta {
    text-align: center;
    position: relative;
    z-index: 5;
}

/* --- GALLERY ---
   Baseline : grille asymétrique (image 1 sur 50%, images 2-3 sur 25% chacune),
   items de 400px, marges négatives qui chevauchent savoir-faire (au-dessus) et
   locations (en dessous), créant un effet de superposition. */
.gallery {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: -200px;
    margin-bottom: -200px;
}
.gallery__grid {
    display: grid;
    grid-template-columns: calc(50% - 2.5px) calc(25% - 5px) calc(25% - 2.5px);
    gap: 0 15px;
}
.gallery__item {
    height: 400px;
    overflow: hidden;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

/* --- TEXT BASE / SECTION TITLES --- */
.text-body {
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    line-height: 23px !important;
}
/* events_strong rendu en text simple côté admin → on force le gras en CSS pour
   garder la mise en avant visuelle (l'utilisateur ne saisit que le texte). */
.events__strong { font-weight: 700; }
.section-title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
    line-height: 50px;
}
.section-title span { font-style: italic; }
.section-title--script {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    line-height: 50px;
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #313131;
    font-size: 0.95rem;
    line-height: 1.7;
}
.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
}

/* --- LOCATIONS ---
   Baseline : fond olive, gros paddings (chevauchement avec gallery au-dessus
   et events en dessous), ellipse blanche en bas (clip-path) qui crée la "vague". */
.locations {
    background-color: var(--brand-700);
    padding: 300px 0 280px;
    position: relative;
    overflow: visible;
    z-index: 1;
}
.locations::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -10%;
    width: 120%;
    height: 150px;
    background: var(--white);
    clip-path: ellipse(50% 100% at 50% 100%);
    z-index: 1;
}
.locations .section-title { color: var(--white); }
.locations .section-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.locations__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* --- EVENTS ---
   Baseline : fond blanc, marge négative qui chevauche locations (-90px),
   layout flex 50/50 avec gros gap, icône camion 60×60 animée. */
.events {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 40px 0 0;
    margin-top: -90px;
}
.events__content {
    display: flex;
    align-items: center;
    gap: 85px;
    position: relative;
    z-index: 2;
}
.events__text { flex: 0 0 50%; }
.events__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
.events__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.events__icon--camion img {
    animation: camion-roll 2.2s ease-in-out infinite;
}
.events__text h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    color: var(--ink-700);
    margin-bottom: 20px;
    line-height: 50px;
}
.events__text p {
    color: var(--ink-700);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
.events__text .btn { margin-top: 10px; }
.events__image { flex: 0 0 50%; overflow: hidden; }
.events__image img { width: 100%; height: 100%; object-fit: cover; }

/* --- HISTORY ---
   Baseline : fond gris clair (#F6F6F6), flex 50/50 gap 90, image sans radius. */
.history {
    background-color: var(--gray-100);
    padding: var(--space-xl) 0;
}
.history__content {
    display: flex;
    align-items: center;
    gap: 90px;
}
.history__image { flex: 0 0 50%; overflow: hidden; }
.history__image img { width: 100%; height: auto; object-fit: cover; }
.history__text { flex: 0 0 50%; }
.history__text h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 700;
    color: var(--ink-700);
    margin-bottom: 20px;
    line-height: 50px;
}
.history__text p {
    font-size: 0.9rem;
    color: var(--ink-700);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* --- TESTIMONIALS ---
   Baseline : fond sand (#CEB293), padding 80, intro plus large (max 925),
   CTA détaché (margin-top 40). Le slider HTML a été remplacé par Elfsight :
   pas de styles testimonial-card portés (cf. divergences acceptées). */
.testimonials {
    background-color: var(--sand-400);
    padding: 80px 0;
    text-align: center;
}
.testimonials .section-intro { max-width: 925px; }
.testimonials__cta { margin-top: 40px; }

/* Facebook Feed (widget Common Ninja) */
.fb-feed {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}
.fb-feed .section-intro { max-width: 925px; }
.fb-feed__embed {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.fb-feed__embed iframe {
    max-width: 100%;
    border: 0;
    overflow: hidden;
}

/* --- FOOTER ---
   Baseline : fond olive #606858, grid asymétrique 1.2/0.8/1 avec gap 80,
   séparateurs verticaux blancs (border-right) entre colonnes, h4 lourd (900),
   sociaux FontAwesome plats (28px, sans cercle), bottom aligné à droite. */
.footer {
    background-color: var(--brand-700);
    color: var(--white);
    padding-top: 100px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 40px;
}
.footer__col {
    border-right: 1px solid var(--white);
    padding: 20px 60px 20px 0;
}
.footer__col:last-child {
    border-right: none;
    padding-right: 0;
}
.footer__logo-img {
    height: 90px;
    width: auto;
    margin-bottom: 30px;
}
.footer__col--brand p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 20px;
    color: var(--white);
}
.footer__col__title {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 22px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--white);
}
.footer__col__title--sub {
    margin-top: 28px;
    margin-bottom: 12px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col--links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__col--links a {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 20px;
    color: var(--white);
    transition: color var(--transition);
}
.footer__col--links a:hover { color: var(--sand-400); }
.footer__col--contact p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 30px;
    color: var(--white);
    margin-bottom: 15px;
}
.footer__socials {
    display: flex;
    gap: 30px;
}
.footer__socials a {
    font-size: 28px;
    color: var(--white);
    transition: color var(--transition);
}
.footer__socials a:hover { color: var(--sand-400); }
.footer__bottom { padding: 18px 0; }
.footer__bottom .container {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    flex-wrap: wrap;
}
.footer__bottom span,
.footer__bottom a {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 20px;
    color: var(--white);
}
.footer__bottom a { transition: color var(--transition); }
.footer__bottom a:hover { color: var(--sand-400); }
.footer__bottom strong { color: var(--cream-200); }

/* --- FIXED BUTTONS ---
   État normal (en haut de page) + variante .is-compact appliquée au scroll
   (toggle JS au même seuil que le header, scrollY > 50). En compact :
   ~30% de réduction sur paddings/gaps/icônes/typo, transitions douces. */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: bottom var(--transition), right var(--transition), gap var(--transition);
}
.fixed-buttons .btn {
    min-width: 135px;
    padding: 9px 20px;
    box-shadow: var(--shadow-fixed);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    gap: 13px;
    animation: subtlePulse 3s ease-in-out infinite;
    transition: min-width var(--transition), font-size var(--transition),
                line-height var(--transition), gap var(--transition),
                padding var(--transition);
}
.fixed-buttons .btn-icon {
    width: 36px;
    height: 36px;
    transition: width var(--transition), height var(--transition);
}
.fixed-buttons .btn--secondary { background-color: var(--btn-secondary-bg); }
.fixed-buttons .btn--secondary:hover { background-color: var(--btn-secondary-bg-hover); transform: translateY(-2px); }
.fixed-buttons .btn i { font-size: 28px; }

/* Variante compacte (au scroll) — toggle JS .is-compact */
.fixed-buttons.is-compact {
    bottom: 20px;
    right: 20px;
    gap: 14px;
}
.fixed-buttons.is-compact .btn {
    min-width: 130px;
    font-size: 14px;
    line-height: 16px;
    gap: 10px;
    padding: 8px 18px;
}
.fixed-buttons.is-compact .btn-icon { width: 32px; height: 32px; }

@keyframes subtlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* =============================================================
   7. PAGES
   ============================================================= */

/* --- À PROPOS — sections statiques (préfixe .ap-)
   Hero, débuts, transmission, valeurs.
   Les widgets timeline/savoir(slider)/produits(accordion) viendront
   dans des lots dédiés (3, 4, 5). */

/* HERO À PROPOS */
.ap-hero {
    background: var(--brand-700);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.ap-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 35%;
    background-image: var(--ap-hero-bg, url("../images/hero-apropos-bg.png"));
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 60%);
            mask-image: linear-gradient(to right, transparent 0%, #000 60%);
}
.ap-hero__content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}
.ap-hero__content h1 {
    font-family: var(--font-display);
    font-size: 55px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
}
.ap-hero__content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    margin-bottom: 8px;
}

/* LES DÉBUTS */
.ap-debuts {
    background: var(--white);
    padding: 80px 0 50px;
    text-align: center;
}
.ap-debuts h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 24px;
}
.ap-debuts p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    max-width: 1030px;
    margin: 0 auto;
}
.ap-debuts p strong { color: var(--ink-700); }

/* LA TRANSMISSION */
.ap-transmission {
    background: var(--sand-400);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}
.deco--ap-tr-right {
    top: 0; right: -50px;
    width: 240px;
    opacity: .12;
}
.ap-transmission__grid {
    display: flex;
    gap: 55px;
    align-items: center;
}
.ap-transmission__text {
    flex: 0 0 50%;
    max-width: 50%;
}
.ap-transmission__text h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 24px;
}
.ap-transmission__text > p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 20px;
}
.ap-transmission__secret {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    text-align: left;
    color: var(--ink-700);
    margin-top: 20px;
}
.ap-transmission__img {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ap-transmission__img img {
    width: 100%;
    border-radius: 14px;
}

/* Bouton incliné avec contour pointillé décalé */
.btn--tilt-dashed {
    position: relative;
    transform: rotate(-3deg);
    margin: 10px 0 18px;
    isolation: isolate;
}
.btn--tilt-dashed::before {
    content: '';
    position: absolute;
    inset: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='calc(100%25 - 3px)' height='calc(100%25 - 3px)' rx='14' ry='14' fill='none' stroke='%23ffffff' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
    transform: translate(5px, 5px);
    pointer-events: none;
    z-index: -1;
}

/* TIMELINE (widget interactif — JS dans site.js) */
.ap-timeline {
    background: var(--white);
    padding: 30px 0 var(--space-xl);
}
/* Card centrale (image + année + description du point actif) */
.ap-timeline__card {
    width: 800px;
    margin: 0 auto 50px;
    background: var(--cream-200);
    border-radius: var(--radius-lg);
    box-shadow: 5px 6px 22px rgba(0,0,0,.10);
    position: relative;
    isolation: isolate;
    transform: rotate(-2deg);
    z-index: 2;
    transition: transform 0.5s var(--ease-card), box-shadow 0.5s ease;
}
.ap-timeline__card:hover {
    transform: rotate(0deg) scale(1.01);
    box-shadow: var(--shadow-card-hov);
    z-index: 10;
}
.ap-timeline__card::after {                     /* languette bas */
    content: '';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: var(--cream-200);
    border-radius: 0 0 50% 50%;
    z-index: -1;
}
.ap-timeline__card-inner {
    position: relative;
    padding: 55px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ap-timeline__card-inner::before {              /* dashed border SVG (rust) */
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 14px;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23B1360F' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ap-timeline__card-img {
    position: relative;
    z-index: 1;
    height: 100%;
}
.ap-timeline__card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.ap-timeline__card-info {
    text-align: left;
    position: relative;
    z-index: 1;
}
.ap-timeline__year {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: var(--rust-600);
    display: inline-block;
    line-height: 1;
    margin-bottom: 22px;
    position: relative;
    padding: 14px 0;
    isolation: isolate;
}
.ap-timeline__year::before {                    /* cercle dessiné autour de l'année */
    content: '';
    position: absolute;
    inset: -14px -70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 420' preserveAspectRatio='none'%3E%3Cpath d='M120 310 C 70 290, 55 255, 78 220 C 125 145, 295 95, 505 92 C 635 90, 748 114, 820 155 C 865 181, 875 218, 848 247 C 808 291, 704 324, 566 336 C 395 351, 210 345, 120 310 M 290 76 C 365 80, 455 84, 560 90 C 665 96, 740 110, 792 132 C 747 120, 685 108, 607 101 C 531 95, 453 92, 382 93 C 336 93, 307 88, 290 76 Z' fill='none' stroke='%232F2E2D' stroke-width='14' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: rotate(-3deg);
    z-index: -1;
    pointer-events: none;
}
.ap-timeline__card-info p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
}
/* Barre chronologique avec 6 points */
.ap-timeline__bar {
    position: relative;
    margin: 0 auto 60px;
    padding: 0 6%;
    max-width: 1000px;
}
.ap-timeline__line {
    position: absolute;
    left: 0; right: 0;
    bottom: 13.5px;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='3'%3E%3Cline x1='0' y1='1.5' x2='100%25' y2='1.5' fill='none' stroke='%2362685A' stroke-width='3' stroke-dasharray='22,16' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}
.ap-timeline__points {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
.ap-timeline__point {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font: inherit;
}
.ap-timeline__label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    color: #62685A;
    white-space: nowrap;
    transition: color 0.25s ease;
}
.ap-timeline__dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #62685A;
    transition: background 0.25s ease;
    display: block;
    position: relative;
    z-index: 1;
}
.ap-timeline__point.is-active .ap-timeline__label,
.ap-timeline__point:hover .ap-timeline__label { color: var(--rust-600); }
.ap-timeline__point.is-active .ap-timeline__dot,
.ap-timeline__point:hover .ap-timeline__dot   { background: var(--rust-600); }
.ap-timeline__nav { display: none; }
.ap-timeline__cta { text-align: center; }

/* SAVOIR-FAIRE (slider — JS dans site.js, .ap-savoir__menucard override .menu-card) */
.ap-savoir {
    background: #F3F0EA;
    padding: var(--space-xl) 0;
}
.ap-savoir__header {
    text-align: center;
    max-width: 975px;
    margin: 0 auto 35px;
}
.ap-savoir__header h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 24px;
}
.ap-savoir__header p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
}

/* Menu-card customisé pour le contexte slider savoir-faire :
   transparent extérieur, fond rust intérieur, dashed sand, texte blanc */
.ap-savoir__menucard {
    max-width: 900px;
    margin: 0 auto;
    transform: none;
    width: 100%;
    background: transparent;
    box-shadow: none;
}
.ap-savoir__menucard:hover {
    transform: none;
    box-shadow: none;
}
.ap-savoir__menucard.menu-card--kiosque-2::after {
    bottom: -30px;
    border-radius: 0 0 50% 50%;
    background: var(--rust-600);
}
.ap-savoir__menucard .menu-card__inner {
    background: var(--rust-600);
    padding: 50px 70px 50px 45px;
}
.ap-savoir__menucard .menu-card__inner::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23CEB293' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.ap-savoir__menucard .menu-card__grid {
    grid-template-columns: 37% 63%;
}
.ap-savoir__menucard .menu-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--white);
}
.ap-savoir__menucard .menu-card__desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    margin: 0 0 8px 0;
    text-align: left;
    color: var(--white);
}
.ap-savoir__menucard strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    display: block;
    text-align: left;
    color: var(--white);
}
.ap-savoir__menucard .btn {
    align-self: flex-start;
    width: auto;
}

/* Slider mécanique (track + arrows + dots) */
.ap-savoir__slider {
    position: relative;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 65px;
}
.ap-slider__track {
    overflow: hidden;
    padding-bottom: 55px;
}
.ap-slider__inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
}
.ap-slider__slide {
    min-width: 100%;
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 0 25px;
}
.ap-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink-700);
    border: none;
    color: var(--white);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.ap-slider__arrow:hover {
    opacity: 0.8;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.ap-slider__arrow--prev { left: -15px; }
.ap-slider__arrow--next { right: -15px; }
.ap-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}
.ap-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--ink-700);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}
.ap-slider__dot--active { background: var(--ink-700); }

/* PRODUITS & PARTENAIRES (accordion — JS dans site.js) */
.ap-produits {
    background: var(--gray-100);
    padding: var(--space-xl) 0 0;
    position: relative;
    overflow: hidden;
}
.deco--ap-prod-right {
    top: -20px; right: -40px;
    width: 280px;
    opacity: .1;
}
.ap-produits__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 75px;
}
.ap-accordion-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 0 -70px;
}
.ap-accordion-layout__img {
    flex: 0 0 40%;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.ap-accordion-layout__img img {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.ap-accordion-layout__img img.fade {
    opacity: 0;
    transform: scale(0.97);
}
.ap-accordion-layout__content { flex: 1; }

.ap-accordion__picto-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: 15px;
    margin-right: 5px;
}
.ap-accordion__item:first-child .ap-accordion__picto-img {
    width: 44px;
    height: 44px;
    margin-right: -1px;
}
.ap-accordion__item {
    border-bottom: 2px solid var(--ink-700);
}
.ap-accordion__item:first-child {
    border-top: 2px solid var(--ink-700);
}
.ap-accordion__btn {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    gap: 16px;
}
.ap-accordion__btn span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--ink-700);
    text-align: left;
    line-height: 1.3;
}
.ap-accordion__btn i {
    font-size: 16px;
    color: var(--ink-700);
    flex-shrink: 0;
}
.ap-accordion__btn i:last-child {
    margin-left: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
}
.ap-accordion__item--open .ap-accordion__btn i:last-child {
    transform: rotate(180deg);
}
.ap-accordion__panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    max-width: 585px;
    margin: auto;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease 0.1s,
                padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ap-accordion__item--open .ap-accordion__panel {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 28px;
}
.ap-accordion__panel p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 8px;
}
.ap-accordion__link {
    color: var(--rust-600);
    font-weight: 700;
    text-decoration: underline;
    display: inline-block;
    margin-top: 12px;
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-underline-offset 0.3s ease;
}
.ap-accordion__link:hover {
    color: var(--rust-700);
    text-underline-offset: 5px;
}

/* NOS VALEURS — grid 5 cards colorées avec languettes */
.ap-valeurs {
    background-color: var(--white);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: visible;
}
.ap-valeurs__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 50px;
}
.ap-valeurs__grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.ap-valeurs__item {
    text-align: center;
    flex: 1 1 0;
    background-color: #9C3F20;          /* rouge brique baseline (différent de --rust-800) */
    padding: 25px 20px;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ap-valeurs__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-card-hov);
}
.ap-valeurs__item::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 59px;
    border-radius: 0 0 50% 50%;
    background: #9C3F20;
    z-index: -1;
}
.ap-valeurs__item--dark        { background-color: var(--ink-700); }
.ap-valeurs__item--dark::after { background:        var(--ink-700); }
.ap-valeurs__item--olive        { background-color: var(--brand-700); }
.ap-valeurs__item--olive::after { background:        var(--brand-700); }
.ap-valeurs__item--gold         { background-color: var(--sand-400); }
.ap-valeurs__item--gold::after  { background:        var(--sand-400); }
.ap-valeurs__item--white        { background-color: var(--white); }
.ap-valeurs__item--white::after { background:        var(--white); }

.ap-valeurs__icon {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}
.ap-valeurs__icon i {                   /* FontAwesome icons */
    font-size: 50px;
    color: var(--white);
}
.ap-valeurs__icon--circle {             /* valeur 2 (Transmission) — cercle blanc avec icône sombre */
    background: var(--white);
    border-radius: 50%;
}
.ap-valeurs__icon--circle i {
    font-size: 24px;
    color: var(--ink-700);
}
.ap-valeurs__item--gold .ap-valeurs__icon i,
.ap-valeurs__item--white .ap-valeurs__icon i {
    color: var(--ink-700);
}

.ap-valeurs__item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.ap-valeurs__item p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
}
.ap-valeurs__item--gold h3,
.ap-valeurs__item--gold p,
.ap-valeurs__item--white h3,
.ap-valeurs__item--white p { color: var(--ink-700); }

.ap-valeurs__cta { text-align: center; }

/* --- NOTRE CARTE — sections statiques (préfixe .nc-)
   Hero, headers des 2 sections (camions/kiosque), engagement qualité.
   Les menu-cards (camions/kiosque) sont rendues dynamiquement Lots 3+4 et
   stylées dans la couche 5 COMPONENTS (.menu-card / .menu-item / .menu-card--*).
*/

/* HERO NOTRE CARTE */
.nc-hero {
    background: var(--brand-700);
    padding: 160px 0 80px;
    text-align: center;
}
.nc-hero__content {
    max-width: 850px;
    margin: 0 auto;
}
.nc-hero__title {
    font-family: var(--font-display);
    font-size: 55px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
}
.nc-hero__text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    margin-bottom: 8px;
}
.nc-hero__text--highlight {
    margin-top: 12px;
    margin-bottom: 40px;
}
.nc-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nc-hero__buttons .btn--primary,
.nc-hero__buttons .btn--gold {
    font-size: 18px;
    padding: 14px 32px;
}
.nc-hero__buttons .btn--gold {
    color: var(--ink-700);
    font-weight: 700;
}

/* CARTE DES CAMIONS — section + header + CTA */
.nc-camions {
    background-color: var(--cream-100);
    padding: 80px 0 0;
    position: relative;
    overflow: visible;
}
.nc-camions .container {
    max-width: 1000px;
}
.nc-camions__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.nc-camions__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 30px;
}
.nc-camions__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    color: var(--ink-700);
    margin: 0 auto;
}
.nc-camions__cta {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-top: 100px;
}

/* CARTE DU KIOSQUE — section + header */
.nc-kiosque {
    background-color: var(--brand-700);
    padding: 200px 0 100px;
    position: relative;
    overflow: visible;
}
.nc-kiosque::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -10%;
    width: 120%;
    height: 150px;
    background: var(--cream-100);
    clip-path: ellipse(50% 100% at 50% 0%);
    z-index: 1;
}
.nc-kiosque .container {
    max-width: 1000px;
}
.nc-kiosque__header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.nc-kiosque__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 30px;
}
.nc-kiosque__text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
}

/* ENGAGEMENT QUALITÉ */
.nc-engagement {
    background: linear-gradient(to bottom, var(--gray-100) 45%, var(--white) 45%);
    padding: 80px 0 80px;
}
.nc-engagement__header {
    max-width: 900px;
    margin-bottom: 50px;
}
.nc-engagement__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 30px;
}
.nc-engagement__intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    max-width: 700px;
}
.nc-engagement__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 35px;
    row-gap: 10px;
    margin-bottom: 50px;
}
.nc-engagement__item {
    text-align: left;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
.nc-engagement__image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    height: 450px;
}
.nc-engagement__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.nc-engagement__image:hover img {
    transform: scale(1.03);
}
.nc-engagement__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    padding: 30px 16px 12px;
    border-radius: 0 0 10px 10px;
}
.nc-engagement__item:first-child .nc-engagement__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    clip-path: url(#dome-clip);
    z-index: 2;
}
.nc-engagement__item:first-child .nc-engagement__label {
    color: var(--ink-700);
    background: #C6B397;
    padding: 12px 16px 12px;
    text-align: center;
}
.nc-engagement__item:nth-child(2) .nc-engagement__label {
    color: var(--white);
    background: #9C3F20;
    padding: 12px 16px 12px;
    text-align: center;
}
.nc-engagement__item:nth-child(3) .nc-engagement__image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    clip-path: url(#dome-clip-right);
    z-index: 2;
}
.nc-engagement__item:nth-child(3) .nc-engagement__label {
    color: var(--white);
    background: #62685A;
    padding: 12px 16px 12px;
    text-align: center;
}
.nc-engagement__item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.3;
    margin-bottom: 10px;
}
.nc-engagement__item p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 20px;
    color: var(--ink-700);
}
.nc-engagement__cta { text-align: center; }

/* --- NOS CAMIONS — sections statiques (préfixe .cam-)
   Hero (carte ticket inclinée), commander, events bandeau, pizzas
   proposées, social. La section .cam-emplacements complète (tabs +
   liste + map Leaflet) viendra Lots 3+4. */

/* HERO — carte inclinée -2° avec bordure dashed rust */
.cam-hero {
    background: var(--white);
    padding: 130px 0 0;
}
.cam-hero__card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--cream-200);
    border-radius: 20px;
    box-shadow: 5px 6px 22px rgba(0,0,0,.10);
    transform: translateY(40px) rotate(-2deg);
    isolation: isolate;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s ease;
}
.cam-hero__card:hover {
    transform: translateY(40px) rotate(0deg) scale(1.01);
    box-shadow: 8px 10px 32px rgba(0, 0, 0, 0.22);
    z-index: 10;
}
.cam-hero__card::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    background: var(--cream-200);
    border-radius: 0 0 50% 50%;
    z-index: -1;
}
.cam-hero__card-inner {
    position: relative;
    padding: 55px 70px;
    border-radius: 20px;
    text-align: center;
    box-sizing: border-box;
}
.cam-hero__card-inner::before {
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 14px;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23B1360F' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.cam-hero__card-inner h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.cam-hero__card-inner p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    color: #4a4a4a;
    max-width: 770px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 1;
}

/* EMPLACEMENTS — header (tabs/liste/map = Lots 3+4) */
.cam-emplacements {
    background: var(--white);
    padding: 160px 0 80px;
}
.cam-emplacements__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.cam-emplacements__header h2 {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin: 0 0 24px 0;
    display: inline-block;
    position: relative;
    padding: 20px 30px;
    isolation: isolate;
}
.cam-emplacements__header h2::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: -20px;
    left: -20px;
    width: 55%;
    background-image: url("../images/brush-title.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 120%;
    z-index: -1;
    pointer-events: none;
}
.cam-emplacements__header p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 20px;
    text-align: center;
}

/* Layout : tabs (15%) | lieux (45fr) | sep (1px) | map (55fr).
   Cols spacers explicites (80px / 60px / 60px) pour préserver les écarts d'origine.
   .cam-emplacements__row1 est en display:contents → tabs/lieux/sep deviennent
   des grid items directs du layout parent en desktop. */
.cam-emplacements__layout {
    display: grid;
    grid-template-columns: 15% 80px 45fr 60px 1px 60px 55fr;
    grid-template-areas: "tabs . lieux . sep . map";
    align-items: center;
}
.cam-emplacements__row1 { display: contents; }
.cam-tabs              { grid-area: tabs; }
.cam-lieux             { grid-area: lieux; }
.cam-emplacements__sep { grid-area: sep; }
.cam-map               { grid-area: map; }
.cam-emplacements__sep {
    background: #e0d8ca;
    width: 1px;
    align-self: stretch;
}

/* Tabs jours */
.cam-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cam-tabs__btn {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    padding: 10px 30px;
    min-width: 140px;
    border-radius: 10px;
    border: 1px solid var(--ink-700);
    background: transparent;
    color: var(--ink-700);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.cam-tabs__btn--active {
    background: var(--rust-600);
    color: var(--white);
    border-color: var(--rust-600);
}
.cam-tabs__btn:hover:not(.cam-tabs__btn--active) {
    background: #f0ebe3;
}

/* Liste des lieux (remplie en JS Lot 4) */
.cam-lieux {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.cam-lieu {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}
.cam-lieu:hover,
.cam-lieu--hover {
    transform: translateX(4px);
}
.cam-lieu:hover h3 strong,
.cam-lieu--hover h3 strong {
    color: var(--rust-600);
}
.cam-lieu h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.3;
    margin: 0 0 2px 0;
}
.cam-lieu h3 span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
}
.cam-lieu p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin: 0;
}
.cam-lieu__tel {
    font-weight: 700;
    color: var(--ink-700);
}

/* Carte map */
.cam-map {
    position: relative;
    border-radius: 10px;
    height: 400px;
    width: 100%;
    isolation: isolate;
}
.cam-map::before {
    content: '';
    position: absolute;
    inset: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='calc(100%25 - 3px)' height='calc(100%25 - 3px)' rx='10' ry='10' fill='none' stroke='%23CEB293' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: translate(50px, 50px);
    pointer-events: none;
    z-index: -1;
}
.cam-map__inner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

/* Leaflet markers (init Lot 4) */
.cam-marker-wrapper { background: none; border: 0; }
/* Épingles style Google Maps (FontAwesome location-dot) */
.cam-pin {
    display: block;
    font-size: 34px;
    line-height: 1;
    text-shadow:
        0 0 2px rgba(255, 255, 255, 0.9),
        0 0 2px rgba(255, 255, 255, 0.9),
        0 2px 3px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, color 0.2s ease;
    transform-origin: 50% 100%;
    cursor: pointer;
}
.cam-pin--active   { color: var(--rust-600); }
.cam-pin--inactive { color: #888; opacity: 0.75; }
.cam-pin--hover    { transform: scale(1.25); z-index: 1000; }

/* Popup Leaflet (textes + lien tel) */
.cam-popup {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: var(--ink-700);
}
.cam-popup strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
}
.cam-popup a {
    color: var(--rust-600);
    text-decoration: none;
    font-weight: 700;
}
.cam-popup a:hover { text-decoration: underline; }
.cam-popup__dispo {
    color: #6a6a6a;
    font-style: italic;
}

/* COMMANDER — grid 2 cols (texte + image) */
.cam-commander {
    background: #f0f0f0;
    padding: 60px 0 0;
}
.cam-commander__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.cam-commander__text { display: flex; align-items: center; }
.cam-commander__inner { max-width: 100%; }
.cam-commander__inner h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 24px;
}
.cam-commander__inner p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 20px;
}
.cam-commander__inner p.cam-commander__note {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.3;
}
.cam-commander__img { align-self: end; }
.cam-commander__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ÉVÉNEMENTS BANDEAU — fond olive avec biseaux haut-bas */
.cam-events {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cam-events::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 62px;
    background-color: #F0F0F0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    z-index: 2;
}
.cam-events::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 62px;
    background-color: var(--white);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    z-index: 2;
}
.cam-events__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cam-events__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-700);
}
.cam-events__content {
    display: grid;
    grid-template-columns: 28fr 72fr;
    gap: 90px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cam-events__icon { width: 100%; }
.cam-events__icon img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: camion-roll 2.2s ease-in-out infinite;
}
@keyframes camion-roll {
    0%, 100% { transform: translateX(-3px); }
    50%      { transform: translateX(3px); }
}
.cam-events__text h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.cam-events__text p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    margin-bottom: 20px;
}
.cam-events__btn {
    color: var(--white) !important;
    border-color: var(--white) !important;
}
.cam-events__btn:hover {
    background: var(--white) !important;
    color: var(--brand-700) !important;
}

/* LES PIZZAS PROPOSÉES — grid 2 cols (image + texte avec CTA tilt) */
.cam-pizzas {
    background: var(--white);
    padding: 100px 0 140px;
}
.cam-pizzas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.cam-pizzas__images img {
    width: 100%;
    display: block;
}
.cam-pizzas__title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.cam-pizzas__title-row h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
}
.cam-pizzas__text p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 20px;
}
.cam-pizzas__payment {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--ink-700);
    line-height: 1.3;
}
.cam-pizzas__payment strong {
    font-family: var(--font-display);
    font-weight: 900;
}
/* CTA tilt-dashed — override pour cam-pizzas : marge bas plus large + pointillé sand */
.cam-pizzas .btn--tilt-dashed { margin: 10px 0 32px; }
.cam-pizzas .btn--tilt-dashed::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='calc(100%25 - 3px)' height='calc(100%25 - 3px)' rx='14' ry='14' fill='none' stroke='%23CEB293' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* RESTEZ CONNECTÉS — fond sand, grid 2 cols (texte + photos 3×2 débordantes) */
.cam-social {
    background: #CEB293;
    padding: 30px 0 60px;
    overflow-x: clip;
}
.cam-social__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.cam-social__text {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.cam-social__inner { max-width: 100%; }
.cam-social__inner h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 24px;
}
.cam-social__inner p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 20px;
}
.cam-social__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cam-social__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--ink-700);
    transition: color .3s;
}
.cam-social__link i {
    font-size: 24px;
    width: 28px;
    text-align: center;
}
.cam-social__link:hover { color: var(--brand-700); }
.cam-social__photos {
    margin-top: -60px;
    margin-right: clamp(-100px, calc((1200px - 100vw) / 2 - 20px), 0px);
    align-self: stretch;
    position: relative;
    z-index: 1;
}
.cam-social__photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.cam-social__photos-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* --- RESTO KIOSQUE — sections statiques (préfixe .kio-)
   Hero (image full + overlay), options sur place/à emporter,
   carte kiosque (header + 3 menu-cards Phase 3), lieu+horaires+
   paiement, events bandeau. */

/* HERO — image kiosque.png en bg + overlay sombre 0.7 */
.kio-hero {
    background-color: transparent;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 0 75px;
    position: relative;
    overflow: hidden;
}
.kio-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.kio-hero__deco-right {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 420px;
    opacity: 0.15;
    z-index: 1;
}
.kio-hero__deco-left {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 200px;
    opacity: 0.1;
    z-index: 1;
}
.kio-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.kio-hero__title {
    font-family: var(--font-display);
    font-size: 55px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
}
.kio-hero__text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto 8px;
}

/* OPTIONS sur place / à emporter */
.kio-options {
    background-color: var(--cream-100);
    padding: 120px 0 40px;
}
.kio-options__layout {
    display: flex;
    gap: 45px;
    align-items: flex-start;
}
.kio-options__left { flex: 0 0 47%; }
.kio-options__image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 30px auto 0;
    position: relative;
    z-index: 2;
}
.kio-options__title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    text-align: center;
}
.kio-options__right {
    flex: 0 0 53%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.kio-option {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.kio-option__top {
    display: flex;
    align-items: center;
    gap: 20px;
}
.kio-option__icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.kio-option__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.kio-option__top h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--ink-700);
    margin-bottom: 10px;
    line-height: 1.3;
}
.kio-option__content {
    padding-left: 90px;
    max-width: 550px;
}
.kio-option__content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 8px;
}
.kio-option__content p.kio-option__info {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.3;
    color: var(--ink-700);
    margin-top: 15px;
    margin-bottom: 15px;
}

/* CARTE DU KIOSQUE — wrapper olive avec ellipse cream sur le top
   (transition douce avec .kio-options au-dessus). Les 3 menu-cards
   à l'intérieur réutilisent les variantes --kiosque-1/2/3 de la
   couche COMPONENTS (déjà en place depuis Phase 3). */
.kio-carte {
    background-color: var(--brand-700);
    padding: 200px 0 100px;
    position: relative;
    overflow: visible;
}
.kio-carte::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -10%;
    width: 120%;
    height: 150px;
    background: var(--cream-100);
    clip-path: ellipse(50% 100% at 50% 0%);
    z-index: 1;
}
.kio-carte .container { max-width: 1000px; }
.kio-carte__deco-left {
    position: absolute;
    top: 100px;
    left: -60px;
    width: 220px;
    opacity: 0.12;
    z-index: 2;
}
.kio-carte__deco-right {
    position: absolute;
    bottom: 150px;
    right: -30px;
    width: 300px;
    opacity: 0.1;
    z-index: 2;
}
.kio-carte__header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.kio-carte__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 30px;
}
.kio-carte__text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
}

/* LIEU — texte + image */
.kio-lieu {
    background-color: var(--white);
    padding: 80px 0;
}
.kio-lieu__top {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.kio-lieu__text { flex: 1; }
.kio-lieu__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 16px;
    text-align: center;
}
.kio-lieu__desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 28px;
    text-align: center;
}
.kio-lieu__infos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.kio-lieu__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    text-align: center;
}
.kio-lieu__info i {
    font-size: 29px;
    height: 29px;
    color: #C6B397;
}
.kio-lieu__image {
    flex: 0 0 380px;
    border-radius: 14px;
    overflow: hidden;
}
.kio-lieu__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* HORAIRES (tabs jours + content avec horaires + paiement) */
.kio-horaires {
    background: #F3F0EA;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 5px 6px 22px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.kio-horaires__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--ink-700);
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.kio-horaires__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    grid-area: tabs;
}
.kio-horaires__tab {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    padding: 10px 30px;
    min-width: 140px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--ink-700);
    background: transparent;
    color: var(--ink-700);
    cursor: pointer;
    transition: all 0.3s ease;
}
.kio-horaires__tab--active {
    background: var(--rust-600);
    color: var(--white);
    border-color: var(--rust-600);
}
.kio-horaires__tab:hover:not(.kio-horaires__tab--active) {
    background: #f0ebe3;
}
/* Content : grid 2 col avec tabs sur 100% width au-dessus de left+right.
   .kio-horaires__row1 est en display:contents → tabs/left deviennent grid items
   directs de content en desktop (transparent). En responsive, row1 devient un grid
   pour borner le sticky tabs à la zone tabs+left. */
.kio-horaires__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "tabs tabs"
        "left right";
    gap: 45px 40px;
    position: relative;
    z-index: 1;
}
.kio-horaires__row1 { display: contents; }
.kio-horaires__left  { grid-area: left; flex: 1; }
.kio-horaires__right { grid-area: right; flex: 1; }
.kio-horaires__hours {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 900;
    color: var(--ink-700);
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
}
.kio-horaires__note {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 20px;
}
.kio-horaires__right { flex: 1; }

/* PAIEMENT (card avec bordure dashed rust SVG inline) */
.kio-paiement {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 5px 6px 22px rgba(0, 0, 0, 0.14);
    isolation: isolate;
}
.kio-paiement::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 14px;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect x='1.5' y='1.5' width='99%25' height='99%25' rx='14' ry='14' fill='none' stroke='%23c85a28' stroke-width='3' stroke-dasharray='20,14' stroke-linecap='round'/%3E%3C/svg%3E");
}
.kio-paiement__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--ink-700);
    margin: 0 0 24px;
    line-height: 1.3;
}
.kio-paiement ul {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.kio-paiement li {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    display: flex;
    align-items: center;
    gap: 22px;
}
.kio-paiement li i {
    color: #9C3F20;
    font-size: 30px;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}
.kio-paiement__card-icon { transform: rotate(-15deg); }

/* ÉVÉNEMENTS — fond sand avec biseau blanc en haut à gauche */
.kio-events {
    background-color: #C6B397;
    padding: 120px 0 80px;
    position: relative;
}
.kio-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.kio-events__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.kio-events__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}
.kio-events__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.kio-events__title {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 900;
    color: var(--ink-700);
    line-height: 1.15;
    margin-bottom: 30px;
}
.kio-events__subtitle {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--ink-700);
    text-align: center;
    margin-bottom: 30px;
}
.kio-events__text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
    margin-bottom: 30px;
}

/* =============================================================
   8. UTILITIES
   ============================================================= */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* =============================================================
   PAGE ÉVÉNEMENTS (/evenements) — préfixe .ev-*
   ============================================================= */

/* HERO : image de fond + dark overlay + texte centré (pattern kiosque) */
.ev-hero {
    background-color: var(--ink-700);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
}
.ev-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.ev-hero__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}
.ev-hero__title {
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--white);
}
.ev-hero__text { font-family: var(--font-body); font-size: 18px; line-height: 23px; margin-bottom: 18px; color: var(--white); }
.ev-hero__text p { margin: 0 0 12px; }
.ev-hero__zone { font-family: var(--font-body); font-size: 18px; line-height: 23px; color: var(--white); }
.ev-hero__zone p { margin: 0; }
.ev-hero__cta { margin-top: 28px; }
.ev-hero__cta .btn { font-size: 16px; padding: 14px 32px; }

/* CTA partagé : centré, marge top, taille un peu plus grosse que par défaut */
.ev-section__cta {
    margin-top: 36px;
    text-align: center;
}
.ev-section__cta .btn {
    font-size: 16px;
    padding: 13px 30px;
}

/* SECTIONS principales (privé / pro / grand public) */
.ev-section {
    padding: 80px 0;
}
.ev-section--prive { background-color: var(--cream-100); }
.ev-section--pro   { background-color: var(--white); }
.ev-section--gp    { background-color: var(--cream-100); }

.ev-section__header {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}
.ev-section__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--ink-700);
    margin-bottom: 22px;
}
.ev-section__title--center { text-align: center; }
.ev-section__intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
}
.ev-section__intro p { margin: 0 0 12px; }
.ev-section__intro--center { text-align: center; max-width: 720px; margin: 0 auto; }

/* Bandeau image optionnel au-dessus des sub-cards */
.ev-section__banner {
    max-width: 1100px;
    margin: 0 auto 48px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 6;
}
.ev-section__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sous-sections (3 par section principale) — grid 3 col */
.ev-subs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.ev-sub {
    background: var(--white);
    border: 1px solid var(--sand-400);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}
.ev-section--pro .ev-sub { background: var(--cream-100); border-color: var(--sand-400); }
.ev-sub__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--cream-100);
}
.ev-sub__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ev-sub:hover .ev-sub__image img { transform: scale(1.04); }
.ev-sub__body { padding: 24px 24px 26px; }
.ev-sub--with-image .ev-sub__body { padding-top: 22px; }
.ev-sub:not(.ev-sub--with-image) .ev-sub__body { padding: 28px 26px; }
.ev-sub__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--rust-600);
    margin-bottom: 14px;
}
.ev-sub__text { font-family: var(--font-body); font-size: 18px; line-height: 23px; color: var(--ink-700); }
.ev-sub__text p { margin: 0 0 10px; }
.ev-sub__text p:last-child { margin-bottom: 0; }

/* "Autres événements …" — bullets */
.ev-others {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.ev-others__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink-700);
    margin-bottom: 18px;
}
.ev-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
}
.ev-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
}
.ev-bullets li i {
    color: var(--rust-600);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* COMMENT ÇA MARCHE */
.ev-process {
    background: var(--brand-700);
    color: var(--white);
    padding: 80px 0;
}
.ev-process .ev-section__title,
.ev-process .ev-section__intro,
.ev-process .ev-section__intro p { color: var(--white); }
.ev-process__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.ev-process__layout--with-image {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
}
.ev-process__steps-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}
.ev-process__layout--with-image .ev-process__steps-title { text-align: left; }
.ev-process__image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    aspect-ratio: 4 / 5;
}
.ev-process__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ev-steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 36px;
}
.ev-process__layout--with-image .ev-steps { grid-template-columns: 1fr; max-width: none; }
.ev-steps__item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 22px 24px;
}
.ev-steps__num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rust-600);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ev-steps__num > span { display: inline-block; transform: translateY(-3px); }
.ev-steps__text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--white);
}
.ev-steps__text p { margin: 0; }

.ev-included {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.ev-included__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}
.ev-included .ev-bullets li { color: var(--white); }
.ev-included .ev-bullets li i { color: var(--gold-500, #c9a14a); }

/* POURQUOI CHOISIR — 3 cards icône + titre + texte narratif */
.ev-why {
    background: var(--cream-100);
    padding: 80px 0;
}
.ev-why__cards {
    margin: 48px auto 0;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ev-why__card {
    background: var(--white);
    border-radius: 14px;
    padding: 36px 28px 32px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ev-why__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ev-why__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--rust-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.ev-why__card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-700);
    margin-bottom: 14px;
    line-height: 1.25;
}
.ev-why__card-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 23px;
    color: var(--ink-700);
}
.ev-why__card-text p { margin: 0; }

/* DEVIS — formulaire */
.ev-quote {
    background: var(--white);
    padding: 80px 0;
}
.ev-quote__header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}
.ev-quote__phone {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}
.ev-quote__phone i { color: var(--rust-600); margin-right: 10px; }
.ev-quote__phone a { color: var(--ink-700); text-decoration: none; }
.ev-quote__phone a:hover { color: var(--rust-600); }

.ev-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--cream-100);
    border-radius: 14px;
    padding: 36px 38px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ev-form__row { display: flex; flex-direction: column; gap: 6px; }
.ev-form__row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ev-form__field { display: flex; flex-direction: column; gap: 6px; }
.ev-form__field span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-700);
}
.ev-form__field span em { color: var(--rust-600); font-style: normal; }
.ev-form__field input,
.ev-form__field select,
.ev-form__field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 11px 14px;
    border: 1px solid var(--sand-400);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink-700);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.ev-form__field input:focus,
.ev-form__field select:focus,
.ev-form__field textarea:focus {
    outline: none;
    border-color: var(--rust-600);
    box-shadow: 0 0 0 3px rgba(177, 54, 15, 0.12);
}
.ev-form__field textarea { resize: vertical; min-height: 100px; }
.ev-form__submit {
    align-self: center;
    margin-top: 8px;
    font-size: 16px;
    padding: 14px 32px;
}
.ev-form__notice {
    text-align: center;
    font-size: 13px;
    color: var(--ink-500, #6b6b6b);
    margin: 0;
}

/* Flash success / erreurs au-dessus du form */
.ev-form-flash {
    max-width: 720px;
    margin: 0 auto 20px;
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
}
.ev-form-flash i { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ev-form-flash--success { background: #e8f5ec; color: #1b5e2c; border: 1px solid #b6dec0; }
.ev-form-flash--success i { color: #1b8a3a; }
.ev-form-flash--error { background: #fdecec; color: #8b1b1b; border: 1px solid #f3b8b8; }
.ev-form-flash--error i { color: #c0392b; }
.ev-form-flash ul { margin: 6px 0 0; padding-left: 18px; }
.ev-form__field--invalid input,
.ev-form__field--invalid select,
.ev-form__field--invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12); }

/* PAGES LÉGALES (mentions-legales + politique-de-confidentialite) */
.lp-hero {
    background: var(--brand-700);
    padding: 160px 0 80px;
    text-align: center;
}
.lp-hero__content {
    max-width: 850px;
    margin: 0 auto;
}
.lp-hero__title {
    font-family: var(--font-display);
    font-size: 55px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
}
.lp-content {
    background: var(--cream-100);
    padding: 70px 0 100px;
}
.lp-content__inner {
    max-width: 820px;
    margin: 0 auto;
}
.lp-content__updated {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink-500);
    margin: 0 0 28px;
    font-style: italic;
}
.lp-content__body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-700);
}
.lp-content__body h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-700);
    margin: 40px 0 16px;
    line-height: 1.25;
}
.lp-content__body h2:first-child { margin-top: 0; }
.lp-content__body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-700);
    margin: 24px 0 10px;
}
.lp-content__body p { margin: 0 0 14px; }
.lp-content__body ul,
.lp-content__body ol { margin: 0 0 18px; padding-left: 24px; }
.lp-content__body li { margin-bottom: 6px; }
.lp-content__body a { color: var(--brand-700); text-decoration: underline; }
.lp-content__body a:hover { color: var(--brand-500); }
.lp-content__body strong { color: var(--ink-700); }

/* Responsive page Événements (≤1023 / ≤767 / ≤480) — appended à la fin
   du bloc @media existant, voir bas du fichier. */

/* =============================================================
   9. RESPONSIVE
   Mobile = 0..767px — refonte dédiée dans Plan Module A (phase mobile-first retravaillée)
   Tablette = 768..1023px — hérite du mobile + overrides ponctuels
   Desktop = 1024px+ — baseline pixel-perfect validée (rien ici)
   ============================================================= */
@media (max-width: 1023px) {
    /* Tablette landscape — paddings réduits, grilles parfois 2 cols */
    .container { padding-left: 24px; padding-right: 24px; }

    /* Footer 4 cols → 2 cols */
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    /* === Home === */
    /* Hero : padding réduit, titres légèrement compressés */
    .hero { min-height: 500px; max-height: 700px; }
    .hero__title { font-size: 44px; line-height: 1.1; }
    .hero__subtitle { font-size: 24px; }

    /* Cards savoir-faire : sortir du positionnement absolu, passer en flex colonne.
       Reset min-width (les modificateurs ont 615-625 px en desktop).
       Gap augmenté à 80 px pour laisser de la place aux languettes ::after
       (demi-cercles dépassant ±30 px en haut/bas). */
    .cards-artisan {
        position: static;
        min-height: auto;
        margin-bottom: 80px;
        display: flex;
        flex-direction: column;
        gap: 80px;
        align-items: center;
    }
    .card-artisan {
        position: relative;
        width: 100%;
        max-width: none;
        min-width: 0;
    }
    .card-artisan--gauche-haut,
    .card-artisan--droite-milieu,
    .card-artisan--gauche-bas {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        min-width: 0;
    }
    /* Card 3 (feu de bois) : -5° en desktop, adouci en mobile (full-width = trop visible).
       Remontée de 40px : pas de languettes ::after entre card2 (vert haut) et card3 (rouge bas)
       donc on peut resserrer cet inter-card sans gêner les demi-cercles. */
    .card-artisan--gauche-bas { transform: rotate(-2deg); margin-top: -40px; }
    /* Hover : baseline desktop conservée (rotate 0deg + scale 1.02) —
       les ::after suivent correctement maintenant que la card est
       position:relative en mobile. */

    /* Décos absolues du desktop (tomates SVG, part de pizza SVG, feu de bois) :
       masquées en tablette/mobile pour ne pas déborder ni gêner le layout. */
    .deco--tomates,
    .deco--part-de-pizza,
    .deco--feu-bois { display: none; }

    /* Languettes décoratives ::after (demi-cercles dépassant en haut/bas
       des cards) : conservées en mobile, rendues possibles grâce au gap:80px
       sur .cards-artisan (≥ 60 px nécessaires pour les ±30 px de débordement). */

    /* Padding vertical compressé autour de la galerie : en desktop (260/300px)
       il était compensé par les margins négatifs ±200px de .gallery, supprimés ici. */
    .savoir-faire { padding-bottom: 80px; }
    .locations { padding-top: 80px; }

    /* Galerie 3 photos : photo 1 full-width, photos 2 et 3 côte à côte 50/50 */
    .gallery { margin-top: 0; margin-bottom: 0; }
    .gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery__item:first-child { grid-column: 1 / -1; }
    .gallery__item:first-child img { height: 280px; }
    .gallery__item:last-child { grid-column: auto; }
    .gallery__item:last-child img { height: 220px; }

    /* Events / History : padding réduit */
    /* margin-top négatif (comme desktop -90px) : events remonte par-dessus la fin
       de locations. Le dôme blanc reste intact côté locations, et events ayant un
       fond blanc, la transition est invisible. */
    .events { padding: 40px 0 0; margin-top: -80px; }
    .history { padding: 60px 0; }

    /* === About === */
    /* Hero : padding réduit, image bg passe en bas-fade pour plus d'air à gauche */
    .ap-hero { padding: 140px 0 60px; }
    .ap-hero::after { width: 55%; opacity: 0.35; }
    .ap-hero__content h1 { font-size: 44px; margin-bottom: 20px; }
    .ap-hero__content p { font-size: 17px; line-height: 22px; }

    /* Les débuts : padding réduit */
    .ap-debuts { padding: 60px 0 40px; }
    .ap-debuts h2 { font-size: 36px; margin-bottom: 18px; }

    /* Transmission : grid 2 col → 1 col empilée */
    .ap-transmission__grid {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }
    .ap-transmission__text,
    .ap-transmission__img { flex: none; max-width: 100%; }
    .ap-transmission__img { padding: 0; }
    .ap-transmission__text h2 { font-size: 36px; }

    /* Savoir-faire (intro) : header centré compressé */
    .ap-savoir__header h2 { font-size: 36px; }

    /* Valeurs grid : 5 cards en flex 1 → 3 cards par ligne en tablette */
    .ap-valeurs__title { font-size: 30px; margin-bottom: 36px; }
    /* row-gap large car chaque item a un ::after qui déborde de 20px.
       flex-grow: 0 pour que les items orphelins (ex. ligne 2 incomplète) gardent
       leur taille au lieu de s'étirer. Centrage via justify-content: center du grid. */
    .ap-valeurs__grid { column-gap: 14px; row-gap: 50px; }
    .ap-valeurs__item { flex: 0 1 calc(33.333% - 14px); min-width: 180px; }

    /* Timeline : compression de la card (800px → 100%), grid 1 col.
       Nav points dashed désactivée → remplacée par flèches prev/next + année courante. */
    .ap-timeline__card { width: 100%; max-width: none; }
    .ap-timeline__card-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 64px;
    }
    .ap-timeline__card-img img { height: 220px; }
    .ap-timeline__bar { padding: 0; max-width: none; margin-bottom: 40px; }
    .ap-timeline__line,
    .ap-timeline__points { display: none; }
    /* Nav timeline : flèches alignées sur le style des slider arrows en dessous
       (cercle ink-700, chevron blanc, box-shadow). Année en pill dashed rust. */
    .ap-timeline__nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        min-height: 44px;
        position: relative;
    }
    .ap-timeline__nav-arrow {
        background: var(--ink-700);
        border: none;
        border-radius: 50%;
        padding: 0;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        line-height: 1;
        color: var(--white);
        cursor: pointer;
        transition: opacity 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        position: relative;
        z-index: 1;
    }
    .ap-timeline__nav-arrow:hover {
        opacity: 0.8;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    }
    .ap-timeline__nav-arrow:disabled {
        opacity: 0.3;
        cursor: default;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    .ap-timeline__nav-current {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 900;
        color: var(--rust-600);
        background: var(--white);
        border: 2px dashed var(--rust-600);
        border-radius: 999px;
        padding: 0 22px;
        height: 44px;
        min-width: 90px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    /* Slider savoir : padding extérieur réduit, arrows plus proches */
    .ap-savoir__slider { padding: 0 40px; }
    .ap-slider__arrow--prev { left: -8px; }
    .ap-slider__arrow--next { right: -8px; }
    .ap-savoir__menucard .menu-card__inner { padding: 65px 65px; }

    /* Accordion produits : 2 col mini sur tablette (image gauche, accordéons droite). */
    .ap-accordion-layout {
        gap: 28px;
        margin: 0;
    }
    .ap-accordion-layout__img {
        flex: 0 0 32%;
        position: static;
        top: auto;
    }
    .ap-accordion-layout__img img { min-height: 220px; }
    .ap-produits__title { font-size: 36px; margin-bottom: 40px; }

    /* === Notre carte === */
    /* Hero : padding-top large pour donner de l'air au-dessus du titre, typo réduite */
    .nc-hero { padding: 140px 0 60px; }
    .nc-hero__title { font-size: 44px; margin-bottom: 20px; }
    .nc-hero__text { font-size: 17px; line-height: 22px; }
    .nc-hero__text--highlight { margin-bottom: 28px; }
    .nc-hero__buttons .btn--primary,
    .nc-hero__buttons .btn--gold { font-size: 16px; padding: 12px 26px; }

    /* === Pages légales === */
    .lp-hero { padding: 140px 0 60px; }
    .lp-hero__title { font-size: 44px; }
    .lp-content { padding: 50px 0 70px; }
    .lp-content__body h2 { font-size: 24px; }
    .lp-content__body h3 { font-size: 18px; }

    /* Carte camions : header compact, rotations desktop conservées, marge bas augmentée. */
    .nc-camions { padding: 60px 0 0; }
    .nc-camions__header { margin-bottom: 40px; }
    .nc-camions__title { font-size: 36px; margin-bottom: 20px; }
    .nc-camions__subtitle { font-size: 17px; line-height: 23px; }
    .nc-camions__cta { margin-top: 60px; }

    /* Carte kiosque : dôme et padding réduits */
    .nc-kiosque { padding: 140px 0 80px; }
    .nc-kiosque::before { top: -40px; height: 120px; }
    .nc-kiosque__header { margin-bottom: 40px; }
    .nc-kiosque__title { font-size: 36px; margin-bottom: 20px; }
    .nc-kiosque__text { font-size: 17px; line-height: 22px; }

    /* Menu-card (composant partagé) : padding interne aéré pour ne pas coller le
       contenu aux pointillés rust + marge bas plus grande entre les cards. */
    .menu-card { margin-bottom: 90px; }
    .menu-card__inner { padding: 78px 68px; }
    .menu-card__title { font-size: 24px; }
    .menu-card__tagline { font-size: 24px; }

    /* Toutes les cards de notre-carte (camions + kiosque) et de resto-kiosque
       centrées horizontalement et alignées en largeur (override des width
       85/88% asymétriques desktop). Rotations et chevauchement vertical conservés. */
    .nc-camions .menu-card,
    .nc-kiosque .menu-card,
    .kio-carte .menu-card {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Engagement : grid 3 col conservée mais images plus petites */
    .nc-engagement { padding: 60px 0; }
    .nc-engagement__title { font-size: 36px; margin-bottom: 20px; }
    .nc-engagement__intro { font-size: 17px; line-height: 23px; }
    .nc-engagement__grid { column-gap: 22px; row-gap: 8px; }
    .nc-engagement__image { height: 400px; }
    .nc-engagement__label { font-size: 14px; padding: 24px 14px 10px; }
    .nc-engagement__item p { margin-bottom: 28px; }

    /* === Nos camions === */
    /* Hero : padding réduit, rotation desktop (-2deg) conservée */
    .cam-hero { padding: 100px 0 0; }
    .cam-hero__card-inner { padding: 75px 75px; }
    .cam-hero__card-inner h1 { font-size: 40px; margin-bottom: 18px; }
    .cam-hero__card-inner p { font-size: 17px; line-height: 23px; }

    /* Emplacements responsive : layout en 1 col (row1 | map).
       row1 devient un grid 2 col (tabs sticky | lieux). Sticky borné par row1
       → se relâche quand la liste des villes finit, puis la map scroll seule. */
    .cam-emplacements { padding: 120px 0 60px; }
    .cam-emplacements__header { margin-bottom: 36px; }
    .cam-emplacements__header h2 { font-size: 38px; margin-bottom: 18px; }
    .cam-emplacements__header p { font-size: 17px; line-height: 23px; }
    .cam-emplacements__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "row1"
            "map";
        gap: 28px;
        align-items: stretch;
    }
    .cam-emplacements__row1 {
        display: grid;
        grid-area: row1;
        grid-template-columns: auto 1fr;
        grid-template-areas: "tabs lieux";
        gap: 28px 36px;
        align-items: start;
    }
    .cam-tabs {
        flex-direction: column;
        gap: 8px;
        position: sticky;
        top: 90px;
        align-self: start;
    }
    .cam-tabs__btn { min-width: auto; padding: 8px 14px; font-size: 14px; }
    .cam-lieux {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .cam-emplacements__sep { display: none; }
    .cam-map { height: 320px; }
    .cam-map::before { inset: 15px; transform: translate(27px, 33px); }

    /* Commander : grid 2 col → 1 col */
    .cam-commander { padding: 50px 0 0; }
    .cam-commander__grid { grid-template-columns: 1fr; gap: 36px; }
    .cam-commander__inner h2 { font-size: 36px; margin-bottom: 18px; }
    .cam-commander__inner p { font-size: 17px; line-height: 23px; }

    /* Events bandeau : 1 col, icon centré au-dessus */
    .cam-events { padding: 80px 0; }
    .cam-events::before,
    .cam-events::after { height: 40px; }
    .cam-events__content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .cam-events__icon { max-width: 140px; margin: 0 auto; }
    .cam-events__text h2 { font-size: 36px; margin-bottom: 18px; }
    .cam-events__text p { font-size: 17px; line-height: 23px; }

    /* Pizzas proposées : grid 2 col → 1 col, image au-dessus */
    .cam-pizzas { padding: 70px 0 90px; }
    .cam-pizzas__grid { grid-template-columns: 1fr; gap: 40px; }
    .cam-pizzas__title-row h2 { font-size: 36px; }
    .cam-pizzas__text p { font-size: 17px; line-height: 23px; }

    /* Restez connectés : 1 col, photos AVANT le texte avec chevauchement haut */
    .cam-social__grid { grid-template-columns: 1fr; gap: 36px; }
    .cam-social__text { padding-top: 0; padding-bottom: 0; }
    .cam-social__inner h2 { font-size: 36px; margin-bottom: 18px; }
    .cam-social__inner p { font-size: 17px; line-height: 23px; }
    .cam-social__photos {
        order: -1;
        margin-top: -60px;
        margin-right: 0;
    }

    /* === Resto-kiosque === */
    /* Hero : padding réduit, typo adaptée, décorations SVG masquées (desktop only) */
    .kio-hero { padding: 140px 0 80px; }
    .kio-hero__deco-right,
    .kio-hero__deco-left { display: none; }
    .kio-hero__title { font-size: 40px; margin-bottom: 22px; }
    .kio-hero__text { font-size: 17px; line-height: 23px; }

    /* Options : flex 2 col → 1 col empilée. Padding-top large pour aérer après
       la card hero. Padding-bottom modéré : l'ellipse cream du .kio-carte::before
       déborde de 50px sur cette section, donc on garde ~60px pour ne pas mordre
       la dernière ligne (info téléphone) tout en évitant un trou inutile. */
    .kio-options { padding: 100px 0 60px; }
    .kio-options__layout { flex-direction: column; gap: 32px; }
    .kio-options__left { flex: 0 0 auto; }
    .kio-options__title { font-size: 32px; }
    .kio-options__right { flex: 0 0 auto; gap: 32px; }
    .kio-option__top h3 { font-size: 20px; }
    .kio-option__icon { width: 60px; height: 60px; }
    .kio-option__top { gap: 16px; }
    .kio-option__content { padding-left: 76px; }
    .kio-option__content p { font-size: 17px; line-height: 23px; }
    .kio-option__content p.kio-option__info { font-size: 18px; }

    /* Carte : déco SVG masquées (desktop only), padding réduit, header compact */
    .kio-carte { padding: 140px 0 70px; }
    .kio-carte::before { clip-path: ellipse(50% 60% at 50% 0%); }
    .kio-carte__deco-left,
    .kio-carte__deco-right { display: none; }
    .kio-carte__header { margin-bottom: 40px; }
    .kio-carte__title { font-size: 36px; margin-bottom: 22px; }
    .kio-carte__text { font-size: 17px; line-height: 23px; }

    /* Lieu : image AU-DESSUS du texte (alignement T4), infos en row wrap */
    .kio-lieu { padding: 60px 0; }
    .kio-lieu__top {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
        margin-bottom: 40px;
    }
    .kio-lieu__image { flex: 0 0 auto; order: -1; max-height: 480px; }
    .kio-lieu__image img { max-height: 480px; object-position: center; }
    .kio-lieu__title { font-size: 36px; }
    .kio-lieu__desc { font-size: 17px; line-height: 23px; }
    .kio-lieu__infos { gap: 28px; }

    /* Horaires : content en 1 col (row1 | right). Le wrapper row1 borne le
       sticky tabs à la zone tabs+left (sans paiement) → tabs se relâche en
       fin de jour info, paiement scroll seul en dessous. */
    .kio-horaires { padding: 32px 28px; }
    .kio-horaires__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "row1"
            "right";
        gap: 28px;
    }
    .kio-horaires__row1 {
        display: grid;
        grid-area: row1;
        grid-template-columns: auto 1fr;
        grid-template-areas: "tabs left";
        gap: 28px 36px;
        align-items: start;
    }
    .kio-horaires__tabs {
        flex-direction: column;
        gap: 8px;
        position: sticky;
        top: 90px;
        align-self: start;
    }
    .kio-horaires__tab {
        min-width: auto;
        padding: 8px 18px;
        font-size: 16px;
    }
    .kio-horaires__hours { font-size: 18px; }
    .kio-horaires__note { font-size: 17px; line-height: 23px; }

    /* Events : padding réduit, biseau plus discret, typo compacte */
    .kio-events { padding: 90px 0 60px; }
    .kio-events::before { height: 40px; }
    .kio-events__title { font-size: 36px; margin-bottom: 22px; }
    .kio-events__icon { width: 70px; height: 70px; }
    .kio-events__subtitle { font-size: 20px; margin-bottom: 22px; }
    .kio-events__text { font-size: 17px; line-height: 23px; }

    /* === Page Événements (/evenements) === */
    .ev-hero { padding: 140px 0 70px; }
    .ev-hero__title { font-size: 38px; margin-bottom: 22px; }
    .ev-hero__text { font-size: 17px; line-height: 1.55; }
    .ev-hero__zone { font-size: 17px; line-height: 1.55; }
    .ev-section { padding: 60px 0; }
    .ev-section__title { font-size: 30px; }
    .ev-section__intro { font-size: 17px; line-height: 1.55; }
    .ev-subs { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
    .ev-sub__image { height: 220px; }
    .ev-sub__text { font-size: 16px; line-height: 1.55; }
    .ev-bullets li { font-size: 16px; line-height: 1.55; }
    .ev-section__banner { aspect-ratio: 16 / 7; margin-bottom: 36px; }
    .ev-process { padding: 60px 0; }
    .ev-process__layout--with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ev-process__image { aspect-ratio: 16 / 9; max-width: 600px; margin: 0 auto; }
    .ev-process__layout--with-image .ev-process__steps-title { text-align: center; }
    .ev-process__layout--with-image .ev-steps { grid-template-columns: 1fr 1fr; }
    .ev-steps { grid-template-columns: 1fr; gap: 18px; margin-bottom: 0; }
    .ev-steps__text { font-size: 16px; line-height: 1.55; }
    .ev-why { padding: 60px 0; }
    .ev-why__cards { grid-template-columns: 1fr; gap: 20px; max-width: 520px; }
    .ev-why__card-text { font-size: 16px; line-height: 1.55; }
    .ev-quote { padding: 60px 0; }
    .ev-form { padding: 28px 26px; }
}

@media (max-width: 767px) {
    /* Tablette portrait / mobile large */
    .container { padding-left: 16px; padding-right: 16px; }

    /* Header : masquer le menu desktop, montrer le burger */
    .nav__links { display: none; }
    .nav__burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 0;
        cursor: pointer;
        padding: 0;
        color: var(--white, #fff);
        font-size: 24px;
        line-height: 1;
    }
    .nav__burger:hover { color: var(--cream-200, #e8d8a0); }

    /* Drawer : pleine hauteur, slide depuis la droite. z-index > header (1000). */
    .nav__drawer:not([hidden]) {
        display: block;
        position: fixed;
        inset: 0 0 0 30%;
        background: var(--brand-700, var(--brand, #1a3a2a));
        z-index: 2000;
        padding: 60px 24px 24px;
        overflow-y: auto;
    }
    .nav__drawer-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 0;
        color: var(--white, #fff);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav__drawer-close:hover { color: var(--cream-200, #e8d8a0); }
    .nav__drawer-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .nav__drawer-list a {
        color: var(--white, #fff);
        text-decoration: none;
        font-family: var(--font-display);
        font-size: 22px;
    }
    body.nav-drawer-open { overflow: hidden; } /* bloque scroll fond */
    /* Masquer les boutons fixed (réserver / appeler) quand le drawer est
       ouvert pour éviter qu'ils ne flottent par-dessus / sous le drawer. */
    body.nav-drawer-open .fixed-buttons { display: none; }

    /* Footer : padding-top compressé (100px en desktop) pour rapprocher le logo
       du bord supérieur vert. */
    .footer { padding-top: 40px; }

    /* Footer 4 cols → 1 col */
    .footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .footer__col { border-right: none; padding: 0 0 20px; border-bottom: 1px solid var(--white, #fff); }
    .footer__col:last-child { border-bottom: none; }

    /* Footer bottom (mentions légales / politique / kyracom) :
       passer en colonne, alignés à gauche comme les colonnes du dessus */
    .footer__bottom .container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
    }

    /* === Home === */
    /* Hero compact mobile (vidéo conservée — décision client) */
    .hero { min-height: 60vh; max-height: none; }
    .hero__title { font-size: 50px; line-height: 1.1; margin-bottom: 20px; }
    .hero__subtitle { font-size: 24px; line-height: 1.4; }
    .hero__text { font-size: 20px; }
    .hero__video { object-fit: cover; }

    /* Cards : 1 col (déjà en flux normal via le BP ≤ 1023 hérité) */
    /* Padding 40px tous côtés : ≥15px d'air entre contenu (image, texte) et la
       bordure dashed (inset 25). Ratio 40% image / 50% texte. */
    .card-artisan__inner { padding: 40px; min-height: auto; }
    .card-artisan__image { width: 40% !important; }
    .card-artisan__content { flex: 0 0 50%; }
    /* Card 2 (vert) : baseline align-self:stretch → image full-height en mobile.
       On la cale comme cards 1/3 (hauteur fixe + centrée verticalement). */
    .card-artisan--vert .card-artisan__image { align-self: center; height: 200px; }

    /* Galerie : photo 1 full + photos 2 et 3 50/50 (cohérent avec ≤ 1023 px) */
    .gallery__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery__item:first-child { grid-column: 1 / -1; }
    .gallery__item:first-child img { height: 340px; }
    .gallery__item:last-child { grid-column: auto; }
    .gallery__item { height: 220px; }

    /* Locations : 1 col */
    .locations__cards { grid-template-columns: 1fr; gap: 68px; }

    /* Events : empiler texte + image */
    .events__content { flex-direction: column; gap: 32px; }
    .events__text { flex: none; width: 100%; }
    .events__image { flex: none; width: 100%; }
    .events__image img { height: 390px; }

    /* History : empiler image + texte */
    .history__content { flex-direction: column-reverse; gap: 32px; }
    .history__image { flex: none; width: 100%; }
    .history__image img { height: 390px; }
    .history__text { flex: none; width: 100%; }

    /* === About === */
    /* Hero : encore plus compact en mobile */
    .ap-hero { padding: 120px 0 40px; }
    .ap-hero::after { width: 55%; opacity: 0.35; }
    .ap-hero__content h1 { font-size: 38px; }

    /* Les débuts */
    .ap-debuts { padding: 50px 0 30px; }
    .ap-debuts h2 { font-size: 30px; }
    .ap-debuts p { font-size: 17px; line-height: 22px; }

    /* Transmission */
    .ap-transmission__text h2 { font-size: 30px; }
    .ap-transmission__text > p { font-size: 17px; line-height: 22px; }

    /* Savoir-faire intro */
    .ap-savoir__header h2 { font-size: 30px; }
    .ap-savoir__header p { font-size: 17px; line-height: 22px; }

    /* Valeurs : 5 cards → 2 col en mobile (avec wrap) */
    .ap-valeurs__title { font-size: 26px; margin-bottom: 30px; }
    .ap-valeurs__grid { column-gap: 12px; row-gap: 45px; }
    .ap-valeurs__item {
        flex: 0 1 calc(50% - 12px);
        min-width: 0;
        padding: 20px 16px;
    }
    .ap-valeurs__item h3 { font-size: 16px; }
    .ap-valeurs__item p { font-size: 15px; line-height: 20px; }
    /* Bouton "valeurs cta" tilt-dashed : pas de marge supérieure trop large */
    .ap-valeurs__cta { margin-top: 30px; }

    /* Timeline : card compacte. La nav flèches/année (héritée de ≤1023) se réduit légèrement. */
    .ap-timeline__card-inner { padding: 48px; gap: 22px; }
    .ap-timeline__card-img img { height: 200px; }
    .ap-timeline__year { font-size: 32px; margin-bottom: 14px; padding: 10px 0; }
    .ap-timeline__year::before { inset: -10px -50px; }
    .ap-timeline__card-info p { font-size: 17px; line-height: 22px; }
    .ap-timeline__nav { gap: 12px; min-height: 40px; }
    .ap-timeline__nav-arrow { width: 40px; height: 40px; font-size: 13px; }
    .ap-timeline__nav-current { height: 40px; font-size: 16px; padding: 0 18px; min-width: 80px; }

    /* Slider savoir-faire : grid image+texte (37/63) → 1 col image en haut/texte en bas */
    .ap-savoir__slider { padding: 0 8px; }
    .ap-slider__slide { padding: 0 6px; }
    .ap-slider__arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .ap-slider__arrow--prev { left: -4px; }
    .ap-slider__arrow--next { right: -4px; }
    .ap-savoir__menucard .menu-card__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ap-savoir__menucard .menu-card__col--image {
        order: -1;
    }
    .ap-savoir__menucard .menu-card__col-img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    .ap-savoir__menucard .menu-card__inner { padding: 56px 46px; }
    .ap-savoir__menucard .menu-card__title { font-size: 22px; }

    /* Accordion produits : 2 col mini conservée en mobile, image plus étroite */
    .ap-accordion-layout { gap: 18px; }
    .ap-accordion-layout__img { flex: 0 0 32%; }
    .ap-accordion-layout__img img { min-height: 180px; }
    .ap-produits__title { font-size: 30px; margin-bottom: 32px; }
    .ap-accordion__btn { padding: 16px 0; gap: 12px; }
    .ap-accordion__btn span { font-size: 18px; }
    .ap-accordion__panel { max-width: none; padding: 0 8px; }
    .ap-accordion__panel p { font-size: 17px; line-height: 22px; }

    /* === Notre carte === */
    /* Hero : padding-top large, titre + textes plus compacts */
    .nc-hero { padding: 120px 0 40px; }
    .nc-hero__title { font-size: 36px; }
    .nc-hero__text { font-size: 16px; }
    .nc-hero__buttons { gap: 12px; }
    .nc-hero__buttons .btn--primary,
    .nc-hero__buttons .btn--gold { font-size: 15px; padding: 11px 22px; }

    /* === Pages légales === */
    .lp-hero { padding: 120px 0 40px; }
    .lp-hero__title { font-size: 36px; }
    .lp-content { padding: 40px 0 60px; }
    .lp-content__body { font-size: 16px; }
    .lp-content__body h2 { font-size: 22px; margin: 32px 0 12px; }
    .lp-content__body h3 { font-size: 17px; }

    /* Carte camions : header compact, rotations desktop conservées (cf ≤1023). */
    .nc-camions { padding: 40px 0 0; }
    .nc-camions__header { margin-bottom: 30px; }
    .nc-camions__title { font-size: 30px; margin-bottom: 16px; }
    .nc-camions__subtitle { font-size: 16px; line-height: 22px; }
    .nc-camions__cta { margin-top: 40px; }

    /* Carte kiosque : dôme et padding compactés */
    .nc-kiosque { padding: 100px 0 60px; }
    .nc-kiosque::before { top: -25px; height: 90px; }
    .nc-kiosque__header { margin-bottom: 30px; }
    .nc-kiosque__title { font-size: 30px; margin-bottom: 16px; }
    .nc-kiosque__text { font-size: 16px; line-height: 22px; }

    /* Menu-card : padding interne aéré + marge bas + items en 1 col */
    .menu-card { margin-bottom: 70px; }
    .menu-card__inner { padding: 64px 52px; }
    .menu-card__title { font-size: 22px; }
    .menu-card__tagline { font-size: 20px; }
    .menu-card__grid { grid-template-columns: 1fr; gap: 18px; }
    .menu-item__name { font-size: 15px; }
    .menu-item__price { font-size: 17px; }
    .menu-item__desc { font-size: 13px; line-height: 17px; }

    /* Engagement : grid 3 col → 1 col (subgrid désactivé) */
    .nc-engagement { padding: 40px 0; }
    .nc-engagement__title { font-size: 30px; margin-bottom: 16px; }
    .nc-engagement__intro { font-size: 16px; line-height: 22px; }
    .nc-engagement__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        row-gap: 30px;
    }
    .nc-engagement__item {
        grid-template-rows: none;
        grid-row: auto;
    }
    .nc-engagement__image { height: 400px; }
    .nc-engagement__item p { margin-bottom: 36px; }

    /* === Nos camions === */
    /* Hero compact mobile */
    .cam-hero { padding: 90px 0 0; }
    .cam-hero__card-inner { padding: 65px 55px; }
    .cam-hero__card-inner h1 { font-size: 32px; }
    .cam-hero__card-inner p { font-size: 16px; line-height: 22px; }

    /* Emplacements */
    .cam-emplacements { padding: 100px 0 40px; }
    .cam-emplacements__header h2 { font-size: 30px; }
    .cam-tabs__btn { font-size: 15px; padding: 7px 14px; }
    .cam-map { height: 260px; }

    /* Commander */
    .cam-commander__inner h2 { font-size: 30px; }
    .cam-commander__inner p { font-size: 16px; }

    /* Events bandeau */
    .cam-events { padding: 60px 0; }
    .cam-events__icon { max-width: 110px; }
    .cam-events__text h2 { font-size: 30px; }

    /* Pizzas proposées */
    .cam-pizzas { padding: 50px 0 70px; }
    .cam-pizzas__title-row h2 { font-size: 30px; }

    /* Restez connectés : photos 3 col → 2 col */
    .cam-social__inner h2 { font-size: 30px; }
    .cam-social__photos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* === Resto-kiosque === */
    /* Hero compact mobile */
    .kio-hero { padding: 125px 0 50px; }
    .kio-hero__title { font-size: 32px; }
    .kio-hero__text { font-size: 16px; line-height: 22px; }

    /* Options */
    .kio-options__title { font-size: 28px; }
    .kio-options__image { max-width: 60%; }
    .kio-option__top h3 { font-size: 19px; }
    .kio-option__icon { width: 54px; height: 54px; }
    .kio-option__content { padding-left: 70px; }
    .kio-option__content p { font-size: 16px; line-height: 22px; }

    /* Carte */
    .kio-carte { padding: 120px 0 60px; }
    .kio-carte__title { font-size: 30px; }
    .kio-carte__text { font-size: 16px; line-height: 22px; }

    /* Lieu */
    .kio-lieu__title { font-size: 30px; }
    .kio-lieu__desc { font-size: 16px; line-height: 22px; }
    .kio-lieu__image { max-height: 380px; }
    .kio-lieu__image img { max-height: 380px; }
    .kio-lieu__info { font-size: 16px; }
    .kio-lieu__infos { gap: 22px; }

    /* Horaires */
    .kio-horaires { padding: 28px 22px; gap: 20px 24px; }
    .kio-horaires__title { font-size: 20px; }
    .kio-horaires__tab { font-size: 15px; padding: 7px 14px; }
    .kio-horaires__hours { font-size: 17px; }
    .kio-horaires__note { font-size: 16px; line-height: 22px; }
    .kio-paiement { padding: 38px 40px; }
    .kio-paiement__title { font-size: 20px; margin-bottom: 18px; }
    .kio-paiement li { font-size: 16px; gap: 18px; }
    .kio-paiement li i { font-size: 24px; width: 30px; }

    /* Events */
    .kio-events { padding: 70px 0 50px; }
    .kio-events__title { font-size: 30px; margin-bottom: 18px; }
    .kio-events__icon { width: 60px; height: 60px; }
    .kio-events__subtitle { font-size: 18px; margin-bottom: 18px; }
    .kio-events__text { font-size: 16px; line-height: 22px; }

    /* === Page Événements (/evenements) — mobile large === */
    .ev-hero { padding: 150px 0 60px; }
    .ev-hero__title { font-size: 30px; margin-bottom: 18px; }
    .ev-hero__text { font-size: 16px; line-height: 1.5; }
    .ev-hero__zone { font-size: 16px; line-height: 1.5; }
    .ev-section { padding: 50px 0; }
    .ev-section__title { font-size: 26px; }
    .ev-section__intro { font-size: 16px; line-height: 1.5; }
    .ev-sub__body { padding: 22px 20px; }
    .ev-sub:not(.ev-sub--with-image) .ev-sub__body { padding: 24px 22px; }
    .ev-sub__image { height: 180px; }
    .ev-section__banner { aspect-ratio: 4 / 3; margin-bottom: 28px; }
    .ev-sub__title { font-size: 20px; }
    .ev-sub__text { font-size: 15px; line-height: 1.5; }
    .ev-bullets { grid-template-columns: 1fr; gap: 10px; }
    .ev-bullets li { font-size: 15px; line-height: 1.5; }
    .ev-process { padding: 50px 0; }
    .ev-process__layout--with-image .ev-steps { grid-template-columns: 1fr; }
    .ev-process__steps-title { font-size: 20px; }
    .ev-steps__item { padding: 18px 18px; gap: 14px; }
    .ev-steps__num { width: 38px; height: 38px; font-size: 20px; }
    .ev-steps__num > span { transform: translateY(-2px); }
    .ev-steps__text { font-size: 15px; line-height: 1.5; }
    .ev-why { padding: 50px 0; }
    .ev-why__card { padding: 28px 22px 26px; }
    .ev-why__icon { width: 56px; height: 56px; font-size: 22px; }
    .ev-why__card-title { font-size: 18px; }
    .ev-why__card-text { font-size: 15px; line-height: 1.5; }
    .ev-quote { padding: 50px 0; }
    .ev-quote__phone { font-size: 19px; }
    .ev-form { padding: 22px 20px; gap: 14px; }
    .ev-form__row--2col { grid-template-columns: 1fr; gap: 14px; }
    .ev-form__field input,
    .ev-form__field select,
    .ev-form__field textarea { font-size: 14px; padding: 10px 12px; }
}

@media (max-width: 480px) {
    /* Mobile portrait étroit */
    .container { padding-left: 12px; padding-right: 12px; }
    .nav__drawer:not([hidden]) { inset: 0; padding: 56px 20px 20px; }
    .nav__drawer-list a { font-size: 19px; }

    /* === Home === */
    .hero__title { font-size: 40px; }
    .hero__subtitle { font-size: 18px; }
    .hero { min-height: 50vh; }
    .card-artisan__content h3 { font-size: 18px; }
    .gallery__item { height: 220px; }

    /* === About === */
    .ap-hero__content h1 { font-size: 32px; }
    .ap-hero__content p { font-size: 16px; }
    .ap-debuts h2,
    .ap-transmission__text h2,
    .ap-savoir__header h2 { font-size: 26px; }
    /* Valeurs : 1 col en mobile portrait étroit */
    .ap-valeurs__item { flex: 1 1 100%; }

    /* Timeline plus compacte */
    .ap-timeline__card-inner { padding: 36px; }
    .ap-timeline__year { font-size: 28px; }
    .ap-timeline__year::before { inset: -8px -38px; }

    /* Slider savoir : padding minimal */
    .ap-savoir__menucard .menu-card__inner { padding: 44px 34px; }
    .ap-savoir__menucard .menu-card__col-img { height: 180px; }

    /* Produits : repassage en empilé sur mobile très étroit (image 2 col trop petite) */
    .ap-accordion-layout { flex-direction: column; gap: 24px; }
    .ap-accordion-layout__img { flex: none; width: 100%; position: static; top: auto; }
    .ap-accordion-layout__img img { min-height: 220px; }
    .ap-produits__title { font-size: 26px; }

    /* === Notre carte === */
    .nc-hero__title { font-size: 30px; }
    .nc-hero__text { font-size: 15px; }
    .nc-hero__buttons { flex-direction: column; align-items: stretch; }
    .nc-hero__buttons .btn--primary,
    .nc-hero__buttons .btn--gold { width: 100%; padding: 12px 16px; }
    .nc-camions__title,
    .nc-kiosque__title,
    .nc-engagement__title { font-size: 26px; }
    .menu-card { margin-bottom: 56px; }
    .menu-card__inner { padding: 52px 40px; }
    .menu-card__title { font-size: 20px; }
    .menu-card__tagline { font-size: 18px; }
    .nc-engagement__image { height: 220px; }

    /* === Nos camions === */
    .cam-hero__card-inner { padding: 55px 45px; }
    .cam-hero__card-inner h1 { font-size: 26px; }
    /* Emplacements : layout 2 col (tabs sticky | lieux) + map full-width
       déjà hérités de ≤1024. On resserre juste boutons/typo. */
    .cam-emplacements__header h2,
    .cam-commander__inner h2,
    .cam-events__text h2,
    .cam-pizzas__title-row h2,
    .cam-social__inner h2 { font-size: 26px; }
    .cam-tabs { gap: 6px; }
    .cam-tabs__btn { font-size: 14px; padding: 6px 12px; }
    .cam-map { height: 220px; }
    .cam-events__icon { max-width: 90px; }

    /* === Resto-kiosque === */
    /* Très étroit : tabs en row wrap (le 2-col tabs|left est trop juste). */
    .kio-hero__title,
    .kio-carte__title,
    .kio-lieu__title,
    .kio-events__title { font-size: 26px; }
    .kio-options__title { font-size: 24px; }
    .kio-option__top h3,
    .kio-paiement__title,
    .kio-horaires__title { font-size: 18px; }

    .kio-hero { padding: 125px 0 50px; }
    .kio-options { padding: 50px 0 55px; }
    .kio-carte { padding: 100px 0 50px; }
    .kio-lieu { padding: 50px 0; }
    .kio-events { padding: 60px 0 40px; }

    /* Horaires : on conserve le 2 col (tabs col | left) hérité de ≤1023.
       Tabs et tab serrés pour tenir dans la largeur. */
    .kio-horaires { padding: 24px 18px; }
    .kio-horaires__content { gap: 18px; }
    .kio-horaires__row1 { gap: 14px 18px; }
    .kio-horaires__tabs { gap: 6px; }
    .kio-horaires__tab { font-size: 14px; padding: 6px 12px; min-width: auto; }
    .kio-paiement { padding: 34px 30px; }
    .kio-paiement li { font-size: 15px; gap: 14px; }
    .kio-paiement li i { font-size: 22px; width: 28px; }

    /* Lieu image plus petite */
    .kio-lieu__image { max-height: 280px; }
    .kio-lieu__image img { max-height: 280px; }
    .kio-lieu__infos { gap: 18px; }

    /* Options content padding réduit (icon plus petit) */
    .kio-option__icon { width: 48px; height: 48px; }
    .kio-option__top { gap: 12px; }
    .kio-option__content { padding-left: 60px; }

    /* === Page Événements (/evenements) — mobile étroit === */
    .ev-hero { padding: 130px 0 50px; }
    .ev-hero__title { font-size: 24px; }
    .ev-section__title { font-size: 22px; }
    .ev-sub__title { font-size: 18px; }
    .ev-others__title,
    .ev-included__title,
    .ev-process__steps-title { font-size: 18px; }
    .ev-form { padding: 18px 16px; }
    .ev-form__submit { font-size: 15px; padding: 12px 24px; }
}
