/* ============================================
   VILLA DEL PARCO — Comptoir à Pizza
   Feuille de style principale
   ============================================ */

/* --- Tokens de design (couleurs du flyer) --- */
:root {
    --cream:        #EFE5CD;
    --cream-light:  #F7EFD9;
    --cream-dark:   #D9C89E;
    --cream-warm:   #E4D5B0;
    --burgundy:     #8A2B1F;
    --terracotta:   #A9411F;
    --charcoal:     #2A1810;
    --brown:        #4A2E1F;
    --olive:        #4A5D23;
    --olive-light:  #6B7F3A;
    --white:        #FBF7EC;
    --tricolor-green:#008C45;
    --tricolor-red: #CD212A;

    --font-serif:   'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width:    1200px;
    --header-h:     84px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

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

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

/* --- Typographie --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.2rem;
}

/* --- Layout --- */
.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

@media (max-width: 720px) {
    section { padding: 3.5rem 0; }
}

/* ============================================
   HEADER (sticky)
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(239, 229, 205, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(138, 43, 31, 0.12);
    height: var(--header-h);
    display: flex;
    align-items: center;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--charcoal);
}

.brand-mark {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-serif);
    line-height: 1;
}

.brand-name {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-tag {
    display: block;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    color: var(--burgundy);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav a {
    color: var(--charcoal);
    font-size: 0.98rem;
    font-weight: 400;
    position: relative;
    padding: 0.4rem 0;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.nav a.active { color: var(--burgundy); }

.nav .btn-nav {
    background: var(--burgundy);
    color: var(--cream);
    padding: 0.6rem 1.3rem;
    border-radius: 2px;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    transition: background 0.25s;
}

.nav .btn-nav::after { display: none; }
.nav .btn-nav:hover { background: var(--terracotta); color: var(--cream); }
.nav .btn-nav.active { color: var(--cream); background: var(--terracotta); }

/* Burger menu (mobile) */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .burger { display: flex; }
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.5rem 2rem;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        border-bottom: 1px solid rgba(138, 43, 31, 0.12);
        box-shadow: 0 10px 30px rgba(42, 24, 16, 0.08);
    }
    .nav.open { transform: translateY(0); }
    .nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(138, 43, 31, 0.1);
        font-size: 1.1rem;
    }
    .nav a::after { display: none; }
    .nav .btn-nav {
        margin-top: 1rem;
        text-align: center;
        border-bottom: none;
    }
}

/* ============================================
   TRICOLORE — ruban italien
   ============================================ */
.tricolor {
    display: flex;
    height: 4px;
    width: 100%;
}
.tricolor span { flex: 1; }
.tricolor span:nth-child(1) { background: var(--tricolor-green); }
.tricolor span:nth-child(2) { background: var(--white); }
.tricolor span:nth-child(3) { background: var(--tricolor-red); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--cream);
    overflow: hidden;
}

.hero-content {
    padding: 5rem 4rem 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
    margin-left: auto;
    position: relative;
}

.hero-content .tag {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--burgundy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-content h1 .del {
    display: block;
    font-style: italic;
    font-size: 0.75em;
    color: var(--burgundy);
    font-weight: 300;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 2rem;
    max-width: 460px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--terracotta);
    color: var(--cream);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.hero-image {
    position: relative;
    background: url('../images/facade.jpg') center/cover no-repeat;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 24, 16, 0.05), transparent 40%);
}

/* Hero small variant (inner pages) */
.hero-sm {
    min-height: 42vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem 3rem;
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero-sm h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    max-width: 800px;
    line-height: 1.05;
}

.hero-sm p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--burgundy);
    margin-top: 1rem;
    max-width: 620px;
}

.hero-sm::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: var(--cream-warm);
    transform: rotate(15deg);
    z-index: 0;
    opacity: 0.6;
}

.hero-sm > * { position: relative; z-index: 1; }

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-image {
        clip-path: none;
        min-height: 55vh;
    }
    .hero-content {
        padding: 3.5rem 1.5rem;
        margin: 0 auto;
    }
}

/* ============================================
   SECTION — presentation
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-2.reversed .col-media { order: 2; }

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .grid-2.reversed .col-media { order: 0; }
}

.col-text h2 {
    margin-bottom: 1.5rem;
}

.col-text p {
    color: var(--brown);
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

.col-media img {
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(42, 24, 16, 0.15);
}

/* Alt background sections */
.section-alt {
    background: var(--cream-light);
    position: relative;
}

.section-dark {
    background: var(--charcoal);
    color: var(--cream);
}

.section-dark h2,
.section-dark h3 { color: var(--cream); }

.section-dark p { color: rgba(251, 247, 236, 0.85); }

.section-dark .eyebrow { color: var(--cream-dark); }

/* ============================================
   USP / Features
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 780px) {
    .features { grid-template-columns: 1fr; gap: 2rem; }
}

.feature {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 3px solid var(--burgundy);
    background: var(--white);
}

.feature-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 1.2rem;
    color: var(--burgundy);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.feature p {
    font-size: 0.96rem;
    color: var(--brown);
    line-height: 1.6;
}

/* ============================================
   MENU / CARTE
   ============================================ */
.menu-section {
    margin-bottom: 4.5rem;
}

.menu-section:last-child { margin-bottom: 0; }

.menu-header {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(138, 43, 31, 0.2);
}

.menu-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--burgundy);
}

.menu-header .subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--brown);
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

@media (max-width: 780px) {
    .menu-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

.menu-item {
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed rgba(74, 46, 31, 0.2);
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1.2;
}

.menu-item-price {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--charcoal);
    font-weight: 500;
    white-space: nowrap;
}

.menu-item-desc {
    color: var(--brown);
    font-size: 0.98rem;
    line-height: 1.5;
    font-style: italic;
}

.menu-note {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    background: rgba(138, 43, 31, 0.05);
    border-left: 3px solid var(--burgundy);
    font-size: 0.95rem;
    color: var(--brown);
    font-style: italic;
}

/* Menu category nav */
.menu-nav {
    position: sticky;
    top: var(--header-h);
    background: rgba(239, 229, 205, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 50;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(138, 43, 31, 0.1);
    margin-bottom: 3rem;
}

.menu-nav-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.menu-nav-list a {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    font-style: italic;
}

.menu-nav-list a:hover { color: var(--burgundy); }

/* ============================================
   INFOS PRATIQUES
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .info-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.info-card {
    padding: 2.5rem 2rem;
    background: var(--cream-light);
    border-left: 3px solid var(--burgundy);
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.info-card p, .info-card li {
    color: var(--brown);
    line-height: 1.7;
}

.info-card ul { list-style: none; padding: 0; }

.info-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(74, 46, 31, 0.15);
}

.info-card ul li:last-child { border-bottom: none; }

.info-card ul li span:first-child {
    color: var(--charcoal);
    font-weight: 500;
}

.info-card ul li span:last-child {
    font-family: var(--font-serif);
    color: var(--burgundy);
}

.info-card .closed {
    color: #999;
    font-style: italic;
}

.map-embed {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 2px;
    margin-top: 3rem;
    filter: sepia(0.15) saturate(0.9);
    box-shadow: 0 10px 40px rgba(42, 24, 16, 0.12);
}

/* ============================================
   HISTOIRE / About page
   ============================================ */
.chef-portrait {
    position: relative;
}

.chef-portrait img {
    border-radius: 2px;
}

.chef-portrait::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 40px;
    bottom: 40px;
    border: 2px solid var(--burgundy);
    z-index: -1;
}

blockquote {
    border-left: 4px solid var(--burgundy);
    padding: 1rem 0 1rem 2rem;
    margin: 2.5rem 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--charcoal);
    line-height: 1.5;
}

blockquote footer {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.9rem;
    color: var(--burgundy);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.timeline {
    margin-top: 3rem;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--burgundy);
}

.timeline-item {
    padding-bottom: 2.5rem;
    position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.6rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    background: var(--burgundy);
    border-radius: 50%;
    border: 3px solid var(--cream);
    box-sizing: content-box;
}

.timeline-year {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--burgundy);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.timeline-item p {
    color: var(--brown);
    line-height: 1.65;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info {
    padding: 2.5rem 2rem;
    background: var(--cream-light);
    border-top: 3px solid var(--burgundy);
}

.contact-info h3 {
    font-family: var(--font-serif);
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--burgundy);
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2px;
    letter-spacing: 0.03em;
}

.contact-item a, .contact-item span {
    color: var(--brown);
    font-size: 0.98rem;
    line-height: 1.5;
}

.contact-item a:hover { color: var(--burgundy); }

/* Form */
.form-wrap { }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--white);
    border: 1px solid rgba(74, 46, 31, 0.25);
    border-radius: 2px;
    color: var(--charcoal);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(138, 43, 31, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--font-sans);
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.form-help {
    font-size: 0.88rem;
    color: var(--brown);
    font-style: italic;
}

.form-success {
    display: none;
    padding: 1.5rem;
    background: rgba(74, 93, 35, 0.1);
    border-left: 3px solid var(--olive);
    color: var(--olive);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.form-success.show { display: block; }

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
    padding: 4rem 0;
    background: var(--charcoal);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.cta-banner p {
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: rgba(251, 247, 236, 0.85);
}

.cta-banner .btn-primary {
    background: var(--cream);
    color: var(--charcoal);
}

.cta-banner .btn-primary:hover {
    background: var(--cream-dark);
    color: var(--charcoal);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(251, 247, 236, 0.15);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; }
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.footer-brand p {
    color: rgba(251, 247, 236, 0.7);
    font-size: 0.95rem;
    font-family: var(--font-serif);
    font-style: italic;
    max-width: 320px;
    margin-bottom: 1.2rem;
}

.footer-brand .footer-quote {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(251, 247, 236, 0.6);
    font-style: italic;
    margin: 0;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dark);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(251, 247, 236, 0.75);
    font-size: 0.98rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-col address {
    font-style: normal;
    color: rgba(251, 247, 236, 0.75);
    font-size: 0.98rem;
    line-height: 1.7;
}

.footer-col address a { color: rgba(251, 247, 236, 0.75); }
.footer-col address a:hover { color: var(--cream); }

.socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 247, 236, 0.3);
    border-radius: 50%;
    color: var(--cream);
    transition: all 0.25s;
}

.socials a:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--cream);
}

.socials svg { width: 16px; height: 16px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(251, 247, 236, 0.5);
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(251, 247, 236, 0.6); }
.footer-bottom a:hover { color: var(--cream); }

/* ============================================
   Divers / decorations
   ============================================ */

/* Diagonal divider (echo of the flyer's geometry) */
.diagonal-top {
    position: relative;
}

.diagonal-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: translateY(-59px);
    z-index: 1;
}

/* SVG utility for decorative pizza cutter */
.deco {
    display: inline-block;
    vertical-align: middle;
}

/* Sr-only for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Reveal animation (very subtle, only on scroll) */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print-friendly menu */
@media print {
    .site-header, .site-footer, .cta-banner, .menu-nav { display: none; }
    body { background: white; color: black; }
    section { padding: 1rem 0; }
    .menu-item { break-inside: avoid; }
}

/* ============================================
   V2 — Hero éditorial (style référence)
   ============================================ */

/* Update font tokens */
:root {
    --font-script: 'Sacramento', 'Great Vibes', cursive;
    --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
    --green-accent: #5A8F3E;
    --green-dark: #3D5A2E;
}

/* --- Header brand update --- */
.brand-mark {
    width: 52px;
    height: 52px;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.brand-tag {
    font-style: italic;
    text-transform: none;
    font-family: var(--font-serif);
    letter-spacing: 0.03em;
    font-size: 0.85rem;
    color: var(--burgundy);
}

/* --- Editorial hero (v2) --- */
.hero-v2 {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    background: var(--cream);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 0;
}

/* Village decoration top-right of hero */
.hero-village {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    width: 340px;
    max-width: 40%;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}
.hero-village .village-script {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--burgundy);
    line-height: 1;
    text-align: right;
    flex-shrink: 0;
}
.hero-village img {
    width: 160px;
    height: auto;
    opacity: 0.85;
}

/* Left content */
.hero-v2-content {
    padding: 3.5rem 3rem 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 1.8rem;
    font-weight: 500;
}
.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--burgundy);
    border-radius: 50%;
    display: inline-block;
}

.hero-v2 h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}
.hero-script::after {
    content: "";
    position: absolute;
    left: 0;
    right: 15%;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-accent) 0%, var(--green-accent) 100%);
    border-radius: 2px;
}
.hero-script::before {
    content: "";
    position: absolute;
    left: 0;
    right: 40%;
    bottom: -6px;
    height: 2px;
    background: var(--tricolor-red);
    border-radius: 2px;
}

.hero-v2 .hero-lead {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--brown);
    max-width: 460px;
    margin-bottom: 2.2rem;
}

.hero-v2 .hero-actions .btn-primary {
    padding: 1.05rem 2.3rem;
    font-weight: 600;
}

/* Right visual collage */
.hero-v2-visual {
    position: relative;
    min-height: 620px;
    background:
        linear-gradient(180deg, rgba(120, 60, 20, 0.15) 0%, rgba(80, 30, 10, 0.45) 100%),
        url('../images/facade.jpg') center/cover no-repeat;
    background-blend-mode: multiply, normal;
}
.hero-v2-visual::before {
    /* Cream fade on left edge */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--cream) 0%, transparent 15%);
    z-index: 1;
    pointer-events: none;
}
.hero-v2-visual::after {
    /* Warm interior amber glow */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 55% 55%, rgba(255, 170, 80, 0.35) 0%, transparent 70%),
        linear-gradient(180deg, transparent 30%, rgba(180, 100, 30, 0.15) 100%);
    z-index: 2;
    mix-blend-mode: overlay;
}

/* Round logo badge over visual */
.hero-badge {
    position: absolute;
    top: 6%;
    left: 5%;
    width: 180px;
    height: 180px;
    z-index: 6;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.hero-badge img { width: 100%; height: 100%; }

/* Pizza (bottom-right foreground) */
.hero-pizza {
    position: absolute;
    bottom: -40px;
    right: -50px;
    width: 620px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
    animation: gentleFloat 8s ease-in-out infinite;
}
.hero-pizza img { width: 100%; height: auto; display: block; }

/* Oil bottle */
.hero-oil {
    position: absolute;
    top: 18%;
    right: 6%;
    width: 90px;
    z-index: 5;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}
.hero-oil img { width: 100%; }

/* Cherry tomatoes decorations */
.hero-tomatoes {
    position: absolute;
    bottom: 20%;
    left: 12%;
    z-index: 5;
    display: flex;
    gap: 6px;
}
.tomato {
    width: 32px;
    height: 32px;
    background: radial-gradient(circle at 30% 30%, #F1614A, #C21F1F);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
}
.tomato::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 45%;
    width: 6px;
    height: 6px;
    background: #3D5A2E;
    border-radius: 50%;
}

/* Basil floating */
.hero-basil {
    position: absolute;
    top: 40%;
    left: 22%;
    width: 60px;
    height: 60px;
    z-index: 5;
    transform: rotate(-15deg);
}
.hero-basil svg { width: 100%; height: 100%; }

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-8px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-pizza { animation: none; }
}

/* Bottom USP strip inside hero */
.hero-usp {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(42, 24, 16, 0.75);
    color: var(--cream);
    padding: 1.4rem 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: auto;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-usp-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.3rem 1.2rem;
    border-right: 1px solid rgba(251, 247, 236, 0.15);
}
.hero-usp-item:last-child { border-right: none; }
.hero-usp-icon {
    width: 38px;
    height: 38px;
    color: var(--green-accent);
    flex-shrink: 0;
}
.hero-usp-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 2px;
}
.hero-usp-text span {
    font-size: 0.78rem;
    color: rgba(251, 247, 236, 0.7);
    font-family: var(--font-sans);
    font-style: italic;
    line-height: 1.3;
}

/* Olive branch decorations */
.olive-deco {
    position: absolute;
    z-index: 4;
    opacity: 0.75;
    pointer-events: none;
}
.olive-deco.top-left {
    top: 5rem;
    left: -40px;
    width: 260px;
    transform: rotate(-8deg);
}
.olive-deco.mid-left {
    top: 45%;
    left: -60px;
    width: 220px;
    transform: rotate(-15deg) scaleY(-1);
}

/* Responsive hero v2 */
@media (max-width: 1100px) {
    .hero-v2-content { padding-left: 2.5rem; }
    .hero-village { width: 260px; top: 1rem; right: 1rem; }
    .hero-village .village-script { font-size: 1.3rem; }
    .hero-village img { width: 120px; }
    .olive-deco.top-left { display: none; }
}

@media (max-width: 900px) {
    .hero-v2 {
        grid-template-columns: 1fr;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    .hero-village {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        justify-content: center;
        margin-bottom: 1rem;
        order: 1;
        flex-direction: column;
        gap: 0.4rem;
        padding: 0 1rem;
    }
    .hero-village .village-script {
        text-align: center;
        font-size: 1.5rem;
    }
    .hero-village img {
        width: 180px;
    }
    .hero-v2-visual {
        order: 2;
        min-height: 55vh;
    }
    .hero-v2-content {
        padding: 2rem 1.5rem 2rem;
        order: 3;
    }
    .hero-usp { order: 4; }
    .hero-eyebrow {
        flex-wrap: wrap;
        font-size: 0.72rem;
        justify-content: flex-start;
    }
    .hero-pizza {
        width: 340px;
        height: 340px;
        bottom: -40px;
        right: -40px;
    }
    .hero-badge { width: 120px; height: 120px; top: 4%; left: 4%; }
    .hero-oil { width: 60px; top: 12%; right: 4%; }
    .hero-usp {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem 0;
        padding: 1rem;
    }
    .hero-usp-item {
        padding: 0.4rem 0.6rem;
        border-right: none;
        border-bottom: 1px solid rgba(251, 247, 236, 0.1);
        padding-bottom: 0.9rem;
    }
    .hero-usp-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0.4rem; }
    .hero-usp-item:nth-child(2n) { border-left: 1px solid rgba(251, 247, 236, 0.15); }
    .olive-deco { display: none; }
}
@media (max-width: 560px) {
    .hero-usp { grid-template-columns: 1fr; }
    .hero-usp-item { border-left: none !important; }
}

/* Update section-alt with green accents */
.section-alt {
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

/* Green underline utility for scripts on inner pages */
.script-underline {
    font-family: var(--font-script);
    color: var(--burgundy);
    display: inline-block;
    position: relative;
    padding-bottom: 0.25rem;
}
.script-underline::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 0;
    height: 2px;
    background: var(--green-accent);
    border-radius: 2px;
}

/* Update hero-sm to include the olive/script accents */
.hero-sm .hero-script-tag {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--burgundy);
    display: inline-block;
    margin-top: 0.5rem;
    position: relative;
    padding-bottom: 6px;
}
.hero-sm .hero-script-tag::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 2px;
    background: var(--green-accent);
}

.hero-sm::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 60px;
    background: url('../images/olive-branch.svg') center/contain no-repeat;
    opacity: 0.5;
    z-index: 0;
}

/* ============================================
   V2.1 — Real logo in header + real photo pizza
   ============================================ */

/* New brand display in header (single logo image, no text) */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.brand-logo {
    height: 76px;
    width: auto;
    display: block;
    transition: transform 0.25s ease;
}
.brand:hover .brand-logo {
    transform: scale(1.03);
}

/* Header slightly taller to accommodate the vertical logo nicely */
:root {
    --header-h: 100px;
}
.site-header { height: var(--header-h); }

@media (max-width: 900px) {
    .brand-logo { height: 60px; }
    :root { --header-h: 88px; }
}
@media (max-width: 560px) {
    .brand-logo { height: 52px; }
    :root { --header-h: 78px; }
}

/* Pizza photo: remove shadow drop (already has natural shadow), adjust size */
.hero-pizza {
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.45));
}
.hero-pizza img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================
   V4 — Rich header (logo + name + village sketch)
   ============================================ */

:root {
    --header-h: 108px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background:
        linear-gradient(180deg, #F4EEDC 0%, #EFE5CD 100%);
    border-bottom: none;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Tricolor diagonal stripes on the far-left edge */
.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 46px;
    background: repeating-linear-gradient(
        -55deg,
        #008C45 0, #008C45 10px,
        #F4EEDC 10px, #F4EEDC 20px,
        #CD212A 20px, #CD212A 30px,
        #F4EEDC 30px, #F4EEDC 40px
    );
    z-index: 2;
    pointer-events: none;
}

/* Decorative deckle-edge bottom border */
.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 8px;
    background: linear-gradient(180deg, rgba(74,46,31,0.18), transparent);
    z-index: 1;
    pointer-events: none;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    width: 100%;
    max-width: 1560px;
    padding-left: 3.5rem;   /* clear the tricolor stripe */
    padding-right: 1rem;
    position: relative;
    z-index: 3;
}

/* Brand: mark + text lockup */
.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
    text-decoration: none;
}
.brand-mark-img {
    height: 66px;
    width: auto;
    display: block;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.brand:hover .brand-mark-img { transform: scale(1.04); }

.brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-lockup .name {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    text-transform: uppercase;
    line-height: 1;
}
.brand-lockup .sub {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--burgundy);
    margin-top: 2px;
    letter-spacing: 0.02em;
}

/* Nav (centered, pushed by margin auto) */
.site-header .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.site-header .nav > a:not(.btn-nav) {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    position: relative;
    padding: 0.4rem 0;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.site-header .nav > a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.site-header .nav > a:not(.btn-nav):hover::after,
.site-header .nav > a.active::after { transform: scaleX(1); }
.site-header .nav > a.active { color: var(--burgundy); }

/* Phone button */
.site-header .btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--burgundy);
    color: var(--cream);
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(138,43,31,0.3);
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}
.site-header .btn-nav::after { display: none; }
.site-header .btn-nav:hover { background: var(--terracotta); color: var(--cream); transform: translateY(-1px); }
.site-header .btn-nav svg { width: 16px; height: 16px; }

/* Village sketch + script on the far right */
.header-village {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    margin-left: 1rem;
}
.header-village img {
    height: 88px;
    width: auto;
    opacity: 0.9;
}
.header-village .script {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--burgundy);
    line-height: 1.05;
    text-align: center;
    transform: rotate(-4deg);
}

/* Hide the old brand-logo rule usage */
.brand-logo { display: none; }

/* Tricolor bar under header no longer needed with diagonal — keep subtle */
body > .tricolor { display: none; }

/* Responsive header */
@media (max-width: 1560px) {
    .header-village img { height: 78px; }
    .header-village .script { font-size: 1.15rem; }
    .site-header .nav { gap: 1.4rem; }
}
@media (max-width: 1400px) {
    .header-village { display: none; }
    .site-header .nav { gap: 1.7rem; }
}
@media (max-width: 1150px) {
    .brand-lockup .name { font-size: 1.5rem; }
    .brand-lockup .sub { font-size: 1rem; }
    .brand-mark-img { height: 56px; }
    .site-header .nav { gap: 1.2rem; }
    .site-header .nav > a:not(.btn-nav) { font-size: 0.94rem; }
}
@media (max-width: 900px) {
    :root { --header-h: 84px; }
    .site-header .wrap { padding-left: 3rem; }
    .site-header::before { width: 34px; }
    .brand-mark-img { height: 48px; }
    .brand-lockup .name { font-size: 1.35rem; }
    .brand-lockup .sub { font-size: 0.92rem; }
    /* Nav becomes the mobile dropdown */
    .site-header .nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.5rem 2rem;
        transform: translateY(-130%);
        transition: transform 0.35s ease;
        box-shadow: 0 12px 30px rgba(42,24,16,0.12);
        margin-left: 0;
    }
    .site-header .nav.open { transform: translateY(0); }
    .site-header .nav > a:not(.btn-nav) {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(138,43,31,0.1);
        font-size: 1.1rem;
    }
    .site-header .nav > a:not(.btn-nav)::after { display: none; }
    .site-header .btn-nav { margin-top: 1rem; justify-content: center; }
}
@media (max-width: 560px) {
    :root { --header-h: 76px; }
    .brand-lockup .name { font-size: 1.15rem; }
    .brand-lockup .sub { font-size: 0.82rem; }
    .brand-mark-img { height: 42px; }
    .site-header .wrap { padding-left: 2.6rem; gap: 0.6rem; }
    .site-header::before { width: 26px; }
}

/* Adjust hero-v2 top since tricolor bar removed */
.hero-v2 { border-top: none; }
