/* ===================================================================
   Il Mare Dentro — Landing page · Editoriale contemporaneo
   Terracotta + verde petrolio su carta calda. Tipografia forte.
   =================================================================== */

:root {
  /* Colori */
  --bg:       #f8f4ea;   /* crema */
  --bg-soft:  #efe8d5;   /* crema più scura */
  --ink:      #1c2540;   /* blu notte */
  --muted:    #5f6a84;   /* testo secondario */
  --accent:   #c9922e;   /* senape */
  --accent-d: #ad7f23;
  --navy:     #23325c;   /* blu notte acceso */
  --gold:     #d9b25c;
  --line:     rgba(28, 37, 64, 0.13);
  --white:    #ffffff;

  /* Tipografia */
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* Spaziature */
  --section: clamp(4.5rem, 9vw, 7.5rem);
  --radius: 8px;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

section[id] {
  scroll-margin-top: 84px;
}

/* ---------- Animazione di comparsa ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Utility ---------- */
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, 92%);
}

/* ---------- Intestazioni di sezione ---------- */
.section__head {
  position: relative;
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}

/* Numero fantasma dietro l'intestazione */
.section__ghost {
  position: absolute;
  top: -1.6rem;
  left: -1rem;
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 146, 46, 0.3);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section__ghost--right {
  right: -1rem;
  left: auto;
  -webkit-text-stroke: 1px rgba(35, 50, 92, 0.25);
}

.section__label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section__label span {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
}

.section__title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.25s ease,
              color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px -12px rgba(201, 146, 46, 0.55);
}

.btn--primary:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(247, 242, 233, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  padding: 0.85rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 0;
  overflow: hidden;
}

/* Anello decorativo */
.hero__ring {
  position: absolute;
  top: 16%;
  right: -10%;
  width: 42vw;
  height: 42vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(35, 50, 92, 0.35);
  z-index: 0;
}

.hero__ring::before,
.hero__ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217, 178, 92, 0.4);
}

.hero__ring::before { inset: 2.6rem; }
.hero__ring::after  { inset: 5.2rem; }

/* Disco terracotta sfumato */
.hero__circle {
  position: absolute;
  top: 14%;
  right: 4%;
  width: 30vw;
  height: 30vw;
  max-width: 430px;
  max-height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #c8d3ea, #a7b6d8 60%, #8aa0cb);
  opacity: 0.55;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 4rem;
}

.hero__kicker {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.hero__title span {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

.hero__lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 32ch;
  margin-bottom: 1rem;
}

.hero__intro {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero__meta span {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Copertina ---------- */
.hero__visual {
  display: flex;
  justify-content: center;
}

.cover-wrap {
  position: relative;
  width: min(330px, 100%);
}

/* Blocco petrolio sfalsato dietro la copertina */
.cover-wrap::before {
  content: "";
  position: absolute;
  inset: 30px 30px -30px -30px;
  background: var(--navy);
  border-radius: 6px;
  z-index: 0;
}

.cover {
  position: relative;
  z-index: 1;
}

/* Finta pagina bianca dietro la copertina */
.cover::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 20px 40px -20px rgba(28, 37, 64, 0.4);
  z-index: -1;
}

.cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 35px 65px -28px rgba(28, 37, 64, 0.55);
}

/* Adesivo ruotato */
.cover__sticker {
  position: absolute;
  top: -1.2rem;
  right: -2rem;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: 4px;
  transform: rotate(6deg);
  box-shadow: 0 10px 22px -8px rgba(173, 127, 35, 0.7);
}

/* ---------- Striscia scorrevole ---------- */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: var(--bg);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-block;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.marquee__track i {
  font-style: normal;
  color: var(--gold);
  margin: 0 1.4rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ===================================================================
   LA STAMPA
   =================================================================== */
.press {
  padding: var(--section) 0;
}

.press__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2.2rem;
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.press__item {
  border-top: 3px solid var(--accent);
  padding-top: 1.4rem;
}

.press__item span {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
  display: block;
  margin-bottom: 1rem;
}

.press__item cite {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===================================================================
   SINOSSI
   =================================================================== */
.sinossi {
  padding: var(--section) 0;
}

.sinossi__text {
  font-size: 1.04rem;
}

.sinossi__lead {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
}

.sinossi__text p {
  margin-bottom: 1.5rem;
}

.sinossi__text em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05em;
}

.sinossi__text strong {
  font-weight: 600;
}

/* Citazione su banda petrolio */
.sinossi__quote {
  background: var(--navy);
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.5;
  text-align: center;
  padding: 2.6rem 2.2rem;
  margin: 2.4rem 0;
  border-radius: 6px;
  position: relative;
}

.sinossi__quote::before {
  content: "“";
  position: absolute;
  top: -1.4rem;
  left: 1.4rem;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  font-style: normal;
}

.sinossi__figure {
  margin-top: 2.4rem;
}

.sinossi__figure img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 25px 45px -25px rgba(28, 37, 64, 0.4);
}

.sinossi__figure figcaption {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===================================================================
   IL LIBRO
   =================================================================== */
.libro {
  padding: var(--section) 0;
  background: var(--bg-soft);
}

.libro__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.libro__cover {
  position: relative;
  text-align: center;
}

/* Cornice sfalsata */
.libro__frame {
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--navy);
  border-radius: 6px;
}

.libro__cover img {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 35px 65px -28px rgba(28, 37, 64, 0.55);
}

.libro__desc {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 2.2rem;
  max-width: 52ch;
}

.libro__points {
  display: grid;
  gap: 0;
  margin-bottom: 2.4rem;
}

.libro__points li {
  display: flex;
  align-items: baseline;
  gap: 1.3rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.libro__points li:first-child {
  border-top: 1px solid var(--line);
}

.libro__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  width: 2.4rem;
  flex-shrink: 0;
}

.libro__points strong {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
}

.libro__points div span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===================================================================
   AUTORE
   =================================================================== */
.autore {
  padding: var(--section) 0;
}

.autore__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.autore__photo {
  position: relative;
}

.autore__photo img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 55px -28px rgba(28, 37, 64, 0.5);
  position: relative;
  z-index: 1;
}

/* Bordo oro sfalsato */
.autore__frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold);
  border-radius: 6px;
}

.autore__photo figcaption {
  margin-top: 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.autore__bio p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 56ch;
}

.autore__bio em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05em;
  color: var(--ink);
}

.autore__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 0 1.2rem 1.6rem;
  margin: 1.8rem 0;
}

.autore__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.autore__facts li {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.autore__facts span {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

/* ===================================================================
   CONTATTI
   =================================================================== */
.contatti {
  padding: var(--section) 0;
  background: var(--bg-soft);
}

.contatti__lead {
  color: var(--muted);
  max-width: 46ch;
  margin: -1.2rem 0 2.6rem;
}

.contatti__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}

.contatti__info {
  display: grid;
  gap: 1.8rem;
}

.contatti__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.4rem;
}

.contatti__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.contatti__value {
  font-size: 1.05rem;
  transition: color 0.25s ease;
}

.contatti__item:hover .contatti__value {
  color: var(--accent);
}

.contatti__social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.social {
  display: flex;
  gap: 0.8rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.social a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--bg);
  transform: translateY(-2px);
}

.social svg {
  width: 18px;
  height: 18px;
}

/* ---------- Form ---------- */
.form {
  display: grid;
  gap: 1.2rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.8rem, 4vw, 2.4rem);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__field label {
  font-size: 0.8rem;
  font-weight: 600;
}

.form__field input,
.form__field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 146, 46, 0.15);
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: #b3ad9d;
}

.form__note {
  font-size: 0.9rem;
  color: var(--accent-d);
  text-align: center;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 2.6rem 0;
  border-top: 4px solid var(--accent);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer__brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(247, 242, 233, 0.6);
}

.footer .social a {
  background: transparent;
  border-color: rgba(247, 242, 233, 0.25);
  color: var(--bg);
}

.footer .social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 3rem;
  }

  .hero__lead,
  .hero__intro {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__meta {
    justify-content: center;
  }

  .hero__ring,
  .hero__circle {
    width: 80vw;
    height: 80vw;
    top: -10%;
    right: -40%;
  }

  /* Copertina: riduce gli sfalsamenti per non debordare */
  .cover-wrap::before {
    inset: 16px 16px -16px -16px;
  }

  .cover::before {
    inset: 10px -10px -10px 10px;
  }

  .libro__frame {
    inset: 16px -16px -16px 16px;
  }

  .autore__frame {
    inset: 12px -12px -12px 12px;
  }

  .press__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .libro__grid,
  .autore__grid,
  .contatti__grid {
    grid-template-columns: 1fr;
  }

  .libro__cover {
    order: 1;
  }

  .libro__content {
    order: 2;
  }
}

@media (max-width: 640px) {
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 6.5rem 0 2.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }

  .nav__links.is-open {
    transform: translateY(0);
  }

  .nav__links a {
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .cover__sticker {
    right: 0.5rem;
    font-size: 0.62rem;
    padding: 0.5rem 0.9rem;
  }

  .sinossi__figure img {
    aspect-ratio: 4 / 3;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    justify-content: center;
    text-align: center;
  }

  .section__ghost {
    display: none;
  }

  /* Striscia scorrevole più compatta */
  .marquee__track span {
    font-size: 0.92rem;
  }

  .marquee__track i {
    margin: 0 1rem;
  }

  .press__item span {
    font-size: 1.05rem;
  }

  .autore__facts {
    gap: 1.4rem;
  }

  .contatti__info {
    gap: 1.4rem;
  }
}

/* Telefoni molto piccoli */
@media (max-width: 420px) {
  .hero__title {
    font-size: clamp(2.5rem, 14vw, 3rem);
  }

  .hero__lead {
    font-size: 1.1rem;
  }

  .hero__meta {
    gap: 0.9rem;
  }

  .hero__meta span {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .marquee__track span {
    font-size: 0.85rem;
  }

  .section__title {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .libro__num {
    width: 2rem;
  }
}

/* Rispetta chi preferisce meno movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee__track {
    animation: none;
  }

  * {
    transition-duration: 0.001s !important;
  }
}
