:root {
  --paper: #f2efe7;
  --paper-deep: #e8e2d6;
  --ink: #17221d;
  --forest: #2f5c48;
  --forest-dark: #173b2d;
  --sage: #b8c9ba;
  --ochre: #d48748;
  --line: rgba(23, 34, 29, 0.16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="it"] [data-lang="en"],
html[lang="en"] [data-lang="it"] {
  display: none !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--ochre); outline-offset: 4px; }

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 78px;
  left: 0;
  padding: 0 clamp(24px, 4vw, 76px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.monogram { align-items: center; display: flex; gap: 12px; justify-self: start; }
.monogram span {
  border: 1px solid var(--ink);
  display: grid;
  font-family: var(--serif);
  font-size: 18px;
  height: 38px;
  place-items: center;
  width: 38px;
}
.monogram small { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
nav { display: flex; gap: clamp(18px, 3vw, 46px); }
nav a { font-size: 12px; font-weight: 650; letter-spacing: .04em; position: relative; }
nav a::after {
  background: var(--ochre);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}
nav a:hover::after { transform: scaleX(1); }
.language-switch { align-items: center; display: flex; font-size: 11px; gap: 6px; justify-self: end; }
.language-switch button {
  background: none;
  border: 0;
  color: color-mix(in srgb, var(--ink) 45%, transparent);
  cursor: pointer;
  font: 700 11px var(--sans);
  padding: 6px 3px;
}
.language-switch button.active { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  min-height: 100svh;
  overflow: hidden;
  padding-top: 78px;
}
.hero-copy {
  align-content: center;
  display: grid;
  padding: clamp(72px, 9vw, 138px) clamp(30px, 6vw, 108px);
  position: relative;
  z-index: 2;
}
.status-pill {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 750;
  gap: 9px;
  letter-spacing: .16em;
  margin: 0 0 44px;
  text-transform: uppercase;
}
.status-pill span {
  background: var(--ochre);
  border-radius: 50%;
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--ochre) 16%, transparent);
  height: 8px;
  width: 8px;
}
.artist-line {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 126px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .78;
  margin: 0;
  max-width: 900px;
}
.hero h1 span { display: block; }
.hero-subtitle { font-size: clamp(17px, 1.45vw, 22px); line-height: 1.5; margin: 36px 0 0; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.button {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 11px;
  font-weight: 750;
  gap: 28px;
  justify-content: space-between;
  letter-spacing: .06em;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary, .button-dark { background: var(--ink); color: white; }
.button-primary:hover, .button-dark:hover { background: var(--forest); }
.button-ghost:hover { background: white; }
.hero-meta {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  padding-top: 18px;
}
.hero-meta div, .hero-meta p { display: grid; font-size: 11px; gap: 5px; line-height: 1.5; margin: 0; }
.hero-meta span, .hero-meta p { color: color-mix(in srgb, var(--ink) 62%, transparent); }

.hero-visual {
  background: radial-gradient(circle at 72% 20%, rgba(212,135,72,.42), transparent 27%), linear-gradient(135deg, #2e5b47, #173b2d 56%, #11291f);
  min-height: 690px;
  overflow: hidden;
  position: relative;
}
.hero-visual::before {
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 100% 9.5%;
  content: "";
  inset: 0;
  position: absolute;
}
.score-field {
  height: min(70vw, 780px);
  left: 50%;
  max-height: 82%;
  max-width: 82%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -47%);
  width: min(70vw, 780px);
}
.score-field::before, .score-field::after {
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  content: "";
  inset: 12%;
  position: absolute;
}
.score-field::after { inset: 28%; }
.score-orbit { border: 1px solid rgba(255,255,255,.22); border-radius: 50%; position: absolute; transform: rotate(-24deg); }
.orbit-one { height: 54%; left: 12%; top: 20%; width: 76%; }
.orbit-two { height: 83%; left: 31%; top: 5%; transform: rotate(42deg); width: 38%; }
.orbit-three { border-color: rgba(212,135,72,.6); height: 42%; left: 22%; top: 30%; transform: rotate(12deg); width: 60%; }
.note { background: var(--ochre); border-radius: 50%; box-shadow: 0 0 30px rgba(212,135,72,.24); height: 12px; position: absolute; width: 12px; }
.note-a { left: 20%; top: 45%; }
.note-b { left: 35%; top: 16%; height: 7px; width: 7px; }
.note-c { right: 20%; top: 29%; height: 17px; width: 17px; }
.note-d { bottom: 17%; left: 46%; height: 8px; width: 8px; }
.note-e { right: 26%; bottom: 30%; }
.note-f { left: 27%; bottom: 27%; height: 6px; width: 6px; }
.note-g { right: 9%; top: 52%; height: 7px; width: 7px; }
.note-h { left: 47%; top: 50%; height: 22px; width: 22px; }
.visual-word { color: rgba(255,255,255,.33); font-family: var(--serif); font-size: clamp(17px, 2vw, 28px); position: absolute; }
.word-a { left: 45%; top: 43%; }
.word-b { bottom: 11%; right: 24%; }
.word-c { left: 12%; top: 20%; }
.visual-caption { bottom: 28px; color: rgba(255,255,255,.6); font-size: 9px; font-weight: 700; left: 34px; letter-spacing: .18em; margin: 0; position: absolute; text-transform: uppercase; }

.section-shell { margin: 0 auto; max-width: 1500px; padding-left: clamp(28px, 7vw, 116px); padding-right: clamp(28px, 7vw, 116px); }
.intro { padding-bottom: clamp(110px, 12vw, 190px); padding-top: clamp(110px, 12vw, 190px); }
.section-heading { display: grid; gap: 24px; grid-template-columns: minmax(150px,.35fr) minmax(0,1.65fr); }
.eyebrow { color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .18em; margin: 0; text-transform: uppercase; }
.eyebrow.light { color: var(--sage); }
.section-heading h2, .route-head h2, .performance h2, .nihil-copy h2, .progress h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 86px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
  margin: 0;
}
.intro-body { display: grid; gap: clamp(50px, 8vw, 130px); grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr); margin-left: 20%; margin-top: 72px; }
.lead-copy { font-family: var(--serif); font-size: clamp(25px, 2.5vw, 38px); letter-spacing: -.02em; line-height: 1.32; margin: 0; }
.intro aside { border-top: 1px solid var(--ink); font-size: 14px; line-height: 1.7; padding-top: 20px; }
.aside-mark { color: var(--ochre); display: block; font-family: var(--serif); font-size: 42px; height: 35px; }
.fact-grid { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4,1fr); margin: 100px 0 0; }
.fact-grid div { border-right: 1px solid var(--line); padding: 22px 24px 24px 0; }
.fact-grid div:not(:first-child) { padding-left: 24px; }
.fact-grid div:last-child { border-right: 0; }
.fact-grid dt { color: var(--forest); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.fact-grid dd { font-family: var(--serif); font-size: 20px; line-height: 1.25; margin: 10px 0 0; }

.route-section { background: var(--ink); color: white; padding: clamp(110px,12vw,180px) 0 0; }
.route-head { align-items: end; display: grid; gap: clamp(30px,7vw,120px); grid-template-columns: minmax(0,1.55fr) minmax(280px,.45fr); padding-bottom: 90px; }
.route-head .eyebrow { margin-bottom: 20px; }
.route-head > p { color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.7; margin: 0; }
.route-list { border-top: 1px solid rgba(255,255,255,.17); }
.route-row {
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.17);
  display: grid;
  gap: 30px;
  grid-template-columns: 70px minmax(250px,.75fr) minmax(320px,1.25fr) 70px;
  margin: 0 auto;
  max-width: 1500px;
  padding: 48px clamp(28px,7vw,116px);
  transition: background 180ms ease;
}
.route-row:hover { background: var(--forest); }
.route-number { color: var(--ochre); font: 700 11px var(--sans); letter-spacing: .12em; }
.route-row h3 { font-family: var(--serif); font-size: clamp(27px,2.6vw,42px); font-weight: 500; line-height: 1.08; margin: -8px 0 0; }
.route-row p { color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.7; margin: 0; }
.route-index { color: rgba(255,255,255,.08); font-family: var(--serif); font-size: 58px; line-height: .8; text-align: right; }

.performance { padding-bottom: clamp(120px,13vw,200px); padding-top: clamp(120px,13vw,200px); }
.performance-title { max-width: 1050px; }
.performance-title .eyebrow { margin-bottom: 24px; }
.performance-lead { font-size: clamp(17px,1.7vw,24px); line-height: 1.6; margin: 46px 0 0; max-width: 900px; }
.performance blockquote { border-left: 3px solid var(--ochre); color: var(--forest); font-family: var(--serif); font-size: clamp(30px,4vw,60px); font-style: italic; line-height: 1.12; margin: 100px 0 100px 15%; max-width: 950px; padding: 4px 0 4px 42px; }
.phase-list { border-top: 1px solid var(--line); margin-left: 15%; }
.phase-list article { border-bottom: 1px solid var(--line); display: grid; gap: 50px; grid-template-columns: 140px 1fr; padding: 30px 0; }
.phase-list time { color: var(--forest); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.phase-list h3 { font-family: var(--serif); font-size: 27px; font-weight: 500; margin: -6px 0 8px; }
.phase-list p { color: color-mix(in srgb, var(--ink) 68%, transparent); font-size: 13px; line-height: 1.6; margin: 0; }

.nihil-section { background: var(--forest); color: white; display: grid; grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr); min-height: 760px; }
.nihil-mark {
  align-content: center;
  background: linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px), radial-gradient(circle at center, rgba(212,135,72,.35), transparent 44%), var(--forest-dark);
  background-size: 100% 16%, auto, auto;
  display: grid;
  font-family: var(--serif);
  font-size: clamp(42px,6vw,96px);
  grid-template-columns: repeat(5,1fr);
  overflow: hidden;
  padding: 60px;
  position: relative;
}
.nihil-mark::before { border: 1px solid rgba(255,255,255,.22); border-radius: 50%; content: ""; height: 70%; left: 15%; position: absolute; top: 14%; transform: rotate(-18deg); width: 72%; }
.nihil-mark span { color: rgba(255,255,255,.3); position: relative; text-align: center; }
.nihil-mark span:nth-child(2), .nihil-mark span:nth-child(4) { transform: translateY(95px); }
.nihil-copy { align-content: center; display: grid; padding: clamp(70px,9vw,140px); }
.nihil-copy .eyebrow { margin-bottom: 22px; }
.nihil-copy p:not(.eyebrow) { color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.8; margin: 42px 0 0; max-width: 780px; }
.text-links { display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 42px; }
.text-links a { border-bottom: 1px solid rgba(255,255,255,.5); font-size: 11px; font-weight: 800; letter-spacing: .05em; padding-bottom: 5px; text-transform: uppercase; }

.progress { padding-bottom: clamp(120px,13vw,190px); padding-top: clamp(120px,13vw,190px); }
.progress-copy { max-width: 950px; }
.progress-copy .eyebrow { margin-bottom: 22px; }
.progress-copy > p:last-child { font-size: 16px; line-height: 1.75; margin: 42px 0 0; max-width: 720px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); list-style: none; margin: 100px 0 0; padding: 0; }
.steps li { border-left: 1px solid var(--line); min-height: 185px; padding: 28px 24px; position: relative; }
.steps li:last-child { border-right: 1px solid var(--line); }
.steps li::before { background: var(--paper-deep); content: ""; height: 5px; left: -1px; position: absolute; right: -1px; top: 0; }
.steps li.current::before { background: var(--ochre); }
.step-number { color: var(--forest); display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; margin-bottom: 54px; }
.steps strong, .steps small { display: block; }
.steps strong { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.15; }
.steps small { color: color-mix(in srgb, var(--ink) 53%, transparent); font-size: 10px; margin-top: 10px; text-transform: uppercase; }
.dialogue-card { align-items: center; background: white; border: 1px solid var(--line); display: grid; gap: 34px; grid-template-columns: auto 1fr auto; margin-top: 90px; padding: clamp(28px,4vw,56px); }
.dialogue-symbol { background: var(--forest); border-radius: 50%; color: white; display: grid; font-family: var(--serif); font-size: 36px; height: 76px; place-items: center; width: 76px; }
.dialogue-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 0 0 9px; }
.dialogue-card p { color: color-mix(in srgb, var(--ink) 68%, transparent); font-size: 13px; line-height: 1.65; margin: 0; max-width: 800px; }

footer { background: var(--ink); color: white; padding: 70px clamp(28px,7vw,116px) 34px; }
.footer-main { align-items: start; display: flex; justify-content: space-between; }
.footer-name { font-family: var(--serif); font-size: 32px !important; margin-bottom: 5px !important; }
.footer-main p { color: rgba(255,255,255,.55); font-size: 11px; margin: 0; }
.footer-links { display: flex; font-size: 11px; font-weight: 750; gap: 30px; text-transform: uppercase; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.17); display: grid; gap: 30px; grid-template-columns: 1fr auto; margin-top: 70px; padding-top: 24px; }
.footer-legal p { color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.6; margin: 0; max-width: 900px; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 760px; }
  .hero-visual { min-height: 640px; }
  .intro-body { margin-left: 0; }
  .route-row { grid-template-columns: 50px minmax(220px,.8fr) minmax(280px,1.2fr); }
  .route-index { display: none; }
  .nihil-section { grid-template-columns: 1fr; }
  .nihil-mark { min-height: 500px; }
}

@media (max-width: 760px) {
  .site-header { height: 66px; padding: 0 20px; }
  .monogram small { display: none; }
  .monogram span { height: 34px; width: 34px; }
  .language-switch { gap: 0; }
  .language-switch button { min-height: 44px; min-width: 40px; padding: 0; }
  .hero { padding-top: 66px; }
  .hero-copy { min-height: calc(100svh - 66px); padding: 70px 24px 50px; }
  .status-pill { margin-bottom: 34px; }
  .hero h1 { font-size: clamp(50px,14.5vw,68px); line-height: .86; }
  .hero-subtitle { margin-top: 28px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; margin-top: 46px; }
  .hero-visual { min-height: 480px; }
  .score-field { height: 440px; max-height: none; max-width: none; width: 440px; }
  .section-heading, .intro-body, .route-head { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .intro-body { gap: 48px; margin-top: 48px; }
  .lead-copy { font-size: 25px; }
  .fact-grid { grid-template-columns: 1fr 1fr; margin-top: 70px; }
  .fact-grid div:nth-child(2) { border-right: 0; }
  .fact-grid div:nth-child(3), .fact-grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .route-head { padding-bottom: 60px; }
  .route-row { gap: 14px; grid-template-columns: 42px 1fr; padding-bottom: 36px; padding-top: 36px; }
  .route-row p { grid-column: 2; }
  .performance blockquote { margin: 70px 0; padding-left: 24px; }
  .phase-list { margin-left: 0; }
  .phase-list article { gap: 12px; grid-template-columns: 1fr; }
  .nihil-mark { font-size: 40px; min-height: 380px; padding: 30px; }
  .nihil-copy { padding: 78px 28px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(2) { border-right: 1px solid var(--line); }
  .steps li:nth-child(3), .steps li:nth-child(4) { border-top: 1px solid var(--line); }
  .dialogue-card { grid-template-columns: auto 1fr; }
  .dialogue-card .button { grid-column: 1 / -1; }
  .footer-main { align-items: flex-start; flex-direction: column; gap: 34px; }
  .footer-legal { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-actions .button { gap: 14px; letter-spacing: .04em; padding-left: 16px; padding-right: 16px; }
  .section-heading h2, .route-head h2, .performance h2, .nihil-copy h2, .progress h2 { font-size: clamp(38px, 12vw, 44px); }
  .fact-grid, .steps { grid-template-columns: 1fr; }
  .fact-grid div, .fact-grid div:not(:first-child) { border-right: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .fact-grid div:first-child { border-top: 0; }
  .steps li, .steps li:nth-child(2) { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
  .dialogue-card { grid-template-columns: 1fr; }
  .dialogue-symbol { height: 58px; width: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
