/*
Theme Name:  Da Antonello
Theme URI:   https://da-antonello.it
Author:      Socialee
Author URI:  https://socialee.it
Description: Tema cinematografico dark per Pizzeria Da Antonello — pizza alla pala e braceria a Foggia. Design editoriale ispirato a Masanielli.
Version:     1.0.0
License:     Proprietary
License URI: https://socialee.it
Text Domain: da-antonello
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Tags: dark, restaurant, pizzeria, one-page, full-width
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════ */
:root {
    --bg:         #000;
    --bg2:        #050505;
    --bg3:        #0a0a0a;
    --text:       #fff;
    --text-muted: rgba(255,255,255,.74);
    --text-dim:   rgba(255,255,255,.5);
    --border:     rgba(255,255,255,.04);

    --font-heading: 'Oswald', sans-serif;
    --font-accent:  'Playfair Display', serif;
    --font-body:    'Inter', sans-serif;

    --nav-h:      72px;
    --section-py:  clamp(80px, 10vw, 140px);
    --section-px:  clamp(20px, 5vw, 80px);
    --max-w:       1400px;
    --gap:         clamp(16px, 2vw, 32px);
    --transition:  .35s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

::selection { background: rgba(255,255,255,.15); color: #fff; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.1;
}

.accent-font {
    font-family: var(--font-accent);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.section-label {
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: 24px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
}

/* ═══════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--section-px);
}

.section {
    padding: var(--section-py) 0;
}

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

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    padding: 0 var(--section-px);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.8) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity var(--transition);
}

.site-nav.scrolled::before { opacity: 0; }
.site-nav.scrolled { background: rgba(0,0,0,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.nav-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    font-family: var(--font-heading) !important;
    font-size: .8rem !important;
    font-weight: 500 !important;
    letter-spacing: .15em !important;
    color: var(--text) !important;
    padding: 10px 28px;
    border: 1px solid rgba(255,255,255,.2);
    transition: background var(--transition), border-color var(--transition);
}

.nav-cta:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-menu.active { display: flex; opacity: 1; }

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.2) 70%, rgba(0,0,0,.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--section-px);
}

.hero-logo {
    width: clamp(100px, 18vw, 220px);
    height: auto;
    margin: 0 auto 32px;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 7rem);
    letter-spacing: .12em;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-family: var(--font-body);
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-dim), transparent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════
   FOUR COLUMNS (Masanielli-style)
   ═══════════════════════════════════════════════ */
.four-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 75vh;
}

.four-col {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    cursor: pointer;
}

.four-col-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}

.four-col:hover .four-col-bg { transform: scale(1.05); }

.four-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 50%, rgba(0,0,0,.2) 100%);
    transition: background var(--transition);
}

.four-col:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.3) 100%);
}

.four-col-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 40px 28px;
}

.four-col-title {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    letter-spacing: .12em;
    margin-bottom: 8px;
    font-weight: 400;
}

.four-col-sub {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: .9rem;
    color: var(--text-muted);
    font-weight: 400;
    transform: translateY(10px);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
}

.four-col:hover .four-col-sub {
    transform: translateY(0);
    opacity: 1;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-image:hover img { transform: scale(1.03); }

.about-text { max-width: 520px; }

.about-text p {
    font-size: clamp(.9rem, 1.1vw, 1.05rem);
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-text p:first-of-type {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: var(--text);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PHOTO BREAK
   ═══════════════════════════════════════════════ */
.photo-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-break-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.photo-break-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.photo-break-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--section-px);
}

.photo-break h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: .1em;
}

.photo-break .accent-font {
    display: block;
    margin-top: 12px;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════════ */
.menu-section { background: var(--bg2); }

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    justify-content: center;
}

.menu-tab {
    font-family: var(--font-heading);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 10px 24px;
    color: var(--text-dim);
    transition: color var(--transition), background var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.menu-tab:hover { color: var(--text-muted); }

.menu-tab.active {
    color: var(--text);
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info { flex: 1; min-width: 0; }

.menu-item-name {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: .8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .05em;
    white-space: nowrap;
    color: var(--text-muted);
}

.menu-item-badge-delivery {
    display: inline-block;
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-left: 8px;
    font-family: var(--font-body);
}

.menu-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-dim);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════
   DELIVERY SECTION
   ═══════════════════════════════════════════════ */
.delivery-section { background: var(--bg3); }

.delivery-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 48px;
    margin-bottom: 48px;
}

.delivery-step { text-align: center; padding: 40px 24px; }

.delivery-step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1;
    margin-bottom: 20px;
}

.delivery-step-title {
    font-family: var(--font-heading);
    font-size: .9rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.delivery-step-desc {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   BOOKING / PRENOTA SECTION
   ═══════════════════════════════════════════════ */
.booking-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.booking-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.booking-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--section-py) var(--section-px);
    max-width: 700px;
}

.booking-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════ */
.contact-section { background: var(--bg2); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 48px;
}

.contact-item { text-align: center; padding: 40px 20px; }

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dim);
}

.contact-item-title {
    font-family: var(--font-heading);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-item-value {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-item-value a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.map-embed {
    width: 100%;
    aspect-ratio: 21/9;
    margin-top: 48px;
    filter: grayscale(1) brightness(.5);
    transition: filter var(--transition);
    border: none;
}

.map-embed:hover { filter: grayscale(.5) brightness(.7); }

/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band {
    background: var(--bg);
    padding: clamp(40px, 6vw, 80px) 0;
}

.cta-band-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,.2);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btn:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-primary:hover {
    background: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.9);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: .75rem;
    color: var(--text-dim);
    letter-spacing: .05em;
}

.footer-credit {
    font-size: .7rem;
    color: var(--text-dim);
    letter-spacing: .05em;
}

.footer-credit a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-credit a:hover { color: var(--text); }

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social a {
    color: var(--text-dim);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-family: var(--font-body);
    transition: color var(--transition);
}

.footer-social a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   PAGE TEMPLATE (menu, 404, generic)
   ═══════════════════════════════════════════════ */
.page-header {
    padding: calc(var(--nav-h) + 60px) 0 60px;
    text-align: center;
    background: var(--bg);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

.page-content {
    background: var(--bg2);
    padding: var(--section-py) 0;
}

.page-content .container {
    max-width: 800px;
}

.page-content p,
.page-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content h2,
.page-content h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

/* Full menu page */
.full-menu-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.full-menu-section:last-child { border-bottom: none; }

.full-menu-cat-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 32px;
    font-weight: 400;
}

/* 404 */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg);
}

.error-404-num {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 15rem);
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1;
    letter-spacing: .05em;
}

.error-404 p {
    color: var(--text-muted);
    margin: 24px 0 40px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .four-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .four-col { min-height: 400px; }

    .about-grid {
        gap: 40px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .delivery-steps {
        gap: 16px;
    }

    .delivery-step { padding: 32px 16px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL TABLET / LANDSCAPE (768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero h1 { letter-spacing: .08em; }

    .four-cols {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .four-col { min-height: 300px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image { aspect-ratio: 4/3; }
    .about-text { max-width: 100%; }

    .photo-break { height: 45vh; min-height: 300px; }
    .photo-break-bg { background-attachment: scroll; }

    .delivery-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .map-embed { aspect-ratio: 16/9; }

    .cta-band-inner {
        flex-direction: column;
        gap: 12px;
    }

    .cta-band-inner .btn { width: 100%; max-width: 320px; justify-content: center; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
    :root {
        --nav-h: 60px;
    }

    .hero { min-height: 500px; }

    .four-cols {
        grid-template-columns: 1fr;
    }

    .four-col { min-height: 250px; }

    .four-col-content { padding: 24px 20px; }

    .four-col-sub { opacity: 1; transform: translateY(0); }

    .menu-tabs { gap: 4px; }
    .menu-tab { padding: 8px 16px; font-size: .7rem; }

    .menu-item { padding: 16px 0; flex-wrap: wrap; }
    .menu-item-name { font-size: .85rem; }

    .booking-content { padding: var(--section-py) 16px; }

    .btn { padding: 12px 24px; font-size: .75rem; }

    .mobile-menu a { font-size: 1.5rem; }

    .delivery-step { padding: 24px 16px; }
    .delivery-step-num { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (320px)
   ═══════════════════════════════════════════════ */
@media (max-width: 360px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .menu-tab { padding: 6px 12px; font-size: .65rem; }
}

/* ═══════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════ */
@media print {
    *,*::before,*::after { background: #fff !important; color: #000 !important; box-shadow: none !important; }
    body { font-size: 12pt; }
    .site-nav, .hero-scroll, .mobile-menu, .nav-hamburger, .cta-band, .map-embed,
    .booking-section, .photo-break, .four-cols { display: none !important; }
    .hero { height: auto; min-height: auto; padding: 40px 0; }
    .hero-bg { display: none; }
    .hero h1 { font-size: 24pt; }
    .section { padding: 20px 0; }
    .menu-item { break-inside: avoid; }
    .menu-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; }
    .site-footer { border-top: 1px solid #ccc; }
}

/* ═══ Home teaser rows (Chi Siamo / Delivery) ═══ */
.home-teaser { display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap; padding:40px clamp(24px,4vw,56px); border:1px solid rgba(255,255,255,.10); border-radius:18px; background:var(--bg3); text-decoration:none; color:var(--text); transition:var(--transition); }
.home-teaser:hover { border-color:rgba(255,255,255,.28); transform:translateY(-3px); }
.home-teaser-text { flex:1 1 280px; min-width:0; }
.home-teaser-text .section-title { margin:8px 0 10px; }
.home-teaser-text p { margin:0; color:var(--text-muted); font-size:clamp(1rem,1.6vw,1.3rem); line-height:1.5; }
.home-teaser .btn { flex-shrink:0; }
@media (max-width:640px) { .home-teaser { padding:28px 22px; } }

/* Chi Siamo: blocco immagine/testo alternato */
.about-grid.reverse .about-image { order: 2; }
.about-grid.reverse .about-text { margin-left: auto; }

/* Logo (file nero su bianco): niente filtro white-out; badge arrotondato */
.hero-logo { filter: none; width: clamp(110px, 15vw, 168px); border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.45); margin: 0 auto 26px; }
.nav-logo img { border-radius: 8px; }

/* Header: testo #DAANTONELLO accanto al logo */
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo-text { font-family: var(--font-heading); letter-spacing: .12em; line-height: 1; }
@media (max-width: 520px) { .nav-logo-text { font-size: .95rem; } }

/* Leggibilita testi */
.hero-content, .photo-break-content, .booking-content, .page-header {
    text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.four-col-content {
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.5) 55%, transparent 100%);
    text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.section-subtitle, .hero-tagline { color: rgba(255,255,255,.82); }
.four-col-sub, .photo-break .accent-font, .booking-content p { color: rgba(255,255,255,.88); }

/* Sottotitoli no corsivo */
.section-subtitle, .hero-tagline {
    font-style: normal;
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255,255,255,.93);
    letter-spacing: .01em;
}
.four-col-sub, .photo-break .accent-font, .booking-content p {
    font-style: normal;
    color: rgba(255,255,255,.92);
}

/* Chi Siamo: sezione manifesto */
.manifesto-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.manifesto-inner .section-label { display: block; margin-bottom: 22px; }
.manifesto-inner p { font-family: var(--font-accent); font-style: normal; color: rgba(255,255,255,.92); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.85; margin: 0 auto 22px; }
.manifesto-signature { margin-top: 6px; }
.manifesto-signature strong { color: #fff; letter-spacing: .03em; }

/* Galleria locale */
.da-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.da-gallery-item { display: block; overflow: hidden; border-radius: 12px; aspect-ratio: 3/4; }
.da-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.da-gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 640px) { .da-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* Galleria home: riga unica senza andare a capo */
.da-gallery--row { display: flex; flex-wrap: nowrap; gap: 12px; }
.da-gallery--row .da-gallery-item { flex: 1 1 0; min-width: 0; }
@media (max-width: 640px) { .da-gallery--row { overflow-x: auto; -webkit-overflow-scrolling: touch; } .da-gallery--row .da-gallery-item { flex: 0 0 62%; } }