/* =============================================================
   Pelle in Salute â€” Open Week End 2026
   Palette istituzionale Â· Ospedale San Martino â€” Navy + Oro
   ============================================================= */

:root {
  /* Palette istituzionale San Martino */
  --cream:           #f5f7fb;   /* bg principale: bianco con leggera tinta navy */
  --cream-2:         #eff1f7;   /* bg sezioni: pale blue-gray istituzionale    */
  --sage:            #1b367d;   /* navy primario San Martino                   */
  --sage-deep:       #142858;   /* navy scuro                                  */
  --sage-soft:       #dce3f2;   /* tinta navy leggera                          */
  --terracotta:      #dc911b;   /* Arancione logo (accento)                    */
  --terracotta-deep: #b87a17;   /* Arancione scuro                             */
  --ink:             #1a2644;   /* testo: navy molto scuro                     */
  --ink-soft:        #5a6078;   /* testo attenuato: grigio-blu                 */

  /* Tipografia — Urbanist (unico font per tutto il sito) */
  --font-display: "Urbanist", "Segoe UI", -apple-system, sans-serif;
  --font-body:    "Urbanist", "Segoe UI", -apple-system, sans-serif;
  --font-mono:    "Urbanist", "Segoe UI", -apple-system, sans-serif;

  /* Layout */
  --max-w: 1100px;

  /* Geometrie */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-pill: 999px;


}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  /* Grana sottile: noise SVG inline, ~2.5% opacity (piÃ¹ neutro con palette navy) */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.025'/></svg>");
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Anti-overflow nukes */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Selection */
::selection { background: var(--terracotta); color: var(--cream); }

/* Focus globale */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Fleuron decorativo */
.fleuron {
  display: inline-block;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-feature-settings: "ss01" on;
  font-style: normal;
  font-weight: 400;
  vertical-align: -0.05em;
  opacity: 0.85;
}

/* Sage sprig (SVG) - default styling */
.sage-sprig {
  color: var(--sage);
  display: block;
  pointer-events: none;
}

/* Eyebrow generico (lettering caps) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ============================================================= */
/* TOP REGION â€” topbar, header, hero                               */
/* ============================================================= */

/* ===== TOP BAR ===== */
.topbar {
  background: var(--sage);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.topbar a {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}
.topbar a:hover { border-bottom-color: var(--cream); }
.topbar .fleuron {
  color: var(--cream);
  opacity: 0.7;
  margin-right: 0.25rem;
}
@media (max-width: 480px) {
  .topbar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
  }
  .topbar-inner span {
    display: block;
    line-height: 1.4;
  }
}

/* ===== HEADER ===== */
.header {
  background: transparent;
  color: var(--sage-deep);
  position: relative;
  border-bottom: 1px solid var(--sage-soft);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.25rem 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.logo-container {
  flex: 1;
}
.main-logo {
  display: block;
  height: 85px; /* Altezza istituzionale */
  width: auto;
  max-width: 100%;
}
@media (max-width: 480px) {
  .header-inner {
    padding: 1.25rem 1.1rem;
  }
  .main-logo {
    height: 65px; /* Un po' più piccolo su mobile */
  }
}

/* ===== BANNER ===== */
.hero-banner {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -20px rgba(27, 54, 125, 0.15);
}
@media (max-width: 480px) {
  .hero-banner {
    margin-top: 1rem;
    padding: 0 1.1rem;
  }
  .banner-img {
    border-radius: var(--radius-sm);
  }
}

/* ===== HERO ===== */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  position: relative;
}
.hero .eyebrow { margin-bottom: 1.1rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4.8vw, 2.85rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--sage-deep);
  margin-bottom: 1.4rem;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
}
@media (max-width: 760px) {
  .hero h1 {
    white-space: normal;
    overflow-wrap: break-word;
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
  font-size: 1.25em;
}
.hero-lead {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 500;
}
.hero-lead strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-body {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.hero-text {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.hero-text strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-left: 0.25rem;
}
.hero-list li {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}
.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-list li strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-list--dates {
  gap: 0.9rem;
}
.hero-date-meta {
  display: block;
  font-size: 0.85rem;
  color: #c43c2b;
  font-weight: 600;
  line-height: 1.45;
  margin-top: 0.15rem;
  letter-spacing: 0.01em;
}
.hero-date-hours {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.45;
  margin-top: 0.1rem;
}
.hero-sublist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.4rem;
  padding-left: 0;
}
.hero-sublist li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}
.hero-sublist li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta);
  opacity: 0.7;
  font-weight: 500;
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
}
.hero-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-top: 0.4rem;
  margin-bottom: -0.3rem;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.hero-text a,
.hero-lead a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 160ms ease;
  white-space: nowrap;
}
.hero-text a:hover,
.hero-lead a:hover {
  color: var(--terracotta-deep);
}
.hero-closing {
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.65;
  border-left: 3px solid var(--terracotta);
  padding-left: 1rem;
  margin-top: 0.3rem;
}

/* Sage sprig in hero â€” decoro in basso a destra */
.sage-sprig--hero {
  position: absolute;
  right: 1.5rem;
  bottom: -1rem;
  width: 90px;
  height: auto;
  color: var(--sage-soft);
  opacity: 0.85;
  transform: rotate(8deg);
}
@media (max-width: 720px) {
  .sage-sprig--hero {
    width: 60px;
    right: 1rem;
    bottom: 0.5rem;
    opacity: 0.6;
  }
}
@media (max-width: 400px) {
  .sage-sprig--hero {
    display: none; /* Hide decoration on very small screens to avoid overflow issues */
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1.1rem 2rem;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.4rem);
    margin-bottom: 1rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .hero-body {
    gap: 0.7rem;
  }
  .hero-list li {
    font-size: 0.95rem;
    padding-left: 1.2rem;
  }
  .hero-list li::before {
    width: 7px;
    height: 7px;
  }
  .hero-sublist li {
    font-size: 0.88rem;
  }
  .hero-date-meta {
    font-size: 0.8rem;
  }
  .hero-date-hours {
    font-size: 0.85rem;
  }
  .hero-section-title {
    font-size: 1.05rem;
  }
  .sage-sprig--hero {
    width: 45px;
    opacity: 0.4;
  }
}

/* ============================================================= */
/* MIDDLE REGION â€” key message, events heading                     */
/* ============================================================= */

/* ===== KEY MESSAGE (citazione) ===== */
.key-message {
  max-width: var(--max-w);
  margin: 1rem auto 0;
  padding: 2rem 2rem 2rem 2.5rem;
  background: var(--sage-soft);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.key-message-fleuron {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  font-size: 1.1rem;
  color: var(--terracotta);
  opacity: 0.85;
}
.key-message::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.18;
  position: absolute;
  top: -1rem;
  right: 1rem;
  pointer-events: none;
}
.key-message p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--sage-deep);
  line-height: 1.5;
  position: relative;
  max-width: 800px;
}

@media (max-width: 480px) {
  .key-message {
    margin: 0.75rem 1.1rem 0;
    padding: 1.5rem 1.25rem 1.5rem 1.75rem;
  }
  .key-message::before {
    font-size: 4rem;
    opacity: 0.14;
    top: -0.5rem;
    right: 0.5rem;
  }
}

/* ===== EVENTS â€” heading + divider (le card sono nel Task 6) ===== */
.events-section {
  background: var(--cream-2);
  margin-top: 3.5rem;
  padding: 4rem 1.5rem 4.5rem;
  position: relative;
}
.events-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.events-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.events-heading .eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.events-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.events-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}
.booking-note {
  margin-top: 2rem;
  padding: 1.15rem 1.4rem;
  background: var(--cream-2);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.booking-note strong {
  color: var(--sage-deep);
  font-weight: 600;
}

/* Divider con sage sprig centrato */
.events-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.75rem 0 2.25rem;
}
.sage-sprig--divider {
  width: 38px;
  height: auto;
  color: var(--sage);
  opacity: 0.7;
}
@media (max-width: 480px) {
  .events-section {
    margin-top: 2.25rem;
    padding: 2.5rem 1.1rem 2.75rem;
  }
  .events-heading {
    margin-bottom: 1rem;
  }
  .events-divider {
    margin: 1.25rem 0 1.5rem;
  }
  .sage-sprig--divider {
    width: 30px;
  }
  .booking-note {
    margin-top: 1.5rem;
    padding: 0.95rem 1.1rem;
    font-size: 0.95rem;
  }
}

/* ============================================================= */
/* EVENT CARDS                                                     */
/* ============================================================= */

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) {
  .events-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.event-card {
  background: #FFFFFF;
  border: 1px solid var(--sage-soft);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.6rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 220ms ease,
              box-shadow 220ms ease;
}
.event-card:hover,
.event-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--sage);
  box-shadow: 0 14px 30px -16px rgba(64, 77, 64, 0.22);
}

/* Nome sede/istituzione in cima alla card */
.event-index {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sage-deep);
  display: block;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--sage-soft);
  line-height: 1.3;
}

.event-header {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 0;
  border: none;
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 65px;
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.event-day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 0.95;
  color: var(--sage-deep);
  display: block;
}
.event-month {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}
.event-venue-inline {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1.35;
}
.event-info { flex: 1; min-width: 0; }
.event-venue {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.event-detail {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-bottom: 0.45rem;
}
.event-hours {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

/* Seconda sede nella stessa card (Weekend 1: Galliera + COL) */
.event-venue--secondary {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: -0.1rem;
  margin-bottom: 0.4rem;
}

/* Due sedi in contemporanea */
.event-venues-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.event-venues {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}
.event-venues .event-venue {
  margin-bottom: 0;
}
.event-venues-sep {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  padding-left: 0.1rem;
}

/* Card TBD (LILT - calendario da definire) */
.event-card--tbd {
  border-style: dashed;
  opacity: 0.82;
}
.event-card--tbd:hover,
.event-card--tbd:focus-within {
  opacity: 1;
}
.event-day--tbd {
  font-size: 1.5rem; /* leggermente piÃ¹ piccolo per "~20" */
  color: var(--ink-soft);
}
.event-day--range {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--sage-deep);
  white-space: nowrap;
}
.event-address {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-top: 0.4rem;
}
.event-booking--tbd,
.event-booking--info {
  display: flex;
  align-items: center;
}
.event-tbd-note,
.event-info-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
}
.event-info-note a {
  color: var(--terracotta);
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 160ms ease;
  white-space: nowrap;
}
.event-info-note a:hover {
  color: var(--terracotta-deep);
}
@media (max-width: 480px) {
  .events-grid {
    gap: 1.25rem;
  }
  .event-card {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }
  .event-index {
    font-size: 0.95rem;
    padding-bottom: 0.75rem;
  }
  .event-header {
    gap: 1rem;
  }
  .event-date {
    min-width: 60px;
  }
  .event-day {
    font-size: 2.2rem;
  }
  .event-month {
    font-size: 0.65rem;
  }
  .event-detail {
    font-size: 0.88rem;
  }
  .event-hours {
    font-size: 0.82rem;
  }
  .event-tbd-note,
  .event-info-note {
    font-size: 0.85rem;
  }
  .event-day--range {
    font-size: 0.85rem;
  }
  .event-address {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .event-header {
    flex-direction: column;
    gap: 0.8rem;
  }
  .event-date {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    min-width: 100%;
  }
  .event-day {
    font-size: 1.8rem;
  }
  .event-month {
    margin-top: 0;
  }
}

/* Booking section della card â€” pinned in basso cosÃ¬ i countdown si allineano */
.event-booking {
  padding: 0;
  margin-top: auto;
}

/* COUNTDOWN: blocchi leggeri, niente sfondi pieni */
.event-countdown {}
.ecd-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.ecd-grid {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}
.ecd-block {
  flex: 1;
  background: transparent;
  border: 1px solid var(--sage-soft);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.4rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}
.ecd-val {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.ecd-unit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
}
.ecd-sep {
  align-self: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--sage-soft);
  line-height: 1;
}
@media (max-width: 480px) {
  .ecd-grid { gap: 0.25rem; }
  .ecd-label {
    font-size: 0.65rem;
    margin-bottom: 0.55rem;
  }
  .ecd-block { padding: 0.5rem 0.25rem 0.45rem; }
  .ecd-val   { font-size: 1.3rem; }
  .ecd-unit  { font-size: 0.55rem; }
  .ecd-sep   { font-size: 1rem; }
}

@media (max-width: 360px) {
  .ecd-grid { gap: 0.15rem; }
  .ecd-val { font-size: 1.15rem; }
  .ecd-unit { font-size: 0.5rem; }
}

/* BOTTONE PRENOTA â€” pill terracotta */
.event-open { display: block; }
.booking-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1.75rem;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  box-shadow: 0 8px 22px -10px rgba(195, 111, 78, 0.55);
  transition: background-color 180ms ease,
              transform 180ms ease,
              box-shadow 180ms ease;
}
.booking-btn:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(168, 90, 61, 0.65);
}
.booking-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px -10px rgba(168, 90, 61, 0.55);
}

/* Bottone passivo: visite non ancora prenotabili */
.booking-btn--soon {
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-weight: 500;
  cursor: default;
  box-shadow: none;
  border-color: transparent;
  pointer-events: none;
  user-select: none;
}
.booking-btn--soon:hover,
.booking-btn--soon:focus,
.booking-btn--soon:active {
  background: var(--sage-soft);
  color: var(--sage-deep);
  transform: none;
  box-shadow: none;
}
@media (max-width: 480px) {
  .booking-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.92rem;
  }
}

/* ============================================================= */
/* BOTTOM REGION â€” info strip, support, footer                     */
/* ============================================================= */

/* ===== INFO STRIP ===== */
.info-strip {
  max-width: var(--max-w);
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--sage-soft);
  border-bottom: 1px solid var(--sage-soft);
}
.info-cell {
  padding: 1.75rem 1.4rem;
  border-right: 1px solid var(--sage-soft);
}
.info-cell:last-child { border-right: none; }
@media (max-width: 720px) {
  .info-cell { border-right: none; border-bottom: 1px solid var(--sage-soft); }
  .info-cell:last-child { border-bottom: none; }
}
.info-cell-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.info-cell-value {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1.3;
}
.info-cell-value small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  line-height: 1.45;
}
@media (max-width: 480px) {
  .info-strip {
    margin-top: 2.25rem;
    padding: 0 1.1rem;
  }
  .info-cell {
    padding: 1.25rem 1rem;
  }
  .info-cell-label {
    font-size: 0.68rem;
  }
  .info-cell-value {
    font-size: 1.05rem;
  }
  .info-cell-value small {
    font-size: 0.82rem;
  }
}

/* ===== SUPPORT ===== */
.support {
  max-width: var(--max-w);
  margin: 3.5rem auto 0;
  padding: 2.75rem 2.25rem;
  background: var(--sage-soft);
  border-radius: var(--radius-md);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (max-width: 720px) {
  .support-grid { gap: 1.75rem; }
}
.support h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 0.7rem;
}
.support p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.65;
}
.support a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  transition: color 160ms ease;
}
.support a:hover { color: var(--terracotta-deep); }
@media (max-width: 480px) {
  .support {
    margin: 2.5rem 1.1rem 0;
    padding: 1.75rem 1.4rem;
  }
  .support-grid {
    gap: 1.25rem;
  }
  .support h3 {
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
  }
  .support p {
    font-size: 0.9rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 4.5rem;
  background: var(--sage-deep);
  color: rgba(244, 239, 230, 0.78);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
}

/* Riga superiore â€” 3 colonne */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
@media (max-width: 880px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Colonna generica */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.footer strong {
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-address {
  color: rgba(244, 239, 230, 0.75);
  line-height: 1.55;
}
.footer-meta {
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.55;
}
.footer-meta-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 230, 0.55);
  margin-bottom: 0.2rem;
}
.footer a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 239, 230, 0.3);
  transition: border-color 180ms ease, color 180ms ease;
}
.footer a:hover {
  color: var(--cream);
  border-bottom-color: var(--terracotta);
}

/* Lista link legali */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(245, 247, 251, 0.85); /* Leggermente attenuato di base */
  text-decoration: none;
  border-bottom: none;
  position: relative;
  padding-left: 1.1rem;
  transition: color 180ms ease, transform 180ms ease;
  display: inline-block;
}
.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  opacity: 0.9;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  top: -1px;
}
.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}
.footer-links a:hover::before {
  opacity: 1;
}

/* DPO column */
.footer-dpo .footer-meta {
  margin-bottom: 0.5rem;
}
.footer-note {
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.62);
  line-height: 1.55;
}
.footer-note a {
  font-weight: 500;
  border-bottom: 1px solid rgba(244, 239, 230, 0.3);
}

/* Riga inferiore â€” dati legali, credit, copyright */
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.55);
  letter-spacing: 0.02em;
  text-align: center;
}
.footer-legal,
.footer-credit {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.6);
  line-height: 1.55;
}
.footer-credit {
  color: rgba(244, 239, 230, 0.5);
  font-style: italic;
  font-size: 0.74rem;
}
.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}
.footer-fleuron {
  color: var(--terracotta);
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .footer {
    margin-top: 3rem;
  }
  .footer-inner {
    padding: 2rem 1.1rem 1.25rem;
  }
  .footer-top {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer strong {
    font-size: 1rem;
  }
  .footer-meta {
    font-size: 0.78rem;
  }
  .footer-note {
    font-size: 0.75rem;
  }
  .footer-links {
    gap: 0.45rem;
  }
  .footer-links a {
    font-size: 0.83rem;
  }
  .footer-bottom {
    padding-top: 1.25rem;
    gap: 0.5rem;
    font-size: 0.72rem;
  }
}

/* ============================================================= */
/* MOTION â€” cascade entrata + accessibility                        */
/* ============================================================= */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Applica fade-up scaglionato ai blocchi principali al caricamento */
.topbar,
.header,
.hero .eyebrow,
.hero h1,
.hero-lead,
.sage-sprig--hero,
.key-message,
.events-heading,
.events-divider,
.event-card,
.info-strip,
.support,
.footer {
  opacity: 0;
  animation: fade-up 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.topbar           { animation-delay:    0ms; }
.header           { animation-delay:   80ms; }
.hero .eyebrow    { animation-delay:  160ms; }
.hero h1          { animation-delay:  220ms; }
.hero-lead        { animation-delay:  300ms; }
.sage-sprig--hero { animation-delay:  360ms; animation-duration: 700ms; }
.key-message      { animation-delay:  420ms; }
.events-heading   { animation-delay:  500ms; }
.events-divider   { animation-delay:  560ms; }
.event-card:nth-of-type(1) { animation-delay:  620ms; }
.event-card:nth-of-type(2) { animation-delay:  700ms; }
.event-card:nth-of-type(3) { animation-delay:  780ms; }
.info-strip       { animation-delay:  860ms; }
.support          { animation-delay:  940ms; }
.footer           { animation-delay: 1020ms; }

/* Reduced motion â€” niente animazioni di entrata nÃ© hover transform */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay:    0ms     !important;
    transition-duration: 0.01ms !important;
  }
  .topbar, .header, .hero .eyebrow, .hero h1, .hero-lead,
  .sage-sprig--hero, .key-message, .events-heading,
  .events-divider, .event-card, .info-strip, .support, .footer {
    opacity: 1 !important;
    transform: none !important;
  }
  .event-card:hover,
  .event-card:focus-within {
    transform: none;
  }
  .booking-btn:hover {
    transform: none;
  }
}

/* ============================================================= */
/* PRINT â€” minimal, sufficient                                     */
/* ============================================================= */
@media print {
  body {
    background: white;
    color: black;
  }
  .topbar, .footer, .support, .sage-sprig, .events-divider { display: none; }
  .event-card { break-inside: avoid; border: 1px solid #999; }
  .booking-btn { display: none; }
}
