/* === TOKENS === */
:root {
  --ink: #1a2a32;
  --ink-soft: #4a5760;
  --ink-mute: #7a868f;
  --paper: #f6f3ec;
  --paper-card: #ffffff;
  --paper-warm: #efe9da;
  --line: #d9d0bd;
  --line-soft: #e8e1cf;
  --brand: #1a3a47;
  --brand-mid: #2d6e8c;
  --brand-light: #6fbfbf;
  --brand-soft: #d9e8eb;
  --accent: #b85c3a;
  --accent-soft: #f0d9cd;
  --green: #2d8659;
  --shadow-1: 0 1px 2px rgba(26, 42, 50, 0.04);
  --shadow-2: 0 8px 24px rgba(26, 42, 50, 0.06);
  --maxw: 1240px;
  --maxw-narrow: 880px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--brand); color: var(--paper); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* === TYPOGRAPHY === */
.display, h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 500; }
h2 { font-size: clamp(32px, 4.4vw, 54px); font-weight: 500; }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }

.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '— ';
  margin-right: 4px;
}
.lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 64ch;
}
p { color: var(--ink-soft); }
p strong { color: var(--ink); font-weight: 600; }

/* === LAYOUT === */
.section { padding: clamp(80px, 10vw, 140px) var(--gutter); }
.container { max-width: var(--maxw); margin: 0 auto; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; }
.divider-top { border-top: 1px solid var(--line); }
.divider-section {
  width: 56px; height: 1px; background: var(--brand-mid); margin-bottom: 32px;
}

/* === NAVIGATION === */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 243, 236, 0.96);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex; flex-direction: column; gap: 1px;
  line-height: 1;
}
.nav-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  font-variation-settings: "opsz" 36;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.nav-brand-role {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 4px;
}
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu a {
  display: block; padding: 10px 14px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink); transition: color 0.2s;
  letter-spacing: -0.005em;
}
.nav-menu a:hover { color: var(--brand-mid); }
.nav-has-sub > a::after {
  content: ' ↓'; font-size: 10px; opacity: 0.5; margin-left: 2px;
}
.nav-sub {
  position: absolute; top: 100%; left: 0;
  min-width: 240px; padding: 12px 0;
  background: var(--paper-card);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
  list-style: none;
}
.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-sub a {
  padding: 9px 18px; font-size: 14px;
  font-weight: 400; color: var(--ink-soft);
}
.nav-sub a:hover { background: var(--paper); color: var(--brand); }
.nav-cta {
  margin-left: 8px; padding: 10px 18px !important;
  background: var(--ink); color: var(--paper) !important;
  border-radius: 100px;
  font-size: 13.5px !important; font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brand-mid) !important; color: var(--paper) !important; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 8px; right: 8px;
  height: 1.5px; background: var(--ink);
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* === HERO === */
.hero {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 120px);
  padding-left: var(--gutter); padding-right: var(--gutter);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center, var(--brand-soft) 0%, transparent 60%);
  opacity: 0.5; z-index: 0;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand-mid);
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19.5px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 40px; max-width: 52ch;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--ink); color: var(--paper);
  border-radius: 100px;
  font-size: 15.5px; font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.25s ease;
}
.btn-primary::after { content: '→'; font-size: 16px; transition: transform 0.25s; }
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-1px); }
.btn-primary:hover::after { transform: translateX(3px); }
.btn-secondary {
  font-size: 15px; font-weight: 500;
  color: var(--ink); padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  transition: all 0.25s;
}
.btn-secondary:hover { color: var(--brand-mid); border-color: var(--brand-mid); }

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}
.hero-image::before {
  content: '';
  position: absolute; top: 24px; left: -24px;
  width: 100%; height: 100%;
  background: var(--brand-soft);
  z-index: 0;
}
.hero-image img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.hero-meta {
  margin-top: 28px;
  display: flex; align-items: center; gap: 20px;
  font-size: 13px; color: var(--ink-mute);
  flex-wrap: wrap;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-mid); }

/* === PILLARS === */
.pillars { background: var(--paper-card); border-top: 1px solid var(--line); }
.pillars-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 48px 36px 56px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--paper); }
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 12;
  color: var(--brand-mid);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.pillar h3 { margin-bottom: 16px; }
.pillar p {
  font-size: 16px; line-height: 1.6;
  margin-bottom: 28px; color: var(--ink-soft);
}
.pillar-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 100px;
  margin-bottom: 16px;
}
.pillar-link {
  font-size: 14px; font-weight: 600;
  color: var(--brand); display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.25s;
}
.pillar-link:hover { color: var(--brand-mid); border-color: var(--brand-mid); }

/* === BIO === */
.bio { padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(80px, 10vw, 140px); }
.bio-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.bio-aside {
  position: sticky; top: 110px;
  padding: 40px 36px;
  background: var(--paper-card);
  border: 1px solid var(--line);
}
.bio-aside-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.bio-aside-name {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 500;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  line-height: 1.1;
}
.bio-aside-role {
  font-size: 14px; color: var(--ink-soft);
  margin-bottom: 32px;
}
.bio-aside-list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.bio-aside-list li {
  display: flex; flex-direction: column;
  gap: 3px; font-size: 14px;
}
.bio-aside-label {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-mid);
}
.bio-aside-value {
  color: var(--ink); font-weight: 500;
  line-height: 1.4;
}
.bio-aside-foot {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
}
.bio-aside-foot a {
  color: var(--ink); font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.bio-aside-foot a:hover { border-color: var(--brand-mid); color: var(--brand-mid); }
.bio-text > p {
  font-size: 18px; line-height: 1.7;
  margin-bottom: 24px;
  color: var(--ink-soft);
}
.bio-text > p:first-of-type {
  font-size: 21px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 32px;
}
.bio-quote {
  margin: 48px 0 32px;
  padding-left: 32px;
  border-left: 2px solid var(--brand-mid);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 27px);
  line-height: 1.35;
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bio-credentials {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px;
}
.bio-cred-item { font-size: 13.5px; color: var(--ink-soft); }
.bio-cred-label {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 4px;
}

/* === METHOD === */
.method {
  background: var(--brand);
  color: var(--paper);
  position: relative;
}
.method .eyebrow { color: var(--brand-light); }
.method h2, .method h3 { color: var(--paper); }
.method .divider-section { background: var(--brand-light); }
.method-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 96px);
}
.method-head .lead { color: rgba(246, 243, 236, 0.78); }
.method-list { list-style: none; }
.method-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 36px 0;
  border-top: 1px solid rgba(217, 232, 235, 0.16);
  align-items: baseline;
}
.method-item:last-child { border-bottom: 1px solid rgba(217, 232, 235, 0.16); }
.method-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand-light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.method-content h3 {
  margin-bottom: 8px;
  font-weight: 500;
  font-variation-settings: "opsz" 60;
}
.method-content p {
  color: rgba(246, 243, 236, 0.72);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 62ch;
}
.method-close {
  margin-top: 56px;
  padding: 32px;
  background: rgba(246, 243, 236, 0.04);
  border-left: 2px solid var(--accent);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  font-variation-settings: "opsz" 60;
  color: rgba(246, 243, 236, 0.95);
}

/* === PATH (Come funziona il percorso) === */
.path { background: var(--paper-card); }
.path-head { margin-bottom: clamp(60px, 7vw, 96px); }
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.path-step {
  position: relative;
  z-index: 1;
}
.path-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: -62px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.path-marker {
  width: 60px; height: 60px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 24;
  font-size: 20px;
  color: var(--brand-mid);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.path-step h3 { margin-bottom: 8px; font-weight: 600; }
.path-when {
  display: block;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.path-step p {
  font-size: 15.5px; line-height: 1.65;
}
.path-premium {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}
.path-premium-content {
  padding: 40px;
}
.path-premium-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.path-premium h3 { margin-bottom: 12px; }
.path-premium p {
  font-size: 15.5px; line-height: 1.6;
  margin-bottom: 0; max-width: 44ch;
}
.path-pricing {
  padding: 40px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.price-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-label { font-size: 14px; color: var(--ink-soft); }
.price-value {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
}
.price-note {
  font-size: 12px; color: var(--ink-mute);
  margin-top: 16px; line-height: 1.5;
}

/* === STATS RIBBON === */
.stats-ribbon {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(50px, 6vw, 72px) var(--gutter);
}
.stats-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-cell {
  padding: 0 32px;
  border-right: 1px solid rgba(246, 243, 236, 0.12);
  text-align: center;
}
.stat-cell:first-child { padding-left: 0; }
.stat-cell:last-child { border-right: none; padding-right: 0; }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5.5vw, 68px);
  font-weight: 400; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand-light);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246, 243, 236, 0.7);
}

/* === SEDI === */
.sedi { background: var(--paper); }
.sedi-head { margin-bottom: clamp(50px, 6vw, 80px); }
.sedi-list { max-width: 900px; }
.sede-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: padding 0.3s;
}
.sede-item:last-child { border-bottom: 1px solid var(--line); }
.sede-item:hover { padding-left: 12px; }
.sede-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  font-size: 36px;
  font-weight: 400;
  color: var(--brand-mid);
  line-height: 1;
}
.sede-body h3 {
  font-size: 22px; font-weight: 600;
  margin-bottom: 6px;
}
.sede-meta {
  font-size: 14.5px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.sede-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 9px;
  background: var(--paper-warm);
  border-radius: 100px;
  color: var(--ink);
}
.sede-tag.main { background: var(--brand); color: var(--paper); }
.sede-arrow {
  font-family: 'Fraunces', serif;
  font-size: 24px; color: var(--ink-mute);
  transition: color 0.25s;
}
.sede-item:hover .sede-arrow { color: var(--brand-mid); }

/* === RECENSIONI === */
.recensioni { background: var(--paper-card); }
.recensioni-head { margin-bottom: clamp(50px, 6vw, 80px); }
.proof-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(50px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-rating { text-align: left; }
.proof-rating-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.proof-stars {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.proof-rating-meta {
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.proof-clusters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.proof-cluster {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.proof-cluster-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px; font-weight: 500;
  color: var(--brand-mid);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.proof-cluster-name {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 600;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.proof-cluster-desc {
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-soft);
}
.recensioni-foot {
  margin-top: 48px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.rating-line {
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px; color: var(--ink-soft);
}
.rating-stars {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
}

/* === GUIDE === */
.guide { background: var(--paper); }
.guide-head { margin-bottom: clamp(50px, 6vw, 80px); }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.guide-card {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: background 0.25s;
  display: flex; flex-direction: column;
}
.guide-card:last-child { border-right: none; }
.guide-card:hover { background: var(--paper-card); }
.guide-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-mid);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.guide-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}
.guide-card p {
  font-size: 14.5px; line-height: 1.6;
  margin-bottom: 24px;
  color: var(--ink-soft);
  flex-grow: 1;
}
.guide-link {
  font-size: 13px; font-weight: 600;
  color: var(--brand-mid);
  letter-spacing: 0.04em;
}
.guide-foot {
  margin-top: 40px; text-align: right;
}

/* === FAQ === */
.faq { background: var(--paper-card); }
.faq-head { margin-bottom: clamp(50px, 6vw, 80px); }
.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 500;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--brand-mid); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink-soft);
  transition: all 0.3s ease;
}
.faq-icon::before {
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q { color: var(--brand-mid); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 32px;
}
.faq-a p {
  font-size: 16.5px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}
.faq-a p strong { color: var(--ink); }

/* === CTA END === */
.cta-end { 
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.cta-text h2 {
  margin-bottom: 24px;
}
.cta-text .lead { margin-bottom: 36px; }
.cta-actions {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-actions .btn-primary { background: var(--brand); }
.cta-actions .btn-primary:hover { background: var(--brand-mid); }
.btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 15.5px; font-weight: 600;
  transition: all 0.25s;
}
.btn-phone:hover { background: var(--ink); color: var(--paper); }
.cta-points {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; color: var(--ink-soft);
}
.cta-points li::before {
  content: '·'; color: var(--brand-mid); font-weight: bold;
  margin-right: 10px;
}
.cta-manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
  aspect-ratio: 5 / 4;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.cta-manifesto-top {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-light);
}
.cta-manifesto-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  color: var(--paper);
  letter-spacing: -0.015em;
  margin: 32px 0;
}
.cta-manifesto-foot {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 243, 236, 0.18);
}
.cta-manifesto-foot-row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(246, 243, 236, 0.7);
}
.cta-manifesto-foot-row strong {
  color: var(--paper); font-weight: 600;
}

/* === FOOTER === */
.site-foot {
  background: var(--ink);
  color: rgba(246, 243, 236, 0.7);
  padding: clamp(60px, 6vw, 80px) var(--gutter) 32px;
  font-size: 13.5px;
  line-height: 1.6;
}
.foot-inner { max-width: var(--maxw); margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246, 243, 236, 0.1);
}
.foot-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 500;
  font-variation-settings: "opsz" 36;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.foot-brand-role {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
  margin-bottom: 20px;
}
.foot-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  color: rgba(246, 243, 236, 0.85);
  max-width: 36ch; line-height: 1.4;
}
.foot-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 18px;
  letter-spacing: 0.18em;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a {
  color: rgba(246, 243, 236, 0.7);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--paper); }
.foot-bottom {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(246, 243, 236, 0.5);
}
.foot-credentials { max-width: 60ch; }
.foot-credentials strong { color: rgba(246, 243, 236, 0.85); font-weight: 600; }
.foot-disclaimer {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(246, 243, 236, 0.08);
  font-size: 11.5px;
  color: rgba(246, 243, 236, 0.45);
  line-height: 1.6;
  max-width: 100%;
}

/* === MOBILE STICKY CTA === */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter);
  box-shadow: 0 -4px 16px rgba(26, 42, 50, 0.06);
  gap: 10px;
}
.mobile-sticky a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 13px 12px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.msc-call { background: var(--ink); color: var(--paper); }
.msc-whatsapp { background: var(--green); color: var(--paper); }

/* === PROGRESS BAR === */
#reading-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--brand-mid);
  z-index: 999;
  transition: width 0.1s ease-out;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink); color: var(--paper);
  font-size: 18px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--brand-mid); transform: translateY(-2px); }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .pillars-head, .method-head, .cta-grid {
    grid-template-columns: 1fr; align-items: start;
  }
  .recensioni-grid, .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-block { grid-template-columns: 1fr; gap: 40px; }
  .proof-clusters { grid-template-columns: 1fr 1fr; }
  .guide-card:nth-child(2) { border-right: none; }
  .path-grid { grid-template-columns: 1fr; gap: 40px; }
  .path-step:not(:last-child)::after { display: none; }
  .path-premium { grid-template-columns: 1fr; }
  .path-pricing { border-left: none; border-top: 1px solid var(--line); }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-aside { position: relative; top: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper); padding: 90px var(--gutter) 120px;
    gap: 4px; overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-menu a { padding: 14px 0; font-size: 16px; }
  .nav-sub {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    background: transparent;
    margin-left: 16px;
    max-height: 0; overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }
  .nav-has-sub.active .nav-sub { max-height: 400px; padding: 8px 0; }
  .nav-sub a { padding: 8px 0; font-size: 14px; }
  .nav-cta {
    margin-left: 0; margin-top: 16px;
    text-align: center;
  }
  .nav-toggle { display: block; position: relative; z-index: 100; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 320px; margin: 0 auto; }
  .hero-image::before { left: -16px; top: 16px; }
  .recensioni-grid, .guide-grid { grid-template-columns: 1fr; }
  .proof-clusters { grid-template-columns: 1fr; }
  .guide-card { border-right: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-cell { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(246, 243, 236, 0.12); }
  .stat-cell:last-child { border-bottom: none; }
  .sede-item { grid-template-columns: 50px 1fr; gap: 20px; }
  .sede-arrow { display: none; }
  .sede-num { font-size: 28px; }
  .method-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
  .method-num { font-size: 36px; }
  .bio-credentials { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  main { padding-bottom: 80px; }
  .mobile-sticky { display: flex; }
  .back-to-top { bottom: 90px; right: 16px; }
}

/* ============================================ */
/* BREADCRUMB (interne)                         */
/* ============================================ */
.breadcrumb {
  max-width: var(--maxw); margin: 0 auto;
  padding: 24px var(--gutter) 0;
  font-size: 13px; color: var(--ink-mute);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-mute); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brand-mid); }
.breadcrumb span { color: var(--line); }

/* ============================================ */
/* HUB PILASTRO (Mangiare / Stare bene / Allenarsi) */
/* ============================================ */
.hub-hero {
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(40px, 5vw, 64px);
}
.hub-hero-inner { max-width: var(--maxw-narrow); margin: 0 auto; }
.hub-hero h1 { margin: 16px 0 24px; }
.hub-hero .lead { max-width: 60ch; }

.hub-guides {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 10vw, 140px);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.hub-guide {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: background 0.25s;
  display: flex; flex-direction: column;
}
.hub-guide:nth-child(2n) { border-right: none; }
.hub-guide:hover { background: var(--paper-card); }
.hub-guide-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 14px; font-weight: 500; color: var(--brand-mid);
  margin-bottom: 24px; letter-spacing: 0.05em;
}
.hub-guide h3 { font-size: 26px; margin-bottom: 12px; font-weight: 600; }
.hub-guide p {
  font-size: 15.5px; line-height: 1.6; margin-bottom: 24px;
  color: var(--ink-soft); flex-grow: 1;
}
.hub-guide-link {
  font-size: 13.5px; font-weight: 600; color: var(--brand-mid);
  letter-spacing: 0.03em;
}

/* hub "percorsi consigliati" reading paths */
.hub-paths {
  background: var(--paper-card); border-top: 1px solid var(--line);
}
.hub-path {
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(20px, 4vw, 56px);
  padding: 32px 0; border-top: 1px solid var(--line); align-items: baseline;
}
.hub-path:first-of-type { border-top: none; }
.hub-path-label {
  font-family: 'Fraunces', serif; font-size: 21px; font-weight: 500;
  font-variation-settings: "opsz" 36; letter-spacing: -0.01em;
}
.hub-path-steps { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.hub-path-steps a { color: var(--brand-mid); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.hub-path-steps a:hover { border-color: var(--brand-mid); }

/* ============================================ */
/* GUIDA — articolo lungo                       */
/* ============================================ */
.guide-article {
  max-width: 760px; margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(80px, 10vw, 120px);
}
.guide-article-head { margin-bottom: 48px; }
.guide-article h1 { margin: 16px 0 20px; }
.guide-article-meta {
  font-size: 13px; color: var(--ink-mute);
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.guide-article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-mid); }

/* TL;DR box */
.guide-tldr {
  background: var(--brand); color: var(--paper);
  padding: 32px 36px; margin: 40px 0;
}
.guide-tldr summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-light);
  cursor: pointer; list-style: none;
}
.guide-tldr summary::-webkit-details-marker { display: none; }
.guide-tldr summary::after { content: ' +'; }
.guide-tldr[open] summary::after { content: ' –'; }
.guide-tldr-body { margin-top: 20px; }
.guide-tldr-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.guide-tldr-body li {
  font-size: 15.5px; line-height: 1.5; color: rgba(246,243,236,0.9);
  padding-left: 20px; position: relative;
}
.guide-tldr-body li::before { content: '·'; position: absolute; left: 4px; color: var(--brand-light); font-weight: bold; }

/* corpo guida */
.guide-body { font-size: 18px; line-height: 1.75; color: var(--ink-soft); }
.guide-body h2 {
  font-size: clamp(26px, 3vw, 34px); margin: 56px 0 20px;
  color: var(--ink); scroll-margin-top: 90px;
}
.guide-body h3 { font-size: 22px; margin: 36px 0 14px; color: var(--ink); }
.guide-body p { margin-bottom: 20px; }
.guide-body p strong { color: var(--ink); }
.guide-body ul, .guide-body ol { margin: 0 0 20px 24px; }
.guide-body li { margin-bottom: 8px; }
.guide-body a { color: var(--brand-mid); border-bottom: 1px solid var(--brand-soft); transition: border-color 0.2s; }
.guide-body a:hover { border-color: var(--brand-mid); }
.guide-body blockquote {
  margin: 32px 0; padding-left: 28px; border-left: 2px solid var(--brand-mid);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 100;
}
/* citazione scientifica inline (DOI / ref) */
.guide-body .ref { font-size: 13px; color: var(--ink-mute); vertical-align: super; }
.guide-refs {
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line);
  font-size: 13.5px; line-height: 1.6; color: var(--ink-mute);
}
.guide-refs h2 { font-size: 18px; color: var(--ink); margin-bottom: 16px; }
.guide-refs ol { margin-left: 20px; }
.guide-refs a { color: var(--brand-mid); word-break: break-word; }

/* CTA fine guida */
.guide-cta {
  margin-top: 56px; padding: 40px; background: var(--paper-warm);
  text-align: center;
}
.guide-cta h2 { font-size: 26px; margin-bottom: 12px; }
.guide-cta p { font-size: 16px; color: var(--ink-soft); margin-bottom: 24px; }

/* link altre guide (cross-link interno) */
.guide-related {
  max-width: 760px; margin: 0 auto; padding: 0 var(--gutter) 80px;
}
.guide-related h2 { font-size: 20px; margin-bottom: 20px; }
.guide-related-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.guide-related-list a {
  padding: 20px 24px; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); transition: all 0.25s;
}
.guide-related-list a:hover { background: var(--paper-card); border-color: var(--brand-mid); }
.guide-related-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; }

@media (max-width: 768px) {
  .hub-guides { grid-template-columns: 1fr; }
  .hub-guide { border-right: none; }
  .hub-path { grid-template-columns: 1fr; gap: 8px; }
  .guide-related-list { grid-template-columns: 1fr; }
  .guide-body { font-size: 17px; }
}
