/* ============ BESSO THEME — MAIN CSS ============ */

/* ============ VARIABLES ============ */
:root {
    --bg: #050505;
    --red: #e30613;
    --red-dark: #8b0000;
    --red-glow: rgba(227,6,19,0.35);
    --white: #f5f0e8;
    --yellow: #f5c700;
    --font-display: 'Oswald', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 2px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

@media (max-width: 768px) {
    * { text-align: center !important; }
    .split-tag::before { display: none; }
    .split p { max-width: 100% !important; }
    .location-badge { justify-content: center; }
    .footer-bottom { justify-content: center; }
    .orari-strip { gap: 30px; }
}

img { display: -webkit-inline-box; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============ CUSTOM CURSOR ============ */
#cursor {
    position: fixed;
    width: 14px; height: 14px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}
#cursor.big { width: 50px; height: 50px; }
@media (hover: none) { #cursor { display: none; } }

/* ============ NAV ============ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
nav.scrolled {
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(10px);
    padding: 12px 5%;
    border-bottom: 1px solid rgba(227,6,19,0.2);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
}
.nav-logo span { color: var(--red); }

.nav-links {
    display: flex;
    gap: clamp(20px, 4vw, 50px);
    list-style: none;
}
.nav-links a {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}
.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1005;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 12vw, 5rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('<?php echo get_template_directory_uri(); ?>/assets/images/bg.webp') center/cover no-repeat;
    transform: scale(1.08);
    filter: brightness(0.35) saturate(1.2);
    z-index: 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    z-index: 5;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-tag {
    font-family: var(--font-condensed);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-h1 {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
    font-size: clamp(5rem, 18vw, 20rem);
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero-h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}
.hero-h1 .solid {
    color: var(--red);
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}
.hero-h1 .solid::after {
    content: attr(data-hover);
    position: absolute;
    left: 0; right: 0;
    color: var(--red);
    -webkit-text-stroke: 0px;
    opacity: 0;
    transition: opacity 0.3s;
}
.hero-h1:hover .solid { color: transparent; -webkit-text-stroke: 0px; }
.hero-h1:hover .solid::after { opacity: 1; }
.hero-sub {
    font-family: var(--font-condensed);
    font-size: clamp(1rem, 3vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}
.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    background: transparent;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--red);
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--red-glow);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid rgba(245,240,232,0.3);
    transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--white); }

/* stickers */
.stickers { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.sticker {
    position: absolute;
    font-family: var(--font-condensed);
    font-weight: 900;
    text-transform: uppercase;
    pointer-events: all;
    padding: 8px 18px;
    font-size: clamp(0.7rem, 1.5vw, 0.95rem);
    letter-spacing: 1px;
    cursor: grab;
    user-select: none;
}
.s1 { top: 20%; left: 3%; background: var(--red); color: var(--white); transform: rotate(-6deg); }
.s2 { top: 18%; right: 3%; background: var(--white); color: #111; transform: rotate(5deg); }
.s3 { bottom: 28%; left: 3%; border: 2px solid var(--red); color: var(--red); transform: rotate(12deg); }
.s4 { bottom: 22%; right: 3%; background: var(--yellow); color: #111; transform: rotate(-5deg); }
@media (max-width: 768px) { .sticker { display: block; } }
img.sticker {
    width: clamp(70px, 15vw, 220px);
    height: auto;
    background: none;
    padding: 0;
    border: none;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee-strip {
    background: var(--bg);
    overflow: hidden;
    padding: 20px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(245,240,232,0.06);
    border-bottom: 1px solid rgba(245,240,232,0.06);
}
.marquee-inner {
    display: flex;
    width: max-content;
    animation: marqueeScroll 72s linear infinite;
}
.marquee-inner span {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(5rem, 14vw, 11rem);
    letter-spacing: -2px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #e30613;
    white-space: nowrap;
    padding: 0 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}
.marquee-inner span::before { display: none; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============ SECTION TITLE ============ */
.section-label {
    font-family: var(--font-condensed);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
}
.section-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--red);
}
.section-title .solid { color: var(--red); }

/* ============ MENU SECTION ============ */
.menu-section { background: var(--bg); }
.menu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 5% 24px;
}
.menu-title { font-size: clamp(3rem, 10vw, 8rem); }
.horizontal-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
    padding-left: 5vw;
    gap: 0;
}
.product-panel {
    flex-shrink: 0;
    width: clamp(260px, 32vw, 420px);
    padding: 0 clamp(8px, 1.5vw, 20px);
    text-align: center;
}
.menu-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #0e0e0e;
    cursor: pointer;
    width: 100%;
    border: 2px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.menu-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
    filter: grayscale(0.45) brightness(0.75);
}
.menu-card:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px var(--red-glow), inset 0 0 0 2px var(--red);
    transform: translateY(-4px);
}
.menu-card:hover .menu-card-img {
    transform: scale(1.06);
    filter: grayscale(0) brightness(0.95);
}
.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 60%);
}
.menu-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
}
.menu-card-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}
.menu-card-name.outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--white);
}
.menu-card-desc {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.5);
    margin-top: 8px;
    font-style: italic;
    letter-spacing: 0.5px;
}
.menu-card-price {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 14px;
    letter-spacing: 1px;
}
.menu-card-number {
    position: absolute;
    top: 16px; left: 16px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(245,240,232,0.25);
}
.drag-hint {
    flex-shrink: 0;
    padding: 0 40px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.35;
}
.drag-hint span {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    color: var(--white);
}
.drag-hint i { font-size: 1.2rem; color: var(--red); }
@media (max-width: 768px) {
    .horizontal-section {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 30px 5vw 40px;
    }
    .horizontal-section::-webkit-scrollbar { display: none; }
    .product-panel {
        scroll-snap-align: start;
        width: 75vw;
        padding: 0 10px;
    }
    .drag-hint { display: none; }
}

/* ============ NUMBERS ============ */
.numbers-section {
    background: #000;
    padding: 0px 5%;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
@media (max-width: 768px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.number-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.number-item:last-child { border-right: none; }
@media (max-width: 768px) {
    .number-item:nth-child(2) { border-right: none; }
    .number-item:nth-child(1),
    .number-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
}
.number-val {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.number-label {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
}

/* ============ SPLIT SECTIONS ============ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}
@media (max-width: 768px) {
    .split { grid-template-columns: 1fr; min-height: auto; }
    .split .img-side { aspect-ratio: 4/3; order: -1; }
}
.split .text-side {
    padding: clamp(40px, 8%, 10%) clamp(30px, 6%, 8%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #050505;
}
.split.reverse .text-side { background: #080808; }
.split .img-side {
    position: relative;
    overflow: hidden;
}
.split .img-side img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) brightness(0.8);
    transition: filter 0.8s, transform 0.8s;
}
.split:hover .img-side img {
    filter: grayscale(0) brightness(0.95);
    transform: scale(1.03);
}
.split-big-title { font-size: clamp(3.5rem, 8vw, 9rem); margin-bottom: 28px; }
.split p {
    font-size: clamp(0.95rem, 2vw, 1.20rem);
    line-height: 1.8;
    color: darkgrey;
    max-width: 480px;
}
.split-tag {
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.split-tag::before { content: ''; width: 30px; height: 1px; background: var(--red); }
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 12px 24px;
    border: 1px solid rgba(245,240,232,0.15);
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.7);
    transition: border-color 0.2s, color 0.2s;
}
.location-badge:hover { border-color: var(--red); color: var(--white); }
.location-badge i { color: var(--red); }

/* ============ COLLAB MARQUEE ============ */
.collab-section {
    background: var(--bg);
    border-top: 1px solid rgba(245,240,232,0.06);
    border-bottom: 1px solid rgba(245,240,232,0.06);
    padding: 30px 0;
    overflow: hidden;
}
.collab-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}
.collab-track span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(245,240,232,0.12);
    white-space: nowrap;
    transition: -webkit-text-stroke-color 0.3s;
}
.collab-track span:hover { -webkit-text-stroke-color: var(--red); }

/* ============ SOCIAL / FOLLOW ============ */
.follow-section {
    background: #000;
    padding: 100px 5%;
    text-align: center;
}
.follow-title { font-size: clamp(3rem, 10vw, 8rem); margin-bottom: 16px; }
.follow-sub {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(245,240,232,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-condensed);
    margin-bottom: 40px;
}
.social-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(245,240,232,0.15);
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.7);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-btn:hover { border-color: var(--red); color: var(--white); background: rgba(227,6,19,0.08); }
.social-btn i { font-size: 1.1rem; color: var(--red); }

/* ============ FOOTER ============ */
footer {
    background: #000;
    border-top: 1px solid rgba(245,240,232,0.06);
    padding: 60px 5% 40px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
@media (max-width: 900px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer-top { grid-template-columns: 1fr; } }
.footer-brand-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--red);
    line-height: 0.9;
    margin-bottom: 16px;
}
.footer-brand-sub {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    margin-bottom: 24px;
}
.footer-col h5 {
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}
.footer-col p, .footer-col a {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.2);
    line-height: 2;
    display: block;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(245,240,232,0.06);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.2);
    letter-spacing: 2px;
    font-family: var(--font-condensed);
    text-transform: uppercase;
}

/* ============ MOBILE NAV CTA ============ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg);
    border-top: 1px solid rgba(245,240,232,0.08);
    z-index: 900;
    padding: 12px 5%;
    gap: 10px;
}
.mobile-cta-bar .btn-primary, .mobile-cta-bar .btn-ghost {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 12px 16px;
}
@media (max-width: 768px) { .mobile-cta-bar { display: flex; } }

/* ============ ORARI STRIP ============ */
.orari-strip {
    background: #0a0a0a;
    padding: 28px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(245,240,232,0.05);
}
.orari-item { text-align: center; }
.orari-days {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    margin-bottom: 4px;
}
.orari-time {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.orari-dot {
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.orari-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
}

/* ============ SCROLL TO TOP ============ */
#scrollTop {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 44px; height: 44px;
    background: var(--red);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--red-dark); }
@media (max-width: 768px) { #scrollTop { bottom: 80px; } }

/* ============ INNER PAGE HERO (per pagine secondarie) ============ */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 0 5% 60px;
    background: var(--bg);
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    filter: brightness(0.25) saturate(1.1);
    z-index: 0;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 8rem);
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--white);
}

/* ============ INNER PAGE CONTENT ============ */
.page-content {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}
.page-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--red);
    margin: 40px 0 16px;
}
.page-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(245,240,232,0.65);
    margin-bottom: 20px;
}
