/* De Falco Salvatore — Bespoke Studio
   Notturno: blu notte, bianco-neon e ottone (dalle mantelle oro della bottega).
   Display: Bebas Neue, da insegna. */

:root {
  --notte: #0e1a2b;
  --notte-2: #081220;
  --neon: #eaf6ff;
  --neon-glow: #8fd4ff;
  --ottone: #c9a227;
  --ardesia: #93a5b8;
  --chiaro: #f4f1ea;
  --display: "Bebas Neue", Impact, sans-serif;
  --sans: "Public Sans", system-ui, -apple-system, sans-serif;
  --mx: clamp(20px, 6vw, 92px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--notte); color: var(--neon);
  font-family: var(--sans); font-size: 17px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--neon); color: var(--notte); padding: 12px 18px; }
.skip:focus { left: 12px; top: 12px; }

/* ---- il NEON: gesto-firma ---- */
.neon {
  font-family: var(--display); display: block; line-height: .86;
  font-size: clamp(52px, 12vw, 152px); letter-spacing: .03em; color: var(--neon);
  text-shadow: 0 0 4px #fff, 0 0 12px var(--neon-glow), 0 0 32px rgba(90,190,255,.7), 0 0 70px rgba(60,150,255,.45);
}
.neon em { display: block; font-style: normal; font-size: .78em; letter-spacing: .22em; }
.neon.spento { color: #26384d; text-shadow: none; }

/* intro */
.intro { position: fixed; inset: 0; z-index: 90; background: var(--notte-2); display: grid; place-content: center; text-align: center; transition: opacity .55s ease, visibility .55s ease; }
.intro.hide { opacity: 0; visibility: hidden; }
.intro__n {
  font-family: var(--display); font-size: clamp(38px, 9vw, 92px); line-height: .9; color: var(--neon);
  text-shadow: 0 0 4px #fff, 0 0 14px var(--neon-glow), 0 0 40px rgba(60,150,255,.5);
  animation: accendi 1.4s steps(1) forwards;
}
.intro__n em { display: block; font-style: normal; font-size: .72em; letter-spacing: .2em; }
@keyframes accendi {
  0%, 12% { opacity: .12; } 14% { opacity: 1; } 20% { opacity: .2; } 26% { opacity: 1; }
  32% { opacity: .35; } 40%, 100% { opacity: 1; }
}
html.reduced-motion .intro, html:not(.js) .intro { display: none; }

/* header */
.head { position: sticky; top: 0; z-index: 60; display: flex; align-items: center; gap: 22px; padding: 13px var(--mx); background: rgba(14,26,43,.97); border-bottom: 1px solid rgba(234,246,255,.14); }
.head__logo { font-family: var(--display); font-size: 25px; line-height: 1; letter-spacing: .04em; text-decoration: none; display: flex; flex-direction: column; white-space: nowrap; }
.head__logo em { font-family: var(--sans); font-style: normal; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ardesia); margin-top: 5px; }
.head__nav { display: flex; gap: 24px; margin-left: auto; }
.head__nav a { font-size: 13px; font-weight: 600; text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.head__nav a:hover { border-bottom-color: var(--ottone); }
.head__side { display: flex; align-items: center; gap: 14px; }
.lang { background: none; border: 0; cursor: pointer; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--neon); }
.lang span { color: var(--ardesia); margin: 0 2px; }
.head__tel { font-size: 13px; font-weight: 700; text-decoration: none; border: 1px solid var(--ottone); color: var(--ottone); padding: 9px 15px; white-space: nowrap; }
.head__tel:hover { background: var(--ottone); color: var(--notte); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--neon); margin: 5px 0; }

/* hero full-bleed */
.hero { position: relative; min-height: clamp(520px, 82vh, 760px); display: flex; align-items: center; padding: clamp(40px, 7vw, 90px) var(--mx) clamp(90px, 12vw, 150px); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; filter: saturate(.75); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,18,32,.55) 0%, rgba(8,18,32,.75) 55%, var(--notte) 100%); }
.hero__in { position: relative; z-index: 2; max-width: 900px; }
.hero__eyebrow { font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--ardesia); margin: 0 0 22px; }
.hero__title { margin: 0 0 24px; }
.hero__claim { font-size: clamp(16px, 1.9vw, 21px); max-width: 42ch; color: #cddced; margin: 0; }

/* card sovrapposta (reference: Rudy's) */
.card {
  position: absolute; left: var(--mx); right: var(--mx); bottom: clamp(-60px, -6vw, -40px); z-index: 3;
  background: var(--chiaro); color: var(--notte); display: grid;
  grid-template-columns: repeat(3, 1fr) auto; gap: clamp(14px, 2.6vw, 34px);
  align-items: center; padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3vw, 36px);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.card__k { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: #6b7c8d; margin: 0 0 4px; }
.card__v { font-family: var(--display); font-size: clamp(19px, 2.1vw, 26px); letter-spacing: .02em; margin: 0; line-height: 1.15; }
.card__v small { font-family: var(--sans); font-size: 12px; color: #6b7c8d; }
.stars { color: var(--ottone); font-size: .7em; letter-spacing: .06em; }
.btn { display: inline-block; background: var(--notte); color: var(--chiaro); text-decoration: none; font-weight: 700; font-size: 14px; padding: 15px 24px; border: 2px solid var(--notte); white-space: nowrap; transition: background .2s ease, color .2s ease; }
.btn:hover { background: transparent; color: var(--notte); }
.btn--chiaro { background: var(--ottone); border-color: var(--ottone); color: var(--notte); }
.btn--chiaro:hover { background: transparent; color: var(--ottone); }
.linkarrow { font-size: 14px; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--ottone); padding-bottom: 2px; }

/* la citazione */
.roma { padding: clamp(130px, 16vw, 210px) var(--mx) clamp(60px, 9vw, 110px); text-align: center; }
.roma__occhiello { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ottone); margin: 0 0 clamp(24px, 3.4vw, 40px); }
.roma__q { margin: 0 auto; max-width: min(24ch, 1000px); }
.roma__q p { font-family: var(--display); font-size: clamp(30px, 5vw, 68px); line-height: 1.02; letter-spacing: .01em; margin: 0 0 22px; }
.roma__q cite { font-style: normal; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ardesia); }
.roma__nota { margin: clamp(30px, 4vw, 50px) auto 0; max-width: 46ch; color: #a9bccf; font-size: 16px; }

/* due mani */
.mani { background: var(--notte-2); padding: clamp(56px, 8vw, 104px) var(--mx); }
.mani h2 { font-family: var(--display); font-size: clamp(30px, 4.6vw, 58px); letter-spacing: .02em; margin: 0 0 clamp(26px, 4vw, 44px); }
.mani__griglia { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3.4vw, 46px); }
.mano { border-top: 2px solid var(--ottone); padding-top: 18px; }
.mano h3 { font-family: var(--display); font-size: clamp(26px, 3.2vw, 38px); letter-spacing: .04em; margin: 0 0 10px; color: var(--ottone); }
.mano p { margin: 0; color: #b9cadb; font-size: 16px; }
.mani__tag { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: clamp(30px, 4vw, 46px) 0 0; }
.mani__tag li { border: 1px solid rgba(234,246,255,.28); padding: 8px 15px; font-size: 12.5px; letter-spacing: .05em; }

/* banco */
.banco { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(26px, 5vw, 66px); align-items: center; padding: clamp(56px, 8vw, 104px) var(--mx); }
.banco__foto { margin: 0; }
.shot { padding: 0; border: 0; background: none; cursor: pointer; display: block; width: 100%; }
.shot img { width: 100%; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.shot:hover img { transform: scale(1.02); }
.banco h2 { font-family: var(--display); font-size: clamp(28px, 4.2vw, 52px); line-height: 1.02; letter-spacing: .02em; margin: 0 0 16px; }
.banco p { color: #b9cadb; margin: 0 0 22px; }

/* dove */
.dove { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 64px); padding: clamp(56px, 8vw, 104px) var(--mx); align-items: start; background: var(--notte-2); }
.dove h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 50px); letter-spacing: .02em; margin: 0 0 6px; }
.dove__sub { color: var(--ardesia); margin: 0 0 24px; font-size: 15px; }
.orari { list-style: none; margin: 0 0 26px; padding: 0; max-width: 460px; }
.orari li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid rgba(234,246,255,.14); font-size: 14.5px; }
.orari li span { text-transform: capitalize; color: var(--ardesia); }
.orari li.is-today { color: var(--ottone); }
.orari li.is-today span, .orari li.is-today b { color: var(--ottone); }
.dove__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.dove__mappa iframe { width: 100%; height: clamp(300px, 44vw, 430px); border: 1px solid rgba(234,246,255,.18); filter: grayscale(.3) brightness(.92); }
.faq { margin: 0; border-top: 1px solid rgba(234,246,255,.16); }
.faq div { border-bottom: 1px solid rgba(234,246,255,.16); padding: 14px 0; }
.faq dt { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.faq dd { margin: 0; font-size: 14.5px; color: var(--ardesia); }

/* footer */
.foot { padding: clamp(40px, 6vw, 66px) var(--mx) 88px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 26px; align-items: start; border-top: 1px solid rgba(234,246,255,.14); }
.foot__brand { font-family: var(--display); font-size: 30px; letter-spacing: .04em; display: flex; flex-direction: column; }
.foot__brand em { font-family: var(--sans); font-style: normal; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ottone); margin-top: 6px; }
.foot__col { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.foot__col a { text-decoration: none; border-bottom: 1px solid rgba(234,246,255,.3); align-self: flex-start; }
.foot__note { grid-column: 1 / -1; margin: 20px 0 0; font-size: 11.5px; color: rgba(234,246,255,.5); }

/* action bar */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; background: var(--notte-2); border-top: 1px solid rgba(234,246,255,.18); transform: translateY(100%); transition: transform .3s ease; }
.action-bar.is-visible { transform: translateY(0); }
.action-bar a { flex: 1; text-align: center; padding: 14px 6px; color: var(--neon); text-decoration: none; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.action-bar a + a { border-left: 1px solid rgba(234,246,255,.18); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 95; background: rgba(6,12,22,.96); display: flex; align-items: center; justify-content: center; padding: 5vw; }
.lightbox[hidden] { display: none !important; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; }
.lightbox__close { position: absolute; top: 16px; right: 20px; background: none; border: 0; color: var(--neon); font-size: 40px; line-height: 1; cursor: pointer; }

/* reveal */
.reveal { opacity: 0; }
html:not(.js) .reveal, html.reduced-motion .reveal { opacity: 1; }
.reveal.in-view { opacity: 1; }

@media (max-width: 960px) {
  /* z-index 92: sopra l'intro, altrimenti i link del drawer non sono cliccabili */
  .head__nav { position: fixed; inset: 0 0 0 auto; z-index: 92; width: min(78vw, 320px); background: var(--notte-2); flex-direction: column; justify-content: center; gap: 20px; padding: 40px; transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1); border-left: 1px solid rgba(234,246,255,.18); }
  .head__nav.nav-open { transform: translateX(0); }
  .head__nav a { font-size: 16px; }
  .burger { display: block; }
  .head__tel { display: none; }
  .card { position: static; margin-top: 34px; grid-template-columns: 1fr 1fr; }
  .hero { padding-bottom: clamp(30px, 5vw, 50px); min-height: auto; display: block; }
  .banco, .dove, .mani__griglia { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .action-bar { display: flex; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .card { grid-template-columns: 1fr; text-align: left; }
  .btn { width: 100%; text-align: center; }
  .foot { grid-template-columns: 1fr; }
  .roma__q { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; }
  .neon.spento { color: var(--neon); text-shadow: 0 0 4px #fff, 0 0 12px var(--neon-glow); }
}
