:root {
    --bg: #FDFCFA;
    --bg-alt: #FFFFFF;
    --dark: #0A2006;
    --dark-medium: #122F0D;
    --green-med: #33522D;
    --muted: #6B7967;
    --light-green: #CFD8CD;
    --brown: #8B1818;
    --red-dark: #640000;
    --black: #000000;

    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
    --body: 'Nunito Sans', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    transition: background 0.3s;
}
.site-header.scrolled {
    background: rgba(10, 32, 6, 0.92);
    backdrop-filter: blur(8px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-link {
    display: inline-block;
    line-height: 0;
}
.logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}
.hamburger span {
    display: block;
    width: 32px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}
.hamburger.light span { background: #fff; }

/* LANGUAGE SWITCHER */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lang-switcher {
    display: flex;
    gap: 2px;
}
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}
.lang-btn:hover { border-color: #fff; }
.lang-btn.active {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}
@media (max-width: 500px) {
    .lang-btn { padding: 5px 7px; font-size: 11px; }
}

/* NAV OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}
.nav-overlay.open { pointer-events: auto; }
.nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-overlay.open .nav-backdrop { opacity: 1; }
.nav-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 85vw);
    background: var(--dark);
    padding: 80px 48px 48px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.7,0,.3,1);
    overflow-y: auto;
}
.nav-overlay.open .nav-panel { transform: translateX(0); }
.nav-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 8px 12px;
    transition: transform 0.2s;
}
.nav-close:hover { transform: rotate(90deg); }
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-list li { margin-bottom: 20px; }
.nav-list a {
    display: inline-block;
    color: #fff;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-list a:hover { color: var(--brown); }
.nav-list a.nav-sub {
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #ccc;
}
.nav-group { margin-bottom: 8px; }
.nav-group-label {
    display: block;
    color: #fff;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-left: 2px solid var(--brown);
    padding-left: 16px;
}
.nav-submenu li { margin-bottom: 8px; }
.nav-submenu a {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: none;
    color: #ddd;
}
.nav-submenu a:hover { color: var(--brown); }
.nav-separator {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 24px 0 24px;
    list-style: none;
}

.nav-social {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    transition: all 0.25s;
}
.nav-social a:hover {
    color: var(--dark);
    background: var(--brown);
    border-color: var(--brown);
}

body.nav-open { overflow: hidden; }

.legal-page { min-height: 70vh; padding: 140px 24px 80px; background: var(--bg); }
.legal-container { max-width: 760px; margin: 0 auto; }
.legal-container h1 { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: clamp(36px, 5vw, 56px); color: var(--dark); margin-bottom: 12px; }
.legal-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.legal-container p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.legal-container a { color: var(--brown); text-decoration: underline; }
.legal-back { display: inline-block; margin-top: 32px; }

/* EVENTI PAGE */
.page-hero {
    background: var(--dark);
    color: #fff;
    padding: 180px 24px 100px;
    text-align: center;
}
.page-title {
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(56px, 9vw, 110px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--brown);
}

.event-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
    min-height: 560px;
}
.event-hero-img { overflow: hidden; }
.event-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}
.event-kicker {
    display: inline-block;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--brown);
    margin-bottom: 20px;
}
.event-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    color: var(--dark);
    margin-bottom: 24px;
}
.event-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
    text-wrap: pretty;
}
.btn-outline-dark {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 34px;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    border: 1px solid var(--dark);
    background: transparent;
    transition: all 0.25s;
}
.btn-outline-dark:hover {
    background: var(--dark);
    color: #fff;
}

.events-grid-section {
    background: var(--bg);
    padding: 100px 24px;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.event-card {
    background: #fff;
    padding: 48px 36px;
    border: 1px solid rgba(10,32,6,0.1);
    transition: all 0.25s;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--dark);
}
.event-icon {
    font-size: 36px;
    margin-bottom: 20px;
}
.event-card h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
}
.event-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    text-wrap: pretty;
}
.event-card a {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    border-bottom: 1px solid var(--dark);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.event-card a:hover {
    color: var(--brown);
    border-color: var(--brown);
}

.events-cta {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 100px 24px;
}
.events-cta h2 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
}
.events-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .event-hero { grid-template-columns: 1fr; }
    .event-hero-img img { height: 360px; }
    .event-hero-content { padding: 60px 24px; }
    .events-grid { grid-template-columns: 1fr; gap: 24px; }
    .page-hero { padding: 140px 20px 70px; }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 24px;
    max-width: 1100px;
}
.hero-title {
    margin-bottom: 24px;
    line-height: 0;
}
.hero-logo {
    width: clamp(280px, 55vw, 760px);
    height: auto;
    filter: brightness(0) invert(1);
}
.hero-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 32px);
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    color: #f0f0f0;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid transparent;
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-ghost:hover {
    background: #fff;
    color: var(--dark);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
    padding: 16px 40px;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
}

/* MENU DROPDOWN */
.menu-dropdown {
    position: relative;
    display: inline-block;
}
.menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.25s;
}
.menu-trigger:hover {
    background: #fff;
    color: var(--dark);
}
.caret {
    font-size: 14px;
    transition: transform 0.25s;
}
.menu-dropdown.open .caret { transform: rotate(180deg); }

.menu-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    list-style: none;
    background: #fff;
    min-width: 240px;
    padding: 8px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 20;
}
.menu-dropdown.open .menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.menu-list li a {
    display: block;
    padding: 14px 24px;
    color: var(--dark);
    font-family: var(--body);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}
.menu-list li a:hover {
    background: var(--dark);
    color: #fff;
}

/* SECTIONS */
.chi-siamo {
    background: var(--bg);
    padding: 140px 0;
    text-align: center;
}
.star-icon {
    display: inline-block;
    width: 44px;
    height: 44px;
    margin-bottom: 32px;
}
.star-icon svg { width: 100%; height: 100%; }

.section-heading {
    font-family: var(--sans);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 90px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--dark);
    margin-bottom: 48px;
    text-transform: uppercase;
}
.section-heading.light { color: #fff; }

.chi-siamo-text {
    max-width: 720px;
    margin: 0 auto;
}
.chi-siamo-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark);
    text-wrap: pretty;
}
.chi-siamo-text p strong { font-weight: 700; }
.chi-siamo-claim {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px !important;
    line-height: 1.5 !important;
    margin-top: 40px !important;
    color: var(--dark);
}

/* SPLIT SECTIONS */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.split-left {
    overflow: hidden;
}
.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    text-align: center;
}
.split-inner { max-width: 500px; width: 100%; }
.menu-right { background: var(--red-dark); }
.testimonial-right { background: var(--black); }

/* MARQUEE */
.marquee {
    overflow: hidden;
    padding: 20px 0;
    background: var(--bg);
}
.marquee-dark .marquee-item,
.marquee-dark .marquee-sep { color: var(--dark); }
.marquee-pink { background: var(--black); }
.marquee-pink .marquee-item,
.marquee-pink .marquee-sep { color: var(--brown); }

.marquee-track {
    display: flex;
    gap: 30px;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: var(--sans);
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.marquee-sep {
    font-size: 24px;
    opacity: 0.6;
}
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* QUOTE COLLAGE */
.quote-collage {
    position: relative;
    background: var(--bg);
    padding: 120px 40px 160px;
    min-height: 700px;
    overflow: hidden;
}
.big-quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.1;
    text-align: center;
    max-width: 900px;
    margin: 140px auto 0;
    color: var(--dark);
    position: relative;
    z-index: 2;
}
.q-img {
    position: absolute;
    object-fit: cover;
    border-radius: 2px;
    z-index: 1;
    will-change: transform;
    transition: transform 0.08s linear;
}
.q-1 { top: 80px;  left: 11%;  width: 20%;  aspect-ratio: 3/4; }
.q-2 { top: 130px; left: 38%;  width: 13%;  aspect-ratio: 3/4; }
.q-3 { top: 60px;  right: 11%; width: 17%;  aspect-ratio: 3/4; }
.q-4 { bottom: 80px; left: 19%; width: 22%; aspect-ratio: 3/2; }
.q-5 { bottom: 70px; right: 18%; width: 16%; aspect-ratio: 3/4; }

/* TESTIMONIAL SLIDER */
.slider {
    position: relative;
    min-height: 320px;
    margin-bottom: 32px;
}
.slide {
    display: none;
    color: #fff;
    animation: fade 0.4s;
}
.slide.active { display: block; }
.t-title {
    font-family: var(--sans);
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--brown);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 400;
}
.t-text {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--serif);
    font-weight: 400;
}
.t-author {
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 16px;
}
.t-stars {
    color: #fff;
    font-size: 18px;
    letter-spacing: 4px;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.slider-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 4px 12px;
    transition: color 0.2s;
}
.slider-btn:hover { color: var(--brown); }

/* INSTAGRAM */
.ig-section {
    background: var(--bg);
    padding: 80px 24px 40px;
    text-align: center;
}
.ig-head { margin-bottom: 40px; }
.ig-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--dark);
    margin-bottom: 8px;
}
.ig-handle {
    display: inline-block;
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--brown);
    text-transform: lowercase;
}
.ig-handle:hover { color: var(--dark); }
.lightwidget-widget {
    min-height: 280px;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

/* FOOTER */
.site-footer {
    background: var(--black);
    color: #fff;
    padding: 80px 40px 32px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 60px;
}
.footer-logo-img {
    width: clamp(200px, 30vw, 380px);
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}
.footer-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: #ccc;
    margin-top: 8px;
    letter-spacing: 0.05em;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-col h3 {
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--brown);
    margin-bottom: 20px;
    font-weight: 400;
}
.footer-col p, .footer-col a {
    font-size: 14px;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 12px;
}
.footer-col a { display: block; }
.footer-col a:hover { color: var(--brown); }
.footer-legal a { margin-bottom: 8px; text-decoration: underline; }
.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #999;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .site-header { padding: 16px 20px; }
    .logo-link { font-size: 18px; }
    .split-section { grid-template-columns: 1fr; }
    .split-left img { height: 400px; }
    .split-right { padding: 60px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { flex-direction: row; }
    .quote-collage { padding: 80px 20px 100px; min-height: 600px; }
    .q-1 { top: 40px;  left: 5%;  width: 25%; }
    .q-2 { top: 90px;  left: 40%; width: 16%; }
    .q-3 { top: 30px;  right: 5%; width: 22%; }
    .q-4 { bottom: 60px; left: 10%; width: 28%; }
    .q-5 { bottom: 50px; right: 10%; width: 22%; }
    .big-quote { margin-top: 100px; font-size: 28px; }
    .chi-siamo { padding: 80px 0; }
    .hero-title { font-size: 90px; }
}
@media (max-width: 500px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .footer-title { font-size: 56px; }
}
