@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --black: #0B0A08;
  --black-soft: #15120E;
  --gold: #C89B3C;
  --gold-light: #E1BE69;
  --white: #F4F0E8;
  --muted: #B9B1A3;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  background: rgba(11,10,8,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,155,60,.12);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  letter-spacing: .09em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 500;
}

.desktop-nav a { opacity: .88; transition: color .2s ease, opacity .2s ease; }
.desktop-nav a:hover { color: var(--gold-light); opacity: 1; }

.nav-buy {
  border: 1px solid var(--gold);
  padding: 11px 16px;
  color: var(--gold-light);
}

.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3vw;
  padding: 100px 8vw 72px;
  background:
    radial-gradient(circle at 76% 50%, rgba(200,155,60,.08), transparent 28%),
    linear-gradient(115deg, #0B0A08 0%, #0B0A08 58%, #100E0B 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .28em;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(68px, 7.2vw, 112px);
  line-height: .78;
  font-weight: 500;
  letter-spacing: .015em;
}

.hero-subtitle {
  margin: 34px 0 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-light);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.05;
}

.hero-line {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-style: italic;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: .17em;
  font-weight: 600;
}

.button-primary {
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  transition: background .25s ease, color .25s ease;
}

.button-primary:hover {
  background: var(--gold);
  color: var(--black);
}

.button-link { color: var(--muted); }
.button-link:hover { color: var(--gold-light); }
.button-link span { margin-left: 8px; color: var(--gold); font-size: 16px; }

.hero-book {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(430px, 80%);
  animation: bookFloat 8s ease-in-out infinite;
}

.hero-book img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,.55));
}

.book-glow {
  position: absolute;
  inset: 8% 4% 4%;
  background: radial-gradient(ellipse at center, rgba(200,155,60,.20), transparent 62%);
  filter: blur(20px);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .25em;
}

.scroll-cue i {
  width: 1px;
  height: 38px;
  background: var(--gold);
  display: block;
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* Second section */
.memory-intro {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 7vw 130px;
  background: var(--black-soft);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.memory-intro-inner {
  width: min(980px, 100%);
}

.section-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .28em;
  font-weight: 600;
}

.memory-words {
  margin: 38px 0 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 7vw, 104px);
  line-height: .86;
  letter-spacing: .015em;
}

.memory-words span:nth-child(1),
.memory-words span:nth-child(3) {
  color: var(--white);
}

.memory-words span:nth-child(2),
.memory-words span:nth-child(4) {
  color: var(--gold);
}

.memory-rule {
  width: 72px;
  height: 1px;
  margin: 0 auto 32px;
  background: var(--gold);
  opacity: .8;
}

.memory-lead {
  max-width: 720px;
  margin: 0 auto 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.memory-body {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.memory-question {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.12;
}

.memory-next {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 600;
}

.memory-next span {
  font-size: 16px;
  transition: transform .25s ease;
}

.memory-next:hover span {
  transform: translateY(4px);
}

@media(max-width:700px) {
  .memory-intro {
    min-height: auto;
    padding: 88px 24px 100px;
  }

  .memory-words {
    font-size: clamp(45px, 14vw, 68px);
    line-height: .9;
    gap: 4px;
    margin: 30px 0 34px;
  }

  .memory-lead {
    font-size: 28px;
  }

  .memory-body {
    font-size: 14px;
    line-height: 1.75;
  }

  .memory-question {
    font-size: 30px;
  }

  .memory-next {
    margin-top: 42px;
  }
}

@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(.35); transform-origin: top; opacity: .35; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

@media (max-width: 820px) {
  .site-header { height: 68px; padding: 0 22px; }
  .brand { font-size: 16px; }
  .desktop-nav { display: none; }
  .menu-toggle {
    display: block;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 23px;
    line-height: 1;
    padding: 10px;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    z-index: 19;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(11,10,8,.98);
    border-bottom: 1px solid rgba(200,155,60,.15);
    padding: 12px 22px 22px;
  }

  .mobile-menu.open { display: flex; flex-direction: column; }
  .mobile-menu a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(244,240,232,.08);
    font-size: 11px;
    letter-spacing: .16em;
  }

  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 18px;
    padding: 82px 22px 62px;
    text-align: center;
  }

  .hero-copy { order: 2; max-width: 620px; margin: 0 auto; }
  .hero-book { order: 1; width: min(54vw, 285px); }
  .hero h1 { font-size: clamp(43px, 11vw, 58px); line-height: .84; }
  .hero-subtitle { margin-top: 18px; font-size: clamp(25px, 7vw, 32px); line-height: 1.02; }
  .hero-line { font-size: 23px; }
  .hero-actions { justify-content: center; margin-top: 22px; gap: 13px; }
  .button-primary { width: 100%; }
  .button-link { width: 100%; }
  .scroll-cue { bottom: 10px; }
  .temporary-next { min-height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-book, .scroll-cue i { animation: none; }
}


/* Il Viaggio */
.journey {
  position: relative;
  padding: 130px 7vw 120px;
  background:
    radial-gradient(circle at 20% 18%, rgba(200,155,60,.08), transparent 25%),
    linear-gradient(180deg, #0B0A08 0%, #15120E 100%);
  overflow: hidden;
}

.journey-intro {
  width: min(900px, 100%);
  margin: 0 auto 86px;
  text-align: center;
}

.journey-intro h2 {
  margin: 24px 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(55px, 6.5vw, 94px);
  line-height: .88;
  font-weight: 500;
}

.journey-intro h2 em {
  color: var(--gold);
  font-weight: 400;
}

.journey-opening {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.22;
}

.journey-path {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: stretch;
}

.journey-card {
  min-height: 520px;
  position: relative;
  padding: 38px 34px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(200,155,60,.25);
  background: #0D0C0A;
  isolation: isolate;
}

.journey-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,10,8,.05) 10%, rgba(11,10,8,.9) 78%, rgba(11,10,8,1) 100%),
    radial-gradient(circle at 70% 20%, rgba(200,155,60,.22), transparent 36%);
}

.journey-card--nola::after,
.journey-card--cimitile::after,
.journey-card--paolino::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(200,155,60,.18);
  border-radius: 50%;
  top: 72px;
  right: 36px;
  box-shadow: 0 0 0 35px rgba(200,155,60,.025), 0 0 0 70px rgba(200,155,60,.012);
}

.journey-card--nola::after { transform: translateX(5px); }
.journey-card--cimitile::after { width: 140px; height: 140px; top: 92px; }
.journey-card--paolino::after { width: 200px; height: 200px; top: 60px; }

.journey-number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: rgba(244,240,232,.45);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
}

.journey-card-content {
  position: relative;
  z-index: 2;
}

.journey-place {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .28em;
  font-weight: 600;
}

.journey-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4vw, 61px);
  line-height: .86;
  font-weight: 500;
}

.journey-card p:not(.journey-place) {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.24;
}

.journey-arrow {
  position: absolute;
  right: 28px;
  bottom: 29px;
  color: var(--gold);
  font-size: 18px;
}

.journey-connector {
  position: relative;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,155,60,.15), var(--gold), rgba(200,155,60,.15));
}

.journey-connector::after {
  content: "→";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  padding: 0 7px;
  background: #15120E;
  color: var(--gold);
  font-size: 15px;
}

.journey-ending {
  margin: 86px auto 0;
  text-align: center;
}

.journey-ending p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-style: italic;
}

.future-anchor {
  min-height: 1px;
}

@media (max-width: 900px) {
  .journey { padding: 96px 22px 100px; }
  .journey-intro { margin-bottom: 58px; }
  .journey-path {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .journey-card {
    min-height: 440px;
    padding: 32px 26px 36px;
  }
  .journey-connector {
    width: 1px;
    height: 54px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(200,155,60,.15), var(--gold), rgba(200,155,60,.15));
  }
  .journey-connector::after {
    content: "↓";
    background: #15120E;
  }
  .journey-card h3 { font-size: 48px; }
  .journey-card p:not(.journey-place) { font-size: 19px; }
  .journey-ending { margin-top: 62px; }
}

@media (max-width: 520px) {
  .journey-intro h2 { font-size: 53px; }
  .journey-opening { font-size: 24px; }
  .journey-card { min-height: 390px; }
}


/* Il Viaggio — immagini */
.journey-card {
  background: #0D0C0A;
}

.journey-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08);
  transform: scale(1.02);
  transition: transform .8s ease, filter .8s ease;
}

.journey-card::before {
  background:
    linear-gradient(180deg, rgba(11,10,8,.12) 0%, rgba(11,10,8,.30) 34%, rgba(11,10,8,.94) 79%, rgba(11,10,8,1) 100%),
    linear-gradient(90deg, rgba(11,10,8,.18), rgba(11,10,8,.05));
}

.journey-card:hover .journey-image {
  transform: scale(1.06);
  filter: saturate(.86) contrast(1.08);
}

.journey-card--nola::after,
.journey-card--cimitile::after,
.journey-card--paolino::after {
  z-index: -1;
}

@media (max-width: 900px) {
  .journey-card:hover .journey-image {
    transform: scale(1.02);
  }
}


/* =========================================================
   IL VIAGGIO v5 — immagini protagoniste
   ========================================================= */

.journey {
  padding-top: 125px;
  padding-bottom: 120px;
}

.journey-intro {
  width: min(980px, 100%);
  margin-bottom: 78px;
}

.journey-path {
  width: min(1380px, 100%);
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
}

.journey-card {
  min-height: 610px;
  padding: 42px 40px 48px;
}

.journey-image {
  opacity: .98;
  filter: saturate(.86) contrast(1.06);
}

.journey-card::before {
  background:
    linear-gradient(
      180deg,
      rgba(11,10,8,.02) 0%,
      rgba(11,10,8,.10) 34%,
      rgba(11,10,8,.76) 67%,
      rgba(11,10,8,.97) 88%,
      rgba(11,10,8,1) 100%
    ),
    linear-gradient(90deg, rgba(11,10,8,.08), rgba(11,10,8,.01));
}

.journey-card-content {
  max-width: 430px;
}

.journey-card h3 {
  font-size: clamp(48px, 4vw, 66px);
  line-height: .88;
  margin-bottom: 20px;
}

.journey-card p:not(.journey-place) {
  max-width: 400px;
  font-size: 21px;
  line-height: 1.23;
}

.journey-number {
  top: 28px;
  left: 30px;
  font-size: 27px;
}

.journey-place {
  margin-bottom: 14px;
  font-size: 11px;
}

.journey-arrow {
  right: 32px;
  bottom: 31px;
}

.journey-connector {
  width: 100%;
}

.journey-ending {
  margin-top: 78px;
}

@media (max-width: 1200px) and (min-width: 901px) {
  .journey {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .journey-path {
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  }
  .journey-card {
    min-height: 570px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .journey-card h3 {
    font-size: 49px;
  }
  .journey-card p:not(.journey-place) {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .journey {
    padding: 96px 22px 100px;
  }
  .journey-intro {
    margin-bottom: 58px;
  }
  .journey-path {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .journey-card {
    min-height: 470px;
    padding: 34px 28px 40px;
  }
  .journey-card h3 {
    font-size: 51px;
  }
  .journey-card p:not(.journey-place) {
    font-size: 19px;
  }
  .journey-connector {
    width: 1px;
    height: 58px;
  }
  .journey-ending {
    margin-top: 62px;
  }
}

@media (max-width: 520px) {
  .journey-intro h2 {
    font-size: 53px;
  }
  .journey-opening {
    font-size: 24px;
  }
  .journey-card {
    min-height: 430px;
  }
}


/* =========================================================
   IL VIAGGIO v6 — ottimizzazione mobile
   ========================================================= */

@media (max-width: 900px) {
  .journey-card {
    min-height: 380px;
    padding: 30px 25px 34px;
  }

  .journey-card h3 {
    font-size: 47px;
    line-height: .88;
    margin-bottom: 15px;
  }

  .journey-card p:not(.journey-place) {
    max-width: 430px;
    font-size: 18px;
    line-height: 1.18;
  }

  .journey-number {
    top: 22px;
    left: 24px;
    font-size: 24px;
  }

  .journey-place {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .journey-arrow {
    right: 25px;
    bottom: 25px;
  }

  .journey-connector {
    height: 42px;
  }

  .journey-ending {
    margin-top: 52px;
  }
}

@media (max-width: 520px) {
  .journey {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .journey-intro {
    margin-bottom: 48px;
  }

  .journey-intro h2 {
    font-size: 50px;
    line-height: .9;
  }

  .journey-opening {
    font-size: 22px;
    line-height: 1.2;
  }

  .journey-card {
    min-height: 360px;
    padding: 28px 22px 31px;
  }

  .journey-card h3 {
    font-size: 43px;
  }

  .journey-card p:not(.journey-place) {
    font-size: 17px;
    line-height: 1.17;
    max-width: 330px;
  }

  .journey-number {
    top: 19px;
    left: 21px;
    font-size: 22px;
  }

  .journey-connector {
    height: 36px;
  }

  .journey-ending {
    margin-top: 48px;
  }

  .journey-ending p {
    font-size: 31px;
  }
}


/* =========================================================
   IO, PAOLINO — sezione narrativa
   ========================================================= */

.io-paolino {
  position: relative;
  padding: 155px 7vw 145px;
  background:
    radial-gradient(circle at 50% 35%, rgba(200,155,60,.075), transparent 28%),
    linear-gradient(180deg, #15120E 0%, #0B0A08 100%);
  overflow: hidden;
}

.io-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.io-paolino h2 {
  margin: 25px auto 25px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 7vw, 104px);
  line-height: .88;
  font-weight: 500;
  letter-spacing: -.015em;
}

.io-paolino h2 em {
  color: var(--gold);
  font-weight: 400;
}

.io-rule {
  width: 56px;
  height: 1px;
  margin: 40px auto 35px;
  background: var(--gold);
  opacity: .8;
}

.io-lead {
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
}

.io-text {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.28;
}

.io-text strong {
  color: var(--white);
  font-weight: 500;
}

.io-quote {
  width: min(760px, 100%);
  margin: 70px auto 0;
  padding: 48px 30px;
  border-top: 1px solid rgba(200,155,60,.28);
  border-bottom: 1px solid rgba(200,155,60,.28);
}

.io-quote p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  font-style: italic;
}

.io-quote span {
  display: block;
  margin-top: 23px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.memory-handoff {
  margin: 82px auto 0;
}

.memory-line {
  margin: 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .95;
}

.memory-question {
  margin: 18px 0 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 39px);
  font-style: italic;
}

.io-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
  padding: 17px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .22em;
  transition: background .3s ease, color .3s ease;
}

.io-cta:hover {
  background: var(--gold);
  color: #0B0A08;
}

.io-cta span {
  font-size: 15px;
}

@media (max-width: 900px) {
  .io-paolino {
    padding: 112px 22px 105px;
  }

  .io-paolino h2 {
    font-size: 54px;
  }

  .io-lead {
    font-size: 27px;
  }

  .io-text {
    font-size: 20px;
    line-height: 1.25;
  }

  .io-quote {
    margin-top: 55px;
    padding: 38px 18px;
  }

  .io-quote p {
    font-size: 35px;
  }

  .memory-handoff {
    margin-top: 62px;
  }

  .memory-line {
    font-size: 43px;
  }

  .memory-question {
    font-size: 27px;
  }

  .io-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 48px;
  }
}

@media (max-width: 520px) {
  .io-paolino {
    padding-top: 92px;
  }

  .io-paolino h2 {
    font-size: 48px;
  }

  .io-lead {
    font-size: 24px;
  }

  .io-text {
    font-size: 19px;
  }

  .io-quote p {
    font-size: 31px;
  }

  .io-quote span {
    font-size: 9px;
    line-height: 1.6;
  }

  .memory-line {
    font-size: 39px;
  }

  .memory-question {
    font-size: 25px;
  }
}


/* =========================================================
   IO, PAOLINO v8 — più respiro e presenza desktop
   ========================================================= */

.io-inner {
  width: min(1040px, 100%);
}

.io-paolino h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.io-lead {
  max-width: 820px;
}

.io-text {
  max-width: 780px;
  font-size: clamp(21px, 2.1vw, 27px);
}

.io-quote {
  width: min(900px, 100%);
  margin-top: 76px;
  padding: 54px 36px;
}

.io-quote p {
  font-size: clamp(34px, 3.7vw, 51px);
}

.memory-handoff {
  margin-top: 90px;
}

.memory-line {
  font-size: clamp(44px, 5.3vw, 76px);
}

.memory-question {
  font-size: clamp(28px, 3.1vw, 42px);
}

.io-cta {
  margin-top: 64px;
  padding: 18px 31px;
}

@media (max-width: 1200px) and (min-width: 901px) {
  .io-inner { width: min(900px, 100%); }
  .io-text { max-width: 700px; }
  .io-quote { width: min(800px, 100%); }
}

@media (max-width: 900px) {
  .io-inner {
    width: 100%;
  }

  .io-lead {
    max-width: 700px;
  }

  .io-text {
    max-width: 650px;
    font-size: 20px;
  }

  .io-quote {
    width: 100%;
    margin-top: 55px;
    padding: 38px 18px;
  }

  .memory-handoff {
    margin-top: 62px;
  }
}


/* v9 — allineamento centrato della frase finale */
.memory-question-centered {
  display: block;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
