/* ============================================================
   SPAZIO AGORÀ — STYLES v2
   Direction 01: Calore Vivo · Fraunces + Inter
   Navbar hidden until scroll, clean booking, distinct card styles
   ============================================================ */

/* ── 0. VARIABLES ─────────────────────────────────────────── */
:root {
  --terracotta: #CB6F53;
  --polvere:    #93A7AE;
  --nero:       #482B1A;   /* Cioccolato scuro — sostituisce il nero puro */
  --crema:      #F8F3EF;
  --sabbia:     #E8DED3;
  --mattone:    #9D4F3B;
  --azzurro:    #DCE7EA;

  --salvia:      #A3AE8A;
  --salvia-soft: #DCE7EA;
  --salvia-deep: #482B1A;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h:   60px;
  --r-sm:    0;
  --r-md:    0;
  --r-lg:    0;
  --shadow:  0 1px 4px rgba(72, 43, 26,0.06);
  --shadow-md: 0 4px 16px rgba(72, 43, 26,0.08);
  --shadow-lg: 0 12px 40px rgba(72, 43, 26,0.12);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 1. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--nero); background: var(--crema); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── 2. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 9vw, 5rem); }
h2 { font-size: clamp(1.7rem, 5.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); }
p { font-size: clamp(0.9rem, 2.8vw, 1rem); line-height: 1.65; color: rgba(72, 43, 26,0.7); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

/* ── 3. NAVBAR ────────────────────────────────────────────── */
/* Hidden until user scrolls past 80% of hero */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--nero);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.4s ease;
}
.navbar.visible {
  transform: translateY(0);
  opacity: 1;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 76px;
  height: 100%;
  flex: 0 0 76px;
}
.navbar__logo img {
  display: block;
  width: 68px;
  height: auto;
}
.logo-accent { color: var(--terracotta); }
.navbar__links { display: none; }
.navbar__actions { display: flex; align-items: center; gap: 12px; }

.cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cta-pill:active { transform: scale(0.97); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--crema);
  border-radius: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.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); }

/* ── 4. MOBILE MENU ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--nero);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--crema);
  padding: 12px 0;
  border-bottom: 1px solid rgba(248,243,239,0.1);
  transition: color 0.2s ease;
}
.mobile-link:last-child { border-bottom: none; }
.cta-mobile { margin-top: 16px; color: var(--terracotta); font-weight: 500; }
.mobile-menu__footer { margin-top: auto; }
.mobile-menu__footer p {
  font-size: 0.82rem;
  color: rgba(248,243,239,0.45);
  margin-bottom: 4px;
}

/* ── 5. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 580px;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 8s ease-out;
  transform: scale(1.04);
}
.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero__gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(72, 43, 26,0.55) 0%, rgba(72, 43, 26,0.15) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(72, 43, 26,0.9) 0%, rgba(72, 43, 26,0.25) 55%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 0 24px 64px;
  max-width: 640px;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,243,239,0.55);
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 10vw, 5.5rem);
  font-weight: 300;
  color: var(--crema);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
  line-height: 1.15;
}
.hero__title .word span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.8s var(--ease-out), opacity 0.5s ease;
}
.hero__title.revealed .word span {
  transform: translateY(0);
  opacity: 1;
}
.hero__subtitle {
  font-size: 0.9rem;
  color: rgba(248,243,239,0.68);
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 360px;
  line-height: 1.5;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.hero__cta:hover { background: var(--mattone); }
.hero__cta:active { transform: scale(0.97); }

.hero__dots { display: none !important; }

/* ── 6. BOOKING SECTION — CLEAN & DIRECT ──────────────────── */
.booking-section {
  background: #fff;
  padding: 56px 0 0;
  position: relative;
}
.booking-section__header {
  padding: 0 24px 32px;
  max-width: 560px;
}
.booking-section__header h2 { margin-bottom: 8px; }
.booking-section__header p {
  font-size: 0.9rem;
  color: rgba(72, 43, 26,0.55);
}

.booking-cards-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 24px 40px;
  cursor: grab;
}
.booking-cards-scroll::-webkit-scrollbar { display: none; }
.booking-cards {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* Booking card — clean style, different from events */
.booking-card {
  width: 280px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.25s ease;
  background: var(--crema);
  border: 1px solid rgba(72, 43, 26,0.06);
}
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.booking-card:active { transform: scale(0.98); }

.booking-card__media {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.booking-card__media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(72, 43, 26,0.55) 0%, transparent 100%);
}

.booking-card__overlay { display: none; }

.booking-card__content {
  padding: 20px 20px 22px;
}
.booking-card__kicker {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.booking-card__content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--nero);
  margin-bottom: 6px;
  font-weight: 400;
  line-height: 1.15;
}
.booking-card__content p {
  font-size: 0.82rem;
  color: rgba(72, 43, 26,0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}
.booking-card__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.booking-card:hover .booking-card__cta { background: var(--mattone); }
.booking-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* ── 7. EVENTS CAROUSEL — Compact, distinct style ─────────── */
.events-section {
  background: var(--sabbia);
  padding: 56px 0 64px;
}
.events-section__header {
  padding: 0 24px;
  margin-bottom: 24px;
}
.events-section__meta h2 { line-height: 1.15; }
.events-section__lead {
  font-size: 0.9rem;
  color: rgba(72, 43, 26,0.55);
  margin-top: 8px;
  max-width: 440px;
}

.events-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 24px 10px;
}
.events-carousel::-webkit-scrollbar { display: none; }

.ev-slide {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.ev-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ev-slide:active { transform: scale(0.98); }
.ev-slide:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

.ev-slide__thumb {
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ev-slide__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(72, 43, 26,0.35) 100%);
}

.ev-slide__date-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: #fff;
  padding: 5px 10px;
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ev-slide__info {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ev-slide__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--nero);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 6px;
}
.ev-slide__time {
  font-size: 0.72rem;
  color: rgba(72, 43, 26,0.45);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ev-slide__cat {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 0;
  background: rgba(203,111,83,0.1);
  color: var(--terracotta);
}

.events-section__footer {
  padding: 0 24px;
  margin-top: 28px;
  text-align: center;
}

/* ── 8. QUATTRO MONDI — Decorated cards ───────────────────── */
.mondi {
  background: var(--crema);
  padding: 80px 24px 88px;
  position: relative;
  overflow: hidden;
}
.mondi__header { margin-bottom: 44px; }
.mondi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mondo-card {
  position: relative;
  padding: 32px 20px 28px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--sabbia) 0%, #f3ece0 100%);
  border: 1px solid rgba(72, 43, 26,0.06);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.mondo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(72, 43, 26,0.1);
}

.mondo-card__num {
  position: absolute;
  top: 8px; right: 12px;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: var(--terracotta);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mondo-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--nero);
  position: relative;
  z-index: 1;
}
.mondo-card p {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(72, 43, 26,0.55);
  position: relative;
  z-index: 1;
}

.mondi__cta-wrap {
  text-align: center;
  padding-top: 36px;
}

/* ── 9. CTA BUTTONS ───────────────────────────────────────── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 28px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}
.cta-primary:hover { background: var(--mattone); }
.cta-primary:active { transform: scale(0.97); }
.cta-primary:disabled { background: rgba(203,111,83,0.35); cursor: not-allowed; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 24px;
  border: 1.5px solid rgba(203,111,83,0.35);
  color: var(--terracotta);
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}
.cta-secondary:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

/* ── 10. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--nero);
  padding: 56px 24px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 14px;
}
.footer__logo img {
  display: block;
  width: 136px;
  height: auto;
}
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(248,243,239,0.45);
  max-width: 280px;
  line-height: 1.6;
}
.footer__brand .footer__social {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(248,243,239,0.7);
}
.footer__brand .footer__social:hover { color: var(--terracotta); }
.footer__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
/* La mappa è la voce più larga: da mobile occupa tutta la riga,
   le altre 3 colonne si dispongono sotto in una griglia 2x2. */
.footer__col--map { grid-column: 1 / -1; }
.footer__map {
  display: block;
  width: 100%;
  height: 140px;
  border: 0;
  margin: 12px 0 10px;
}
.footer__maplink { font-weight: 600; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,243,239,0.4);
  margin-bottom: 10px;
}
.footer__col p,
.footer__col a {
  font-size: 0.85rem;
  color: rgba(248,243,239,0.7);
  line-height: 1.6;
  display: block;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--terracotta); }
.footer__bottom {
  border-top: 1px solid rgba(248,243,239,0.08);
  padding: 20px 0;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(248,243,239,0.3);
}
.footer__bottom a {
  color: rgba(248,243,239,0.3);
  transition: color 0.2s ease;
}
.footer__bottom a:hover { color: var(--terracotta); }

/* ── 11. BOOKING MODAL — Simplified 2-step wizard ─────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.open { pointer-events: all; opacity: 1; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(72, 43, 26,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__sheet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-radius: 0;
  padding: 0 24px 40px;
  max-height: 88dvh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
  overscroll-behavior: contain;
}
.modal.open .modal__sheet { transform: translateY(0); }

.modal__handle {
  width: 36px;
  height: 4px;
  background: rgba(72, 43, 26,0.12);
  border-radius: 0;
  margin: 14px auto 0;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
  margin-bottom: 20px;
}
.modal__title-wrap { display: flex; flex-direction: column; gap: 4px; }
.modal__event-type {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--nero);
}
.modal__deposit {
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(72, 43, 26,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--nero);
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.modal__close:hover { background: rgba(72, 43, 26,0.12); }

/* Minimal step indicator */
.step-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.step-progress__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(72, 43, 26,0.1);
  transition: background 0.3s ease, width 0.3s ease;
}
.step-progress__dot.active {
  width: 24px;
  border-radius: 0;
  background: var(--terracotta);
}

/* Step content */
.modal__step { padding-bottom: 8px; }
.modal__step.hidden { display: none; }
.modal__step h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--nero);
}

/* Calendar picker compact */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-prev, .cal-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(72, 43, 26,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--nero);
  transition: background 0.2s ease;
}
.cal-prev:hover, .cal-next:hover { background: rgba(72, 43, 26,0.1); }
.cal-month {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--nero);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 12px;
}
.cal-day-label {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 600;
  color: rgba(72, 43, 26,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  color: var(--nero);
  border: none;
  background: transparent;
  font-family: inherit;
}
.cal-day:hover:not(.past):not(.empty) { background: rgba(203,111,83,0.12); }
.cal-day.today { font-weight: 700; color: var(--terracotta); }
.cal-day.selected { background: var(--terracotta); color: #fff; font-weight: 600; }
.cal-day.past { color: rgba(72, 43, 26,0.18); cursor: not-allowed; }
.cal-day.empty { pointer-events: none; }
.cal-day.occupied {
  color: rgba(72, 43, 26,0.28);
  cursor: not-allowed;
  position: relative;
}
.cal-day.occupied::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mattone);
  opacity: 0.55;
}
.cal-day.occupied:hover { background: transparent; }

.cal-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(72, 43, 26,0.4);
  margin-bottom: 20px;
}
.cal-legend__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mattone);
  opacity: 0.55;
}

.cal-hint {
  font-size: 0.72rem;
  color: rgba(72, 43, 26,0.35);
  text-align: center;
  margin-bottom: 20px;
}

/* Form fields */
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(72, 43, 26,0.5);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.required { color: var(--terracotta); }
.form-field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(72, 43, 26,0.1);
  border-radius: 0;
  font-size: 1rem;
  color: var(--nero);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-field input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(203,111,83,0.1);
}

.step-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.step-buttons .cta-secondary { flex: 1; justify-content: center; }
.step-buttons .cta-primary { flex: 2; justify-content: center; }

/* Booking summary */
.booking-summary-card {
  background: var(--crema);
  border-radius: 0;
  padding: 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(72, 43, 26,0.06);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.summary-label { font-size: 0.82rem; color: rgba(72, 43, 26,0.45); }
.summary-value { font-size: 0.9rem; font-weight: 500; color: var(--nero); }
.summary-divider {
  height: 1px;
  background: rgba(72, 43, 26,0.07);
  margin: 6px 0;
}
.summary-total .summary-label { font-weight: 600; color: var(--nero); }
.summary-total .summary-value { font-size: 1.1rem; color: var(--terracotta); font-weight: 600; }
.summary-note {
  font-size: 0.78rem;
  color: rgba(72, 43, 26,0.45);
  line-height: 1.5;
  margin-bottom: 0;
}

#pay-btn {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
  font-size: 0.95rem;
  padding: 15px 32px;
}

/* ── 12. EVENT REGISTRATION MODAL ─────────────────────────── */
.event-modal__hero {
  position: relative;
  height: 160px;
  margin: 0 -24px 4px;
  background-size: cover;
  background-position: center;
  background-color: var(--sabbia);
  border-radius: 0;
}
.event-modal__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff 0%, rgba(255,255,255,0) 50%);
}
.modal__close--float {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: rgba(72, 43, 26,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__close--float:hover { background: rgba(72, 43, 26,0.55); }
.modal__sheet--media { padding-top: 0; }

.event-modal__cat {
  position: absolute;
  left: 24px; bottom: 16px;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 11px;
  border-radius: 0;
  background: rgba(203,111,83,0.92);
  color: #fff;
}

.event-reg-info { margin-bottom: 20px; }
.event-reg-date {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.event-reg-desc {
  font-size: 0.88rem;
  color: rgba(72, 43, 26,0.6);
  line-height: 1.5;
}

/* ── 13. SCROLL REVEAL ────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── 14. EVENTS PAGE — Calendar + Timeline ────────────────── */
.events-page {
  background: var(--crema);
  padding-top: var(--nav-h);
  min-height: 100dvh;
}
.events-page__hero {
  padding: 48px 24px 32px;
  background: var(--nero);
}
.events-page__hero .eyebrow { color: rgba(203,111,83,0.9); padding: 0; }
.events-page__hero h1 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--crema);
  font-weight: 300;
}

/* Custom calendar */
.custom-calendar-wrap {
  padding: 32px 24px;
  background: #fff;
}
.custom-calendar {
  max-width: 520px;
  margin: 0 auto;
}
.custom-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.custom-calendar__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--nero);
}
.custom-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.custom-calendar__day-label {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(72, 43, 26,0.3);
  padding: 10px 0;
}
.custom-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.82rem;
  position: relative;
  color: var(--nero);
}
.custom-calendar__day--empty { pointer-events: none; }
.custom-calendar__day--past { color: rgba(72, 43, 26,0.2); }
.custom-calendar__dot {
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* Events timeline on events page */
.events-timeline { padding: 32px 24px; max-width: 720px; margin: 0 auto; }
.timeline-day { margin-bottom: 24px; }
.timeline-day__header {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(72, 43, 26,0.35);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline-day__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(72, 43, 26,0.07);
}
.timeline-event {
  background: #fff;
  border-radius: 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 10px;
  border: 1px solid rgba(72, 43, 26,0.04);
}
.timeline-event:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.timeline-event__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.timeline-event__info { flex: 1; }
.timeline-event__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--nero);
  margin-bottom: 2px;
}
.timeline-event__time {
  font-size: 0.75rem;
  color: rgba(72, 43, 26,0.4);
}
.timeline-event__cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 0;
  flex-shrink: 0;
  background: rgba(203,111,83,0.1);
  color: var(--terracotta);
}

.expand-calendar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: rgba(72, 43, 26,0.03);
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(72, 43, 26,0.5);
  cursor: pointer;
  margin: 16px auto 32px;
  max-width: 520px;
  transition: background 0.2s ease;
  border: none;
  font-family: var(--font-sans);
}
.expand-calendar-btn:hover { background: rgba(72, 43, 26,0.06); }

.calendar-embed-wrap { padding: 0 24px 24px; display: none; }
.calendar-embed-wrap.visible { display: block; }
.calendar-embed-wrap iframe {
  border-radius: 0;
  width: 100%;
  min-height: 400px;
  border: none;
}

/* ── 15. LO SPAZIO PAGE ───────────────────────────────────── */
.spazio-page { padding-top: 0; background: var(--crema); }

.spazio-hero {
  height: 70dvh;
  min-height: 480px;
  background: var(--nero);
  display: flex;
  align-items: flex-end;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.spazio-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/space-01.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.spazio-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(72, 43, 26,0.9) 0%, rgba(72, 43, 26,0.2) 50%, transparent 100%);
}
.spazio-hero__content {
  position: relative;
  z-index: 2;
}
.spazio-hero h1 {
  color: var(--crema);
  font-weight: 300;
  font-size: clamp(2rem, 7vw, 3.8rem);
  margin-bottom: 12px;
}
.spazio-hero p {
  color: rgba(248,243,239,0.7);
  font-size: 0.92rem;
  max-width: 400px;
}

/* Features grid */
.spazio-features {
  padding: 64px 24px;
  background: #fff;
}
.spazio-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.spazio-feature {
  text-align: center;
  padding: 24px 16px;
  border-radius: 0;
  background: var(--crema);
  border: 1px solid rgba(72, 43, 26,0.04);
}
.spazio-feature__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.spazio-feature__value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 4px;
  font-weight: 400;
}
.spazio-feature__label {
  font-size: 0.75rem;
  color: rgba(72, 43, 26,0.5);
  font-weight: 500;
}

/* Description */
.spazio-desc {
  padding: 56px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.spazio-desc .eyebrow { margin-bottom: 16px; }
.spazio-desc h2 { margin-bottom: 16px; }
.spazio-desc p { margin-bottom: 12px; }

/* Gallery */
.spazio-gallery {
  padding: 0 24px 64px;
}
.spazio-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.spazio-gallery__item {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.spazio-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.spazio-gallery__item:hover img { transform: scale(1.05); }
.spazio-gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

/* Services list */
.spazio-services {
  padding: 48px 24px 68px;
  background: var(--sabbia);
}
.spazio-services__inner {
  max-width: 600px;
  margin: 0 auto;
}
.spazio-services h2 { margin-bottom: 28px; text-align: center; }
.spazio-service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spazio-service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 0;
  box-shadow: var(--shadow);
}
.spazio-service-item span:first-child {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: -2px;
}
.spazio-service-item h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.spazio-service-item p {
  font-size: 0.78rem;
  color: rgba(72, 43, 26,0.5);
  line-height: 1.45;
}

/* ── 16. GRAZIE PAGE ──────────────────────────────────────── */
.grazie-page {
  min-height: 100dvh;
  background: var(--crema);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.grazie-icon {
  width: 72px; height: 72px;
  background: rgba(203,111,83,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}
.grazie-page h1 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  color: var(--nero);
  margin-bottom: 16px;
}
.grazie-page > p {
  color: rgba(72, 43, 26,0.55);
  max-width: 360px;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.iban-card {
  background: #fff;
  border-radius: 0;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  text-align: left;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}
.iban-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(72, 43, 26,0.4);
  margin-bottom: 10px;
}
.iban-value {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--nero);
  font-weight: 600;
  letter-spacing: 0.06em;
  word-break: break-all;
  margin-bottom: 8px;
}
.iban-intestatario { font-size: 0.82rem; color: rgba(72, 43, 26,0.5); }
.iban-amount {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(203,111,83,0.1);
  color: var(--terracotta);
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
}
.grazie-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--nero);
  color: var(--crema);
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 16px;
  transition: background 0.2s ease;
  width: 100%;
  max-width: 400px;
}
.grazie-cta-call:hover { background: #2a2a2a; }
.grazie-hint { font-size: 0.78rem; color: rgba(72, 43, 26,0.35); }

/* ── 17. UTILITY ──────────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── 18. MARQUEE (events page) ────────────────────────────── */
.events-marquee-section {
  background: var(--crema);
  padding: 28px 0 16px;
  overflow: hidden;
}
.events-marquee-intro {
  padding: 0 24px 18px;
  max-width: 560px;
}
.events-marquee-intro p {
  font-size: 0.9rem;
  color: rgba(72, 43, 26,0.55);
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 6px 9px 10px;
  animation: marquee-scroll 72s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee__track { animation: none; }
}

/* ── 19. DESKTOP BREAKPOINTS ──────────────────────────────── */
@media (min-width: 768px) {
  .navbar__links { display: flex; gap: 32px; }
  .nav-link {
    font-size: 0.86rem;
    color: rgba(248,243,239,0.7);
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }
  .nav-link:hover { color: var(--crema); }
  .nav-link:hover::after,
  .nav-link.active::after { transform: scaleX(1); }
  .hamburger { display: none; }

  .hero__content { padding: 0 60px 80px; max-width: 720px; }
  .booking-section { padding: 80px 60px 0; }
  .booking-section__header { padding: 0 0 32px; }
  .booking-cards-scroll {
    overflow-x: visible;
    padding: 0;
    cursor: default;
  }
  .booking-cards {
    width: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .booking-card { width: auto; }

  .events-section__header { padding: 0 60px; }
  .events-carousel { padding: 4px 60px 10px; }
  .events-section__footer { padding: 0 60px; }

  .mondi { padding: 96px 60px 100px; }
  .mondi__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .modal__sheet {
    max-width: 520px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100%);
    border-radius: 0;
    bottom: 32px;
  }
  .modal.open .modal__sheet {
    transform: translateX(-50%) translateY(0);
  }

  .events-timeline { max-width: 720px; margin: 0 auto; }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__info { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; }
  .footer__col--map { grid-column: auto; }

  .spazio-features__grid { grid-template-columns: repeat(4, 1fr); }
  .spazio-gallery__grid { gap: 16px; }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
  }
  .booking-section { padding: 96px 80px 0; }
  .mondi { padding: 96px 80px 100px; }
  .events-section { padding: 80px 0 96px; }
  .hero__content { padding: 0 80px 100px; }
}

/* Sticky bottom booking bar — visible everywhere */
.booking-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: #fff;
  border-top: 1px solid rgba(72, 43, 26,0.06);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(72, 43, 26,0.06);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.booking-bar.visible {
  transform: translateY(0);
}
.booking-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.booking-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.booking-bar__text strong { font-size: 0.92rem; font-weight: 600; color: var(--nero); }
.booking-bar__text span { font-size: 0.75rem; color: rgba(72, 43, 26,0.45); }
@media (min-width: 768px) {
  .booking-bar__inner { max-width: 760px; }
  .booking-bar__text strong { font-size: 1rem; }
  .booking-bar__text span { font-size: 0.8rem; }
}

/* ── 21. EVENTS PAGE — Mobile-first Visual Cards ──────────── */
.events-visual {
  background: #fff;
  padding: 48px 0 64px;
}
.events-visual__header {
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.events-visual__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 14px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 720px) {
  .events-visual__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    max-width: 980px;
  }
}

/* Minimal event card: only image + subtle date overlay + title.
   Full details (description, category, iscriviti) live in the modal. */
.ev-min-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.ev-min-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  background: var(--sabbia);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.ev-min-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(72, 43, 26,0.42) 0%, rgba(72, 43, 26,0) 52%);
}
.ev-min-card:hover .ev-min-card__media,
.ev-min-card:focus-visible .ev-min-card__media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ev-min-card__date {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(72, 43, 26,0.22);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 4px 9px;
  border-radius: 0;
}
.ev-min-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.28;
  color: var(--nero);
  margin-top: 11px;
  padding: 0 2px;
}
.ev-min-card__hint {
  margin-top: 5px;
  padding: 0 2px;
  font-size: 0.72rem;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ev-min-card:hover .ev-min-card__hint,
.ev-min-card:focus-visible .ev-min-card__hint { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .ev-min-card__hint { opacity: 1; transform: none; }
}

.events-page__grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}
.events-page__featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.events-page__featured-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--nero);
  aspect-ratio: 16 / 10;
  max-height: 420px;
}
.events-page__featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.6s ease, transform 6s ease;
}
.events-page__featured-item:hover img {
  opacity: 0.75;
  transform: scale(1.03);
}
.events-page__featured-item .ev-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(72, 43, 26,0.85) 0%, rgba(72, 43, 26,0.2) 50%, transparent 100%);
  z-index: 1;
}
.events-page__featured-item .ev-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.events-page__featured-item .ev-date {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 5px 12px;
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.events-page__featured-item h3 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 300;
  margin-bottom: 6px;
  line-height: 1.15;
}
.events-page__featured-item .ev-time {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.events-page__featured-item .ev-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  color: var(--nero);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.events-page__featured-item .ev-cta:hover { background: var(--crema); }

/* Upcoming section with image cards */
.events-upcoming {
  padding: 48px 24px;
  background: var(--crema);
}
.events-upcoming__header {
  max-width: 1100px;
  margin: 0 auto 32px;
}
.events-upcoming__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .events-upcoming__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .events-upcoming__grid { grid-template-columns: repeat(3, 1fr); }
}

.ev-image-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  background: var(--nero);
}
.ev-image-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.ev-image-card:hover .ev-image-card__media {
  transform: scale(1.05);
}
.ev-image-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,7,4,0.88) 0%,
    rgba(10,7,4,0.4) 50%,
    rgba(10,7,4,0.15) 100%);
}
.ev-image-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px 24px;
  z-index: 2;
}
.ev-image-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.ev-image-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}
.ev-image-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ev-image-card__cat {
  display: inline-flex;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 0;
  background: rgba(203,111,83,0.85);
  color: #fff;
}

/* Featured split layout on desktop */
@media (min-width: 768px) {
  .events-page__featured {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .events-page__featured-item:first-child {
    grid-row: 1 / -1;
    aspect-ratio: 3 / 4;
    max-height: none;
  }
}
