/* ============================================================================
   O'Swiss — Premium v6 — Apple Immersive Experience
   Chargé en dernier : autorité maximale. Direction artistique complète.
   ============================================================================ */

/* ── Cursor glow (desktop uniquement) ────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 9990;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(249,115,22,0.045) 0%, transparent 65%);
    will-change: left, top;
    transition: opacity 0.4s ease;
}

@media (hover: none) { .cursor-glow { display: none; } }

/* ── Hero — hauteur raisonnable (pas full écran obligatoire) ────────────── */
.hero {
    min-height: 85vh !important;
    min-height: 85dvh !important;
}
@media (max-width: 767px) {
    .hero { min-height: 80vh !important; min-height: 80dvh !important; }
}

/* ── Film grain sur le hero ─────────────────────────────────────────────── */
.hero__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: screen;
    animation: grain-anim 0.6s steps(3) infinite;
}

@keyframes grain-anim {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-2px, -3px); }
    40%  { transform: translate(2px, 1px); }
    60%  { transform: translate(-1px, 2px); }
    80%  { transform: translate(3px, -1px); }
    100% { transform: translate(-2px, 2px); }
}

/* ── Halo orange radial sur le hero ─────────────────────────────────────── */
.hero__halo {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 65% 40%, rgba(249,115,22,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 2;
}

/* ── Badge live (ouvert/fermé) ──────────────────────────────────────────── */
.hero__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.25rem;
}

.hero__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
    animation: live-pulse 2.2s ease infinite;
}

.hero__live-dot.closed {
    background: #f97316;
    box-shadow: 0 0 0 0 rgba(249,115,22,0.5);
    animation: live-pulse-orange 2.2s ease infinite;
}

@keyframes live-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.6); }
    70%  { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0   rgba(34,197,94,0); }
}

@keyframes live-pulse-orange {
    0%   { box-shadow: 0 0 0 0   rgba(249,115,22,0.6); }
    70%  { box-shadow: 0 0 0 9px rgba(249,115,22,0); }
    100% { box-shadow: 0 0 0 0   rgba(249,115,22,0); }
}

/* ── Hero title — impact maximum ────────────────────────────────────────── */
.hero__title {
    font-size: clamp(3.8rem, 11vw, 8.5rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 1.75rem !important;
}

.hero__title .accent {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 60%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: text-shimmer 5s linear infinite;
}

@keyframes text-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Hero overlay enrichi ───────────────────────────────────────────────── */
.hero__overlay {
    background:
        linear-gradient(to right, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.18) 100%),
        linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%) !important;
}

/* ── Hero scroll indicator animé ────────────────────────────────────────── */
.hero__scroll-line {
    animation: scroll-line 1.8s cubic-bezier(0.4,0,0.2,1) infinite !important;
}

@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30%  { opacity: 1; }
    70%  { transform: scaleY(1); transform-origin: top; }
    71%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── Marquee strip ──────────────────────────────────────────────────────── */
.marquee-strip {
    position: relative;
    overflow: hidden;
    background: #f97316;
    padding: 14px 0;
    z-index: 5;
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.marquee-strip::before { left: 0; background: linear-gradient(to right, #f97316, transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, #f97316, transparent); }

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    font-family: 'Playfair Display SC', Georgia, serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
}

.marquee-sep {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================================
   STATEMENT SECTION — "Une cuisine généreuse." Apple cinematic
   ============================================================================ */

.statement-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060606;
}

.statement-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.statement-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: saturate(0.4) brightness(0.9);
    transform: scale(1.06);
    will-change: transform;
}

.statement-section__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(6,6,6,0.97) 0%, rgba(6,6,6,0.72) 50%, rgba(6,6,6,0.96) 100%),
        linear-gradient(to bottom, rgba(6,6,6,0.2) 0%, transparent 25%, transparent 75%, rgba(6,6,6,0.6) 100%);
}

.statement-section__content {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    max-width: 820px;
}

.statement-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(249,115,22,0.75);
    margin-bottom: 2.75rem;
}

.statement-section__eyebrow::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(249,115,22,0.25);
}

.statement-section__title {
    font-family: 'Playfair Display SC', Georgia, serif;
    font-size: clamp(3.8rem, 10.5vw, 9rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 3rem;
}

.statement-section__title em {
    font-style: normal;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 55%, #f97316 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 5s linear infinite;
}

.statement-section__text {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.42);
    line-height: 1.85;
    max-width: 460px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .statement-section__content { padding: 5rem 0; }
    .statement-section__title { font-size: clamp(3rem, 14vw, 5rem); }
}

/* ============================================================================
   EXPERIENCE SECTION — Modes de commande (Apple feature grid)
   ============================================================================ */

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

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    overflow: hidden;
}

.experience-item {
    background: #111111;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.45s ease;
    cursor: default;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(249,115,22,0.7) 50%, transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-item::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.experience-item:hover { background: rgba(249,115,22,0.015); }
.experience-item:hover::before { transform: scaleX(1); }
.experience-item:hover::after  { opacity: 1; }

.experience-item__num {
    font-family: 'Playfair Display SC', Georgia, serif;
    font-size: 2.75rem;
    line-height: 1;
    color: rgba(249,115,22,0.06);
    font-weight: 700;
    letter-spacing: -0.03em;
    transition: color 0.4s ease;
    user-select: none;
}

.experience-item:hover .experience-item__num { color: rgba(249,115,22,0.2); }

.experience-item__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(249,115,22,0.07);
    border: 1px solid rgba(249,115,22,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.experience-item:hover .experience-item__icon {
    background: rgba(249,115,22,0.12);
    border-color: rgba(249,115,22,0.25);
    box-shadow: 0 0 24px rgba(249,115,22,0.1);
}

.experience-item__title {
    font-family: 'Playfair Display SC', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.experience-item__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.82;
    flex: 1;
}

.experience-item__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.experience-item:hover .experience-item__cta { opacity: 1; transform: translateY(0); }

.experience-item__cta svg { transition: transform 0.25s ease; }
.experience-item__cta:hover svg { transform: translateX(4px); }

.experience-item.featured {
    background: #121208;
}

.experience-item.featured .experience-item__title {
    color: var(--accent-orange);
}

@media (max-width: 767px) {
    .experience-grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    .experience-item { padding: 2.5rem 2rem; }
    .experience-item__cta { opacity: 1; transform: translateY(0); }
}

/* ============================================================================
   SPECIALTY CARDS — Premium overlay + meta
   ============================================================================ */

/* Supprimer l'ancien overlay HTML (remplacé par ::before CSS) */
.specialty-card__overlay { display: none !important; }

/* Overlay CSS premium */
.specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.65) 35%,
        rgba(0,0,0,0.15) 65%,
        transparent 100%
    );
    z-index: 1;
    transition: background 0.55s cubic-bezier(0.22,1,0.36,1);
}

.specialty-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.99) 0%,
        rgba(0,0,0,0.75) 40%,
        rgba(249,115,22,0.08) 80%,
        rgba(249,115,22,0.04) 100%
    );
}

/* Image zoom élégant */
.specialty-card__img {
    transition: transform 0.75s cubic-bezier(0.22,1,0.36,1) !important;
}
.specialty-card:hover .specialty-card__img { transform: scale(1.1) !important; }

/* Contenu : nom + meta */
.specialty-card__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.75rem;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.specialty-card:hover .specialty-card__content { transform: translateY(-4px); }

/* Supprimer l'ancienne icône vide */
.specialty-card__icon { display: none !important; }

.specialty-card__name {
    display: block;
    font-family: 'Playfair Display SC', Georgia, serif;
    font-size: clamp(1rem, 1.8vw, 1.35rem) !important;
    font-weight: 700 !important;
    color: #fff;
    letter-spacing: -0.01em !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    line-height: 1.15;
}

/* Nom plus grand pour la pizza vedette */
.specialties__grid .specialty-card:nth-child(1) .specialty-card__name {
    font-size: 1.6rem !important;
}

.specialty-card__meta {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.35rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.specialty-card:hover .specialty-card__meta { opacity: 1; transform: translateY(0); }

/* Border + glow au hover */
.specialty-card {
    border: 1px solid rgba(255,255,255,0.04) !important;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease, border-color 0.3s ease !important;
}

.specialty-card:hover {
    border-color: rgba(249,115,22,0.22) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,0.65), 0 0 0 1px rgba(249,115,22,0.08) !important;
}

.specialty-card__badge {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    z-index: 3;
    background: rgba(249,115,22,0.95);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 14px rgba(249,115,22,0.35);
}

/* ============================================================================
   SPECIALTIES GRID — 12 colonnes Apple editorial
   ============================================================================ */

.specialties__grid {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 14px !important;
}

/* Pizza — vedette 6 col × 2 rows */
.specialties__grid .specialty-card:nth-child(1) {
    grid-column: 1 / 7 !important;
    grid-row: 1 / 3 !important;
    aspect-ratio: unset !important;
    min-height: 510px !important;
}

.specialties__grid .specialty-card:nth-child(2) {
    grid-column: 7 / 10 !important;
    grid-row: 1 !important;
    aspect-ratio: unset !important;
    min-height: 242px !important;
}

.specialties__grid .specialty-card:nth-child(3) {
    grid-column: 10 / 13 !important;
    grid-row: 1 !important;
    aspect-ratio: unset !important;
    min-height: 242px !important;
}

.specialties__grid .specialty-card:nth-child(4) {
    grid-column: 7 / 10 !important;
    grid-row: 2 !important;
    aspect-ratio: unset !important;
    min-height: 242px !important;
}

.specialties__grid .specialty-card:nth-child(5) {
    grid-column: 10 / 13 !important;
    grid-row: 2 !important;
    aspect-ratio: unset !important;
    min-height: 242px !important;
}

.specialties__grid .specialty-card:nth-child(6) {
    grid-column: 1 / 7 !important;
    grid-row: unset !important;
    aspect-ratio: unset !important;
    min-height: 198px !important;
}

.specialties__grid .specialty-card:nth-child(7) {
    grid-column: 7 / 13 !important;
    grid-row: unset !important;
    aspect-ratio: unset !important;
    min-height: 198px !important;
}

/* Révélation progressive en cascade */
.specialties__grid .specialty-card.reveal { transform: translateY(24px) scale(0.97) !important; }
.specialties__grid .specialty-card.reveal.visible { transform: translateY(0) scale(1) !important; }

@media (max-width: 1279px) {
    .specialties__grid { grid-template-columns: repeat(4, 1fr) !important; }
    .specialties__grid .specialty-card:nth-child(1) { grid-column: 1 / 3 !important; grid-row: 1 / 3 !important; min-height: 380px !important; }
    .specialties__grid .specialty-card:nth-child(2) { grid-column: 3 / 5 !important; grid-row: 1 !important; min-height: 183px !important; }
    .specialties__grid .specialty-card:nth-child(3) { grid-column: 3 / 5 !important; grid-row: 2 !important; min-height: 183px !important; }
    .specialties__grid .specialty-card:nth-child(4) { grid-column: 1 / 3 !important; grid-row: unset !important; min-height: 183px !important; }
    .specialties__grid .specialty-card:nth-child(5) { grid-column: 3 / 5 !important; grid-row: unset !important; min-height: 183px !important; }
    .specialties__grid .specialty-card:nth-child(6) { grid-column: 1 / 3 !important; min-height: 172px !important; }
    .specialties__grid .specialty-card:nth-child(7) { grid-column: 3 / 5 !important; min-height: 172px !important; }
}

@media (max-width: 767px) {
    .specialties__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .specialties__grid .specialty-card:nth-child(1) { grid-column: 1 / 3 !important; grid-row: 1 !important; min-height: 250px !important; }
    .specialties__grid .specialty-card:nth-child(n+2) { grid-column: span 1 !important; grid-row: unset !important; min-height: 155px !important; }
    .specialties__grid .specialty-card:nth-child(6),
    .specialties__grid .specialty-card:nth-child(7) { grid-column: span 1 !important; min-height: 135px !important; }
}

/* ============================================================================
   CINEMATIC REVEAL VARIANTS — Blur + opacity + translateY
   ============================================================================ */

.reveal-cinematic {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(8px);
    transition:
        opacity  0.95s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        filter    0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-cinematic.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.reveal-text {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-img {
    opacity: 0;
    transform: scale(1.06);
    transition:
        opacity  1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-img.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger pour experience grid */
.stagger-children > .experience-item {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > .experience-item:nth-child(1) { opacity: 1; transform: none; }
.stagger-children.visible > .experience-item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger-children.visible > .experience-item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }

/* ============================================================================
   NAVIGATION — Premium refinements
   ============================================================================ */

.nav.scrolled {
    background: rgba(5,5,5,0.93) !important;
    backdrop-filter: blur(24px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 6px 40px rgba(0,0,0,0.7) !important;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: #f97316;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

.nav__link:hover::after, .nav__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__link.active { color: #f97316 !important; }

/* ============================================================================
   SECTION HEADERS — Apple large typography
   ============================================================================ */

.section-header h2 {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.08 !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
    color: #fff !important;
}

.eyebrow {
    font-size: 0.66rem !important;
    letter-spacing: 0.2em !important;
    font-weight: 700 !important;
}

.divider {
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #f97316 40%, #fbbf24 60%, transparent) !important;
    width: 60px !important;
    margin: 1.5rem auto 0 !important;
}

/* ============================================================================
   BOUTONS — Premium refinements
   ============================================================================ */

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border: none !important;
    box-shadow: 0 4px 24px rgba(249,115,22,0.35), 0 1px 0 rgba(255,255,255,0.1) inset !important;
    font-weight: 600 !important;
}

.btn-primary:hover {
    box-shadow: 0 8px 44px rgba(249,115,22,0.55), 0 1px 0 rgba(255,255,255,0.1) inset !important;
    transform: translateY(-2px) !important;
}

.btn:active {
    transform: scale(0.97) translateY(1px) !important;
    transition: transform 0.08s ease !important;
}

/* ============================================================================
   ORDER STRIP — masqué (remplacé par experience section)
   ============================================================================ */
.order-strip { display: none !important; }

/* ============================================================================
   MENU PAGE — Premium hero
   ============================================================================ */

.menu-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 5rem) 0 5rem;
    background: #0a0a0a;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.menu-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.menu-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.16;
    transform: scale(1.04);
    will-change: transform;
}

.menu-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.97) 100%);
}

.menu-hero__halo {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(249,115,22,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.menu-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.menu-hero__title {
    font-family: 'Playfair Display SC', Georgia, serif !important;
    font-size: clamp(3rem, 8.5vw, 6.5rem) !important;
    font-weight: 700 !important;
    line-height: 0.97 !important;
    letter-spacing: -0.03em !important;
    color: #fff !important;
    margin: 2rem 0 1.5rem !important;
    animation: hero-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.menu-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 60%, #f97316 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 5s linear infinite;
}

.menu-hero__subtitle {
    color: rgba(255,255,255,0.5) !important;
    font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
    line-height: 1.75 !important;
    max-width: 520px !important;
    margin: 0 auto 2.5rem !important;
    animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.menu-hero__ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: hero-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.68s both;
}

@media (max-width: 479px) {
    .menu-hero { padding: calc(var(--nav-height) + 3rem) 0 3.5rem; }
    .menu-hero__ctas { flex-direction: column; align-items: center; }
}

.menu-section__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem) !important;
    letter-spacing: -0.01em !important;
}

.menu-tab-btn {
    border-radius: 9999px !important;
    font-size: 0.78rem !important;
    padding: 9px 20px !important;
    letter-spacing: 0.03em !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    background: rgba(255,255,255,0.02) !important;
    transition: all 0.22s cubic-bezier(0.22,1,0.36,1) !important;
}

.menu-tab-btn:hover {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(249,115,22,0.2) !important;
}

.menu-tab-btn.active {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(249,115,22,0.3) !important;
}

.menu-card {
    background: #141414 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
    will-change: transform;
}

.menu-card:hover { border-color: rgba(249,115,22,0.2) !important; }

.menu-card__img-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #141414) !important;
}

/* ============================================================================
   STORY SECTION — Info block hover
   ============================================================================ */

.info-block {
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ============================================================================
   CTA FINAL — Cinematic background
   ============================================================================ */

.cta-final {
    background: linear-gradient(165deg, #0d0400 0%, #0a0a0a 45%, #03000d 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final .heading-lg {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem) !important;
    letter-spacing: -0.025em !important;
}

/* ============================================================================
   MOBILE CTA BAR
   ============================================================================ */

.mobile-cta-bar {
    box-shadow: 0 -1px 0 rgba(255,255,255,0.05), 0 -20px 40px rgba(0,0,0,0.4) !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    background: linear-gradient(to top, rgba(8,8,8,0.99) 70%, rgba(8,8,8,0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* ============================================================================
   BACK TO TOP
   ============================================================================ */
#back-top {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    box-shadow: 0 4px 20px rgba(249,115,22,0.4) !important;
}

/* ============================================================================
   SCROLL PROGRESS BAR — fine ligne orange en haut de page
   ============================================================================ */

.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #fbbf24 50%, #f97316);
    background-size: 200% auto;
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 10000;
    pointer-events: none;
    will-change: transform;
    animation: text-shimmer 3s linear infinite;
}

/* ============================================================================
   LINE-SPLIT ANIMATION — révélation ligne par ligne (style Apple keynote)
   ============================================================================ */

[data-line-split] .ls-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em;
}

[data-line-split] .ls-inner {
    display: block;
    transform: translateY(108%) skewY(1.5deg);
    opacity: 0;
    filter: blur(6px);
    transition:
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        opacity   0.7s ease,
        filter    0.75s ease;
    will-change: transform, opacity, filter;
}

[data-line-split].ls-visible .ls-inner {
    transform: translateY(0) skewY(0deg);
    opacity: 1;
    filter: blur(0px);
}

[data-line-split].ls-visible .ls-line:nth-child(1) .ls-inner { transition-delay: 0s;    }
[data-line-split].ls-visible .ls-line:nth-child(2) .ls-inner { transition-delay: 0.13s; }
[data-line-split].ls-visible .ls-line:nth-child(3) .ls-inner { transition-delay: 0.26s; }
[data-line-split].ls-visible .ls-line:nth-child(4) .ls-inner { transition-delay: 0.39s; }
[data-line-split].ls-visible .ls-line:nth-child(5) .ls-inner { transition-delay: 0.52s; }

/* Conserver le style des balises internes (em = gradient orange) */
[data-line-split] .ls-inner em {
    font-style: normal;
}

/* ============================================================================
   HERO — effet Ken Burns mobile (le parallaxe JS ne tourne pas sur mobile)
   ============================================================================ */

@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
    .hero__bg-img {
        animation: hero-ken-burns 14s ease-in-out infinite alternate;
    }
}

@keyframes hero-ken-burns {
    from { transform: scale(1.04) translate(0, 0); }
    to   { transform: scale(1.12) translate(-1.5%, -0.8%); }
}

/* ============================================================================
   SECTION HEADERS — eyebrow + h2 décalés (déjà révélés via .reveal)
   ============================================================================ */

.section-header .eyebrow {
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
}

.section-header.visible .eyebrow {
    transform: translateY(0);
    opacity: 1;
}

.section-header .divider {
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s, opacity 0.5s ease 0.3s;
}

.section-header.visible .divider {
    transform: scaleX(1);
    opacity: 1;
}

/* ============================================================================
   MENU PAGE — catégorie switch (transition container)
   ============================================================================ */

.menu-section {
    will-change: opacity, transform, filter;
}

/* ============================================================================
   REDUCE MOTION — désactiver tout ce qui est nouveau
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    .hero__grain        { animation: none; }
    .hero__title .accent { animation: none; }
    .statement-section__title em { animation: none; }
    .marquee-track      { animation: none; }
    .hero__scroll-line  { animation: none; }
    .hero__live-dot     { animation: none; }
    .cursor-glow        { display: none; }
    .menu-hero__title   { animation: none; opacity: 1; }
    .menu-hero__subtitle { animation: none; opacity: 1; }
    .menu-hero__ctas    { animation: none; opacity: 1; }
    .menu-hero__title em { animation: none; }

    .reveal-cinematic,
    .reveal-text,
    .reveal-img,
    .stagger-children > .experience-item {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    [data-line-split] .ls-inner {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        transition: none !important;
    }

    .scroll-progress { animation: none; }
    .hero__bg-img    { animation: none; }

    .section-header .eyebrow,
    .section-header .divider {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

/* ============================================================================
   CINÉMA FINALE — Expérience Apple immersive complète
   Blur-sharp entrance · Float organique · Pulse CTA · Ripple · Profondeur 3D
   ============================================================================ */

/* ── 1. HERO TEXT — Entrée blur → sharp (signature Apple keynote) ─────────── */

@keyframes hero-cinema {
    0% {
        opacity: 0;
        transform: translateY(32px) scale(0.95);
        filter: blur(12px);
    }
    55% { filter: blur(1px); }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Chaque élément du hero entre avec blur progressif + délai naturel */
.hero__live-badge { animation: hero-cinema 0.9s  cubic-bezier(0.16,1,0.3,1) 0.15s both !important; }
.hero__title      { animation: hero-cinema 1.15s cubic-bezier(0.16,1,0.3,1) 0.40s both !important; }
.hero__subtitle   { animation: hero-cinema 1.05s cubic-bezier(0.16,1,0.3,1) 0.65s both !important; }
.hero__ctas       { animation: hero-cinema 1.0s  cubic-bezier(0.16,1,0.3,1) 0.84s both !important; }
.hero__badges     { animation: hero-cinema 0.95s cubic-bezier(0.16,1,0.3,1) 1.02s both !important; }

/* ── 2. HERO HALO — Float organique permanent ─────────────────────────────── */

@keyframes hero-halo-drift {
    0%   { transform: translate(0px,   0px)   scale(1);    }
    20%  { transform: translate(18px, -10px)  scale(1.03); }
    45%  { transform: translate(-8px, -18px)  scale(1.04); }
    70%  { transform: translate(-16px, -5px)  scale(1.02); }
    100% { transform: translate(0px,   0px)   scale(1);    }
}

.hero__halo {
    animation: hero-halo-drift 13s ease-in-out infinite !important;
    will-change: transform;
}

/* Halo secondaire sur la section statement */
.statement-section__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249,115,22,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: hero-halo-drift 16s ease-in-out infinite reverse;
}

/* ── 3. CTA UBER EATS — Pulse ripple cinématique ─────────────────────────── */

@keyframes cta-pulse-cinema {
    0%, 100% {
        box-shadow:
            0 4px 24px rgba(249,115,22,0.40),
            0 1px 0 rgba(255,255,255,0.10) inset,
            0 0 0 0 rgba(249,115,22,0.22);
    }
    42% {
        box-shadow:
            0 10px 60px rgba(249,115,22,0.65),
            0 1px 0 rgba(255,255,255,0.10) inset,
            0 0 0 14px rgba(249,115,22,0.0);
    }
}

.glow-cta {
    animation: cta-pulse-cinema 2.8s cubic-bezier(0.4,0,0.6,1) infinite !important;
}

/* ── 4. BOUTONS — Effet pression physique + ripple wave ──────────────────── */

.btn {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    will-change: transform;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    /* Transition native revue pour sensation tactile */
    transition:
        transform 0.15s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.15s ease,
        background 0.25s ease,
        border-color 0.25s ease !important;
}

.btn:active {
    transform: scale(0.93) translateY(2px) !important;
    transition-duration: 0.06s !important;
}

.btn-primary:active {
    box-shadow:
        0 2px 8px rgba(249,115,22,0.25),
        0 1px 0 rgba(255,255,255,0.06) inset !important;
}

.btn-secondary:active,
.btn-ghost:active {
    box-shadow: 0 1px 6px rgba(0,0,0,0.4) !important;
}

/* Onde ripple créée via JS */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.20);
    animation: ripple-wave 0.58s cubic-bezier(0,0,0.2,1) forwards;
    pointer-events: none;
    z-index: 0;
}

.btn-secondary .ripple,
.btn-ghost .ripple {
    background: rgba(255,255,255,0.10);
}

@keyframes ripple-wave {
    to { transform: scale(4); opacity: 0; }
}

/* ── 5. CARDS 3D — Profondeur renforcée (preserve-3d) ─────────────────────── */

.specialty-card,
.menu-card,
.experience-item,
.why-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ── 6. REVEAL BLUR — Classe cinématique universelle ─────────────────────── */

.reveal-blur {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    transition:
        opacity   0.85s cubic-bezier(0.16,1,0.3,1),
        transform 0.85s cubic-bezier(0.16,1,0.3,1),
        filter    0.7s  ease;
}

.reveal-blur.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

/* ── 7. HERO OVERLAY BOTTOM — Fondu plus long ─────────────────────────────── */

.hero__overlay-bottom {
    height: 340px !important;
    background: linear-gradient(
        to top,
        var(--bg-primary) 0%,
        rgba(10,10,10,0.7) 55%,
        transparent 100%
    ) !important;
}

/* ── 8. STATEMENT SECTION — séparation cinématique ─────────────────────── */

.statement-section {
    box-shadow: 0 -1px 0 rgba(255,255,255,0.04);
}

/* ── 9. SECTIONS — Respirations entre scènes ─────────────────────────────── */

.specialties,
.experience-section,
.reviews,
.why {
    position: relative;
}

/* Ligne lumineuse de séparation top — subtile */
.specialties::before,
.experience-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.08), transparent);
    pointer-events: none;
}

/* ── 10. SPECIALTY CARDS — Float idle au repos ────────────────────────────── */

@keyframes card-idle-breathe {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04); }
    50%       { box-shadow: 0 14px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04); }
}

/* Uniquement le card vedette (pizza, 1er élément) */
.specialties__grid .specialty-card:nth-child(1) {
    animation: card-idle-breathe 6s ease-in-out infinite;
}

/* ── 11. MENU HERO — Ligne décorative sous le titre ──────────────────────── */

.menu-hero__content::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    margin: 2rem auto 0;
    border-radius: 9999px;
    animation: hero-cinema 1s cubic-bezier(0.16,1,0.3,1) 0.9s both;
}

/* ── 12. SECTION HEADERS — micro mouvement au reveal ─────────────────────── */

.section-header h2 {
    transition: filter 0.5s ease !important;
}

/* ── 13. EXPÉRIENCE ITEM — Numéro animé au hover ─────────────────────────── */

.experience-item__num {
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1) !important;
}

.experience-item:hover .experience-item__num {
    transform: translateX(4px) !important;
}

/* ── 14. MOBILE — Allèger les animations ─────────────────────────────────── */

@media (max-width: 1023px) {
    /* Float halo plus lent sur mobile (économie batterie) */
    .hero__halo { animation-duration: 18s !important; }

    /* Card breathe désactivée sur mobile */
    .specialties__grid .specialty-card:nth-child(1) { animation: none; }

    /* Statement — hauteur naturelle sur mobile */
}

@media (max-width: 767px) {
    /* Hero overlay moins haut sur mobile (moins de place) */
    .hero__overlay-bottom { height: 200px !important; }
}

/* ── 15. REDUCE MOTION — Respecter les préférences ───────────────────────── */

@media (prefers-reduced-motion: reduce) {
    /* Override hero-cinema avec simple opacité */
    .hero__live-badge,
    .hero__title,
    .hero__subtitle,
    .hero__ctas,
    .hero__badges {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    /* CTA sans animation */
    .glow-cta {
        animation: none !important;
        box-shadow: 0 4px 24px rgba(249,115,22,0.35) !important;
    }

    /* Halo statique */
    .hero__halo { animation: none !important; }

    /* Card breathe désactivée */
    .specialties__grid .specialty-card:nth-child(1) { animation: none !important; }

    /* Reveal blur = visible immédiatement */
    .reveal-blur {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    /* Btn press désactivé */
    .btn:active { transition-duration: 0.01ms !important; }

    /* Statement secondaire désactivé */
    .statement-section__bg::before { animation: none !important; }
}

/* ============================================================================
   UPGRADE FINALE 10/10 — Cinéma complet · WOW · Signature visuelle
   Hero BG cinema · Orbes chaleur · Ken Burns food · Statement scale · Wipe
   ============================================================================ */

/* ── A. HERO BG — Mise au point cinématique (caméra qui fait la map) ──────── */

@keyframes hero-bg-cinema {
    0%   { transform: scale(1.18); filter: blur(18px); opacity: 0; }
    22%  { opacity: 1; }
    62%  { filter: blur(3px); }
    100% { transform: scale(1.05); filter: blur(0px); opacity: 1; }
}

/* ============================================================================
   FINAL AUDIT TUNING
   ============================================================================ */
.hero--home .hero__title {
    max-width: 11ch;
}

.specialties__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: var(--sp-4) !important;
}

.specialties__grid .specialty-card,
.specialties__grid .specialty-card:nth-child(1),
.specialties__grid .specialty-card:nth-child(2),
.specialties__grid .specialty-card:nth-child(3),
.specialties__grid .specialty-card:nth-child(4),
.specialties__grid .specialty-card:nth-child(5),
.specialties__grid .specialty-card:nth-child(6),
.specialties__grid .specialty-card:nth-child(7) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 220px !important;
}

.specialty-card__meta {
    opacity: 1 !important;
    transform: none !important;
}

.menu-hero__title {
    max-width: 12ch;
}

.menu-hero__ctas,
.cta-final__buttons {
    align-items: center;
}

@media (max-width: 767px) {
    .specialties__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .specialties__grid .specialty-card,
    .specialties__grid .specialty-card:nth-child(1) {
        min-height: 170px !important;
    }
}

/* Desktop : entrée camera-focus (JS parallax prend le relais au scroll) */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
    .hero__bg-img {
        animation: hero-bg-cinema 2.4s cubic-bezier(0.16,1,0.3,1) both !important;
        /* La transition CSS est désactivée — le JS override via style.transform */
        transition: none !important;
    }
}

/* Mobile : entrée cinéma puis Ken Burns enchaîné */
@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
    .hero__bg-img {
        animation:
            hero-bg-cinema 1.6s cubic-bezier(0.16,1,0.3,1) both,
            hero-ken-burns 16s ease-in-out 1.6s infinite alternate !important;
        transition: none !important;
    }
}

/* ── B. HERO ORBS — Chaleur ambiante (signature thermique O'Swiss) ─────────── */

.hero__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
}

/* Orbe 1 — grande chaleur orangée, haut droite */
.hero__orb--1 {
    width: 75vw;
    height: 75vw;
    top: -25%;
    right: -15%;
    background: radial-gradient(circle,
        rgba(249,115,22,0.14) 0%,
        rgba(234,88,12,0.07)  35%,
        transparent 68%);
    animation: orb-drift-1 12s ease-in-out infinite;
}

/* Orbe 2 — chaleur dorée, bas gauche */
.hero__orb--2 {
    width: 55vw;
    height: 55vw;
    bottom: -12%;
    left: -8%;
    background: radial-gradient(circle,
        rgba(251,191,36,0.09) 0%,
        rgba(249,115,22,0.05) 40%,
        transparent 68%);
    animation: orb-drift-2 18s ease-in-out infinite;
}

/* Orbe 3 — accent lumineux, centre-droit */
.hero__orb--3 {
    width: 28vw;
    height: 28vw;
    top: 38%;
    left: 58%;
    background: radial-gradient(circle,
        rgba(249,115,22,0.08) 0%,
        transparent 62%);
    animation: orb-drift-3 8s ease-in-out infinite;
}

@keyframes orb-drift-1 {
    0%   { transform: translate(0,    0)    scale(1);    }
    28%  { transform: translate(-28px, 18px) scale(1.06); }
    58%  { transform: translate(16px, -22px) scale(0.96); }
    100% { transform: translate(0,    0)    scale(1);    }
}

@keyframes orb-drift-2 {
    0%   { transform: translate(0, 0)    scale(1);    }
    45%  { transform: translate(22px, -28px) scale(1.10); }
    100% { transform: translate(0, 0)    scale(1);    }
}

@keyframes orb-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1);   opacity: 0.7; }
    50%       { transform: translate(-18px, -22px) scale(1.18); opacity: 1; }
}

/* ── C. STATEMENT — Titre colossal + lumière bloom ──────────────────────────── */

.statement-section__title {
    font-size: clamp(3.2rem, 9vw, 7.5rem) !important;
    line-height: 0.91 !important;
    transform-origin: left center;
    will-change: transform;
}

/* Bloom lumineux derrière le titre (activé via classe JS) */
.statement-section__title.bloomed {
    text-shadow:
        0 0 80px  rgba(249,115,22,0.12),
        0 0 160px rgba(249,115,22,0.06) !important;
}

/* ── D. SPECIALTY CARD IMAGES — Ken Burns au repos (food vivant) ─────────── */

/* Phases décalées pour éviter l'effet mécanique synchronisé */
@keyframes food-ken-burns {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.10); }
}

.specialties__grid .specialty-card:nth-child(1) .specialty-card__img { animation: food-ken-burns 9s  ease-in-out 0s   alternate infinite; }
.specialties__grid .specialty-card:nth-child(2) .specialty-card__img { animation: food-ken-burns 10s ease-in-out -2s  alternate infinite; }
.specialties__grid .specialty-card:nth-child(3) .specialty-card__img { animation: food-ken-burns 8s  ease-in-out -4s  alternate infinite; }
.specialties__grid .specialty-card:nth-child(4) .specialty-card__img { animation: food-ken-burns 11s ease-in-out -1s  alternate infinite; }
.specialties__grid .specialty-card:nth-child(5) .specialty-card__img { animation: food-ken-burns 9s  ease-in-out -5s  alternate infinite; }
.specialties__grid .specialty-card:nth-child(6) .specialty-card__img { animation: food-ken-burns 10s ease-in-out -3s  alternate infinite; }
.specialties__grid .specialty-card:nth-child(7) .specialty-card__img { animation: food-ken-burns 8s  ease-in-out -6s  alternate infinite; }

/* Au hover : Ken Burns paused — le tilt JS prend le relais visuellement */
.specialty-card:hover .specialty-card__img {
    animation-play-state: paused !important;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ── E. REVEAL WIPE — Signature motion (rideau de théâtre bottom→top) ──────── */

.reveal-wipe {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition:
        clip-path 0.85s cubic-bezier(0.16,1,0.3,1),
        opacity   0.25s ease;
    will-change: clip-path;
}

.reveal-wipe.visible {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
}

/* ── F. HERO — Overlay encore plus dramatique ─────────────────────────────── */

.hero__overlay {
    background:
        linear-gradient(to right,
            rgba(0,0,0,0.97) 0%,
            rgba(0,0,0,0.72) 46%,
            rgba(0,0,0,0.28) 100%),
        linear-gradient(to top,
            rgba(0,0,0,0.92) 0%,
            transparent 48%),
        linear-gradient(to bottom,
            rgba(0,0,0,0.45) 0%,
            transparent 28%) !important;
}

/* ── G. HERO SCROLL INDICATOR — Apparition retardée (cinématique) ──────────── */

.hero__scroll {
    opacity: 0;
    animation: hero-cinema 0.9s cubic-bezier(0.16,1,0.3,1) 1.65s both !important;
}

/* ── H. EXPERIENCE FEATURED — Ligne gradient plus brillante ────────────────── */

.experience-item.featured {
    background: linear-gradient(160deg, #121208 0%, #141410 100%) !important;
    position: relative;
}

.experience-item.featured::after {
    background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 60%) !important;
}

/* ── I. WHY FEATURE NUM — Taille augmentée + glow ──────────────────────────── */

.why-feature__num,
section[aria-labelledby="why-title"] [style*="font-size: 2.5rem"] {
    transition: color 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}

/* ── J. SECTION SPECIALTIES — Spacing plus aéré ────────────────────────────── */

.specialties .section-header p {
    font-size: clamp(1rem, 2vw, 1.15rem) !important;
    max-width: 620px !important;
}

/* ── K. MOBILE — Orbes allégées, Ken Burns modéré ───────────────────────────── */

@media (max-width: 767px) {
    .hero__orb--1 { width: 130vw; height: 130vw; opacity: 0.65; animation-duration: 16s; }
    .hero__orb--2 { display: none; }
    .hero__orb--3 { width: 70vw; height: 70vw; animation-duration: 11s; }

    .statement-section__title {
        font-size: clamp(3rem, 14.5vw, 6rem) !important;
    }

    /* Ken Burns moins agressif sur mobile */
    @keyframes food-ken-burns { 0% { transform: scale(1); } 100% { transform: scale(1.06); } }
}

@media (max-width: 1023px) {
    .hero__orb--1 { animation-duration: 16s; }
    .hero__orb--3 { animation-duration: 12s; }
}

/* ── L. REDUCE MOTION — Tout désactiver proprement ─────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    /* Hero BG immédiatement visible */
    .hero__bg-img {
        animation: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    /* Orbes statiques */
    .hero__orb { animation: none !important; }

    /* Ken Burns désactivé */
    .specialties__grid .specialty-card .specialty-card__img {
        animation: none !important;
    }

    /* Statement titre sans bloom */
    .statement-section__title { transform: none !important; will-change: auto !important; }

    /* Reveal wipe = visible */
    .reveal-wipe {
        clip-path: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    /* Hero scroll toujours visible */
    .hero__scroll { animation: none !important; opacity: 1 !important; }
}
/* ═══════════════════════════════════════════════════════════════════
   O'Swiss — V2 Premium — Sections Homepage + Nav/Footer override
   Chargé APRÈS premium.css → priorité max
═══════════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────
   UTILITAIRES GLOBAUX V2
──────────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent-orange);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.15s;
}
.skip-link:focus { top: 0; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ────────────────────────────────────────────────────────────
   BOUTONS V2 (système unifié)
──────────────────────────────────────────────────────────── */
.btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: 2px solid transparent;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    white-space: nowrap;
}
.btn-v2 svg { flex-shrink: 0; transition: transform 0.2s; }
.btn-v2:hover svg { transform: translateX(3px); }

.btn-v2--primary {
    background: var(--accent-orange);
    color: #fff;
    border-color: var(--accent-orange);
}
.btn-v2--primary:hover {
    background: var(--accent-orange2);
    border-color: var(--accent-orange2);
    box-shadow: 0 8px 30px rgba(255,107,0,0.4);
    transform: translateY(-2px);
}

.btn-v2--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.25);
}
.btn-v2--outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.btn-v2--ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}
.btn-v2--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}


/* ────────────────────────────────────────────────────────────
   BARRE DE PROGRESSION
──────────────────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange2));
    z-index: 9999;
    transition: width 0.1s linear;
}


/* ────────────────────────────────────────────────────────────
   NAV V2 — OVERRIDE COMPLET
──────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
    background: rgba(5,5,5,0.96);
    box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 2rem;
}

/* Logo */
.nav__logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.nav__logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}
.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.15rem;
}
.nav__logo-name {
    line-height: 1;
}
.nav__logo-o {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent-orange);
    letter-spacing: -0.02em;
}
.nav__logo-swiss {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}
.nav__logo-sub {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Liens desktop */
.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}
.nav__link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    padding-bottom: 0.2rem;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--accent-orange);
    transition: width 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav__link:hover,
.nav__link.active { color: var(--text-primary); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* CTA desktop */
.nav__cta { flex-shrink: 0; }

.nav__cmd-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.875rem;
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.nav__hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav mobile (overlay) */
.nav__mobile {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(24px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.nav__mobile.open { transform: translateX(0); }

.nav__mobile-inner {
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    min-height: 100%;
}
.nav__mobile-brand {
    margin-bottom: 2.5rem;
}
.nav__mobile-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile-link:hover,
.nav__mobile-link.active { color: var(--accent-orange); }
.nav__mobile-cmd {
    margin-top: 2rem;
    text-align: center;
    justify-content: center;
}
.nav__mobile-footer {
    margin-top: auto;
    padding-top: 2rem;
}
.nav__mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.nav__mobile-phone:hover { color: var(--accent-orange); }

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
    cursor: pointer;
}
.nav__overlay.visible { display: block; }


/* ────────────────────────────────────────────────────────────
   HERO SPLIT (section.hs)
──────────────────────────────────────────────────────────── */
.hs {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

/* Glows de fond */
.hs__bg-glow {
    position: absolute;
    top: -20%; right: -10%;
    width: 60vw; height: 80vh;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,107,0,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hs__inner {
    display: flex;
    align-items: center;
    padding-block: 4rem 5rem;
    position: relative;
    z-index: 2;
    max-width: 55%;
}

/* Gauche */
.hs__left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    animation: heroSlideIn 0.8s cubic-bezier(0.4,0,0.2,1) both;
}

.hs__live {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #22c55e;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    width: fit-content;
}
.hs__live.closed {
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.hs__live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-live 1.8s ease infinite;
}
.hs__live.closed .hs__live-dot { animation: none; }

.hs__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--accent-orange);
    margin: 0;
}

.hs__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin: 0;
}
.hs__title-accent { color: var(--accent-orange); }

.hs__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 42ch;
    margin: 0;
}

/* Features checklist */
.hs__features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.hs__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.hs__feature-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,107,0,0.1);
    border: 1px solid rgba(255,107,0,0.2);
    color: var(--accent-orange);
}
.hs__feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}
.hs__feature span {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.hs__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.25rem;
}

/* Droite — image pleine hauteur, positionnée en absolu (même principe que contact) */
.hs__right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 58%;
    z-index: 1;
    animation: heroImgIn 1s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}

.hs__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dégradé gauche→droite pour fondre le texte avec la photo */
.hs__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--bg-primary, #050505) 0%,
        rgba(5,5,5,0.82) 22%,
        rgba(5,5,5,0.25) 52%,
        transparent 100%
    );
    pointer-events: none;
}

/* Badge circulaire SVG */
.hs__badge {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 110px;
    height: 110px;
    z-index: 2;
    animation: badgeSpin 18s linear infinite;
}
.hs__badge-ring { width: 100%; height: 100%; }
.hs__badge-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

/* Tagline */
.hs__tagline {
    position: absolute;
    bottom: 8%;
    right: 6%;
    background: rgba(5,5,5,0.82);
    border: 1px solid rgba(255,107,0,0.25);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    z-index: 2;
    font-style: italic;
}


/* ────────────────────────────────────────────────────────────
   TRUST BAND (.tb)
──────────────────────────────────────────────────────────── */
.tb {
    background: #0B0B0B;
    border-top: 1px solid rgba(255,107,0,0.08);
    border-bottom: 1px solid rgba(255,107,0,0.08);
    padding-block: 5rem;
}

.tb__top {
    text-align: center;
    margin-bottom: 4rem;
}
.tb__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.tb__title-accent { color: var(--accent-orange); }
.tb__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 50ch;
    margin-inline: auto;
    line-height: 1.7;
}

.tb__pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.tb__pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.tb__pillar:hover {
    border-color: rgba(255,107,0,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.tb__pillar-icon {
    display: grid;
    place-items: center;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255,107,0,0.1);
    border: 1px solid rgba(255,107,0,0.2);
    color: var(--accent-orange);
    margin-bottom: 0.25rem;
}
.tb__pillar strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}
.tb__pillar span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* ────────────────────────────────────────────────────────────
   SPÉCIALITÉS SLIDER V2 (.sp-v2)
──────────────────────────────────────────────────────────── */
.sp-v2 {
    padding-block: 6rem;
    overflow: hidden;
}

.sp-v2__header {
    text-align: center;
    margin-bottom: 3rem;
}
.sp-v2__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.sp-v2__sub {
    font-size: 1rem;
    color: var(--text-secondary);
}

.sp-v2__track-wrap {
    position: relative;
}

/* Flèches de navigation */
.sp-v2__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,138,0,0.35);
    background: rgba(10,10,10,0.85);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.sp-v2__arrow:hover {
    background: rgba(255,138,0,0.9);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}
.sp-v2__arrow--prev { left: 0.75rem; }
.sp-v2__arrow--next { right: 0.75rem; }
.sp-v2__arrow.hidden { opacity: 0; pointer-events: none; }

/* Fade edges */
.sp-v2__track-wrap::before,
.sp-v2__track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: clamp(2rem, 5vw, 4rem);
    z-index: 2;
    pointer-events: none;
}
.sp-v2__track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}
.sp-v2__track-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}

.sp-v2__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem clamp(2rem, 5vw, 4rem) 1.5rem;
    cursor: grab;
    user-select: none;
}
.sp-v2__track:active { cursor: grabbing; }
.sp-v2__track::-webkit-scrollbar { display: none; }

.sp-v2__card {
    flex: 0 0 clamp(260px, 30vw, 320px);
    height: clamp(360px, 45vh, 420px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    text-decoration: none;
    display: block;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.sp-v2__card:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,0,0.2);
}

.sp-v2__card-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sp-v2__card:hover .sp-v2__card-img { transform: scale(1.07); }

.sp-v2__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.92) 100%);
}

.sp-v2__card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sp-v2__card-name {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.sp-v2__card-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent-orange);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
}
.sp-v2__card:hover .sp-v2__card-link {
    opacity: 1;
    transform: translateY(0);
}


/* ────────────────────────────────────────────────────────────
   PROMOS (.promos)
──────────────────────────────────────────────────────────── */
.promos {
    padding-block: 6rem;
    background: linear-gradient(180deg, #080808 0%, #050505 100%);
}

.promos__header {
    text-align: center;
    margin-bottom: 3rem;
}
.promos__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.promos__sub {
    font-size: 1rem;
    color: var(--text-secondary);
}

.promos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.promo-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--bg-card);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    min-height: 260px;
}
.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,107,0,0.2);
}

.promo-card__icon {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.promo-card__label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.promo-card__label span { color: var(--text-primary); }

.promo-card__detail {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Cartes avec image pizza */
.promo-card--family,
.promo-card--geante {
    padding: 0;
    min-height: 300px;
}

.promo-card__top-badge {
    position: absolute;
    top: 1rem; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--accent-orange);
    background: rgba(255,107,0,0.12);
    border: 1px solid rgba(255,107,0,0.25);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    white-space: nowrap;
    z-index: 2;
}

.promo-card__pizza-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-card__pizza-img img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.7));
    transition: transform 0.4s;
}
.promo-card:hover .promo-card__pizza-img img { transform: scale(1.06) rotate(-4deg); }

.promo-card__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    background: linear-gradient(0deg, rgba(5,5,5,0.92) 0%, transparent 100%);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}
.promo-card__qty {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}
.promo-card__qty small {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: var(--text-secondary);
}
.promo-card__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-orange);
    letter-spacing: 0.02em;
}


/* ────────────────────────────────────────────────────────────
   DELIVERY STRIP (.dstrip)
──────────────────────────────────────────────────────────── */
.dstrip {
    position: relative;
    padding-block: 6rem;
    overflow: hidden;
}

.dstrip__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.08) 0%, transparent 60%),
        linear-gradient(180deg, #060606 0%, #0B0B0B 50%, #060606 100%);
    z-index: 0;
}
.dstrip__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dstrip__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dstrip__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.dstrip__title-accent { color: var(--accent-orange); }

.dstrip__sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.dstrip__modes {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.dstrip__mode {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.dstrip__mode svg { color: var(--accent-orange); flex-shrink: 0; }
.dstrip__mode:hover {
    border-color: rgba(255,107,0,0.2);
    color: var(--text-primary);
    transform: translateX(6px);
}


/* ────────────────────────────────────────────────────────────
   CTA FINAL V2 (.cta-final-v2)
──────────────────────────────────────────────────────────── */
.cta-final-v2 {
    padding-block: 7rem;
    text-align: center;
    background: linear-gradient(180deg, #050505 0%, #0B0B0B 100%);
}

.cta-final-v2__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.cta-final-v2__sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 52ch;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.cta-final-v2__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}


/* ────────────────────────────────────────────────────────────
   AVIS V2 (.reviews-v2)
──────────────────────────────────────────────────────────── */
.reviews-v2 {
    padding-block: 6rem;
    background: #080808;
}
.reviews-v2__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.reviews-v2__header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.04em;
}
.reviews-v2__score {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.reviews-v2__num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-orange);
}
.reviews-v2__label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
}


/* ────────────────────────────────────────────────────────────
   FOOTER V2 (.footer)
──────────────────────────────────────────────────────────── */
.footer {
    background: #060606;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 5rem;
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer__logo {
    display: inline-flex;
    text-decoration: none;
    margin-bottom: 1.25rem;
    line-height: 1;
}
.footer__tagline {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 30ch;
    margin-bottom: 1.5rem;
}

.footer__socials {
    display: flex;
    gap: 0.75rem;
}
.footer__social {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer__social:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer__link {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer__link:hover { color: var(--text-primary); }
.footer__link::before {
    content: '—';
    font-size: 0.7rem;
    color: var(--accent-orange);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
}
.footer__link:hover::before { opacity: 1; transform: translateX(0); }

.footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__address p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.footer__address svg { flex-shrink: 0; margin-top: 1px; color: var(--accent-orange); }
.footer__phone {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__phone:hover { color: var(--accent-orange); }
.footer__hours { }
.footer__hours--closed { opacity: 0.6; }

/* Footer bottom */
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-block: 1.5rem;
}
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer__bottom-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__bottom-link:hover { color: var(--text-secondary); }


/* ────────────────────────────────────────────────────────────
   BACK TO TOP
──────────────────────────────────────────────────────────── */
.back-to-top {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
    transform: translateY(-3px);
}


/* ────────────────────────────────────────────────────────────
   MOBILE CTA BAR
──────────────────────────────────────────────────────────── */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 1rem;
    gap: 0.75rem;
}
.mobile-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.65rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s;
}
.mobile-cta__btn:hover { color: var(--text-primary); }
.mobile-cta__btn--primary {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}
.mobile-cta__btn--primary:hover { background: var(--accent-orange2); }

/* Mobile CTA — label avec sous-texte */
.mobile-cta__btn {
    flex-direction: row !important;
    gap: 0.6rem !important;
    padding: 0.75rem 0.5rem !important;
}

.mobile-cta__label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
}

.mobile-cta__text {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

.mobile-cta__sub {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    color: inherit;
    opacity: 0.72;
    line-height: 1;
}

.mobile-cta__btn--primary .mobile-cta__sub {
    color: rgba(255,255,255,0.85);
}

/* Safe area pour les téléphones avec encoche basse */
.mobile-cta {
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px)) !important;
}


/* ────────────────────────────────────────────────────────────
   SCROLL REVEAL (animation classes)
──────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
/* ═══════════════════════════════════════════════════════════════════
   O'Swiss — Menu Page V2
   Injecté après premium.css
═══════════════════════════════════════════════════════════════════ */

/* ── Variables locales ────────────────────────────────────────────── */
:root {
    --m-orange:    #FF8A00;
    --m-orange-h:  #FFAA33;
    --m-card-bg:   #0E0E0E;
    --m-border:    rgba(255,138,0,0.2);
    --m-border-sub:rgba(255,255,255,0.06);
    --m-radius:    12px;
}


/* ════════════════════════════════════════════════════
   MC-HERO (Hero section menu)
════════════════════════════════════════════════════ */
.mc-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    min-height: clamp(220px, 28vh, 360px);
    overflow: hidden;
    background: var(--bg-primary);
}

.mc-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, #131313 0%, #050505 100%);
    z-index: 0;
}
.mc-hero__vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.7) 0%, transparent 35%, transparent 65%, rgba(5,5,5,0.7) 100%),
        linear-gradient(180deg, rgba(5,5,5,0.6) 0%, transparent 50%, rgba(5,5,5,0.8) 100%);
}

/* Colonnes images */
.mc-hero__side {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mc-hero__food-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    padding: 1rem;
    transform: scale(1.05);
    transition: transform 6s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}
.mc-hero:hover .mc-hero__food-img { transform: scale(1.08); }

.mc-hero__side-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 40%;
    z-index: 2;
}
.mc-hero__side-fade--l {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(5,5,5,0.9) 100%);
}
.mc-hero__side-fade--r {
    left: 0;
    background: linear-gradient(270deg, transparent 0%, rgba(5,5,5,0.9) 100%);
}

/* Centre : texte */
.mc-hero__center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 3rem;
    min-width: 320px;
}
.mc-hero__utensils {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}
.mc-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 0.75rem;
    font-style: normal;
}
.mc-hero__title-em {
    font-style: normal;
    color: var(--m-orange);
}
.mc-hero__sub {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 32ch;
}


/* ════════════════════════════════════════════════════
   MC-TABS (Category navigation)
════════════════════════════════════════════════════ */
.mc-tabs {
    position: sticky;
    top: var(--nav-height);
    z-index: 200;
    background: #0B0B0B;
    border-bottom: 1px solid rgba(255,138,0,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.mc-tabs__track {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    gap: 0;
}
.mc-tabs__track::-webkit-scrollbar { display: none; }

.mc-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.8rem 1.2rem;
    min-width: 80px;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: #888;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    scroll-snap-align: start;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    position: relative;
    flex-shrink: 0;
}
.mc-tab:hover { color: #ccc; }
.mc-tab.active {
    color: var(--m-orange);
    border-bottom-color: var(--m-orange);
    background: rgba(255,138,0,0.05);
}
.mc-tab svg { transition: color 0.2s; }


/* ════════════════════════════════════════════════════
   MC-PANELS (Content panels)
════════════════════════════════════════════════════ */
.mc-ttc-notice {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.4rem 1rem;
    background: var(--bg-primary);
}

.mc-panels { background: var(--bg-primary); }

.mc-panel {
    display: none;
    padding-block: 2.5rem 3rem;
}
.mc-panel.active { display: block; }

/* Panel header */
.mc-panel__head {
    margin-bottom: 2rem;
}
.mc-panel__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.mc-panel__note {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 70ch;
    background: rgba(255,138,0,0.06);
    border-left: 3px solid var(--m-orange);
    padding: 0.6rem 1rem;
    border-radius: 0 6px 6px 0;
}


/* ════════════════════════════════════════════════════
   PIZZA LAYOUT
════════════════════════════════════════════════════ */
.pizza-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.pizza-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Pizza block (carte blanche/noire arrondie) */
.pizza-block {
    background: var(--m-card-bg);
    border: 1px solid var(--m-border);
    border-radius: var(--m-radius);
    overflow: hidden;
}

.pizza-block__head {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--m-border-sub);
}

.pizza-block__title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
}
.pizza-block__icon-wrap {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255,138,0,0.1);
    border: 1px solid rgba(255,138,0,0.2);
    color: var(--m-orange);
    flex-shrink: 0;
}
.pizza-block__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin: 0;
}

.pizza-block__base {
    color: var(--m-orange);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}
.pizza-block__base--standalone {
    font-size: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}
.pizza-block--creme .pizza-block__head { border-bottom: 1px solid var(--m-border-sub); }

/* Column headers (Moyenne 33cm | Géante 40cm) */
.pizza-block__col-heads {
    display: flex;
    justify-content: flex-end;
    gap: 1.75rem;
    padding-top: 0.4rem;
}
.pizza-col-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--m-orange);
    white-space: nowrap;
}

/* Pizza list items */
.pizza-list {
    list-style: none;
}
.pizza-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1.25rem;
    padding: 0.7rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: center;
    transition: background 0.15s;
    position: relative;
}
.pizza-item:last-child { border-bottom: none; }
.pizza-item:hover { background: rgba(255,255,255,0.02); }
.pizza-item--hot { background: rgba(255,138,0,0.03); }

.mc-badge--inline {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-right: 0.4rem;
}
.mc-badge--hot.mc-badge--inline { background: rgba(255,138,0,0.15); color: var(--m-orange); border: 1px solid rgba(255,138,0,0.3); }
.mc-badge--fav.mc-badge--inline { background: rgba(239,68,68,0.12); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.mc-badge--new.mc-badge--inline { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }

.pizza-item__info {
    min-width: 0;
}
.pizza-item__info strong {
    display: inline;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    line-height: 1.2;
    vertical-align: middle;
}
.pizza-item__info span:not(.mc-badge--inline) {
    display: block;
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pizza-item__prices {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
    align-items: center;
}
.pizza-item__prices b {
    font-size: 0.92rem;
    font-weight: 700;
    min-width: 2.5rem;
    text-align: right;
    color: var(--text-primary);
}
.pizza-item__price-l { color: var(--m-orange) !important; }


/* ════════════════════════════════════════════════════
   CALZONE BOX
════════════════════════════════════════════════════ */
.calzone-box {
    background: var(--m-card-bg);
    border: 1px solid var(--m-border);
    border-radius: var(--m-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    align-items: center;
    min-height: 120px;
}

.calzone-box__content {
    padding: 1.25rem 1.5rem;
}
.calzone-box__name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: var(--m-orange);
    margin-bottom: 0.35rem;
}
.calzone-box__desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.calzone-box__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--m-orange);
}

.calzone-box__img-wrap {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}
.calzone-box__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.calzone-box:hover .calzone-box__img { transform: scale(1.08); }


/* ════════════════════════════════════════════════════
   SUPPLÉMENTS BOX
════════════════════════════════════════════════════ */
.supps-box {
    background: var(--m-card-bg);
    border: 1px solid var(--m-border);
    border-radius: var(--m-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
}

.supps-box__content { padding: 1.25rem 1.5rem; }
.supps-box__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--m-orange);
    margin-bottom: 0.75rem;
}

.supps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.supps-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.supps-list__name {
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.supps-list__price {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.supps-box__img-wrap {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}
.supps-box__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.4s, filter 0.3s;
}
.supps-box:hover .supps-box__img { transform: scale(1.08); filter: brightness(0.85); }


/* ════════════════════════════════════════════════════
   MC-CARDS-GRID (Generic categories)
════════════════════════════════════════════════════ */
.mc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.mc-cards-grid--single { grid-template-columns: minmax(280px, 400px); }

.mc-card {
    background: var(--m-card-bg);
    border: 1px solid var(--m-border-sub);
    border-radius: var(--m-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.mc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,138,0,0.15);
    border-color: rgba(255,138,0,0.2);
}

.mc-card__img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #111;
    position: relative;
}
.mc-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mc-card:hover .mc-card__img { transform: scale(1.06); }
.mc-card__placeholder {
    width: 100%; height: 100%;
    display: grid;
    place-items: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    aspect-ratio: 4/3;
}

.mc-card__body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.mc-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 0.1rem;
}
.mc-badge--hot { background: rgba(255,138,0,0.15); color: var(--m-orange); border: 1px solid rgba(255,138,0,0.3); }
.mc-badge--new { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
.mc-badge--fav { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }

.mc-card__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin: 0;
}
.mc-card__desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex: 1;
}
.mc-card__prices {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.mc-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: var(--m-orange);
}
.mc-price--single { color: var(--m-orange); }
.mc-price-menu {
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.mc-price-menu small { font-size: 0.75em; }


/* ════════════════════════════════════════════════════
   SAUCES
════════════════════════════════════════════════════ */
.mc-sauces,
.mc-quality,
.mc-pain-maison { display: none; }

.mc-sauces {
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-block: 3.5rem;
}
.mc-sauces__head {
    text-align: center;
    margin-bottom: 1.75rem;
}
.mc-sauces__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.mc-sauces__sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.mc-sauces__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.sauce-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(255,138,0,0.07);
    border: 1px solid rgba(255,138,0,0.2);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: background 0.2s, color 0.2s;
}
.sauce-pill:hover {
    background: rgba(255,138,0,0.15);
    color: var(--text-primary);
}
.sauce-pill svg { color: var(--m-orange); }


/* ════════════════════════════════════════════════════
   MC-QUALITY (Pâte fraîche maison) + MC-PAIN-MAISON
════════════════════════════════════════════════════ */
.mc-pain-maison {
    position: relative;
    min-height: clamp(400px, 55vh, 600px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.mc-quality {
    position: relative;
    min-height: clamp(400px, 55vh, 600px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.mc-quality__img-wrap {
    position: absolute;
    inset: 0;
}
.mc-quality__img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.8);
}
.mc-quality__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.55) 50%, rgba(5,5,5,0.85) 100%);
}
.mc-quality__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    padding-block: 3rem 4rem;
}
.mc-quality__card {
    background: rgba(8,8,8,0.88);
    border: 1px solid rgba(255,138,0,0.25);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
    max-width: 440px;
    width: 100%;
    backdrop-filter: blur(16px);
}
.mc-quality__icon {
    margin-bottom: 1rem;
}
.mc-quality__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.mc-quality__title span { color: var(--m-orange); }
.mc-quality__sub {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}
.mc-quality__icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.mc-quality__feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    padding: 0.75rem 0.25rem;
    background: rgba(255,138,0,0.05);
    border: 1px solid rgba(255,138,0,0.1);
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}
.mc-quality__feat:hover {
    background: rgba(255,138,0,0.1);
    border-color: rgba(255,138,0,0.25);
}
.mc-quality__feat span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    line-height: 1.35;
}


/* ════════════════════════════════════════════════════
   FOOTER V2 — Mise à jour pour correspondre à la maquette
════════════════════════════════════════════════════ */
.footer { padding-bottom: 0; }

.footer__grid {
    grid-template-columns: 1.5fr 1.2fr 0.8fr;
    padding-bottom: 3rem;
}
@media (min-width: 1025px) {
    .footer__grid { grid-template-columns: 1.5fr 1.2fr 0.8fr; }
    .footer__nav  { display: none; }
    .footer__menu { display: none; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE MENU PAGE
════════════════════════════════════════════════════ */

/* Tablette : 1024px */
@media (max-width: 1024px) {
    .pizza-layout { grid-template-columns: 1fr; }
    .mc-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .mc-quality__inner { justify-content: center; }
    .mc-quality__card { max-width: 100%; }
    .mc-hero__center { min-width: 240px; padding: 1.75rem 1.5rem; }
}

/* Tablette petite : 768px */
@media (max-width: 768px) {
    .mc-hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    .mc-hero__side { display: none; }
    .mc-hero__center { padding: 3rem 1.5rem; min-width: unset; }

    .mc-tab { min-width: 70px; padding: 0.65rem 0.85rem; }
    .mc-tab svg { width: 22px; height: 22px; }

    .pizza-block__col-heads { gap: 1rem; }
    .pizza-item__prices { gap: 1rem; }

    .calzone-box { grid-template-columns: 1fr; }
    .calzone-box__img-wrap { display: none; }

    .supps-box { grid-template-columns: 1fr; }
    .supps-box__img-wrap { display: none; }

    .mc-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .mc-quality__icons { grid-template-columns: repeat(2, 1fr); }

    .mc-quality { min-height: auto; }
    .mc-quality__card { margin: 0 auto; padding: 2rem 1.5rem; }
}

/* Mobile : 480px */
@media (max-width: 480px) {
    .mc-hero__title { font-size: 3rem; }

    .mc-tab { min-width: 65px; padding: 0.6rem 0.75rem; font-size: 0.6rem; }

    .pizza-item { padding: 0.65rem 1rem; }
    .pizza-block__head { padding: 1rem 1rem; }
    .pizza-list { }

    .calzone-box__content { padding: 1rem; }
    .supps-box__content { padding: 1rem; }

    .mc-cards-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .mc-card__name { font-size: 1rem; }

    .mc-quality__icons { grid-template-columns: repeat(4, 1fr); }
    .mc-quality__feat span { font-size: 0.6rem; }

    .mc-sauces__grid { gap: 0.45rem; }
    .sauce-pill { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
}

/* ── Bloc liste générique (une colonne, pleine largeur) ───────────── */
.mc-list-block {
    /* Même style que pizza-block mais sans contrainte de col */
    max-width: 900px;
    margin: 0 auto;
}

.tacos-viandes-inline {
    margin-top: 0.85rem;
}

/* Rend la desc des items plus lisible dans un bloc large */
.mc-list-block .pizza-item__info span {
    -webkit-line-clamp: 3;
    max-width: 60ch;
}

/* Sur grand écran, légèrement plus compact pour les longues listes */
@media (min-width: 1024px) {
    .mc-list-block .pizza-item { padding: 0.65rem 1.75rem; }
    .mc-list-block .pizza-block__head { padding: 1.5rem 1.75rem; }
}

/* Ultra-petit : 360px */
@media (max-width: 360px) {
    .mc-cards-grid { grid-template-columns: 1fr; }
    .pizza-item__prices { gap: 0.75rem; }
    .pizza-item__prices b { font-size: 0.82rem; min-width: 2rem; }
}

/* ============================================================================
   SECTION TRUST — Pourquoi nos clients nous choisissent
   ============================================================================ */

.trust-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.trust-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.trust-section__sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.trust-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Cartes témoignages */
.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card__stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
}

.trust-card__stars svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.trust-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin: 0;
    quotes: "\00AB" "\00BB";
}

.trust-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.trust-card__avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.trust-card__name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.trust-card__detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* CTA Google Reviews */
.trust-section__cta {
    text-align: center;
}

.trust-section__google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    background: rgba(255, 107, 0, 0.05);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.trust-section__google-link:hover {
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
    transform: translateY(-1px);
}

/* Paragraphe local SEO dans la trust band */
.tb__local {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0.75rem auto 0;
    text-align: center;
}
.tb__local-link {
    color: var(--accent-orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,107,0,0.3);
    transition: border-color 0.2s;
}
.tb__local-link:hover { border-color: var(--accent-orange); }

/* Responsive trust section */
@media (max-width: 1023px) {
    .trust-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-section__grid .trust-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .trust-section {
        padding: 3.5rem 0;
    }
    .trust-section__grid {
        grid-template-columns: 1fr;
    }
    .trust-section__grid .trust-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}


/* ════════════════════════════════════════════════════════════════════════
   NAVBAR — AUTO-ADAPTATION UNIVERSELLE
   Accueil · Carte · Contact + bouton COMMANDER toujours visibles, lisibles
   et bien alignés, de l'iPhone 3G (320px) jusqu'à un écran 49" (5K).
   Ce fichier étant chargé en dernier, ces règles font foi.
   ════════════════════════════════════════════════════════════════════════ */

/* — Toujours en ligne : aucun menu hamburger, liens + CTA visibles partout — */
.nav__hamburger { display: none !important; }
.nav__links     { display: flex; flex: 1 1 auto; min-width: 0; }
.nav__cta       { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo      { flex-shrink: 0; }

/* — Anti-débordement : rien ne passe à la ligne, le CTA garde sa place — */
.nav__link,
.nav__cmd-btn   { white-space: nowrap; }

/* ────────────────────────────────────────────────────────────
   ≤ 1024px — tablette : on resserre, on masque le sous-titre logo
──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav__links    { gap: clamp(1rem, 2.4vw, 1.8rem); }
    .nav__logo-sub { display: none; }
}

/* ────────────────────────────────────────────────────────────
   ≤ 768px — grand mobile / tablette portrait
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav__inner    { padding-left: 1rem; padding-right: 1rem; }
    .nav__logo-img,
    .nav__logo img { width: 38px; height: 38px; }
    .nav__logo-o,
    .nav__logo-swiss { font-size: 1.4rem; }
    .nav__links    { gap: clamp(0.85rem, 3vw, 1.4rem); }
    .nav__link     { font-size: 0.92rem; letter-spacing: 0.05em; }
    .nav__cmd-btn  { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .nav__cmd-btn svg { width: 15px; height: 15px; }
}

/* ────────────────────────────────────────────────────────────
   ≤ 540px — smartphones (la plupart : 360–430px)
──────────────────────────────────────────────────────────── */
@media (max-width: 540px) {
    .nav__inner    { padding-left: 0.85rem; padding-right: 0.85rem; }
    .nav__logo-o,
    .nav__logo-swiss { font-size: 1.3rem; }
    .nav__links    { gap: clamp(0.7rem, 3.2vw, 1.1rem); }
    .nav__link     { font-size: 0.88rem; letter-spacing: 0.03em; }
    .nav__cmd-btn  { padding: 0.46rem 0.85rem; font-size: 0.82rem; gap: 0.35rem; }
    .nav__cmd-btn svg { width: 14px; height: 14px; }
}

/* ────────────────────────────────────────────────────────────
   ≤ 400px — petits smartphones : on retire l'icône du CTA,
   on garde le mot COMMANDER
──────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
    .nav__inner    { padding-left: 0.65rem; padding-right: 0.65rem; }
    .nav__logo-img,
    .nav__logo img { width: 34px; height: 34px; }
    .nav__logo-o,
    .nav__logo-swiss { font-size: 1.2rem; }
    .nav__links    { gap: 0.65rem; }
    .nav__link     { font-size: 0.82rem; letter-spacing: 0.02em; }
    .nav__cmd-btn  { padding: 0.44rem 0.7rem; font-size: 0.8rem; gap: 0; }
    .nav__cmd-btn svg { display: none; }
}

/* ────────────────────────────────────────────────────────────
   ≤ 340px — iPhone 3G / 4 / SE 1re génération (320px)
──────────────────────────────────────────────────────────── */
@media (max-width: 340px) {
    .nav__inner    { padding-left: 0.5rem; padding-right: 0.5rem; }
    .nav__logo-img,
    .nav__logo img { width: 30px; height: 30px; }
    .nav__logo-o,
    .nav__logo-swiss { font-size: 1.1rem; }
    .nav__links    { gap: 0.5rem; }
    .nav__link     { font-size: 0.78rem; letter-spacing: 0; }
    .nav__cmd-btn  { padding: 0.42rem 0.6rem; font-size: 0.78rem; }
}

/* Filet de sécurité : sous 300px (aucun appareil réel), on masque le texte
   du logo pour garantir l'absence totale de débordement. L'icône reste. */
@media (max-width: 300px) {
    .nav__logo-text { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   GRANDS ÉCRANS — confort visuel progressif jusqu'au 49" (4K/5K)
   La barre reste centrée (max-width) et grossit pour rester lisible.
   ════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1600px) {
    .nav__link    { font-size: 1.05rem; }
    .nav__cmd-btn { font-size: 0.95rem; padding: 0.7rem 1.6rem; }
}

@media (min-width: 1920px) {
    :root { --nav-height: 88px; --max-width: 1640px; }
    .nav__logo-img,
    .nav__logo img { width: 54px; height: 54px; }
    .nav__logo-o,
    .nav__logo-swiss { font-size: 2rem; }
    .nav__logo-sub { display: block; font-size: 0.7rem; }
    .nav__links    { gap: 3rem; }
    .nav__link     { font-size: 1.2rem; }
    .nav__cmd-btn  { font-size: 1.1rem; padding: 0.85rem 2rem; }
    .nav__cmd-btn svg { width: 20px; height: 20px; }
}

@media (min-width: 2560px) {
    :root { --nav-height: 108px; --max-width: 2000px; }
    .nav__logo-img,
    .nav__logo img { width: 68px; height: 68px; }
    .nav__logo-o,
    .nav__logo-swiss { font-size: 2.6rem; }
    .nav__logo-sub { font-size: 0.85rem; letter-spacing: 0.22em; }
    .nav__links    { gap: 4rem; }
    .nav__link     { font-size: 1.55rem; }
    .nav__cmd-btn  { font-size: 1.45rem; padding: 1.1rem 2.6rem; gap: 0.7rem; }
    .nav__cmd-btn svg { width: 26px; height: 26px; }
}

/* Écran 49" / 4K / 5K (≥ 3840px de large) */
@media (min-width: 3840px) {
    :root { --nav-height: 150px; --max-width: 2800px; }
    .nav__logo-img,
    .nav__logo img { width: 96px; height: 96px; }
    .nav__logo-o,
    .nav__logo-swiss { font-size: 3.6rem; }
    .nav__logo-sub { font-size: 1.1rem; }
    .nav__links    { gap: 6rem; }
    .nav__link     { font-size: 2.1rem; }
    .nav__cmd-btn  { font-size: 2rem; padding: 1.5rem 3.5rem; gap: 1rem; }
    .nav__cmd-btn svg { width: 36px; height: 36px; }
}


/* ════════════════════════════════════════════════════════════════════════
   TRUST BAND (.tb__pillars) — piliers « Bien plus qu'un fast-food »
   Desktop : 4 colonnes. Tablette & mobile : 2×2 (jamais 1 seule colonne).
   → Produit + Cuisine sur la 1re ligne, Généreux + Satisfait sur la 2e.
   (Réglé ici car premium.css est chargé en dernier et fait foi.)
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .tb__pillars { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
    .tb__pillars { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .tb__pillar  { padding: 1.75rem 1rem; }
}
@media (max-width: 480px) {
    .tb__pillars { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .tb__pillar  { padding: 1.4rem 0.85rem; }
    .tb__pillar-icon { width: 48px; height: 48px; }
}
@media (max-width: 360px) {
    /* On reste en 2 colonnes même sur les très petits écrans */
    .tb__pillars { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
    .tb__pillar  { padding: 1.15rem 0.55rem; gap: 0.6rem; }
    .tb__pillar-icon { width: 42px; height: 42px; }
    .tb__pillar strong { font-size: 0.8rem; letter-spacing: 0.05em; }
    .tb__pillar span   { font-size: 0.74rem; }
}

