/* ────────────────────────────────────────────────────────
   TOKENS
──────────────────────────────────────────────────────── */
:root {
  --ink:        #0f0e0d;
  --ink-soft:   #1a1a1f;
  --ivory:      #f7f5f0;
  --ivory-dark: #edebe5;
  --sand:       #d5cec3;
  --mist:       #9a9590;
  --accent:     #1a7a6d;
  --accent-lt:  #2db8a4;
  --accent-dark:#14594f;
  --gold:       #c9a84c;
  --gold-lt:    #dfc473;
  --crimson:    #9b2335;
  --white:      #ffffff;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-jp:      'Noto Sans JP', sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

/* ────────────────────────────────────────────────────────
   BASE
──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ────────────────────────────────────────────────────────
   PROGRESS BAR
──────────────────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 9999;
  transition: width .1s linear;
}

/* ────────────────────────────────────────────────────────
   CURSOR
──────────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .08s, opacity .2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9997; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(26,122,109,.4);
  transform: translate(-50%, -50%);
  transition: transform .22s var(--ease-out-expo), width .3s, height .3s, border-color .3s;
}
body.hovering .cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
@media (hover:none) { .cursor-dot, .cursor-ring { display: none; } }

/* ────────────────────────────────────────────────────────
   PARTICLE CANVAS
──────────────────────────────────────────────────────── */
#particle-canvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
}

/* ────────────────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 4rem;
  transition: padding .5s var(--ease-out-expo), background .4s;
}
nav.scrolled {
  padding: 1rem 4rem;
  background: rgba(15,14,13,.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .08em;
  display: flex; align-items: center; gap: .55rem;
  text-decoration: none;
}
.nav-logo-jp {
  font-family: var(--ff-jp);
  font-size: 1.1rem;
  color: var(--gold-lt);
  font-weight: 300;
}
.nav-logo-divider {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.2);
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-lt);
  transition: width .35s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-reserve {
  background: transparent !important;
  color: var(--gold-lt) !important;
  border: 1px solid rgba(201,168,76,.45) !important;
  padding: .45rem 1.3rem;
  border-radius: 1px;
  transition: background .3s, border-color .3s !important;
}
.nav-reserve::after { display: none !important; }
.nav-reserve:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--ink) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: .35s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -5%;
  background: url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?w=2000&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.1);
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.1) translate(0,0); }
  to   { transform: scale(1.18) translate(-1%, 1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center bottom, rgba(26,122,109,.15) 0%, transparent 70%),
    linear-gradient(180deg,
      rgba(0,0,0,.25) 0%,
      rgba(0,0,0,.15) 40%,
      rgba(15,14,13,.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 2rem;
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s var(--ease-out-expo) both;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: .5rem;
  animation: fadeUp .8s .15s var(--ease-out-expo) both;
}
.hero-title em {
  font-style: italic;
  display: block;
  font-size: .55em;
  color: var(--gold-lt);
  letter-spacing: .06em;
  margin-top: .3rem;
}
.hero-separator {
  display: flex; align-items: center; gap: 1.2rem;
  justify-content: center;
  margin: 1.8rem 0;
  animation: fadeUp .8s .3s var(--ease-out-expo) both;
}
.hero-separator::before,
.hero-separator::after {
  content: ''; flex: 0 0 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt));
}
.hero-separator::after {
  background: linear-gradient(90deg, var(--gold-lt), transparent);
}
.hero-separator span {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .45s var(--ease-out-expo) both;
}
.hero-actions {
  display: flex; gap: 1.2rem;
  justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s .6s var(--ease-out-expo) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  z-index: 2;
  animation: fadeUp 1s 1s var(--ease-out-expo) both;
}
.scroll-indicator span {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold-lt), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .3; transform: scaleY(.6); }
  50%     { opacity: 1;  transform: scaleY(1); }
}

/* ────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all .35s var(--ease-out-expo);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,122,109,.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────────────────
   MARQUEE
──────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--accent-dark);
  padding: .85rem 0;
  overflow: hidden;
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0;
}
.marquee-item span {
  font-family: var(--ff-jp);
  font-weight: 300;
  color: var(--gold-lt);
}

/* ────────────────────────────────────────────────────────
   SHARED SECTION STYLES
──────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}
.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
  position: relative;
  padding-left: 2.5rem;
}
.label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--accent);
}
.heading-xl {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
}
.heading-xl em {
  font-style: italic;
  color: var(--accent);
}
.rule {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.2rem 0 1.8rem;
}
.rule::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--sand);
}
.rule-jp {
  font-family: var(--ff-jp);
  font-size: .85rem;
  color: var(--mist);
  font-weight: 300;
}
.body-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ────────────────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  width: 75%; height: 85%;
  object-fit: cover;
  border-radius: 2px;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 50%;
  object-fit: cover;
  border: 4px solid var(--ivory);
  border-radius: 2px;
}
.about-year-badge {
  position: absolute;
  top: 1.5rem; right: 2rem;
  width: 80px; height: 80px;
  background: var(--accent);
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(26,122,109,.3);
}
.about-year-badge strong {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  line-height: 1;
}
.about-year-badge small {
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  line-height: 1.2;
  margin-top: .15rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-block {
  text-align: center;
  padding: 1.2rem .5rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mist);
  margin-top: .4rem;
}

/* ────────────────────────────────────────────────────────
   PREZZI
──────────────────────────────────────────────────────── */
#prezzi {
  background: var(--ink);
  color: var(--white);
}
#prezzi .label { color: var(--gold-lt); }
#prezzi .label::before { background: var(--gold-lt); }
#prezzi .heading-xl em { color: var(--gold-lt); }
#prezzi .rule::after { background: rgba(255,255,255,.1); }
#prezzi .rule-jp { color: rgba(255,255,255,.3); }

.prezzi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out-expo), box-shadow .4s;
  border-radius: 2px;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  border-color: rgba(201,168,76,.3);
}
.price-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.06) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s;
}
.price-card:hover::before { transform: translateX(100%); }
.price-card-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .5rem;
}
.price-card-schedule {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.price-card-amount {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent-lt);
  line-height: 1;
}
.price-card-amount small {
  font-size: .35em;
  color: rgba(255,255,255,.4);
  display: block;
  margin-top: .5rem;
  font-family: var(--ff-body);
  letter-spacing: .05em;
}
.price-card-hours {
  margin-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.price-card-hours::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
}
.price-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.price-card.featured .price-card-label {
  color: var(--gold);
}
.price-featured-tag {
  position: absolute; top: 0; right: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
}
.prezzi-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
}

/* ────────────────────────────────────────────────────────
   TAKEAWAY
──────────────────────────────────────────────────────── */
.takeaway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.promo-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  padding: 2.5rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,.08) 10px,
    rgba(255,255,255,.08) 20px
  );
}
.promo-banner-content {
  position: relative; z-index: 1;
}
.promo-discount {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: .5rem;
}
.promo-condition {
  font-size: .85rem;
  font-weight: 500;
  opacity: .8;
}
.takeaway-methods {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.takeaway-method {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color .3s, transform .3s;
}
.takeaway-method:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.takeaway-method-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.takeaway-method-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
}
.takeaway-method-value {
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: .15rem;
}

/* ────────────────────────────────────────────────────────
   EVENTI
──────────────────────────────────────────────────────── */
#eventi {
  background: var(--ink);
  color: var(--white);
}
#eventi .label { color: var(--accent-lt); }
#eventi .label::before { background: var(--accent-lt); }
#eventi .heading-xl em { color: var(--accent-lt); }
#eventi .rule::after { background: rgba(255,255,255,.1); }
#eventi .rule-jp { color: rgba(255,255,255,.3); }

#events-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  transition: transform .3s var(--ease-out-expo), box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
  border-left-color: var(--accent-lt);
}
.event-card.featured {
  border-left-color: var(--gold);
  background: rgba(201,168,76,.04);
}
.event-card.featured:hover {
  border-left-color: var(--gold-lt);
}
.event-date-badge {
  width: 70px; height: 70px;
  background: var(--accent);
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.event-card.featured .event-date-badge {
  background: var(--gold);
  color: var(--ink);
}
.event-day {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
.event-month {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .15rem;
}
.event-content {
  flex: 1;
  min-width: 0;
}
.event-meta {
  display: flex; gap: .5rem;
  margin-bottom: .5rem;
  flex-wrap: wrap;
}
.event-category-badge {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 2px;
}
.cat-degustazione { background: rgba(26,122,109,.2); color: var(--accent-lt); }
.cat-musica { background: rgba(201,168,76,.2); color: var(--gold-lt); }
.cat-speciale { background: rgba(220,140,60,.2); color: #e8a44a; }
.cat-festivo { background: rgba(155,35,53,.2); color: #e05a6d; }
.event-booking-badge {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 2px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
}
.event-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .3rem;
}
.event-short-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  font-weight: 300;
}
.event-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  padding: .6rem 1.4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all .3s;
  flex-shrink: 0;
  font-family: var(--ff-body);
}
.event-cta:hover {
  border-color: var(--accent-lt);
  color: var(--accent-lt);
}
.no-events {
  text-align: center;
  color: rgba(255,255,255,.35);
  font-style: italic;
  padding: 3rem 0;
  font-size: .95rem;
}

/* Event Modal */
.event-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  padding: 2rem;
}
.event-modal.open {
  opacity: 1; pointer-events: auto;
}
.event-modal-card {
  background: var(--ink-soft);
  max-width: 600px; width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 4px;
  position: relative;
  transform: translateY(20px);
  transition: transform .4s var(--ease-out-expo);
}
.event-modal.open .event-modal-card {
  transform: none;
}
.event-modal-img {
  width: 100%; height: 250px;
  object-fit: cover;
}
.event-modal-body {
  padding: 2.5rem;
}
.event-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.5);
  border: none; color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
  z-index: 1;
}
.event-modal-close:hover { background: rgba(0,0,0,.8); }
.em-meta {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.em-title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .8rem;
}
.em-info {
  display: flex; gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.em-info strong {
  color: var(--gold-lt);
  font-weight: 500;
}
.em-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  white-space: pre-line;
  margin-bottom: 2rem;
}
.em-price {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--gold-lt);
  padding: .5rem 1.2rem;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.em-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent);
  color: var(--white);
  padding: .8rem 2rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  border-radius: 2px;
  transition: background .3s;
  font-family: var(--ff-body);
}
.em-cta:hover { background: var(--accent-lt); }

/* ────────────────────────────────────────────────────────
   GALLERY
──────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 250px;
  transition: transform .6s var(--ease-out-expo);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.g1 { grid-column: span 2; }
.g1 img { min-height: 350px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white); font-size: 1.8rem;
  cursor: pointer; opacity: .6;
  transition: opacity .3s;
}
.lb-close:hover { opacity: 1; }

/* ────────────────────────────────────────────────────────
   CONTATTI
──────────────────────────────────────────────────────── */
#contatti {
  background: var(--ivory-dark);
}
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid var(--sand);
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--ink);
  transition: border-color .3s;
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  width: 100%;
  padding: .9rem;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .3s, transform .3s;
}
.btn-submit:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
}
.info-block {
  margin-bottom: 2rem;
}
.info-block h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .6rem;
  color: var(--ink);
}
.info-block p,
.info-block a {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  text-decoration: none;
}
.info-block a:hover { color: var(--accent); }
.map-wrap {
  width: 100%;
  height: 220px;
  border: 1px solid var(--sand);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 4rem 0 2rem;
  position: relative; z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .8rem;
}
.footer-brand-desc {
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(255,255,255,.35);
}
.footer-top h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-top ul { list-style: none; }
.footer-top li { margin-bottom: .5rem; }
.footer-top a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .3s;
}
.footer-top a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  font-size: .75rem;
}
.footer-socials {
  display: flex; gap: 1.2rem;
}
.footer-socials a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .08em;
  transition: color .3s;
}
.footer-socials a:hover { color: var(--gold-lt); }

/* ────────────────────────────────────────────────────────
   TOAST
──────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 500;
  z-index: 3000;
  transition: transform .4s var(--ease-out-expo);
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ────────────────────────────────────────────────────────
   NAV ACTIVE STATE (for sub-pages)
──────────────────────────────────────────────────────── */
.nav-active {
  color: var(--white) !important;
}
.nav-active::after {
  width: 100% !important;
}

/* ────────────────────────────────────────────────────────
   EVENTI TEASER (homepage)
──────────────────────────────────────────────────────── */
.eventi-teaser-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.eventi-view-all {
  text-align: center;
  margin-top: 3rem;
}
.eventi-view-all .btn {
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
}
.eventi-view-all .btn:hover {
  border-color: var(--accent-lt);
  color: var(--accent-lt);
}

/* ────────────────────────────────────────────────────────
   PAGE HERO (sub-pages)
──────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}
.page-hero-bg {
  position: absolute; inset: -5%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center bottom, rgba(26,122,109,.12) 0%, transparent 70%),
    linear-gradient(180deg,
      rgba(0,0,0,.4) 0%,
      rgba(0,0,0,.2) 40%,
      rgba(15,14,13,.92) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 0 2rem;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp .8s .2s var(--ease-out-expo) both;
}
.page-hero-title em {
  font-style: italic;
  display: block;
  font-size: .45em;
  color: var(--gold-lt);
  letter-spacing: .06em;
  margin-top: .4rem;
}
.page-hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp .8s .4s var(--ease-out-expo) both;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeUp .8s var(--ease-out-expo) both;
}
.breadcrumb a {
  color: var(--gold-lt);
  text-decoration: none;
  transition: color .3s;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep {
  color: rgba(255,255,255,.25);
  margin: 0 .5rem;
}
.breadcrumb span:last-child {
  color: rgba(255,255,255,.45);
}

/* ────────────────────────────────────────────────────────
   EVENTI PAGE — FULL LIST
──────────────────────────────────────────────────────── */
.eventi-page-section {
  background: var(--ink);
  color: var(--white);
  padding-top: 4rem;
}
.eventi-page-section .label { color: var(--accent-lt); }
.eventi-page-section .label::before { background: var(--accent-lt); }

/* Filters */
.eventi-filters {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  padding: .55rem 1.4rem;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all .3s var(--ease-out-expo);
}
.filter-btn:hover {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Full list container */
#events-full-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Event card — LARGE variant for full page */
.event-card-lg {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease-out-expo), box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.event-card-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.12);
}
.event-card-lg.featured {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.03);
}
.event-card-lg-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}
.event-card-lg-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card-lg-date {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.event-card-lg.featured .event-card-lg-date {
  color: var(--gold-lt);
}
.event-card-lg-date::before {
  content: '';
  width: 20px; height: 1px;
  background: currentColor;
}
.event-card-lg-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.event-card-lg-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1rem;
}
.event-card-lg-meta {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.event-card-lg-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  border-left: 1px solid rgba(255,255,255,.06);
  min-width: 160px;
  gap: 1rem;
}
.event-card-lg-time {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.event-card-lg-price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--gold-lt);
  text-align: center;
}
.event-card-lg-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  padding: .55rem 1.5rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all .3s;
  font-family: var(--ff-body);
}
.event-card-lg-btn:hover {
  border-color: var(--accent-lt);
  color: var(--accent-lt);
}

/* No events (full page) */
.no-events-page {
  text-align: center;
  padding: 5rem 2rem;
}
.no-events-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.no-events-page h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .6rem;
}
.no-events-page p {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────
   EVENTI CTA SECTION
──────────────────────────────────────────────────────── */
.eventi-cta-section {
  padding: 5rem 0;
  z-index: 2;
  position: relative;
}
.eventi-cta-box {
  background: var(--ivory-dark);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.eventi-cta-text .heading-xl {
  margin-bottom: .8rem;
}
.eventi-cta-text .body-text {
  max-width: 450px;
}
.eventi-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────
   EVENTO DETAIL PAGE
──────────────────────────────────────────────────────── */

/* Hero */
.evento-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  z-index: 2;
}
.evento-hero-bg {
  position: absolute; inset: -5%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.evento-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center bottom, rgba(26,122,109,.1) 0%, transparent 60%),
    linear-gradient(180deg,
      rgba(0,0,0,.3) 0%,
      rgba(0,0,0,.1) 30%,
      rgba(15,14,13,.95) 100%);
}
.evento-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  width: 100%;
}
.evento-hero-badges {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 1rem;
  animation: fadeUp .8s .1s var(--ease-out-expo) both;
}
.evento-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
  animation: fadeUp .8s .2s var(--ease-out-expo) both;
}
.evento-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  animation: fadeUp .8s .35s var(--ease-out-expo) both;
}
.evento-hero-date {
  color: var(--gold-lt);
  font-weight: 500;
}
.evento-hero-sep {
  color: rgba(255,255,255,.2);
}

/* Detail section */
.evento-detail {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}
.evento-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Main column */
.evento-detail-price-bar {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--ink);
  padding: 1.2rem 2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.evento-detail-price-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}
.evento-detail-price-value {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
}
.evento-detail-heading {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand);
}
.evento-detail-desc {
  font-size: .95rem;
  line-height: 2;
  color: var(--ink-soft);
  font-weight: 300;
  white-space: pre-line;
}
.evento-detail-image {
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
}
.evento-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Sidebar */
.evento-sidebar-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.evento-sidebar-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--ivory-dark);
}
.evento-sidebar-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.evento-sidebar-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: .1rem;
}
.evento-sidebar-label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: .15rem;
}
.evento-sidebar-value {
  display: block;
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.5;
}
.evento-sidebar-booking {
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ivory-dark);
}
.evento-sidebar-booking-badge {
  display: inline-block;
  background: rgba(26,122,109,.08);
  color: var(--accent);
  padding: .4rem 1rem;
  border-radius: 2px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.evento-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ivory-dark);
}

/* Share */
.evento-share-buttons {
  display: flex;
  gap: .6rem;
}
.share-btn {
  flex: 1;
  padding: .7rem;
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .3s;
  text-align: center;
}
.share-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Back section */
.evento-back-section {
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 2;
}

/* 404 / Event not found */
.evento-not-found {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  z-index: 2;
}
.evento-not-found h2 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
}
.evento-not-found p {
  font-size: .95rem;
  color: var(--mist);
  margin-bottom: 2rem;
}

/* ────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
──────────────────────────────────────────────────────── */
.reveal      { opacity:0; transform:translateY(28px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
.reveal.visible { opacity:1; transform:none; }
.reveal-left { opacity:0; transform:translateX(-28px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(28px); transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo); }
.reveal-right.visible { opacity:1; transform:none; }

/* ────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: .8rem 2rem; }
  .about-grid, .contatti-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 420px; }
  .prezzi-grid { grid-template-columns: 1fr 1fr; }
  .takeaway-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g1 { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .event-card { flex-wrap: wrap; }
  .event-cta { width: 100%; text-align: center; }
  .event-card-lg { grid-template-columns: 1fr; }
  .event-card-lg-img { min-height: 180px; }
  .event-card-lg-side { border-left: none; border-top: 1px solid rgba(255,255,255,.06); flex-direction: row; justify-content: center; }
  .eventi-cta-box { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
  .eventi-cta-text .body-text { max-width: 100%; }
  .evento-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    flex-direction: column; background: rgba(15,14,13,.97);
    padding: 2rem; gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.05);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .prezzi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .event-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .event-date-badge { width: 60px; height: 60px; }
  .event-card-lg { grid-template-columns: 1fr; }
  .event-card-lg-body { padding: 1.5rem; }
  .event-card-lg-side { padding: 1.2rem 1.5rem; min-width: auto; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .eventi-filters { gap: .4rem; }
  .filter-btn { padding: .45rem 1rem; font-size: .65rem; }
  .eventi-cta-actions { flex-direction: column; width: 100%; }
  .eventi-cta-actions .btn { width: 100%; justify-content: center; }
  .page-hero { min-height: 320px; height: 45vh; }
  .evento-hero { min-height: 350px; height: 50vh; }
  .evento-hero-content { padding-bottom: 2.5rem; }
  .evento-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .evento-detail-price-bar { flex-direction: column; gap: .3rem; text-align: center; }
}
