/* ============================================================
   ROCCE BIANCHE 2 — Stylesheet
   Palette: Oro · Rosso · Bianco
   ============================================================ */

:root {
    --gold: #D4A24C;
    --gold-light: #E8C77E;
    --gold-dark: #B8862D;
    --red: #7A1626;          /* burgundy del logo */
    --red-dark: #5A0F1A;
    --red-rgb: 122, 22, 38;  /* burgundy in formato RGB per rgba() */
    --white: #FFFEF7;
    --cream: #FAF3E3;
    --dark: #1A0F0A;
    --text: #2B1810;
    --text-light: #6B5B4E;
    --shadow: rgba(26, 15, 10, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================ HERO ============================ */
.hero {
    background: var(--red);
    color: var(--white);
    padding: 24px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(212, 162, 76, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 162, 76, 0.1) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent 0,
        transparent 40px,
        rgba(212, 162, 76, 0.03) 40px,
        rgba(212, 162, 76, 0.03) 80px
    );
    pointer-events: none;
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gold-dark);
}

.hero-content {
    padding: 20px 32px 0;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(80px, 16vw, 240px);
    line-height: 0.88;
    letter-spacing: -2px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.hero-year {
    color: var(--gold);
}

.hero-subtitle {
    position: absolute;
    right: 40px;
    bottom: 200px;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    z-index: 3;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 580px;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image .placeholder-text {
    display: none;
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-size: 14px;
    padding: 20px;
}

.hero-image.placeholder .placeholder-text {
    display: block;
}

/* ============================ CHI SIAMO ============================ */
.chi-siamo {
    background: var(--cream);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    top: 80px;
    right: -20px;
    font-family: 'Anton', sans-serif;
    font-size: 220px;
    color: rgba(212, 162, 76, 0.12);
    line-height: 1;
    letter-spacing: -4px;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--dark);
}

.section-title.big {
    font-size: clamp(48px, 7vw, 104px);
}

.accent {
    color: var(--red);
}

.chi-siamo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.chi-siamo-left .section-title {
    margin-bottom: 48px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-title .icon {
    color: var(--red);
    font-size: 18px;
    line-height: 1;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 30px;
}

.value-card {
    background: var(--red);
    border-radius: 20px;
    padding: 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(var(--red-rgb), 0.25);
    background-image:
        radial-gradient(circle at 80% 20%, rgba(212, 162, 76, 0.3) 0%, transparent 50%);
}

.value-card-header h3 {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 24px;
}

.value-card-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 70%;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.25);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-row .value {
    color: var(--gold-light);
    font-size: 14px;
}

.card-line {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 50%;
    height: 60px;
}

.chi-siamo-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================ MENU / SPECIALITÀ ============================ */
.menu {
    background: var(--cream);
    padding: 40px 0 100px;
}

.specialties-wrapper {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 16px;
}

/* ----- Dark card with wavy pattern ----- */
.specialties-block {
    background: #1F1304;
    border-radius: 28px;
    padding: 60px 60px 70px;
    color: var(--white);
    position: relative;
    min-height: 540px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'><g fill='none' stroke='%23000' stroke-width='10' opacity='0.55'><path d='M0 60 Q 150 10 300 60 T 600 60'/><path d='M0 120 Q 150 70 300 120 T 600 120'/><path d='M0 180 Q 150 130 300 180 T 600 180'/><path d='M0 240 Q 150 190 300 240 T 600 240'/><path d='M0 300 Q 150 250 300 300 T 600 300'/><path d='M0 360 Q 150 310 300 360 T 600 360'/><path d='M0 420 Q 150 370 300 420 T 600 420'/></g></svg>");
    background-size: 800px auto;
    background-position: center;
}

.specialties-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
}

.accent-gold {
    color: var(--gold);
}

.specialties-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,254,247,0.85);
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
}

.specialties-desc strong {
    color: var(--gold);
    font-weight: 600;
}

/* ----- Two stacked cards ----- */
.specialties-cards {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    height: 280px;
    align-self: end;
}

.card-white,
.card-yellow {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    padding: 22px 28px 30px;
    font-family: 'Anton', sans-serif;
    color: var(--dark);
}

.card-white {
    width: 230px;
    height: 270px;
    background: #F7F2E5;
    left: 0;
    top: -10px;
    transform: rotate(-6deg);
    z-index: 2;
}

.card-yellow {
    width: 240px;
    height: 180px;
    background: #F4D24A;
    left: 170px;
    top: 90px;
    transform: rotate(4deg);
    z-index: 1;
}

.receipt-top {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    padding-top: 4px;
}

.receipt-top .dash {
    width: 2px;
    height: 10px;
    background: var(--dark);
}

.receipt-marks {
    position: absolute;
    top: 16px;
    right: 24px;
    display: flex;
    gap: 4px;
}

.receipt-marks span {
    width: 4px;
    height: 22px;
    background: var(--red);
}

.card-strip {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    padding: 4px 0;
}

.card-strip span {
    flex: 1;
    height: 4px;
    background: var(--dark);
    border-radius: 2px;
}

.card-strip span:nth-child(2),
.card-strip span:nth-child(5),
.card-strip span:nth-child(8) {
    flex: 0.5;
}

.big-stat {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: end;
    gap: 4px 8px;
    line-height: 1;
}

.big-stat .num {
    font-size: 72px;
    line-height: 0.85;
    color: var(--dark);
}

.big-stat .sym,
.big-stat .pre {
    font-size: 28px;
    color: var(--dark);
    align-self: start;
    padding-top: 14px;
}

.big-stat .lbl {
    font-family: 'Caveat', cursive;
    font-size: 18px;
    line-height: 1.1;
    color: var(--dark);
    padding-bottom: 6px;
    grid-column: 3;
}

.big-stat.top {
    margin-bottom: 8px;
}

.big-stat.bottom .num {
    font-size: 60px;
}

.card-yellow .big-stat .num {
    font-size: 84px;
}

.card-yellow .big-stat .pre {
    font-size: 36px;
    padding-top: 10px;
    color: var(--dark);
}

/* ----- Burgundy decorative side panel ----- */
.specialties-decor {
    background: var(--red);
    border-radius: 28px;
    min-height: 540px;
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='400' viewBox='0 0 200 400'><g fill='none' stroke='%23000' stroke-width='8' opacity='0.18'><path d='M0 40 Q 50 10 100 40 T 200 40'/><path d='M0 90 Q 50 60 100 90 T 200 90'/><path d='M0 140 Q 50 110 100 140 T 200 140'/><path d='M0 190 Q 50 160 100 190 T 200 190'/><path d='M0 240 Q 50 210 100 240 T 200 240'/><path d='M0 290 Q 50 260 100 290 T 200 290'/><path d='M0 340 Q 50 310 100 340 T 200 340'/></g></svg>");
    background-size: 300px auto;
}

/* ============================ TIPI DI CUCINA ============================ */
.cucina {
    background: var(--cream);
    padding: 80px 0 100px;
}

.cucina-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.cucina-intro {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    padding-bottom: 16px;
}

.cucina-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cucina-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(212, 162, 76, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.cucina-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(var(--red-rgb), 0.12);
}

.cucina-card.highlight {
    background: var(--dark);
    color: var(--white);
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cucina-card.highlight::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(212, 162, 76, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cucina-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(var(--red-rgb), 0.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cucina-card.highlight .cucina-icon {
    background: rgba(212, 162, 76, 0.18);
    color: var(--gold);
}

.cucina-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cucina-card.highlight .cucina-title {
    color: var(--white);
}

.cucina-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.cucina-card.highlight p {
    color: rgba(255,254,247,0.78);
}

.cucina-card.highlight p strong {
    color: var(--gold-light);
}

.cucina-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin-top: auto;
}

.cucina-list li {
    background: var(--cream);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(212, 162, 76, 0.3);
}

.cucina-card.highlight .cucina-list li {
    background: rgba(212, 162, 76, 0.15);
    color: var(--gold-light);
    border-color: rgba(212, 162, 76, 0.4);
}

/* ============================ CONTATTI ============================ */
.contatti {
    background: var(--cream);
    padding: 40px 0 80px;
}

.contact-row {
    display: grid;
    grid-template-columns: 220px 1fr 60px;
    gap: 40px;
    align-items: center;
    padding: 28px 32px;
    border-top: 1px solid rgba(0,0,0,0.1);
    transition: background 0.2s;
}

.contact-row:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-row.dark {
    background: var(--dark);
    color: var(--white);
    border-radius: 16px;
    border: none;
    grid-template-columns: 220px 1fr 280px;
    margin: 8px 0;
}

.contact-label h3 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.05;
}

.contact-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-row.dark .contact-text p {
    color: rgba(255,254,247,0.75);
}

.contact-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s;
    justify-self: end;
}

.contact-arrow:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    color: var(--dark);
}

.contact-card h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-card a {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--dark);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.contact-card .sub {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================ FOOTER ============================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 32px;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(212, 162, 76, 0.1) 0%, transparent 40%);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 40px;
}

.footer-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
}

.footer-star {
    font-size: 64px;
    color: var(--red);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,254,247,0.1);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,254,247,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

.footer-coords {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.footer-coords div {
    text-align: center;
}

.footer-coords span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.footer-coords strong {
    color: var(--gold);
    font-size: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.footer-links a {
    color: rgba(255,254,247,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* -------- Tablet (≤ 960px) -------- */
@media (max-width: 960px) {
    .container { padding: 0 24px; }

    /* Navbar */
    .nav-links { display: none; }
    .navbar { padding: 16px 24px; }
    .logo { font-size: 24px; }
    .btn-primary { padding: 10px 22px; font-size: 13px; }

    /* Hero */
    .hero { min-height: auto; padding-bottom: 40px; }
    .hero-content { padding: 16px 24px 0; }
    .hero-title { font-size: clamp(64px, 13vw, 140px); }
    .hero-subtitle {
        position: static;
        margin-top: 16px;
        font-size: 12px;
        letter-spacing: 2px;
    }
    .hero-image {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 420px;
        height: 380px;
        margin: 32px auto 0;
    }

    /* Chi siamo */
    .chi-siamo { padding: 80px 0 60px; }
    .chi-siamo-grid { grid-template-columns: 1fr; gap: 48px; }
    .section-bg-text { font-size: 120px; top: 40px; }
    .section-title { font-size: clamp(40px, 7vw, 72px); }

    /* Specialties */
    .specialties-wrapper { grid-template-columns: 1fr; }
    .specialties-decor {
        min-height: 80px;
        border-radius: 20px;
    }
    .specialties-block {
        grid-template-columns: 1fr;
        padding: 40px 32px 50px;
        min-height: auto;
        gap: 24px;
    }
    .specialties-title,
    .specialties-desc,
    .specialties-cards {
        grid-column: 1;
        grid-row: auto;
    }
    .specialties-title { font-size: clamp(44px, 8vw, 64px); }
    .specialties-cards {
        height: 260px;
        margin-top: 8px;
    }

    /* Cucina */
    .cucina { padding: 60px 0 80px; }
    .cucina-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .cucina-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Contatti */
    .contact-row,
    .contact-row.dark {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 20px;
    }
    .contact-arrow { justify-self: start; }

    /* Footer */
    .footer { padding: 70px 0 28px; }
    .footer-main { flex-direction: column; gap: 24px; margin-bottom: 48px; padding-bottom: 24px; }
    .footer-title { font-size: clamp(36px, 7vw, 56px); }
    .footer-bottom { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-coords { justify-content: center; }
    .footer-links { align-items: center; }
    .footer-social { justify-content: center; }
}

/* -------- Mobile (≤ 600px) -------- */
@media (max-width: 600px) {
    .container { padding: 0 18px; }

    /* Navbar — più compatta */
    .navbar { padding: 14px 18px; }
    .logo { font-size: 20px; }
    .btn-primary { padding: 9px 18px; font-size: 12px; }

    /* Hero */
    .hero-content { padding: 12px 18px 0; }
    .hero-title {
        font-size: clamp(48px, 14vw, 88px);
        letter-spacing: -1px;
        line-height: 0.9;
    }
    .hero-image { height: 280px; margin-top: 24px; }
    .hero-subtitle { font-size: 11px; letter-spacing: 1.5px; }

    /* Chi siamo */
    .chi-siamo { padding: 60px 0 50px; }
    .section-bg-text { font-size: 80px; right: -10px; top: 30px; }
    .section-title { font-size: clamp(36px, 9vw, 56px); }
    .feature-title { font-size: 16px; }
    .feature-item p { padding-left: 26px; font-size: 13px; }
    .value-card { padding: 24px; }
    .value-card-header h3 { font-size: 26px; }
    .value-card-stats { max-width: 100%; }

    /* Specialties */
    .specialties-block {
        padding: 32px 22px 40px;
        gap: 20px;
    }
    .specialties-title { font-size: clamp(40px, 11vw, 56px); }
    .specialties-desc { font-size: 13px; }
    .specialties-cards { height: auto; display: flex; flex-direction: column; gap: 16px; }
    .card-white,
    .card-yellow {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 200px;
        transform: none;
        left: auto;
        top: auto;
        padding: 22px 24px 26px;
    }
    .big-stat .num { font-size: 60px; }
    .big-stat.bottom .num { font-size: 52px; }
    .card-yellow .big-stat .num { font-size: 72px; }

    /* Cucina */
    .cucina { padding: 50px 0 60px; }
    .cucina-header { margin-bottom: 36px; gap: 24px; }
    .cucina-card { padding: 28px 24px; }
    .cucina-title { font-size: 26px; }
    .cucina-card p { font-size: 13px; }

    /* Contatti */
    .contatti { padding: 30px 0 60px; }
    .contact-label h3 { font-size: 18px; }
    .contact-text p { font-size: 13px; }
    .contact-card { padding: 16px; }
    .contact-card a { font-size: 20px; }

    /* Footer */
    .footer { padding: 60px 0 24px; }
    .footer-star { font-size: 48px; }
    .footer-coords { flex-direction: row; gap: 24px; }
    .copyright { margin-top: 32px; font-size: 11px; }
}

/* -------- Small phones (≤ 400px) -------- */
@media (max-width: 400px) {
    .navbar { padding: 12px 14px; gap: 12px; }
    .logo { font-size: 18px; }
    .btn-primary { padding: 8px 14px; font-size: 11px; }
    .hero-title { font-size: clamp(40px, 13vw, 64px); }
    .hero-image { height: 240px; }
    .specialties-title { font-size: 40px; }
    .footer-title { font-size: 30px; }
}
