/* ==========================================================================
   Città della Salute Spoleto — foglio di stile unico
   CSS estratto dai mockup approvati (design/proposta-3b-trittico.html,
   design/centro-medico.html) e riorganizzato. Non modificare proporzioni,
   colori o transizioni senza confrontare con i mockup.
   ========================================================================== */

/* ── Font (Inter variable, self-hosted) ─────────────────────────────────── */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/InterVariable-Italic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── Reset e variabili ──────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #205091;
  --navy-deep: #0D1E37;
  --teal: #40BCC6;
  --cipria: #E6C9C4;
  --ink: #14213D;
  --muted: #5B667A;
  --line: rgba(20, 33, 61, .12);
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #fff;
  background: var(--navy-deep);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--teal);
}
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ── Segnaposto foto (dal mockup) e foto reali ──────────────────────────── */
.ph { background: linear-gradient(135deg, #1b3f74, #205091 45%, #2f7fa8 100%); position: relative; overflow: hidden; }
.ph.spa { background: linear-gradient(135deg, #c9a49e, #E6C9C4 55%, #f1ddd8); }
.ph.farm { background: linear-gradient(135deg, #1b8b94, #40BCC6 60%, #7fd6dc); }
.ph.clinic { background: linear-gradient(135deg, #0D1E37, #205091 60%, #3b6fb8); }
.ph.stone { background: linear-gradient(160deg, #b8b2a6, #d9d4c9 55%, #eee9df); }
picture.media { display: block; overflow: hidden; }
picture.media img { width: 100%; height: 100%; object-fit: cover; }

/* ── Animazioni di entrata ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Nav ────────────────────────────────────────────────────────────────── */
nav.principale {
  position: fixed; inset: 0 0 auto 0; z-index: 10;
  background: linear-gradient(rgba(13, 30, 55, .55), transparent);
  text-shadow: 0 1px 8px rgba(13, 30, 55, .5);
}
nav.principale .wrap { display: flex; align-items: center; height: 72px; }
.brand { font-weight: 700; letter-spacing: .12em; font-size: .8rem; display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 38px; width: auto; display: block; filter: drop-shadow(0 1px 8px rgba(13, 30, 55, .5)); }
nav.principale ul { display: flex; gap: 28px; list-style: none; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
nav.principale ul a { opacity: .75; }
nav.principale ul a:hover { opacity: 1; }
.nav-destra { display: flex; align-items: center; gap: 28px; margin-left: auto; }
/* Gruppo mobile: WhatsApp sempre visibile + hamburger */
.nav-azioni { display: none; align-items: center; gap: 18px; margin-left: auto; }
.nav-wa { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.nav-wa svg { color: var(--teal); flex: none; }
nav.principale ul .solo-mobile { display: none; }
/* Telefono nell'header (desktop): numero = chiamata, "anche WhatsApp" = chat */
.nav-tel { font-size: .85rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap; font-variant-numeric: tabular-nums; display: inline-flex; align-items: baseline; }
.nav-tel a:hover { opacity: .85; }
.nav-tel .wa { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-left: 8px; }
.nav-tel .wa:hover { color: #fff; opacity: 1; }
/* Tra 901 e 1120px la barra è piena: gap e corpi leggermente ridotti */
@media (max-width: 1120px) and (min-width: 901px) {
  nav.principale ul { gap: 16px; font-size: .74rem; }
  .nav-destra { gap: 16px; }
  .nav-tel { font-size: .8rem; }
}

/* Hamburger: visibile solo su mobile */
.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-right: -10px;
  flex-direction: column; justify-content: center; gap: 6px; z-index: 12;
}
.burger span { display: block; height: 2px; width: 100%; background: #fff; transition: transform .3s ease, opacity .3s ease; }
body.menu-aperto .burger span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-aperto .burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── Hero trittico ──────────────────────────────────────────────────────── */
.hero { height: 100vh; position: relative; display: flex; flex-direction: column; overflow: hidden; }
.hero .title { position: absolute; z-index: 3; left: 0; right: 0; top: 0; padding: 120px 0 0; pointer-events: none; }
.hero .title .wrap { pointer-events: none; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5.2rem); font-weight: 600;
  letter-spacing: -.045em; line-height: .95;
  text-shadow: 0 2px 24px rgba(13, 30, 55, .4);
}
.hero .title p { max-width: 42ch; margin-top: 18px; font-size: 1.05rem; opacity: .85; text-shadow: 0 1px 12px rgba(13, 30, 55, .5); }
.tri { display: flex; flex: 1; height: 100%; }
.col {
  flex: 1; position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 48px 40px; color: #fff; overflow: hidden;
  transition: flex .7s cubic-bezier(.2, .8, .2, 1);
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.col:last-child { border-right: 0; }
.col .media { position: absolute; inset: 0; transition: transform 1.2s ease; }
.col:hover .media, .col:focus-visible .media { transform: scale(1.04); }
/* Velo scuro extra regolabile da CMS (campo veloIntensita) per foto troppo chiare */
.col::before { content: ""; position: absolute; inset: 0; background: rgba(13, 30, 55, var(--velo-extra, 0)); }
.col.spa::before { background: rgba(70, 35, 35, var(--velo-extra, 0)); }
.col::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 30, 55, .92) 0%, rgba(13, 30, 55, .35) 45%, rgba(13, 30, 55, .55) 100%);
  transition: opacity .5s;
}
.col.spa::after { background: linear-gradient(to top, rgba(70, 35, 35, .9) 0%, rgba(70, 35, 35, .25) 45%, rgba(70, 35, 35, .45) 100%); }
.col:hover, .col:focus-within { flex: 1.7; }
.col > * { position: relative; z-index: 1; }
.col .media { z-index: auto; }
.col .n { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; opacity: .7; display: flex; gap: 14px; align-items: center; }
.col .n::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.col h2 { font-size: clamp(1.8rem, 3.2vw, 3.2rem); font-weight: 600; letter-spacing: -.04em; line-height: .98; margin: 14px 0 10px; }
.col p { max-width: 38ch; font-size: .98rem; opacity: 0; max-height: 0; transition: all .5s .1s; line-height: 1.5; }
.col:hover p, .col:focus-within p { opacity: .88; max-height: 140px; margin-bottom: 6px; }
.col .enter {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 22px;
  padding: 13px 20px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .55);
  font-weight: 600; font-size: .9rem; width: max-content; transition: all .3s;
}
.col:hover .enter, .col:focus-within .enter { background: #fff; color: var(--navy-deep); border-color: #fff; }
.col.spa:hover .enter { color: #4a2a2a; }
.col .facts { display: flex; gap: 28px; margin-top: 22px; font-variant-numeric: tabular-nums; }
.col .facts b { display: block; font-size: 1.6rem; font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.col .facts span { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.hero .cue {
  position: absolute; right: 28px; bottom: 28px; z-index: 3;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; opacity: .6; writing-mode: vertical-rl;
}

/* ── Banda chiara: il luogo + la storia ─────────────────────────────────── */
.light { background: #F3F1EC; color: var(--ink); }
.luogo { padding: 128px 0; }
.luogo .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.luogo h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -.04em; color: var(--navy); margin: 10px 0 24px; line-height: 1.05; }
.luogo p { color: var(--muted); font-size: 1.08rem; max-width: 50ch; }
.luogo .media { aspect-ratio: 4 / 5; border-radius: 999px 999px 8px 8px; overflow: hidden; position: relative; }
.storia { padding: 0 0 128px; }
.storia h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -.04em; color: var(--navy); margin: 10px 0 0; }
/* Testata della timeline: titolo a sinistra, invito a scorrere e frecce a destra */
.storia-testata { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.strip-nav { display: flex; align-items: center; gap: 16px; padding-bottom: 8px; }
.strip-hint { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--muted); white-space: nowrap; }
.strip-hint .freccia { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .strip-hint .freccia { animation: scorri-freccia 1.6s ease-in-out infinite; }
  @keyframes scorri-freccia { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
}
.strip-btn {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line);
  background: none; color: var(--navy); font-size: 1rem; cursor: pointer;
  display: grid; place-items: center; transition: background .3s, color .3s, opacity .3s;
}
.strip-btn:hover { background: var(--navy); color: #fff; }
.strip-btn[disabled] { opacity: .3; cursor: default; }
.strip-btn[disabled]:hover { background: none; color: var(--navy); }
/* Sfumature ai bordi: dicono che la timeline continua oltre il margine */
.strip-box { position: relative; }
.strip-box::before, .strip-box::after {
  content: ""; position: absolute; top: 0; bottom: 16px; width: 72px; z-index: 1;
  pointer-events: none; opacity: 0; transition: opacity .4s;
}
.strip-box::before { left: 0; background: linear-gradient(to right, #F3F1EC, rgba(243, 241, 236, 0)); }
.strip-box::after { right: 0; background: linear-gradient(to left, #F3F1EC, rgba(243, 241, 236, 0)); }
.strip-box.altro-dopo::after { opacity: 1; }
.strip-box.altro-prima::before { opacity: 1; }
.strip { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: thin; }
.strip article { flex: 0 0 min(420px, 80vw); scroll-snap-align: start; }
.strip .media { aspect-ratio: 16 / 10; border-radius: 8px; margin-bottom: 18px; overflow: hidden; position: relative; }
.strip .y { font-size: 3rem; font-weight: 500; letter-spacing: -.05em; color: var(--navy); line-height: 1; }
.strip h4 { font-weight: 600; margin: 10px 0 6px; }
.strip p { color: var(--muted); font-size: .95rem; }

/* ── Rassegna stampa ────────────────────────────────────────────────────── */
.stampa { padding: 112px 0 128px; }
.stampa h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -.04em; margin: 10px 0 40px; }
.press { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.press a { padding: 28px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 8px; transition: background .3s; }
.press a:hover { background: rgba(255, 255, 255, .06); }
.press .logo { font-weight: 800; font-size: 1rem; }
.press .logo.serif { font-family: Georgia, serif; }
.press time { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; margin: 6px 0 18px; }
.press h4 { font-weight: 500; font-size: 1.15rem; line-height: 1.35; }

/* ── Dove siamo ─────────────────────────────────────────────────────────── */
.dove { padding: 112px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.dove .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.dove h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -.04em; margin: 10px 0 28px; }
.dl { display: grid; grid-template-columns: 110px 1fr; gap: 12px 20px; font-size: .95rem; }
.dl dt { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; opacity: .55; padding-top: 4px; }
.dl .wa-inline { color: var(--teal); font-weight: 600; }
.dl .wa-inline:hover { text-decoration: underline; text-underline-offset: 3px; }
.redirect { margin-top: 40px; }
.redirect a { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .15); }
.redirect a:last-child { border-bottom: 1px solid rgba(255, 255, 255, .15); }
.redirect span { color: var(--teal); font-weight: 600; white-space: nowrap; }
.map {
  border: 1px dashed rgba(255, 255, 255, .3); border-radius: 8px; min-height: 320px;
  display: grid; place-items: center; text-align: center; padding: 40px; opacity: .85; font-size: .9rem;
}
.map button {
  margin-top: 16px; background: var(--teal); border: 0; color: var(--navy-deep);
  font-weight: 600; padding: 10px 18px; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: inherit;
}
.map.caricata { border: 0; padding: 0; opacity: 1; display: block; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; border-radius: 8px; display: block; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer { padding: 28px 0; font-size: .75rem; opacity: .55; border-top: 1px solid rgba(255, 255, 255, .12); }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { text-decoration: underline; text-underline-offset: 2px; }
footer button {
  background: none; border: 0; color: inherit; font: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px; padding: 0;
}

/* ── Pagina Centro Medico ("apre in autunno") ───────────────────────────── */
.soon { min-height: 100vh; position: relative; display: grid; align-items: center; overflow: hidden; }
.soon .media { position: absolute; inset: 0; }
.soon::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13, 30, 55, .92) 35%, rgba(13, 30, 55, .4)); }
.soon .wrap { position: relative; z-index: 1; padding: 140px 0 80px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: end; }
.soon .back { display: inline-flex; gap: 10px; align-items: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; opacity: .75; margin-bottom: 40px; }
.soon .back:hover { opacity: 1; }
.soon h1 { font-size: clamp(2.6rem, 6.5vw, 5.8rem); font-weight: 600; letter-spacing: -.045em; line-height: .95; }
.soon h1 em { font-style: normal; color: var(--teal); }
.soon p.lead { max-width: 46ch; margin-top: 24px; font-size: 1.12rem; opacity: .85; }
.soon .facts { display: flex; gap: 40px; margin-top: 40px; font-variant-numeric: tabular-nums; }
.soon .facts b { display: block; font-size: 2.6rem; font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.soon .facts span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; opacity: .65; }
.card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .15); border-radius: 10px; padding: 32px; backdrop-filter: blur(8px); }
.card h2 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 10px; }
.card p { font-size: .95rem; opacity: .8; }
.card ul { list-style: none; margin: 20px 0 0; display: grid; gap: 10px; }
.card li { display: flex; gap: 12px; align-items: start; font-size: .95rem; }
.card li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 8px; flex: none; }
.card .cta { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; padding: 14px 22px; border-radius: 999px; background: #fff; color: var(--navy-deep); font-weight: 600; }

/* ── Pagine di testo (privacy) e 404 ────────────────────────────────────── */
.pagina-testo { padding: 160px 0 112px; }
.pagina-testo .wrap { max-width: 760px; }
.pagina-testo h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; letter-spacing: -.04em; line-height: 1.05; margin: 12px 0 32px; }
.pagina-testo h2 { font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em; margin: 40px 0 12px; }
.pagina-testo p, .pagina-testo li { opacity: .85; font-size: .98rem; }
.pagina-testo ul { padding-left: 20px; margin: 12px 0; }
.pagina-testo .avviso { margin-top: 48px; padding: 20px 24px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 8px; font-size: .85rem; opacity: .7; }
.errore { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px 24px; }
.errore .codice { font-size: clamp(5rem, 18vw, 9rem); font-weight: 600; letter-spacing: -.05em; line-height: 1; color: var(--teal); }
.errore h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; letter-spacing: -.02em; margin: 16px 0 10px; }
.errore p { opacity: .75; max-width: 40ch; margin-inline: auto; }
.errore a { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding: 13px 22px; border-radius: 999px; background: #fff; color: var(--navy-deep); font-weight: 600; }

/* ── Banner cookie ──────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; z-index: 20; left: 16px; right: 16px; bottom: 16px;
  margin-inline: auto; max-width: 680px;
  background: #10253f; border: 1px solid rgba(255, 255, 255, .18); border-radius: 12px;
  padding: 20px 24px; font-size: .85rem; box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}
.cookie-banner p { opacity: .85; }
.cookie-banner a { text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .azioni { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.cookie-banner button {
  font-family: inherit; font-size: .82rem; font-weight: 600; cursor: pointer;
  padding: 10px 18px; border-radius: 999px; transition: opacity .2s;
}
.cookie-banner button:hover { opacity: .85; }
.cookie-banner .accetta { background: #fff; color: var(--navy-deep); border: 1px solid #fff; }
.cookie-banner .necessari { background: none; color: #fff; border: 1px solid rgba(255, 255, 255, .45); }
.cookie-banner[hidden] { display: none; }

/* ── Mobile (≤900px) ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav.principale ul { display: none; }
  .nav-tel { display: none; }
  .nav-destra { margin-left: 0; }
  .nav-azioni { display: flex; }
  .brand img { height: 32px; }
  .burger { display: flex; }
  /* Menu a tutto schermo */
  body.menu-aperto nav.principale { background: none; }
  body.menu-aperto nav.principale ul {
    display: flex; position: fixed; inset: 0; z-index: 11;
    background: var(--navy-deep); flex-direction: column;
    justify-content: center; padding: 0 32px; gap: 30px;
    font-size: 1.15rem; letter-spacing: .1em;
  }
  body.menu-aperto nav.principale ul a { opacity: .9; }
  /* Nel menu a tutto schermo il telefono chiude la lista, separato da una riga:
     il numero chiama, "anche WhatsApp" apre la chat */
  body.menu-aperto nav.principale ul .solo-mobile { display: block; margin-top: 6px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, .15); }
  body.menu-aperto nav.principale ul .solo-mobile a { font-variant-numeric: tabular-nums; }
  body.menu-aperto nav.principale ul .solo-mobile .wa { display: block; font-size: .68rem; letter-spacing: .16em; color: var(--teal); margin-top: 8px; }
  body.menu-aperto { overflow: hidden; }

  .hero { height: 100svh; min-height: 640px; }
  .hero .cue { display: none; }
  .hero .title { padding: 96px 0 0; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero .title p { font-size: .9rem; max-width: 30ch; }
  .tri { flex-direction: row; }
  .col { padding: 20px 14px; flex: 1; transition: flex .55s cubic-bezier(.2, .8, .2, 1); }
  .col .n { display: none; }
  .col h2 { font-size: 1.15rem; letter-spacing: -.02em; margin: 0 0 8px; }
  .col:not(.open) h2 { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 1rem; white-space: nowrap; margin: 0 0 14px; align-self: flex-start; }
  .col:not(.open) h2 br { display: none; }
  .col:not(.open) .enter { padding: 0; margin-top: 0; }
  .col.open .enter { font-size: .78rem; padding: 10px 13px; white-space: nowrap; }
  .col.open .facts { display: none; }
  .col .facts { display: none; }
  .col p { font-size: .85rem; max-height: 0; opacity: 0; margin: 0; }
  .col .enter { margin-top: 8px; padding: 10px 14px; font-size: .8rem; gap: 8px; border-color: transparent; padding-left: 0; }
  .col .enter span:last-child { display: inline; }
  .col .enter .lbl { display: none; }
  .col.open { flex: 2.6; }
  .col.open h2 { font-size: 1.5rem; }
  .col.open p { max-height: 200px; opacity: .88; margin-bottom: 6px; }
  .col.open .enter { background: #fff; color: var(--navy-deep); border-color: #fff; padding: 11px 16px; }
  .col.open .enter .lbl { display: inline; }
  .col.spa.open .enter { color: #4a2a2a; }
  .col:hover { flex: 1; }
  .col.open:hover { flex: 2.6; }
  .col:hover p { opacity: 0; max-height: 0; }
  .col.open:hover p { opacity: .88; max-height: 200px; }
  .col:hover .enter { background: transparent; color: #fff; border-color: transparent; }
  .col.open:hover .enter { background: #fff; color: var(--navy-deep); border-color: #fff; }

  .strip-btn { display: none; }
  .storia-testata { margin-bottom: 32px; }
  .strip-nav { padding-bottom: 6px; }
  .strip-box::before, .strip-box::after { width: 40px; }

  .luogo .wrap, .dove .wrap { grid-template-columns: 1fr; gap: 40px; }
  .luogo .media { aspect-ratio: 4 / 3; border-radius: 200px 200px 8px 8px; }
  .press { grid-template-columns: 1fr; }
  .luogo, .stampa, .dove { padding: 80px 0; }
  .soon .wrap { grid-template-columns: 1fr; padding: 110px 0 60px; }
  .soon .facts { gap: 24px; }
  .soon .facts b { font-size: 2rem; }
}
