/* ═════════════════════════════════════════════
   OCEAN13 — luxury pedal boat
   palette: abyss navy / copper / ivory / teak
   ═════════════════════════════════════════════ */

:root {
  --abyss: #04070d;
  --navy: #081120;
  --navy-2: #0b1830;
  --ivory: #f2ede3;
  --ivory-dim: rgba(242, 237, 227, 0.55);
  --copper: #c9946a;
  --copper-bright: #e8b285;
  --red: #e0301e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Century Gothic', sans-serif;
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }

/* durante l'animazione d'ingresso: blocca il trascinamento sul telefono.
   Non uso overflow:hidden perché sui sistemi con barra di scorrimento fissa
   la sua comparsa allo sblocco farebbe saltare la pagina di ~15px. */
html.is-locked, html.is-locked body { touch-action: none; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--abyss);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--copper); color: var(--abyss); }

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

a { color: inherit; text-decoration: none; }

/* ─── preloader ─── */
.preloader {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
}
.preloader__bg {
  position: absolute; inset: 0;
  background: var(--abyss);
}
.preloader__logo {
  position: relative;
  width: min(560px, 82vw);
  will-change: transform;
}
.preloader__logo img { width: 100%; height: auto; display: block; }

/* copia sbiadita: è il logo "spento", sempre visibile */
.preloader__logo-ghost {
  opacity: 0.13;
  filter: grayscale(1) brightness(1.6);
}
/* copia a colori pieni, scoperta dal basso verso l'alto man mano che carica */
.preloader__logo-fill {
  position: absolute; inset: 0;
  clip-path: inset(100% 0% 0% 0%);
  will-change: clip-path;
}

/* barra fissa in alto a destra: lingue + contatto */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1.2rem, 4vw, 4rem);
  opacity: 0; pointer-events: none; /* attivata dall'intro, per non cliccarla al buio */
}
.topbar__right {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem);
}
.topbar__logo { display: block; flex: none; }
.topbar__logo img {
  width: clamp(96px, 11vw, 135px); height: auto;
  opacity: 0.92;
  transition: opacity 0.4s var(--ease-lux);
}
.topbar__logo:hover img { opacity: 1; }
.topbar__cta {
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--copper-bright);
  border: 1px solid rgba(201, 148, 106, 0.5);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  position: relative; overflow: hidden;
  transition: color 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
}
.topbar__cta span { position: relative; z-index: 1; }
.topbar__cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--copper);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-lux);
}
.topbar__cta:hover { color: var(--abyss); border-color: var(--copper); }
.topbar__cta:hover::before { transform: translateY(0); }
.topbar__cta:focus-visible { outline: 1px solid var(--copper-bright); outline-offset: 4px; }

.langs {
  display: flex; align-items: center; gap: 0.9rem;
}
.langs__btn {
  appearance: none; background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(242, 237, 227, 0.42);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.45s var(--ease-lux);
}
.langs__btn::after {
  content: ''; position: absolute; left: 0; right: 0.3em; bottom: 0;
  height: 1px; background: var(--copper);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-lux);
}
.langs__btn:hover { color: var(--ivory); }
.langs__btn:hover::after { transform: scaleX(1); transform-origin: left; }
.langs__btn.is-active { color: var(--copper-bright); }
.langs__btn.is-active::after { transform: scaleX(1); }
.langs__btn:focus-visible {
  outline: 1px solid rgba(201, 148, 106, 0.7);
  outline-offset: 6px;
}
.langs__sep {
  width: 1px; height: 10px;
  background: rgba(242, 237, 227, 0.2);
}

@media (max-width: 720px) {
  .topbar { padding: 0.9rem 1rem; gap: 0.6rem; }
  .topbar__logo img { width: clamp(84px, 24vw, 105px); }
  .langs { gap: 0.55rem; }
  .langs__btn { font-size: 0.6rem; letter-spacing: 0.18em; }
  .topbar__cta { font-size: 0.58rem; letter-spacing: 0.16em; padding: 0.55rem 1rem; }
}
@media (max-width: 339px) {
  /* schermi molto stretti: il selettore basta, la CTA resta a metà pagina e in fondo */
  .topbar__cta { display: none; }
}


/* ─── shared section typography ─── */
.section-kicker {
  font-size: 0.7rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.6rem;
}
.section-title {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.02; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-title em {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  text-transform: none; color: var(--copper-bright);
  letter-spacing: 0;
}
.section-sub {
  max-width: 44ch; font-size: 1.05rem; line-height: 1.8;
  color: var(--ivory-dim); margin-top: 2rem;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; height: 100vh; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  /* il footage è pieno sole: lo riporto nella palette notturna del brand */
  filter: brightness(0.62) saturate(0.88) contrast(1.04);
  will-change: transform;
}
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(4, 7, 13, 0.25) 20%, rgba(4, 7, 13, 0.72) 100%),
    linear-gradient(to bottom, rgba(4, 7, 13, 0.75), rgba(4, 7, 13, 0.15) 28%, rgba(4, 7, 13, 0.2) 62%, var(--abyss) 100%);
}
.hero__content {
  position: relative; text-align: center; z-index: 2; padding: 0 1.5rem;
  /* Larghezza del box petrolio del lockup: da qui derivano TUTTE le misure.
     I tre limiti: 480px = misura della reference; (100vh - 26rem)/1,28
     perché la composizione è alta 1,28 × lockup + l'altezza del bottone,
     e non deve toccare l'indicatore di scroll;
     (100vw - 3rem)/1.24 perché il claim (largo 1,227 × lockup) deve
     restare su due righe come nella reference. */
  --lockup: min(480px, (100vh - 26rem) / 1.28, (100vw - 3rem) / 1.24);
  --serif-ref: 'Tinos', 'Times New Roman', Times, serif;
}
.hero__lockup { width: var(--lockup); margin: 0 auto; }
.hero__lockup img { width: 100%; height: auto; }

/* rapporti presi da ref-hero.jpeg (box petrolio = 480px):
   claim  font-size 39,7/480  ·  interlinea 39/39,7
   
   stacchi: lockup→claim 115/480          */
.hero__tagline {
  font-family: var(--serif-ref);
  font-style: normal; font-weight: 400;
  font-size: calc(var(--lockup) * 0.0827);
  line-height: 0.983;
  color: #fdffff;   /* nella reference è bianco puro, non l'avorio caldo */
  margin-top: calc(var(--lockup) * 0.2321 - 0.06em);
  opacity: 1;
}
.btn-major.hero__cta {
  /* Due classi perché .btn-major, definito più in basso, ha un proprio margin-top */
  margin-top: calc(var(--lockup) * 0.22);
}

.hero__scroll {
  position: absolute; bottom: 2.6rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.62rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.hero__scroll-line {
  width: 1px; height: 56px; overflow: hidden;
  background: rgba(242, 237, 227, 0.12);
  position: relative;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--copper);
  animation: scrollLine 2.2s var(--ease-lux) infinite;
}
@keyframes scrollLine {
  0% { top: -100%; } 55% { top: 0; } 100% { top: 100%; }
}

@media (max-width: 720px) {
  /* il testo scende nel terzo basso: la barca resta libera in alto */
  .hero { align-items: flex-end; }
  .hero__content { padding: 0 1.2rem max(22vh, 11rem); }
  .hero__vignette {
    background:
      radial-gradient(ellipse at 50% 35%, rgba(4, 7, 13, 0.15) 10%, rgba(4, 7, 13, 0.6) 100%),
      linear-gradient(to bottom, rgba(4, 7, 13, 0.7), rgba(4, 7, 13, 0.1) 22%, rgba(4, 7, 13, 0.72) 68%, var(--abyss) 100%);
  }
}

/* ═══════════ MANIFESTO ═══════════ */
.manifesto {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 20vh clamp(1.5rem, 6vw, 6rem);
  background: linear-gradient(var(--abyss), var(--navy) 50%, var(--abyss));
}
.manifesto__inner { max-width: 1100px; }
.manifesto__text {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  line-height: 1.25; text-transform: uppercase; letter-spacing: 0.02em;
  text-align: center;
}
.manifesto__text strong {
  font-weight: 400; color: var(--copper-bright);
}
.manifesto__text .w { opacity: 0.12; display: inline-block; }

/* ═══════════ SHOWCASE ═══════════ */
.showcase { position: relative; height: 260vh; }
.showcase__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.showcase__media {
  position: absolute; inset: 0;
}
.showcase__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.35);
  will-change: transform;
}
.showcase__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,7,13,0.85), transparent 45%);
}
.showcase__caption {
  position: absolute; bottom: 10vh; left: clamp(1.5rem, 6vw, 6rem);
  z-index: 2;
}
.showcase__caption-title {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.1;
}

/* ═══════════ FORMA ═══════════ */
.forma {
  padding: 22vh clamp(1.5rem, 6vw, 6rem) 16vh;
  background:
    radial-gradient(ellipse 90% 50% at 70% 30%, rgba(11, 24, 48, 0.7), transparent),
    var(--abyss);
}
.forma__head { max-width: 900px; }
.forma__stage {
  position: relative; margin: 12vh auto 0;
  max-width: 1000px; aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
}
.forma__wire {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.forma__wire img {
  max-height: 100%; width: auto; max-width: 100%;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 60px rgba(201, 148, 106, 0.15));
}
.forma__scanline {
  position: absolute; left: 6%; right: 6%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0;
}
.forma__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(242, 237, 227, 0.08);
  border-top: 1px solid rgba(242, 237, 227, 0.08);
  border-bottom: 1px solid rgba(242, 237, 227, 0.08);
  margin-top: 16vh;
}
.stat {
  background: var(--abyss);
  padding: 3.4rem 2rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--copper-bright);
  letter-spacing: 0.03em;
}
.stat__label {
  display: block; margin-top: 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  line-height: 1.9; color: var(--ivory-dim);
}
@media (max-width: 900px) {
  .forma__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════ DETTAGLI ═══════════ */
.dettagli {
  padding: 20vh 0 6vh;
  background: linear-gradient(var(--abyss), #060a12 40%, var(--abyss));
}
.dettagli__head {
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  margin-bottom: 4vh;
}
.panel {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: center; gap: clamp(2rem, 6vw, 7rem);
  padding: 14vh clamp(1.5rem, 6vw, 6rem);
  min-height: 90vh;
}
.panel--reverse { direction: rtl; }
.panel--reverse > * { direction: ltr; }
.panel__media { position: relative; }
.panel__media > img {
  width: 100%; border-radius: 2px;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.9);
  clip-path: inset(12% 12% 12% 12%);
  transform: scale(1.12);
  will-change: transform, clip-path;
}
.panel__wire {
  position: absolute; right: -6%; bottom: -14%;
  width: 52%;
  border: 1px solid rgba(201, 148, 106, 0.45);
  background: #000; padding: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}
.panel--reverse .panel__wire { right: auto; left: -6%; }
.panel__wire img { mix-blend-mode: screen; width: 100%; }
.panel__index {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--copper);
  letter-spacing: 0.3em;
  display: block; margin-bottom: 1.6rem;
}
.panel__title {
  font-family: var(--sans); font-weight: 200; text-transform: uppercase;
  font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.12;
  letter-spacing: 0.04em;
}
.panel__desc {
  margin-top: 1.8rem; max-width: 40ch;
  color: var(--ivory-dim); line-height: 1.85; font-size: 1rem;
}
.panel__specs {
  list-style: none; margin-top: 2.4rem;
  border-top: 1px solid rgba(242, 237, 227, 0.12);
}
.panel__specs li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(242, 237, 227, 0.12);
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory);
  display: flex; align-items: center; gap: 1rem;
}
.panel__specs li::before {
  content: ''; width: 18px; height: 1px; background: var(--copper);
  flex: none;
}
@media (max-width: 900px) {
  .panel { grid-template-columns: 1fr; min-height: 0; padding-top: 8vh; padding-bottom: 8vh; }
  .panel__wire { width: 46%; bottom: -8%; }
}

/* ═══════════ FILM — dettaglio in video con annotazioni ═══════════
   Mobile-first: le etichette stanno sotto il video, in griglia.
   Da 1200px in su diventano annotazioni ancorate al fotogramma:
   pallino sul dettaglio + linea che esce fuori dal riquadro.
   ═══════════════════════════════════════════════════════════════ */
.film { padding: 12vh clamp(1.5rem, 6vw, 6rem); }
.film__head {
  max-width: 48ch; margin: 0 auto 6vh; text-align: center;
}
.film__index {
  display: block; margin-bottom: 1.2rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; letter-spacing: 0.3em; color: var(--copper);
}
.film__title {
  font-family: var(--sans); font-weight: 200; text-transform: uppercase;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem); line-height: 1.12; letter-spacing: 0.04em;
}
.film__desc {
  margin: 1.6rem auto 0; max-width: 44ch;
  color: var(--ivory-dim); line-height: 1.85;
}

.film__frame {
  width: min(100%, 720px); margin-inline: auto;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 2.5rem;
}
.film__stage {
  grid-column: 1 / -1;
  position: relative; aspect-ratio: 16 / 9;
  overflow: hidden; border-radius: 3px;
  border: 1px solid rgba(242, 237, 227, 0.08);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.9);
}
.film__video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* pallino e linea: solo in modalità annotata */
.note__dot, .note__line { display: none; }

.note__label-in { opacity: 0; transform: translateX(-14px); }
.note__label h4 {
  font-weight: 400; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory);
  display: flex; align-items: baseline; gap: 0.7rem;
}
.note__label h4::before {
  content: ''; flex: none;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--copper-bright);
  box-shadow: 0 0 10px rgba(232, 178, 133, 0.8);
}
.note__label p {
  margin-top: 0.7rem; padding-left: calc(5px + 0.7rem);
  font-size: 0.86rem; line-height: 1.75; color: var(--ivory-dim);
}

@media (max-width: 640px) {
  .film__frame { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ─── modalità annotata ─── */
@media (min-width: 1200px) {
  /* il riquadro si restringe quanto serve perché le due colonne di
     etichette (13,5rem + 3,4rem di linea) stiano nei margini laterali */
  .film__frame {
    display: block; position: relative;
    width: min(720px, calc(100vw - 38rem));
  }

  .note {
    position: absolute; inset: 0;
    pointer-events: none;
  }
  .note__dot {
    display: block; position: absolute;
    left: var(--dx); top: var(--dy);
    width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
    border-radius: 50%; background: var(--copper-bright);
    box-shadow: 0 0 0 1px rgba(4, 7, 13, 0.55), 0 0 16px rgba(232, 178, 133, 0.85);
    opacity: 0; transform: scale(0);
  }
  .note__dot::after {
    content: ''; position: absolute; inset: -7px;
    border: 1px solid rgba(232, 178, 133, 0.45);
    border-radius: 50%;
    animation: notePulse 2.8s var(--ease-lux) infinite;
  }
  @keyframes notePulse {
    0%   { transform: scale(0.7); opacity: 0; }
    35%  { opacity: 1; }
    100% { transform: scale(1.9); opacity: 0; }
  }

  .note__line {
    display: block; position: absolute;
    top: var(--dy); height: 1px;
    transform: scaleX(0);
  }
  .note--right .note__line {
    left: var(--dx); right: -2.8rem;
    transform-origin: left center;
    background: linear-gradient(90deg, var(--copper), rgba(201, 148, 106, 0.3));
  }
  .note--left .note__line {
    right: calc(100% - var(--dx)); left: -2.8rem;
    transform-origin: right center;
    background: linear-gradient(270deg, var(--copper), rgba(201, 148, 106, 0.3));
  }

  .note__label {
    position: absolute; top: var(--dy);
    transform: translateY(-50%);
    width: 13.5rem;
  }
  .note--right .note__label { left: calc(100% + 3.4rem); }
  .note--left .note__label {
    right: calc(100% + 3.4rem); text-align: right;
  }
  .note--left .note__label-in { transform: translateX(14px); }
  .note--left .note__label h4 { flex-direction: row-reverse; }
  .note--left .note__label p { padding-left: 0; padding-right: calc(5px + 0.7rem); }

  /* in modalità annotata il pallino sta sul video, non davanti al titolo */
  .note__label h4::before { display: none; }
}

/* CTA intermedia, fra i dettagli e gli accessori */
.cta-band {
  padding: 0 clamp(1.5rem, 6vw, 6rem) 15vh;
  text-align: center;
}
.btn-major--sm {
  margin-top: 0;
  padding: 1.15rem 2.8rem;
  font-size: 0.72rem; letter-spacing: 0.28em;
}

/* ═══════════ ACCESSORI ═══════════ */
.accessori { position: relative; }
.accessori__pin {
  height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  gap: 5vh;
  background:
    radial-gradient(ellipse 70% 60% at 30% 100%, rgba(11, 24, 48, 0.6), transparent),
    var(--abyss);
}
.accessori__head { padding: 0 clamp(1.5rem, 6vw, 6rem); }
.accessori__track {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  width: max-content;
  will-change: transform;
}
.card {
  width: clamp(300px, 34vw, 460px); flex: none;
  background: rgba(242, 237, 227, 0.025);
  border: 1px solid rgba(242, 237, 227, 0.07);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.5s, transform 0.6s var(--ease-lux);
}
.card:hover { border-color: rgba(201, 148, 106, 0.5); transform: translateY(-8px); }
.card__media { overflow: hidden; aspect-ratio: 4 / 2.7; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-lux);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: 1.8rem 1.8rem 2rem; }
.card__num {
  font-family: var(--serif); font-style: italic;
  color: var(--copper); font-size: 0.9rem; letter-spacing: 0.2em;
}
.card__body h3 {
  font-weight: 300; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 1.05rem; margin-top: 0.9rem;
}
.card__body p {
  margin-top: 0.7rem; color: var(--ivory-dim);
  font-size: 0.88rem; line-height: 1.7;
}
.accessori__progress {
  margin: 0 clamp(1.5rem, 6vw, 6rem);
  height: 1px; background: rgba(242, 237, 227, 0.1);
}
.accessori__progress span {
  display: block; height: 100%; width: 0%;
  background: var(--copper);
}

/* ═══════════ NOTTE ═══════════
   L'immagine non viene ritagliata: sta a larghezza piena con la sua altezza
   naturale, così le due luci di poppa si vedono per intero. Il testo sta
   sopra e non sovrapposto, perché la luce di sinistra cade proprio dove
   prima passava il titolo.
   ═══════════════════════════════════════════════════════════ */
.notte {
  position: relative;
  padding: 14vh 0 0;
  background: var(--abyss);
  overflow: hidden;
}
.notte__content {
  /* in ch sarebbe ~384px: troppo stretto per un titolo da 88px, che andava
     a capo su quattro righe invece delle due volute */
  max-width: min(1000px, 92vw); margin: 0 auto 7vh;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  text-align: center;
}
.notte__title {
  font-family: var(--sans); font-weight: 200; text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 1.02;
  text-shadow: 0 0 120px rgba(224, 48, 30, 0.18);
}
.notte__desc {
  margin: 2rem auto 0; max-width: 44ch;
  color: var(--ivory-dim); line-height: 1.85;
}
.notte__bg { position: relative; }
.notte__bg img {
  width: 100%; height: auto; display: block;
  /* di partenza le luci sono smorzate: il reveal allo scroll le "accende" */
  filter: brightness(0.72) saturate(0.72);
  will-change: filter;
}
/* raccordo con il fondo della pagina, sopra e sotto */
.notte__bg::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom,
    var(--abyss) 0%, rgba(4, 7, 13, 0) 14%,
    rgba(4, 7, 13, 0) 84%, var(--abyss) 100%);
}

/* Aloni delle luci: posizione e dimensione ricavate misurando i pixel rossi
   dell'immagine — escludendo la bandiera italiana, il cui rosso falsava il
   centro della luce destra. Sinistra 17,4%/57,2%, destra 82,2%/32,7%.
   `screen` fa sommare la luce invece di coprirla. */
.notte__glow {
  position: absolute; pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0;
  background: radial-gradient(closest-side,
    rgba(255, 90, 70, 0.85) 0%,
    rgba(224, 48, 30, 0.55) 38%,
    rgba(224, 48, 30, 0.18) 66%,
    rgba(224, 48, 30, 0) 100%);
  filter: blur(26px);
}
.notte__glow--l { left: 17.4%; top: 57.2%; width: 29%; height: 43%; }
.notte__glow--r { left: 82.2%; top: 32.7%; width: 17%; height: 33%; }
.notte__glow.is-breathing { animation: glowBreath 4.5s ease-in-out infinite; }
@keyframes glowBreath {
  0%, 100% { filter: blur(26px) brightness(1); }
  50%      { filter: blur(31px) brightness(1.22); }
}

@media (prefers-reduced-motion: reduce) {
  .notte__glow.is-breathing { animation: none; }
}

/* ═══════════ LIFESTYLE ═══════════ */
.lifestyle {
  position: relative;
  padding: 24vh clamp(1.5rem, 6vw, 6rem) 30vh;
  background: var(--abyss);
}
.lifestyle__img {
  overflow: hidden; border-radius: 2px;
  box-shadow: 0 50px 140px -40px rgba(0, 0, 0, 0.95);
}
.lifestyle__img img { width: 100%; }
.lifestyle__img--a { width: min(62%, 760px); }
.lifestyle__img--b {
  width: min(34%, 420px);
  margin-left: auto; margin-top: -14%;
  position: relative; z-index: 2;
}
.lifestyle__quote { margin-top: 18vh; text-align: center; }
.lifestyle__quote p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.3;
}
@media (max-width: 720px) {
  .lifestyle__img--a { width: 100%; }
  .lifestyle__img--b { width: 70%; margin-top: -10%; }
}

/* ═══════════ CONTATTO / FOOTER ═══════════ */
.contatto {
  position: relative;
  padding: 26vh clamp(1.5rem, 6vw, 6rem) 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(11, 24, 48, 0.55), transparent),
    var(--abyss);
  text-align: center;
}
.contatto__inner { max-width: 880px; margin: 0 auto; }
.contatto__title {
  font-family: var(--sans); font-weight: 200; text-transform: uppercase;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem); line-height: 1.02;
}
.contatto__title em {
  font-family: var(--serif); font-style: italic; text-transform: none;
  color: var(--copper-bright); font-weight: 300;
}
.contatto__desc {
  margin: 2.6rem auto 0; max-width: 52ch;
  color: var(--ivory-dim); line-height: 1.9;
}
.btn-major {
  position: relative; display: inline-block;
  margin-top: 4.5rem;
  padding: 1.5rem 3.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 148, 106, 0.55);
  overflow: hidden;
  font-size: 0.78rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--copper-bright);
  transition: color 0.5s var(--ease-lux);
}
.btn-major__label { position: relative; z-index: 2; }
.btn-major__ring {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--copper), var(--copper-bright));
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-lux);
}
.btn-major:hover { color: var(--abyss); }
.btn-major:hover .btn-major__ring { transform: translateY(0); }

/* Su telefono «Richiedi una consulenza privata» non sta su una riga: va su DUE.
   Corpo e spaziatura sono calibrati perché non diventino mai tre (verificato
   fino a 320px di larghezza). Questi blocchi devono stare DOPO la regola base,
   altrimenti a pari specificità vincerebbe quella. */
@media (max-width: 720px) {
  .btn-major {
    padding: 1.05rem 1.6rem;
    font-size: 0.66rem; letter-spacing: 0.18em; line-height: 1.7;
  }
}
@media (max-width: 359px) {
  .btn-major {
    padding: 1rem 1.1rem;
    font-size: 0.58rem; letter-spacing: 0.11em;
  }
}

.footer {
  margin-top: 22vh;
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(242, 237, 227, 0.08);
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.footer__claim {
  font-family: var(--serif); font-style: italic;
  color: var(--ivory-dim); font-size: 1.05rem;
}
.footer__legal {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(242, 237, 227, 0.3);
}

/* ─── reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line::after { animation: none; }
  * { scroll-behavior: auto; }
}
