/* ==========================================================================
   Bella Napoli - feuille de style
   Direction artistique : l'affiche illustrée "La vraie street food napolitaine"
   (wwwroot/images/bella-napoli-affiche.jpg) : vert profond, papier crème,
   rose poudré, rouge tomate, jaune moutarde, carreaux de majolique,
   titres slab cernés et rubans.
   ========================================================================== */

:root {
    --vert: #1f4a2c;
    --vert-dark: #163a22;
    --vert-light: #2e6b3f;
    --creme: #f6ecd2;
    --papier: #efe0bd;
    --rose: #efb9ad;
    --rose-light: #f7d6cc;
    --rouge: #c0392b;
    --rouge-dark: #962a1f;
    --jaune: #e8b83a;
    --jaune-light: #f3cf6a;
    --bleu: #2f6f8f;
    --brun: #3b2a1f;
    --text: #3b2a1f;
    --text-muted: #6e5a48;
    --white: #fffaf0;

    --font-title: "Alfa Slab One", Georgia, serif;
    --font-label: "Oswald", "Arial Narrow", sans-serif;
    --font-script: "Lobster", cursive;
    --font-body: "Lato", "Segoe UI", Arial, sans-serif;

    --radius: 8px;
    --border: 3px solid var(--brun);
    --print-shadow: 6px 6px 0 var(--brun);
    --container: 1200px;
    --header-height: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 70px); }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--creme);
    /* grain "papier" discret */
    background-image:
        radial-gradient(rgba(59, 42, 31, .045) 1px, transparent 1px),
        radial-gradient(rgba(59, 42, 31, .03) 1px, transparent 1px);
    background-size: 7px 7px, 11px 11px;
    background-position: 0 0, 3px 5px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rouge); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--rouge-dark); }
h1, h2, h3 { font-family: var(--font-title); font-weight: 400; line-height: 1.15; color: var(--vert); margin: 0 0 .6em; letter-spacing: .01em; }
p { margin: 0 0 1em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 860px; }

/* ---------- Éléments "affiche" réutilisables ---------- */
.tile-strip { height: 32px; background: url("/images/majolica.svg") repeat-x center / auto 100%; border-block: 3px solid var(--brun); }
.tile-strip--thin { height: 18px; border-top: 0; }

.ribbon {
    display: inline-block;
    margin: 0 0 1rem;
    padding: .35em 1.8em;
    font-family: var(--font-label);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brun);
    background: var(--jaune);
    clip-path: polygon(0 0, 100% 0, calc(100% - .9em) 50%, 100% 100%, 0 100%, .9em 50%);
    line-height: 1.5;
}

.poster-crop,
.split-media img,
.split-media .map {
    width: 100%;
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--print-shadow);
    background: var(--papier);
}
.split-media img { aspect-ratio: 5 / 4; object-fit: cover; }
.split-media .poster-crop--tall { aspect-ratio: 3 / 4; max-height: 620px; object-fit: cover; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-block;
    padding: .8em 1.9em;
    border: var(--border);
    border-radius: 999px;
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--brun);
    transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--brun); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--brun); }
.btn-primary { background: var(--rouge); color: var(--white); }
.btn-primary:hover { background: var(--rouge-dark); color: var(--white); }
.btn-light { background: var(--jaune); color: var(--brun); }
.btn-light:hover { background: var(--jaune-light); color: var(--brun); }
.btn-outline { background: var(--creme); color: var(--vert); }
.btn-outline:hover { background: var(--vert); color: var(--creme); }
.btn-small { padding: .5em 1.3em; font-size: .85rem; }

/* ---------- En-tête ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--vert);
    border-bottom: 3px solid var(--brun);
    transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(22, 58, 34, .35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-height); gap: 1.5rem; }

.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-logo { max-height: 62px; width: auto; }
.brand-name {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--creme);
    letter-spacing: .04em;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 var(--brun);
}
.brand-tagline { font-family: var(--font-script); font-size: 1.2rem; color: var(--jaune); margin-top: .1em; }

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.6rem; }
.site-nav ul a {
    position: relative;
    color: var(--creme);
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4em 0;
}
.site-nav ul a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--jaune);
    transform: scaleX(0);
    transition: transform .25s;
}
.site-nav ul a:hover { color: var(--jaune-light); }
.site-nav ul a:hover::after,
.site-nav ul a.active::after { transform: scaleX(1); }
.site-nav ul a.active { color: var(--jaune); }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 28px; height: 3px; margin: 6px 0; background: var(--creme); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-title {
    font-size: clamp(2.3rem, 5.5vw, 4.4rem);
    color: var(--creme);
    text-transform: uppercase;
    letter-spacing: .02em;
    text-shadow: 4px 4px 0 var(--brun);
    margin-bottom: .35em;
}
.hero-subtitle { font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 620px; }

/* Accueil : texte + affiche */
.hero--home {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(232, 184, 58, .12), transparent 55%),
        var(--vert);
    color: var(--creme);
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.hero-home-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero--home .hero-title { font-size: clamp(2rem, 3.5vw, 3.4rem); overflow-wrap: break-word; hyphens: auto; }
.hero--home .hero-subtitle { color: var(--papier); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.poster-frame {
    margin: 0;
    padding: 10px;
    background: var(--creme);
    border: var(--border);
    border-radius: 6px;
    box-shadow: 10px 10px 0 var(--brun);
    transform: rotate(1.2deg);
    transition: transform .4s;
}
.poster-frame:hover { transform: rotate(0) scale(1.01); }
.poster-frame img { width: 100%; border: 2px solid var(--brun); }

/* Pages : ciel rose et Vésuve, comme sur l'affiche */
.hero--page {
    display: flex;
    align-items: center;
    min-height: 380px;
    text-align: center;
    background-color: var(--vert);
    background-size: cover;
    background-position: center;
}
.hero--page .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31, 74, 44, .55), rgba(22, 58, 34, .8)); }
.hero--no-image { background: linear-gradient(180deg, #f3c1b5 0%, var(--rose) 45%, #e9a58f 100%); }
.hero--no-image .hero-overlay { display: none; }
.hero-vesuvio { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 140px; }
.hero-vesuvio-smoke { fill: var(--white); opacity: .75; }
.hero-vesuvio-back { fill: #7d7fa3; }
.hero-vesuvio-sea { fill: var(--bleu); }
.hero--page .hero-content { position: relative; z-index: 1; padding: 3.5rem 0 9.5rem; }
.hero--page:not(.hero--no-image) .hero-content { padding-bottom: 4.5rem; }
.hero--page .hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.hero--page .hero-subtitle { margin: 0 auto 1.5rem; font-family: var(--font-script); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.3; color: var(--vert); }
.hero--page:not(.hero--no-image) .hero-subtitle { color: var(--jaune); }

/* Bandeau spécialités (extrait de l'affiche) */
.specialites { background: #f2a995; border-bottom: 3px solid var(--brun); padding: 1rem 0; }
.specialites img {
    margin-inline: auto;
    width: min(100%, 916px);
    /* fond fondu dans la couleur du bandeau */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tight { padding: 2.5rem 0; }
.section--cream { background: var(--papier); border-block: 3px solid var(--brun); }
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: .5em;
}
.section-title::after {
    content: "";
    display: block;
    width: 110px;
    height: 16px;
    margin: .35em auto 0;
    background: url("/images/majolica.svg") repeat-x center / auto 100%;
    border: 2px solid var(--brun);
}
.section-title--left { text-align: left; }
.section-title--left::after { margin-left: 0; }
.section-lead { text-align: center; font-family: var(--font-script); font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--rouge); max-width: 680px; margin: 0 auto 2.5rem; line-height: 1.3; }
.section-actions { text-align: center; margin: 2.8rem 0 0; }
.section-actions--left { text-align: left; }

.rte > :last-child { margin-bottom: 0; }
.rte--center { text-align: center; font-size: 1.15rem; }
.rte h2, .rte h3 { margin-top: 1.2em; }
.rte strong { color: var(--vert); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--top { align-items: start; }
.split--reverse .split-media { order: -1; }

/* ---------- Points forts / services ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.feature {
    position: relative;
    background: var(--creme);
    border: var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem 1.7rem;
    box-shadow: var(--print-shadow);
    transition: transform .25s;
}
.feature::before { content: ""; position: absolute; inset: 0 0 auto; height: 10px; background: var(--rouge); border-bottom: 2px solid var(--brun); border-radius: 4px 4px 0 0; }
.feature:nth-child(4n + 2)::before { background: var(--vert-light); }
.feature:nth-child(4n + 3)::before { background: var(--jaune); }
.feature:nth-child(4n + 4)::before { background: var(--bleu); }
.feature:hover { transform: translate(-3px, -3px); }
.feature-number { font-family: var(--font-script); font-size: 2.6rem; line-height: 1; color: var(--rouge); }
.feature-title { font-size: 1.3rem; margin: .35em 0 .5em; text-transform: uppercase; }
.feature p { color: var(--text-muted); margin: 0; font-size: .98rem; }

/* ---------- Cartes plats (accueil) ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.dish-card {
    display: flex;
    flex-direction: column;
    background: var(--creme);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--print-shadow);
    transition: transform .25s;
}
.dish-card:hover { transform: translate(-3px, -3px) rotate(-.4deg); }
.dish-card-media { aspect-ratio: 4 / 3; background: var(--rose); border-bottom: var(--border); display: grid; place-items: center; overflow: hidden; }
.dish-card-media img { width: 100%; height: 100%; object-fit: cover; }
.dish-card-media .pizza-illustration { width: 58%; }
.dish-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.dish-card-title { font-size: 1.35rem; margin-bottom: .35em; }
.dish-card-body p { color: var(--text-muted); font-size: .96rem; }
.dish-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.dish-card-price {
    margin-left: auto;
    white-space: nowrap;
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brun);
    background: var(--jaune);
    border: 2px solid var(--brun);
    border-radius: 999px;
    padding: .15em .9em;
}

/* Illustration pizza (sans photo) */
.pizza-illustration {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    border-radius: 50%;
    border: 3px solid var(--brun);
    background:
        radial-gradient(circle at 30% 35%, var(--vert-light) 0 5%, transparent 5.5%),
        radial-gradient(circle at 62% 60%, var(--vert-light) 0 4.5%, transparent 5%),
        radial-gradient(circle at 55% 28%, var(--vert-light) 0 3.5%, transparent 4%),
        radial-gradient(circle at 38% 62%, var(--white) 0 9%, transparent 9.5%),
        radial-gradient(circle at 64% 40%, var(--white) 0 10%, transparent 10.5%),
        radial-gradient(circle at 48% 45%, var(--white) 0 6%, transparent 6.5%),
        radial-gradient(circle at 70% 70%, var(--white) 0 6%, transparent 6.5%),
        radial-gradient(circle, var(--rouge) 0 68%, var(--jaune) 70% 100%);
}

/* Badges */
.badges { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.badge { font-family: var(--font-label); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .15em .8em; border-radius: 999px; border: 2px solid var(--brun); }
.badge--signature { background: var(--jaune); color: var(--brun); }
.badge--veggie { background: var(--vert-light); color: var(--creme); }
.badge--spicy { background: var(--rouge); color: var(--white); }

/* ---------- La carte ---------- */
.menu-nav {
    position: sticky;
    top: var(--header-height);
    z-index: 40;
    background: var(--vert-dark);
    border-bottom: 3px solid var(--brun);
    padding: .7rem 0;
}
.menu-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .6rem; overflow-x: auto; justify-content: center; scrollbar-width: none; }
.menu-nav a {
    display: block;
    white-space: nowrap;
    color: var(--creme);
    text-decoration: none;
    font-family: var(--font-label);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35em 1.2em;
    border-radius: 999px;
    border: 2px solid rgba(246, 236, 210, .35);
    transition: background .2s, color .2s;
}
.menu-nav a:hover,
.menu-nav a.active { background: var(--jaune); border-color: var(--brun); color: var(--brun); }

.menu-category { padding: clamp(3rem, 7vw, 5rem) 0; }
.menu-category:nth-child(even) { background: var(--papier); border-block: 3px solid var(--brun); }
.menu-category-header { text-align: center; margin-bottom: 2.5rem; }
.menu-category-title { font-size: clamp(2.1rem, 5vw, 3.2rem); text-transform: uppercase; margin-bottom: .3em; text-shadow: 3px 3px 0 var(--jaune); }
.menu-category-subtitle {
    display: inline-block;
    margin: 0;
    padding: .3em 1.8em;
    font-family: var(--font-label);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--creme);
    background: var(--rouge);
    clip-path: polygon(0 0, 100% 0, calc(100% - .9em) 50%, 100% 100%, 0 100%, .9em 50%);
}

.menu-list { display: grid; gap: 1.8rem; }
.menu-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.menu-item-image { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: var(--border); }
.menu-item-body { flex: 1; }
.menu-item-head { display: flex; align-items: baseline; gap: .75rem; }
.menu-item-title { font-size: 1.25rem; margin: 0; }
.menu-item-dots { flex: 1; border-bottom: 3px dotted rgba(59, 42, 31, .35); transform: translateY(-5px); min-width: 1rem; }
.menu-item-price { font-family: var(--font-label); font-weight: 700; font-size: 1.2rem; color: var(--rouge); white-space: nowrap; }
.menu-item-description { color: var(--text-muted); margin: .3em 0 .5em; font-size: .98rem; }
.menu-note { text-align: center; color: var(--text-muted); font-style: italic; font-size: .95rem; margin-block: 0; }

/* ---------- Frise chronologique ---------- */
.timeline { list-style: none; margin: 3rem 0 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 64px; width: 4px; background: var(--vert); border-radius: 2px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 130px 1fr; gap: 1.5rem; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
    position: relative;
    z-index: 1;
    align-self: start;
    min-width: 130px;
    text-align: center;
    background: var(--rouge);
    color: var(--creme);
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .05em;
    padding: .35em .8em;
    border: var(--border);
    border-radius: 999px;
    box-shadow: 3px 3px 0 var(--brun);
}
.timeline-body { background: var(--creme); padding: 1.3rem 1.5rem; border: var(--border); border-radius: var(--radius); box-shadow: var(--print-shadow); }
.timeline-body h3 { font-size: 1.25rem; margin-bottom: .3em; }
.timeline-body p { color: var(--text-muted); margin: 0; }
.timeline-body img { margin-top: 1rem; border-radius: 6px; border: 2px solid var(--brun); }

/* ---------- Citation ---------- */
.block-quote.section--cream { background: var(--vert); }
.quote { margin: 0; text-align: center; }
.quote blockquote {
    margin: 0;
    font-family: var(--font-script);
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    line-height: 1.35;
    color: var(--creme);
}
.quote blockquote::before { content: "\201C"; display: block; font-family: var(--font-title); font-size: 4.5rem; line-height: .7; color: var(--jaune); margin-bottom: .15em; }
.quote figcaption { margin-top: 1.2rem; font-family: var(--font-label); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--jaune); }

/* ---------- Appel à l'action ---------- */
.cta {
    position: relative;
    padding: clamp(4rem, 9vw, 6rem) 0;
    text-align: center;
    color: var(--creme);
    background-color: var(--vert);
    background-size: cover;
    background-position: center;
    border-block: 3px solid var(--brun);
}
.cta::before,
.cta::after { content: ""; position: absolute; left: 0; right: 0; height: 22px; background: url("/images/majolica.svg") repeat-x center / auto 100%; }
.cta::before { top: 0; border-bottom: 3px solid var(--brun); }
.cta::after { bottom: 0; border-top: 3px solid var(--brun); }
.cta--image { box-shadow: inset 0 0 0 100vmax rgba(22, 58, 34, .75); }
.cta-inner { position: relative; }
.cta-title { font-family: var(--font-script); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--jaune); text-shadow: 3px 3px 0 var(--brun); }
.cta p { font-size: 1.15rem; margin-bottom: 2rem; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.gallery-item { display: block; border: var(--border); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: 4px 4px 0 var(--brun); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.contact-card { background: var(--rose-light); border: var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: 4px 4px 0 var(--brun); }
.contact-card h3 { font-family: var(--font-label); font-weight: 700; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rouge); margin-bottom: .4em; }
.contact-card address, .contact-card p { font-style: normal; margin: 0; }
.map { border: 0; aspect-ratio: 4 / 5; min-height: 380px; }

.hours { margin: 0; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .3em 0; border-bottom: 2px dotted rgba(59, 42, 31, .25); }
.hours-row:last-child { border-bottom: 0; }
.hours dt { font-weight: 700; }
.hours dd { margin: 0; text-align: right; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--vert); color: var(--papier); font-size: .97rem; }
.site-footer a { color: var(--creme); }
.site-footer a:hover { color: var(--jaune); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 3rem; padding: 4rem 0 3rem; }
.footer-brand { font-family: var(--font-title); font-size: 1.9rem; text-transform: uppercase; color: var(--creme); text-shadow: 3px 3px 0 var(--brun); margin-bottom: .5em; }
.footer-title { font-family: var(--font-script); font-size: 1.9rem; color: var(--jaune); margin-bottom: .4em; }
.site-footer address { font-style: normal; margin-bottom: 1em; }
.site-footer .hours-row { border-bottom-color: rgba(246, 236, 210, .2); }
.site-footer .hours dt { color: var(--creme); }
.social { list-style: none; margin: 1.2rem 0 0; padding: 0; display: flex; gap: .6rem; }
.social a {
    display: inline-block;
    padding: .3em 1em;
    border: 2px solid var(--jaune);
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-label);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .85rem;
}
.footer-bottom { background: var(--vert-dark); border-top: 3px solid var(--brun); padding: 1.1rem 0; font-size: .85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { margin: 0; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-home-grid { grid-template-columns: minmax(0, 1fr); }
    .hero--home .hero-content { text-align: center; }
    .hero--home .hero-subtitle { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .poster-frame { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 960px) {
    :root { --header-height: 72px; }

    .nav-toggle { display: block; }
    .site-nav {
        position: fixed;
        inset: calc(var(--header-height) + 18px) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem 1.25rem 2rem;
        background: var(--vert);
        border-bottom: 3px solid var(--brun);
        transform: translateY(-130%);
        visibility: hidden;
        transition: transform .35s ease, visibility .35s;
    }
    .nav-open .site-nav { transform: translateY(0); visibility: visible; }
    .site-nav ul { flex-direction: column; gap: 0; }
    .site-nav ul a { display: block; padding: .9em 0; border-bottom: 1px solid rgba(246, 236, 210, .15); }
    .site-nav ul a::after { display: none; }
    .site-nav .btn { text-align: center; }

    .split { grid-template-columns: minmax(0, 1fr); }
    .split--reverse .split-media { order: 0; }
    .menu-nav ul { justify-content: flex-start; }
}

@media (max-width: 600px) {
    body { font-size: 1rem; }
    .brand-name { font-size: 1.5rem; }
    .brand-tagline { font-size: 1rem; }
    .poster-frame { padding: 6px; box-shadow: 6px 6px 0 var(--brun); }
    .timeline::before { left: 18px; }
    .timeline-item { grid-template-columns: 1fr; gap: .75rem; padding-left: 40px; }
    .timeline-year { min-width: 0; justify-self: start; }
    .menu-item-image { width: 64px; height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
