:root {
  --navy:     #071b34;
  --navy-2:   #0c2444;
  --gold:     #9e7a38;
  --gold-s:   #c4a060;
  --white:    #ffffff;
  --paper:    #f5f4f0;
  --off:      #eeecea;
  --line:     #e0ddd7;
  --ink:      #0e1720;
  --muted:    #717880;
  --serif: 'Cormorant', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --ease:  cubic-bezier(.22,1,.36,1);

  /* sistema colonne */
  --spine: 120px;   /* colonna indice sinistra */
  --gutter: 48px;
  --px: clamp(28px, 5.5vw, 80px);
  --py: clamp(80px, 9vw, 124px);
  --max: 1220px;
  --nav-h: 66px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { background: var(--white); color: var(--ink); font-family: var(--sans); line-height: 1.65; overflow-x: hidden; }
section { scroll-margin-top: calc(var(--nav-h) + 18px); }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  min-height: 46px; padding: 12px 22px;
  transition: background .2s var(--ease), color .2s, border-color .2s;
}
.btn--navy  { background: var(--navy); border: 1px solid var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-2); }
.btn--white { background: var(--white); border: 1px solid var(--white); color: var(--navy); }
.btn--white:hover { background: var(--white); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); }
.btn--ghost:hover { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn--line  { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); }
.btn--white-sm { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.8); font-size: 10.5px; min-height: 38px; padding: 9px 16px; }
.btn--white-sm:hover { background: rgba(255,255,255,.18); color: var(--white); }
.btn--full { width: 100%; margin-bottom: 10px; }

/* ─── NAV ──────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 66px; padding-inline: var(--px);
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--navy); white-space: nowrap; }
.nav__brand em { font-style: italic; color: var(--gold); }
.nav__links { display: flex; gap: clamp(14px, 2.4vw, 34px); }
.nav__links a { font-size: 10.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(7,27,52,.5); transition: color .18s; }
.nav__links a:hover { color: var(--navy); }
.nav__cta { font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--navy); padding: 9px 16px; transition: background .18s, color .18s; }
.nav__cta:hover { background: var(--navy); color: var(--white); }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: 100svh;
  padding: 110px var(--px) 72px;
  display: grid;
  grid-template-columns: var(--spine) 1fr minmax(260px, 320px);
  gap: 0 var(--gutter);
  align-items: end;
  position: relative;
  overflow: hidden;
}

/* linea verticale spine */
.hero__spine {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 8px; gap: 20px;
}
.hero__spine-tag {
  font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.22); writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__spine-line {
  flex: 1; width: 1px; background: rgba(255,255,255,.12);
  min-height: 200px;
}

.hero__body { padding-bottom: 8px; }
.hero__kicker {
  font-size: 10px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-s); margin-bottom: 28px; display: block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 96px);
  font-weight: 300; line-height: .97;
  letter-spacing: -.015em;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,.55); display: block; }
.hero__foot { margin-top: 48px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero__note { font-size: 11.5px; color: rgba(255,255,255,.3); letter-spacing: .04em; }

/* panel laterale hero */
.hero__panel {
  border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 0;
  align-self: end;
}
.hero__panel-item {
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 22px 24px;
}
.hero__panel-item:last-of-type { border-bottom: none; }
.hero__panel-item span {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-s); margin-bottom: 8px;
}
.hero__panel-item strong {
  display: block; font-family: var(--serif);
  font-size: 22px; font-weight: 300; line-height: 1.15;
}
.hero__panel .btn--white-sm { margin: 20px 24px; width: calc(100% - 48px); }

/* ─── SEZIONE BASE — colonna indice + contenuto ── */

/* §1 STUDIO */
.section-split {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  gap: 0 var(--gutter);
  padding: var(--py) var(--px);
  max-width: var(--max);
  margin-inline: auto;
  width: 100%;
}
/* applica max e centra a tutte le sezioni principali */
.section-split,
.section-wide,
.section-rows,
.section-excl {
  padding-top: 6px;
}
.ss__left {
  padding-top: 6px;
  display: flex; flex-direction: column; gap: 10px;
  align-self: start;
}
.ss__index {
  font-family: var(--serif); font-size: 11px; font-style: italic;
  color: var(--gold); opacity: .7;
}
.ss__label {
  font-size: 9.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(14,23,32,.35);
  writing-mode: vertical-rl; transform: rotate(180deg);
  margin-top: 10px;
}
.ss__right {
  background-color: #ffffff;
  padding-top: 6px;
}
.ss__right h2 {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 60px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.015em;
  color: var(--navy); margin-bottom: 48px;
}
.ss__right h2 em { font-style: italic; color: var(--muted); }
.ss__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.ss__col { padding: 28px 32px 8px 0; border-right: 1px solid var(--line); }
.ss__col:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.ss__col:nth-child(2) { padding-left: 32px; }
.ss__col h4 { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--navy); margin-bottom: 12px; line-height: 1.1; }
.ss__col p { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* §2 METODO — testo largo con titolo enorme */
.section-wide {
  background: var(--off);
  border-bottom: 1px solid var(--line);
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  gap: 0 var(--gutter);
}
.sw__head { padding-top: 6px; display: flex; flex-direction: column; gap: 10px; }
.sw__index { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold); opacity: .7; }
.sw__label { font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(14,23,32,.35); writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 10px; }
.sw__body {}
.sw__body h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 80px);
  font-weight: 300; line-height: .98;
  letter-spacing: -.02em; color: var(--navy);
  margin-bottom: 32px;
}
.sw__body h2 em { font-style: italic; color: var(--muted); }
.sw__body > p { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.9; max-width: 640px; margin-bottom: 48px; }
.sw__steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.sw__step { padding: 28px 28px 8px 0; border-right: 1px solid var(--line); }
.sw__step:last-child { border-right: none; padding-left: 28px; padding-right: 0; }
.sw__step:not(:first-child) { padding-left: 28px; }
.sw__step span { display: block; font-size: 12.5px; font-weight: 500; color: var(--navy); margin-bottom: 8px; letter-spacing: .02em; }
.sw__step p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.80; }

/* §3 SERVIZI — righe con numero spine integrato */
.section-rows {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: var(--py) var(--px);
}
.sr__head {
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  gap: 0 var(--gutter);
  margin-bottom: 56px;
  align-items: end;
}
.sr__head-left { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; align-self: start; }
.sr__index { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold); opacity: .7; }
.sr__label { font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(14,23,32,.35); writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 10px; }
.sr__head h2 {
  font-family: var(--serif); font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.015em; color: var(--navy);
}
.sr__list { border-top: 1px solid var(--line); }
.sr__row {
  display: grid;
  grid-template-columns: var(--spine) minmax(200px, .42fr) 1fr;
  gap: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  align-items: baseline;
  transition: background .22s;
  margin-inline: calc(-1 * var(--px));
  padding-inline: var(--px);
}
.sr__row:hover { background: var(--white); }
.sr__num {
  font-family: var(--serif); font-size: 13px; font-style: italic;
  color: var(--gold); opacity: .65; line-height: 1;
}
.sr__row h3 { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 36px); font-weight: 300; color: var(--navy); line-height: 1.05; }
.sr__row p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.85; align-self: center; }

/* §4 ESCLUSIVA — panel a sinistra, testo a destra (invertito) */
.section-excl {
  background: var(--off);
  border-bottom: 1px solid var(--line);
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  gap: 0 var(--gutter);
  align-items: start;
}
.se__panel {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  position: sticky; top: 90px;
}
.se__panel-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-s); margin-bottom: 28px; display: block;
}
.se__steps { counter-reset: st; }
.se__steps li {
  counter-increment: st;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0 18px 44px;
  font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,.8);
  position: relative; line-height: 1.4;
}
.se__steps li::before {
  content: counter(st, decimal-leading-zero);
  position: absolute; left: 0; top: 18px;
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--gold-s);
}
.se__copy { padding-top: 6px; }
.se__index-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.se__index { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold); opacity: .7; }
.se__label { font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(14,23,32,.35); }
.se__copy h2 {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 60px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.015em;
  color: var(--navy); margin-bottom: 24px;
}
.se__copy h2 em { font-style: italic; color: var(--muted); }
.se__copy p { font-size: 15.5px; font-weight: 300; color: var(--muted); line-height: 1.9; max-width: 560px; }

/* ─── PROOF ────────────────────────────────────── */
.proof {
  background: var(--navy); color: var(--white);
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: var(--py) var(--px);
}
.proof__item { padding-right: clamp(24px, 4vw, 60px); border-right: 1px solid rgba(255,255,255,.09); }
.proof__item + .proof__item { padding-left: clamp(24px, 4vw, 60px); }
.proof__item:last-child { border-right: none; }
.proof__item strong {
  display: block; font-family: var(--serif);
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 300; line-height: 1; letter-spacing: -.025em;
}
.proof__item span {
  display: block; font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-top: 16px; line-height: 1.6;
}

/* §5 CONTATTI */
.section-contact {
  background: var(--white);
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: 0 clamp(48px, 7vw, 112px);
  align-items: start;
}
.sc__index-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.sc__index { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold); opacity: .7; }
.sc__label { font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(14,23,32,.35); }
.sc__left h2 {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 60px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.015em;
  color: var(--navy); margin-bottom: 20px;
}
.sc__left h2 em { font-style: italic; color: var(--muted); }
.sc__left > p { font-size: 15.5px; font-weight: 300; color: var(--muted); line-height: 1.9; max-width: 540px; }

.sc__card { background: var(--white); border: 1px solid var(--line); padding: 32px; position: sticky; top: 90px; }
.sc__card-eyebrow {
  font-family: var(--serif); font-size: 26px; font-weight: 300;
  color: var(--navy); margin-bottom: 4px; line-height: 1;
}
.sc__card-sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(14,23,32,.3); margin-bottom: 26px; display: block;
}
.sc__card-divider { height: 1px; background: var(--line); margin-bottom: 24px; }
.sc__card small {
  display: block; text-align: center; margin-top: 18px;
  font-size: 12.5px; color: var(--muted);
}
.sc__card small a { color: var(--navy); border-bottom: 1px solid var(--line); transition: border-color .18s; }
.sc__card small a:hover { border-color: var(--navy); }

/* ─── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--navy); color: rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 72px; padding-inline: var(--px);
  flex-wrap: wrap;
}
.footer__brand { font-family: var(--serif); font-size: 22px; font-weight: 400; color: rgba(255,255,255,.65); }
.footer__brand em { font-style: italic; color: var(--gold-s); }
.footer p, .footer > a { font-size: 10.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.footer > a:hover { color: var(--white); }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 0 1fr minmax(240px, 280px); }
  .section-perche { grid-template-columns: 56px 1fr; }
  .perche__inner { grid-template-columns: minmax(200px, 260px) 1fr; gap: 32px; }

  .hero__spine { display: none; }
  .section-split, .section-wide, .section-rows .sr__head { grid-template-columns: 56px 1fr; }
  .sr__row { grid-template-columns: 56px minmax(160px, .45fr) 1fr; }
    :root { --spine: 56px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero__panel { max-width: 420px; }
    .se__panel { position: static; }
  .section-contact { grid-template-columns: 1fr; gap: 40px; }
  .sc__card { position: static; }
  .ss__cols { grid-template-columns: 1fr; }
  .ss__col, .ss__col:last-child, .ss__col:nth-child(2) { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .ss__col:last-child { border-bottom: none; }
  .sw__steps { grid-template-columns: 1fr 1fr; }
  .proof { grid-template-columns: 1fr; }
  .proof__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.09); padding: 28px 0; }
  .proof__item + .proof__item { padding-left: 0; }
  .proof__item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  :root { --px: 22px; --py: 64px; --spine: 40px; --gutter: 24px; }
  .ss__right { padding-top: 24px; }
  .nav { height: 62px; }
  .nav__brand { font-size: 20px; }
  .nav__cta { font-size: 9.5px; padding: 8px 12px; }
  .hero h1 { font-size: 44px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .sr__row { grid-template-columns: 40px 1fr; padding: 24px 0; }
  .sr__row p { grid-column: 2; }
  .sw__steps { grid-template-columns: 1fr; }
  .sw__step, .sw__step:last-child { border-bottom: 1px solid var(--line); border-right: none; padding: 20px 0; }
  .sw__step:last-child { border-bottom: none; }
  .footer { flex-direction: column; align-items: flex-start; gap: 10px; padding-block: 22px; }
}

/* ─── §3 PACCHETTI ─────────────────────────────── */
.section-packs {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: var(--py) var(--px);
}
.sp__head {
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  gap: 0 var(--gutter);
  margin-bottom: 64px;
  align-items: start;
}
.sp__head-left { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; align-self: start; }
.sp__index { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold-s); opacity: .6; }
.sp__label { font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.2); writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 10px; }
.sp__head-text { padding-top: 6px; }
.sp__head-text h2 {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 300; line-height: 1.05; letter-spacing: -.015em; color: var(--white);
  margin-bottom: 20px;
}
.sp__head-text h2 em { font-style: italic; color: rgba(255,255,255,.38); }
.sp__head-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.85; max-width: 580px; }

.sp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.1);
}
.sp__pack {
  padding: 36px 36px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column;
  position: relative;
  transition: background .22s;
}
.sp__pack:hover { background: rgba(255,255,255,.04); }
.sp__pack:last-child { border-right: none; }
.sp__pack--feature {
  background: rgba(255,255,255,.06);
  border-top: 2px solid var(--gold);
  margin-top: -1px;
}
.sp__pack--feature:hover { background: rgba(255,255,255,.09); }
.sp__pack-badge {
  position: absolute; top: -1px; right: 32px;
  background: var(--gold); color: var(--navy);
  font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 12px;
}
.sp__pack-head {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 24px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sp__num { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--gold-s); opacity: .6; margin-top: 4px; flex-shrink: 0; }
.sp__pack-name { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 6px; }
.sp__pack-price { font-size: 12px; font-weight: 500; color: var(--gold-s); letter-spacing: .06em; }
.sp__pack-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 24px; }
.sp__list { flex: 1; display: grid; gap: 10px; margin-bottom: 32px; }
.sp__list li { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); padding-left: 16px; position: relative; line-height: 1.5; }
.sp__list li::before { content: ''; position: absolute; left: 0; top: .6em; width: 5px; height: 1px; background: var(--gold-s); opacity: .5; }
.sp__pack--feature .sp__list li { color: rgba(255,255,255,.72); }
.sp__pack--feature .sp__list li::before { opacity: .85; }
.sp__cta {
  display: inline-block; margin-top: auto;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.sp__cta:hover { color: var(--white); }
.sp__cta--light { color: var(--gold-s); }
.sp__cta--light:hover { color: var(--white); }

/* responsive pacchetti */
@media (max-width: 900px) {
  .sp__grid { grid-template-columns: 1fr; }
  .sp__pack { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .sp__pack:last-child { border-bottom: none; }
  .sp__pack--feature { border-top: none; border-left: 2px solid var(--gold); margin-top: 0; }
  .sp__head { grid-template-columns: 1fr; }
  .sp__head-left { flex-direction: row; align-items: center; }
  .sp__label { writing-mode: horizontal-tb; transform: none; margin-top: 0; margin-left: 10px; }
  .sp__head-text { padding-top: 24px; }
}

/* ─── GEO CARDS (§1 Studio) ─────────────────── */
.geo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  gap: 0;
}
.geo-card {
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.geo-card:last-child { border-right: none; }
.geo-card__visual {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 28px 28px 0;
  overflow: hidden;
}
.geo-card__visual svg { width: 100%; height: auto; display: block; }
.geo-card__body { padding: 24px 28px 28px; }
.geo-card__body h4 {
  font-family: var(--serif); font-size: 21px; font-weight: 300;
  color: var(--navy); margin-bottom: 10px; line-height: 1.1;
}
.geo-card__body p { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* ─── SECTION WORKS (§4) ─────────────────────── */
.section-works {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--py) var(--px);
}
.sw2__head {
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  gap: 0 var(--gutter);
  margin-bottom: 64px;
  align-items: start;
}
.sw2__head-left { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; align-self: start; }
.sw2__index { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold); opacity: .7; }
.sw2__label { font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(14,23,32,.35); writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 10px; }
.sw2__head h2 {
  padding-top: 6px;
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 300; line-height: 1.05; letter-spacing: -.015em; color: var(--navy);
}
.sw2__head h2 em { font-style: italic; color: var(--muted); }

/* caso studio */
.work-case {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0 clamp(20px, 3vw, 36px);
  margin-bottom: clamp(40px, 6vw, 72px);
  align-items: start;
}
.work-case:last-child { margin-bottom: 0; }
.work-case--reverse { grid-template-columns: 320px 1fr; }
.work-case--reverse .wc__main { order: 2; }
.work-case--reverse .wc__side { order: 1; }

/* foto con overlay -->*/
.wc__photo { position: relative; overflow: hidden; }
.wc__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block;
  filter: grayscale(20%) brightness(.92);
  transition: filter .4s;
}
.wc__photo:hover img { filter: grayscale(0%) brightness(1); }
.wc__photo--lg { aspect-ratio: 3/2; }
.wc__photo--sm { aspect-ratio: 3/4; margin-top: clamp(16px, 2.5vw, 24px); }

.wc__photo-overlay {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px 20px;
}
.wc__geo { position: absolute; inset: 0; width: 100%; height: 100%; }
.wc__photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(transparent, rgba(7,27,52,.62));
  display: flex; justify-content: space-between; align-items: flex-end;
}
.wc__photo-label span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: .08em; }
.wc__photo-label span:first-child { color: rgba(255,255,255,.7); letter-spacing: .12em; text-transform: uppercase; font-size: 10px; }
.wc__photo-label--sm { padding: 24px 14px 12px; }
.wc__photo-label--sm span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* stat geometrica */
.wc__stat {
  position: relative; display: flex; align-items: center;
  gap: 20px; padding: 24px;
  border: 1px solid var(--line); background: var(--white);
}
.wc__stat-geo {
  width: 72px; height: 72px; flex-shrink: 0; opacity: .7;
}
.wc__stat-body strong {
  display: block; font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px); font-weight: 300;
  color: var(--navy); line-height: 1; letter-spacing: -.02em;
}
.wc__stat-body span {
  font-size: 11px; font-weight: 500; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.5; margin-top: 4px; display: block;
}

/* ─── PROOF con geometria ─────────────────────── */
.proof__geo {
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px; opacity: .06;
}
.proof__item { position: relative; }
.proof__geo--circle {
  border-radius: 50%;
  border: 1px solid var(--white);
  transform: translate(20px, -20px);
}
.proof__geo--cross::before,
.proof__geo--cross::after {
  content: ''; position: absolute;
  background: var(--white);
}
.proof__geo--cross::before { width: 1px; height: 80px; left: 50%; top: 0; }
.proof__geo--cross::after  { width: 80px; height: 1px; top: 50%; left: 0; }
.proof__geo--square {
  border: 1px solid var(--white);
  transform: rotate(45deg) translate(10px, -40px);
}

/* ─── RESPONSIVE addenda ─────────────────────── */
@media (max-width: 900px) {
  .geo-cards { grid-template-columns: 1fr; }
  .geo-card { border-right: none; border-bottom: 1px solid var(--line); }
  .geo-card:last-child { border-bottom: none; }
  .work-case,
  .work-case--reverse { grid-template-columns: 1fr; }
  .work-case--reverse .wc__main,
  .work-case--reverse .wc__side { order: unset; }
  .wc__photo--sm { display: none; }
  .sw2__head { grid-template-columns: 1fr; }
  .sw2__head-left { flex-direction: row; align-items: center; }
  .sw2__label { writing-mode: horizontal-tb; transform: none; margin-top: 0; margin-left: 10px; }
  .sw2__head h2 { padding-top: 24px; }
}

/* ══ DATA CARDS — sezione lavori ══════════════ */
.wc__side--data {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wc__data-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s;
}
.wc__data-card:hover { box-shadow: 0 6px 24px rgba(14,23,32,.07); }
.wc__data-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wdc__label {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.wdc__growth {
  font-size: 11px; font-weight: 600;
  color: #4a9e6b;
  background: rgba(74,158,107,.08);
  padding: 2px 8px; border-radius: 2px;
}
.wdc__num {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 300; line-height: 1;
  color: var(--navy); letter-spacing: -.02em;
}
.wdc__unit {
  font-size: .55em; color: var(--muted);
  vertical-align: super; margin-left: 1px;
}
.wdc__bar-wrap { display: flex; flex-direction: column; gap: 6px; }
.wdc__bar-track {
  height: 3px; background: var(--line);
  border-radius: 2px; overflow: hidden;
}
.wdc__bar-fill {
  height: 100%; background: var(--gold);
  border-radius: 2px;
}
.wdc__bar-fill--dim { background: var(--line); filter: brightness(.82); }
.wdc__bar-label { font-size: 10px; color: var(--muted); letter-spacing: .04em; }
.wdc__donut-wrap { display: flex; align-items: center; gap: 16px; }
.wdc__donut-wrap svg { width: 64px; height: 64px; flex-shrink: 0; }
.wdc__donut-legend { display: flex; flex-direction: column; gap: 6px; }
.wdc__donut-legend span {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--muted);
}
.wdc__donut-legend i {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; flex-shrink: 0;
}
.wdc__bars { display: flex; flex-direction: column; gap: 8px; }
.wdc__bar-row {
  display: grid;
  grid-template-columns: 40px 1fr 38px;
  gap: 8px; align-items: center;
}
.wdc__bar-row span { font-size: 11px; color: var(--muted); }
.wdc__bar-row span:last-child { text-align: right; font-weight: 500; color: var(--ink); }
.wdc__bar-row .wdc__bar-track { height: 3px; }
.wdc__note {
  font-size: 10px; color: var(--muted);
  font-style: italic; font-family: var(--serif);
  border-top: 1px solid var(--line);
  padding-top: 10px; margin-top: 2px;
}



/* ══ HERO ART PANEL — Pietà ══════════════════ */
.hero {
  grid-template-columns: var(--spine) 1fr minmax(300px, 380px) !important;
}
.hero__art {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.08);
  background: #000;
  align-self: stretch;
}
.ha__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 35% 15%;
  display: block;
  filter: brightness(.82) contrast(1.06) saturate(.65);
  transition: filter .5s;
}
.hero__art:hover .ha__img {
  filter: brightness(.92) contrast(1.03) saturate(.75);
}
.ha__overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}
.ha__corner {
  position: absolute;
  width: 18px; height: 18px; z-index: 3;
}
.ha__corner--tl { top: 16px;    left: 16px;    border-top: 1.2px solid #a07c3a; border-left: 1.2px solid #a07c3a; }
.ha__corner--tr { top: 16px;    right: 16px;   border-top: 1.2px solid #a07c3a; border-right: 1.2px solid #a07c3a; }
.ha__corner--bl { bottom: 16px; left: 16px;    border-bottom: 1.2px solid #a07c3a; border-left: 1.2px solid #a07c3a; }
.ha__corner--br { bottom: 16px; right: 16px;   border-bottom: 1.2px solid #a07c3a; border-right: 1.2px solid #a07c3a; }
.ha__caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 48px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  display: flex; justify-content: space-between; align-items: flex-end;
}
.ha__caption-ref {
  font-family: var(--serif);
  font-size: 11px; font-style: italic;
  color: var(--gold-s); opacity: .8; letter-spacing: .06em;
}
.ha__caption-title {
  font-family: var(--sans);
  font-size: 9px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr !important; }
  .hero__art { display: none; }
}
.se__left { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.se__index { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold); opacity: .7; }
.se__right h2 { font-family: var(--serif); font-size: clamp(34px, 3.8vw, 58px); font-weight: 300; line-height: 1.06; letter-spacing: -.015em; color: var(--navy); margin-bottom: 20px; }
.se__right h2 em { font-style: italic; color: var(--muted); }
.se__right > p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.9; max-width: 580px; margin-bottom: 40px; }
.se__steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.se__step { padding: 24px 24px 8px 0; border-right: 1px solid var(--line); }
.se__step:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.se__step:not(:first-child) { padding-left: 24px; }
.se__step span { display: block; font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--gold); opacity: .7; margin-bottom: 8px; }
.se__step p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; }
@media (max-width: 640px) {
  .se__steps { grid-template-columns: 1fr 1fr; }
  .se__step:nth-child(2) { border-right: none; }
}

/* ══ §5 ESCLUSIVA — stile watermark artistico ══ */
.section-excl {
  position: relative;
  overflow: hidden;
  display: block !important;    /* override grid */
  padding: var(--py) var(--px);
  background: var(--off) !important;
}

/* watermark foto a destra */
.excl__art {
  position: absolute;
  top: 0; right: 0;
  width: 56%; height: 100%;
  pointer-events: none; z-index: 0;
}
.excl__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 35% 15%;
  /* stesso trattamento del mockup: chiarissimo, quasi bianco su beige */
  filter: brightness(1.4) contrast(.75) saturate(.1) sepia(.15);
  opacity: .55;
  mix-blend-mode: multiply;
}
/* sfuma verso sinistra per non invadere il testo */
.excl__art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--off) 0%, rgba(245,244,240,.85) 25%, transparent 60%);
}
/* svg geometrico sopra la foto */
.excl__geo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* contenuto testo */
.excl__content {
  position: relative; z-index: 2;
  max-width: 560px;
}
.excl__meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.excl__num {
  font-family: var(--serif); font-size: 11px;
  font-style: italic; color: var(--gold); opacity: .7;
}
.excl__label {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.excl__content h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 300; line-height: 1.06;
  letter-spacing: -.018em; color: var(--navy);
  margin-bottom: 24px;
}
.excl__content h2 em { font-style: italic; color: var(--gold-s); }
.excl__content > p {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.9;
  margin-bottom: 40px; max-width: 480px;
}

/* step 4 colonne */
.excl__steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  margin-bottom: 36px;
}
.excl__step {
  padding: 22px 20px 8px 0;
  border-right: 1px solid var(--line);
}
.excl__step:last-child { border-right: none; padding-right: 0; padding-left: 20px; }
.excl__step:not(:first-child) { padding-left: 20px; }
.excl__step span {
  display: block; font-family: var(--serif);
  font-size: 11px; font-style: italic;
  color: var(--gold); opacity: .65; margin-bottom: 8px;
}
.excl__step p {
  font-size: 12.5px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
}

/* CTA testuale */
.excl__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--navy);
  transition: color .2s, border-color .2s;
}
.excl__cta:hover { color: var(--gold); border-color: var(--gold); }

/* responsive */
@media (max-width: 900px) {
  .excl__art { width: 100%; opacity: .25; }
  .excl__steps { grid-template-columns: 1fr 1fr; }
  .excl__step:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .excl__steps { grid-template-columns: 1fr; }
  .excl__step { border-right: none; border-bottom: 1px solid var(--line); }
  .excl__step:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE REFINEMENT LAYER · Canova Studio
   Appended last so it has final authority over earlier rules.
   La maggior parte dei clienti entra da mobile: qui curiamo
   misure, centrature, immagini, testi, distanze e logica.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hamburger: nascosto su desktop ─── */
.nav__toggle { display: none; }
.nav__links-cta { display: none; }

/* ════════ ≤ 900px — tablet & telefoni grandi ════════ */
@media (max-width: 900px) {

  /* ── NAV: menu a tendina ───────────────────────────── */
  .nav { gap: 16px; }

  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; gap: 5px;
    width: 42px; height: 42px; margin-right: -10px;
    background: transparent; border: none; cursor: pointer;
    flex-shrink: 0;
  }
  .nav__toggle span {
    display: block; width: 22px; height: 1.4px;
    background: var(--navy); border-radius: 2px;
    transition: transform .32s var(--ease), opacity .2s var(--ease);
  }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(3.2px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { transform: translateY(-3.2px) rotate(-45deg); }

  /* il CTA testuale lungo esce dalla barra: vive nel menu */
  .nav__cta { display: none; }

  /* lista = pannello a tendina sotto la barra */
  .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    padding: 6px var(--px) 22px;
    background: rgba(255,255,255,.985);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -28px rgba(7,27,52,.4);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .34s var(--ease), opacity .26s var(--ease);
  }
  .nav.open .nav__links { transform: none; opacity: 1; pointer-events: auto; }

  .nav__links li { width: 100%; }
  .nav__links a {
    display: block; width: 100%;
    font-size: 13px; font-weight: 500; letter-spacing: .16em;
    text-transform: uppercase; color: var(--navy);
    padding: 15px 2px; border-bottom: 1px solid var(--line);
  }
  .nav__links li:nth-last-child(2) a { border-bottom: none; }

  /* CTA evidenziato in fondo al menu */
  .nav__links-cta { display: block; margin-top: 14px; }
  .nav__links-cta a {
    border-bottom: none !important;
    background: var(--navy); color: var(--white) !important;
    text-align: center; padding: 16px; letter-spacing: .13em;
    font-weight: 600;
  }

  /* ── HERO "manifesto": la Pietà È l'atmosfera dell'intera sezione,
        emerge dal buio navy. Titolo in alto, azioni in basso. ───── */
  .hero {
    display: flex; flex-direction: column;
    align-items: stretch;       /* corregge 'align-items:end' del layout desktop */
    position: relative; overflow: hidden;
    min-height: 100vh;          /* fallback */
    min-height: 100svh;         /* copre l'intera schermata: niente bianco sotto */
    padding: calc(var(--nav-h) + 40px) var(--px) 48px;
    gap: 0;
  }
  /* il corpo riempie l'altezza: titolo in cima, azioni spinte in fondo */
  .hero__body {
    position: relative; z-index: 5;
    display: flex; flex-direction: column;
    flex: 1 1 auto; padding-bottom: 0;
  }
  .hero h1 { font-size: clamp(36px, 9.4vw, 52px); line-height: 1.0; }
  .hero__foot { margin-top: auto; padding-top: 40px; }
  .hero__actions { gap: 10px; margin-bottom: 22px; }

  /* immagine a tutto schermo, dietro al testo */
  .hero__art {
    display: block; position: absolute; inset: 0;
    width: 100%; height: 100%;
    margin: 0; border: none; max-height: none; aspect-ratio: auto;
    z-index: 1; align-self: stretch;
  }
  .ha__img {
    width: 100%; height: 100%;
    object-position: 50% 32%;   /* ← nudge 20–45% per centrare il volto */
    filter: brightness(.74) contrast(1.05) saturate(.6);
  }
  /* velo navy: scuro su titolo e azioni, trasparente al centro (figura) */
  .hero__art::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
      rgba(7,27,52,.95)  0%,
      rgba(7,27,52,.60) 27%,
      rgba(7,27,52,.38) 47%,
      rgba(7,27,52,.72) 73%,
      rgba(7,27,52,.97) 100%);
  }
  .ha__caption { display: none; }            /* via la didascalia su mobile */
  .ha__corner  { width: 22px; height: 22px; opacity: .85; }  /* cornice sottile dell'hero */

  /* ── Sezioni con indice: eyebrow orizzontale, 1 colonna ── */
  .section-split,
  .section-wide { grid-template-columns: 1fr; row-gap: 0; }

  .ss__left,
  .sw__head {
    flex-direction: row; align-items: center; gap: 12px;
    padding-top: 0; margin-bottom: 22px;
  }
  .ss__index,
  .sw__index { font-size: 13px; }
  .ss__label,
  .sw__label {
    writing-mode: horizontal-tb; transform: none; margin-top: 0;
    font-size: 10px;
  }
  .ss__right h2 { margin-bottom: 20px; }
  .sw__body h2 { margin-bottom: 24px; }
  .sw__body > p { font-size: 15px; margin-bottom: 36px; }

  /* ── METODO: correzione disallineamento step ───────── */
  .sw__step:not(:first-child) { padding-left: 0; }

  /* ── LAVORI: spazio verticale tra foto e schede dati ── */
  .work-case,
  .work-case--reverse {
    grid-template-columns: 1fr;
    row-gap: clamp(28px, 6vw, 38px);
  }
  .wc__side--data { gap: 14px; }

  /* ── ESCLUSIVA: foto di sfondo più presente (come desktop) ── */
  .excl__art { opacity: .42; }
  .excl__content { max-width: 100%; }

  /* ── CONTATTI ──────────────────────────────────────── */
  .section-contact { row-gap: 36px; }
}

/* ════════ ≤ 640px — telefoni ════════ */
@media (max-width: 640px) {
  :root { --nav-h: 62px; }

  .nav__brand { font-size: 20px; }

  /* HERO cover */
  .hero__kicker { margin-bottom: 22px; letter-spacing: .22em; }
  .hero__note { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.45); }

  /* STUDIO — geo cards: respiro coerente */
  .ss__right h2 { margin-bottom: 26px; }
  .geo-card__visual { padding: 24px 22px 0; }
  .geo-card__body { padding: 20px 22px 26px; }
  .geo-card__body h4 { font-size: 20px; }

  /* PACCHETTI */
  .sp__head-text h2 { font-size: clamp(30px, 7.5vw, 40px); }
  .sp__pack { padding: 28px 24px 26px; }
  .sp__pack--feature { border-left-width: 3px; }
  .sp__pack-head { gap: 16px; padding-bottom: 20px; margin-bottom: 18px; }
  .sp__pack-name { font-size: 28px; }
  .sp__pack-badge { right: 24px; }
  .sp__list { gap: 11px; margin-bottom: 28px; }

  /* LAVORI — etichetta foto in colonna (niente collisioni) */
  .wc__photo--lg { aspect-ratio: 4 / 3; }
  .wc__photo-label {
    flex-direction: column; align-items: flex-start; gap: 5px;
    padding: 34px 16px 14px;
  }
  .wc__photo-label span { font-size: 11px; }
  .wc__photo-label span:first-child { font-size: 9.5px; }
  .wc__data-card { padding: 20px 20px; }
  .wdc__donut-wrap { gap: 14px; }

  /* METODO — step puliti a piena larghezza */
  .sw__step,
  .sw__step:last-child,
  .sw__step:not(:first-child) {
    padding: 18px 0; border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .sw__step:last-child { border-bottom: none; }

  /* ESCLUSIVA */
  .excl__content h2 { font-size: clamp(32px, 8vw, 46px); }
  .excl__content > p { font-size: 15px; max-width: 100%; }
  .excl__art { opacity: .38; }

  /* ESCLUSIVA — step: 1 colonna, allineati e separati */
  .excl__steps { grid-template-columns: 1fr; margin-bottom: 30px; }
  .excl__step,
  .excl__step:last-child,
  .excl__step:not(:first-child) {
    padding: 18px 0; border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .excl__step:last-child { border-bottom: none; }

  /* CONTATTI */
  .sc__left h2 { font-size: clamp(32px, 8vw, 46px); }
  .sc__card { padding: 28px 24px; }
  .sc__card-eyebrow { font-size: 24px; }
}

/* ════════ ≤ 400px — telefoni piccoli ════════ */
@media (max-width: 400px) {
  :root { --px: 18px; }

  .nav__brand { font-size: 19px; }
  .hero h1 { font-size: clamp(32px, 9.4vw, 42px); }

  .sp__pack { padding: 26px 20px 24px; }
  .sp__pack-badge { right: 20px; font-size: 8.5px; padding: 4px 10px; }

  .sc__card { padding: 26px 20px; }

  .btn { font-size: 10.5px; letter-spacing: .12em; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO MOBILE · "manifesto" rifinito (rif. mockup)
   binario oro + rombi, cerchio aureo, punti dorati, bottoni con
   freccia e cornice oro. Decori visibili solo ≤900px.
   ═══════════════════════════════════════════════════════════════ */

/* punto dorato a fine titolo (anche desktop: dettaglio coerente) */
.hero h1 .dot { color: var(--gold-s); font-style: normal; }

/* interruzione di riga del titolo solo su mobile (vengono+cercate insieme) */
.hb-m { display: none; }

/* decori nascosti su desktop (l'hero desktop ha la sua spina) */
.hero__halo, .hero__rail, .hero__cue { display: none; }
.btn__arrow { font-size: 15px; line-height: 1; transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

@media (max-width: 900px) {

  .hb-m { display: inline; }   /* attiva l'a-capo del titolo su mobile */

  /* cerchio aureo dietro la figura */
  .hero__halo {
    display: block; position: absolute; z-index: 2; pointer-events: none;
    top: -8%; right: -34%;
    width: 132vw; max-width: 780px; aspect-ratio: 1 / 1;
    border: 1px solid rgba(196,160,96,.16);
    border-radius: 50%;
  }

  /* binario verticale oro a sinistra */
  .hero__rail {
    display: block; position: absolute; z-index: 4; pointer-events: none;
    top: calc(var(--nav-h) + 26px); bottom: 30px;
    left: calc(var(--px) - 3px); width: 1px;
    background: linear-gradient(180deg,
      rgba(196,160,96,0) 0%, rgba(196,160,96,.38) 10%,
      rgba(196,160,96,.38) 90%, rgba(196,160,96,0) 100%);
  }
  .hero__rail::before, .hero__rail::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    width: 10px; height: 1px; background: rgba(196,160,96,.55);
  }
  .hero__rail::before { top: 0; }
  .hero__rail::after  { bottom: 0; }
  .hero__rail i {
    position: absolute; left: 50%; width: 7px; height: 7px;
    background: var(--gold-s);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hero__rail i:nth-child(1) { top: 40%; }
  .hero__rail i:nth-child(2) { top: 70%; }
  .hero__rail i:nth-child(3) { top: 92%; }

  /* rombo "scroll" centrato in basso */
  .hero__cue {
    display: block; position: absolute; z-index: 4;
    left: 50%; bottom: 16px; width: 8px; height: 8px;
    background: var(--gold-s); opacity: .85;
    transform: translateX(-50%) rotate(45deg);
  }

  /* kicker su due righe + trattino oro */
  .hero__kicker {
    margin-bottom: clamp(46px, 8vh, 84px); line-height: 1.7;
  }
  .hero__kicker::after {
    content: ''; display: block; width: 42px; height: 1px;
    background: rgba(196,160,96,.6); margin-top: 18px;
  }

  /* corpo leggermente rientrato dal binario */
  .hero__body { padding-left: 26px; }

  /* azioni: blocco allineato a sinistra, NON a tutta larghezza */
  .hero__actions {
    flex-direction: column; align-items: stretch;
    gap: 16px; max-width: 360px; margin-bottom: 30px;
  }
  .hero__actions .btn {
    justify-content: space-between;
    padding: 20px 24px 20px 28px;
    min-height: 66px; font-size: 11.5px; letter-spacing: .16em;
  }
  /* primario: bianco con cornice oro staccata */
  .hero__actions .btn--white {
    border: 1px solid var(--gold-s);
    outline: 1px solid rgba(196,160,96,.4); outline-offset: 4px;
  }
  .hero__actions .btn--white .btn__arrow { color: var(--navy); }
  /* secondario: contorno e testo oro */
  .hero__actions .btn--ghost {
    background: transparent;
    border: 1px solid rgba(196,160,96,.5);
    color: var(--gold-s);
  }
  .hero__actions .btn--ghost .btn__arrow { color: var(--gold-s); }

  /* nota */
  .hero__note { color: rgba(255,255,255,.5); }
}

@media (max-width: 400px) {
  .hero__body { padding-left: 14px; }
  .hero__actions .btn { padding: 18px 20px 18px 22px; min-height: 62px; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO DESKTOP · accenti oro (coerenza col mobile)
   Tutto scoped ≥901px → il mobile (≤900px) NON viene toccato.
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 901px) {

  /* 1 · trattino oro sotto il kicker */
  .hero__kicker { position: relative; }
  .hero__kicker::after {
    content: ''; display: block; width: 46px; height: 1px;
    background: rgba(196,160,96,.55); margin-top: 20px;
  }

  /* 2 · spina "CS — 2026" → binario oro con rombi e tacche */
  .hero__spine-tag { color: rgba(196,160,96,.42); }
  .hero__spine-line {
    position: relative;
    background: linear-gradient(180deg,
      rgba(196,160,96,0) 0%, rgba(196,160,96,.40) 12%,
      rgba(196,160,96,.40) 88%, rgba(196,160,96,0) 100%);
  }
  .hero__spine-line::before, .hero__spine-line::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    width: 10px; height: 1px; background: rgba(196,160,96,.6);
  }
  .hero__spine-line::before { top: 0; }
  .hero__spine-line::after  { bottom: 0; }
  .hero__spine-line i {
    position: absolute; left: 50%; width: 7px; height: 7px;
    background: var(--gold-s);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hero__spine-line i:nth-child(1) { top: 25%; }
  .hero__spine-line i:nth-child(2) { top: 55%; }
  .hero__spine-line i:nth-child(3) { top: 85%; }

  /* 3 · bottoni in stile oro */
  .hero__actions .btn--white {
    border: 1px solid var(--gold-s);
    outline: 1px solid rgba(196,160,96,.4); outline-offset: 4px;
  }
  .hero__actions .btn--white .btn__arrow { color: var(--navy); }
  .hero__actions .btn--ghost {
    background: transparent;
    border: 1px solid rgba(196,160,96,.5);
    color: var(--gold-s);
  }
  .hero__actions .btn--ghost:hover { border-color: var(--gold-s); color: var(--white); }
  .hero__actions .btn--ghost .btn__arrow { color: var(--gold-s); }

  /* 4 · cerchio aureo attorno al pannello Pietà */
  .hero__body { position: relative; z-index: 3; }
  .hero__art  { z-index: 2; }
  .hero__halo {
    display: block; position: absolute; z-index: 1; pointer-events: none;
    top: 50%; right: -120px; transform: translateY(-50%);
    width: 640px; height: 640px;
    border: 1px solid rgba(196,160,96,.16);
    border-radius: 50%;
  }
}


/* ═══════════════════════════════════════════════════════════════
   HERO DESKTOP · sfondo navy meno piatto (≥901px, mobile intatto)
   Profondità + griglia "studio" quasi impercettibile.
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 901px) {
  .hero {
    background:
      radial-gradient(120% 95% at 27% 20%, var(--navy-2) 0%, rgba(12,36,68,0) 58%),
      var(--navy);
  }
  .hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(196,160,96,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(196,160,96,.045) 1px, transparent 1px);
    background-size: 92px 92px;
    -webkit-mask-image: radial-gradient(125% 95% at 30% 38%, #000 20%, transparent 80%);
    mask-image: radial-gradient(125% 95% at 30% 38%, #000 20%, transparent 80%);
  }
}
/* ═══════════════════════════════════════════════════════════════
   §5 PERCHÉ CANOVA STUDIO
   ═══════════════════════════════════════════════════════════════ */
.section-perche {
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  gap: 0 var(--gutter);
  padding: var(--py) var(--px);
  border-bottom: 1px solid var(--line);
}
.perche__spine {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perche__index {
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  opacity: .7;
}
.perche__label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(14,23,32,.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 10px;
}
/* Inner two-col layout: portrait + content */
.perche__inner {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: var(--gutter, 4rem);
  align-items: start;
}
.perche__portrait { position: sticky; top: 6rem; }
.perche__portrait-inner { position: relative; }
.perche__portrait-inner img {
  width: 100%;
  display: block;
  filter: grayscale(20%);
}
.perche__portrait-geo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.perche__portrait-caption {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-top: none;
  background: var(--bg);
}
.perche__caption-ref {
  font-family: var(--ff-sans, var(--sans));
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}
.perche__caption-title {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.perche__content h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--navy);
  margin-bottom: 48px;
}
.perche__content h2 em { font-style: italic; color: var(--muted); }
.perche__body { display: flex; flex-direction: column; gap: 0; }
.perche__block {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.perche__block:last-child { border-bottom: 1px solid var(--line); }
.perche__block-num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  opacity: .8;
  padding-top: 3px;
}
.perche__block p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 900px) {
  .section-perche {
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden;
  }
  /* Spine diventa eyebrow orizzontale come le altre sezioni */
  .perche__spine {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 0;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
  }
  .perche__index { font-size: 13px; }
  .perche__label {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 0;
    font-size: 10px;
  }
  .perche__inner {
    grid-template-columns: 1fr;
    position: relative;
  }
  /* Foto in sottoimpressione — position absolute, copre tutto, velo bianco sopra */
  .perche__portrait {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .perche__portrait-inner {
    width: 100%; height: 100%;
    position: relative;
    background: none;
  }
  .perche__portrait-inner img {
    content: url('img/canova.webp');
    width: 80%;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: -5%;
    top: 2%;
    filter: grayscale(100%) brightness(1.05);
    opacity: .12;
  }
  .perche__portrait-geo,
  .perche__portrait-caption { display: none !important; }
  .perche__portrait { display: none; }
  /* Contenuto sopra */
  .perche__content {
    position: relative;
    z-index: 1;
  }
  .perche__content h2 { margin-bottom: 24px; }
}


/* ─── Tablet nav fix: menu mobile già su desktop stretto/tablet ─── */
@media (min-width: 901px) and (max-width: 1100px) {
  .nav { gap: 16px; }
  .nav__cta { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 42px; height: 42px; margin-right: -10px; background: transparent; border: none; cursor: pointer; flex-shrink: 0;
  }
  .nav__toggle span { display: block; width: 22px; height: 1.4px; background: var(--navy); border-radius: 2px; transition: transform .32s var(--ease), opacity .2s var(--ease); }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(3.2px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { transform: translateY(-3.2px) rotate(-45deg); }
  .nav__links {
    display: flex; flex-direction: column; gap: 0; position: fixed; top: var(--nav-h); left: 0; right: 0;
    padding: 6px var(--px) 22px; background: rgba(255,255,255,.985);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -28px rgba(7,27,52,.4); transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .34s var(--ease), opacity .26s var(--ease);
  }
  .nav.open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; width: 100%; font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); padding: 15px 2px; border-bottom: 1px solid var(--line); }
  .nav__links li:nth-last-child(2) a { border-bottom: none; }
  .nav__links-cta { display: block; margin-top: 14px; }
  .nav__links-cta a { border-bottom: none !important; background: var(--navy); color: var(--white) !important; text-align: center; padding: 16px; letter-spacing: .13em; font-weight: 600; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 40px; }
  .hero__kicker { margin-bottom: 18px; }
  .hero__actions .btn { min-height: 58px; padding: 16px 18px; }
}