/* =====================================================================
   ACCADEMIA GOTAM — Design System (test2)
   Tipografia: Playfair Display (display) + Inter (testo)
   Palette: indaco notturno + oro caldo + carta avorio + salvia
   ===================================================================== */

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

:root {
  /* superfici */
  --paper:    #faf7f1;   /* sfondo carta avorio */
  --paper-2:  #f1ece1;   /* sezione alternata */
  --paper-3:  #e8e1d3;   /* sezione più calda */
  --surface:  #ffffff;   /* card */

  /* indaco */
  --indigo:   #26335c;
  --indigo-2: #34457a;
  --night:    #141c36;   /* sezioni scure profonde */
  --night-2:  #0c1226;

  /* oro */
  --gold:     #bb8b3d;
  --gold-2:   #d9b061;
  --gold-soft:#f3e7cd;

  /* salvia (accento naturale, usato con parsimonia) */
  --sage:     #7d9580;

  /* testo */
  --text:     #21242c;
  --muted:    #5a616f;
  --light:    #939aa8;
  --on-dark:  rgba(255,255,255,.74);

  /* linee / ombre */
  --border:   #e2dccf;
  --border-2: #d4ccba;
  --radius:   16px;
  --radius-s: 10px;
  --shadow:   0 4px 24px rgba(31,38,64,.07);
  --shadow-lg:0 18px 48px rgba(31,38,64,.14);

  /* layout */
  --maxw: 1160px;
  --gut: clamp(1.25rem, 5vw, 4rem);
  --sec-y: clamp(4rem, 8vw, 7.5rem);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }
section { padding: var(--sec-y) var(--gut); }
.section-narrow { max-width: 820px; margin: 0 auto; }

/* sfondi sezione */
.bg-paper   { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-paper-3 { background: var(--paper-3); }
.bg-night   { background: var(--night); color: #fff; }
.bg-indigo  { background: var(--indigo); color: #fff; }

/* ── TIPOGRAFIA / INTESTAZIONI ──────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--gold); opacity: .7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ''; width: 26px; height: 1px; background: var(--gold); opacity: .7;
}

.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400; line-height: 1.14; letter-spacing: -.01em;
  color: var(--indigo);
}
.display em { font-style: italic; color: var(--gold); }

.sec-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 2.85rem);
  font-weight: 400; color: var(--indigo);
  line-height: 1.18; letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.sec-title em { font-style: italic; color: var(--gold); }
.on-dark .sec-title, .bg-night .sec-title, .bg-indigo .sec-title { color: #fff; }
.on-dark .sec-title em, .bg-night .sec-title em, .bg-indigo .sec-title em { color: var(--gold-2); }

.sec-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--muted); font-weight: 300; line-height: 1.7;
  max-width: 620px;
}
.bg-night .sec-sub, .bg-indigo .sec-sub, .on-dark .sec-sub { color: var(--on-dark); }
.bg-night .eyebrow, .bg-indigo .eyebrow, .on-dark .eyebrow { color: var(--gold-2); }
.bg-night .eyebrow::before, .bg-indigo .eyebrow::before,
.bg-night .eyebrow::after, .bg-indigo .eyebrow::after { background: var(--gold-2); }

.sec-head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); max-width: 720px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ── BOTTONI ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 50px;
  font-size: .94rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff; box-shadow: 0 8px 22px rgba(187,139,61,.28);
}
.btn-gold:hover { box-shadow: 0 12px 30px rgba(187,139,61,.38); }
.btn-indigo { background: var(--indigo); color: #fff; box-shadow: 0 8px 22px rgba(38,51,92,.22); }
.btn-indigo:hover { background: var(--indigo-2); box-shadow: 0 12px 30px rgba(38,51,92,.3); }
.btn-white { background: #fff; color: var(--indigo); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--indigo); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-light {
  background: transparent; color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.28);
}
.btn-ghost-light:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,247,241,.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gut); height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.32rem; letter-spacing: .02em; color: var(--indigo);
  text-decoration: none; flex-shrink: 0;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  position: relative; text-decoration: none; color: var(--muted);
  font-size: .9rem; font-weight: 500; padding: .25rem 0;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--indigo); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--indigo); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  padding: .58rem 1.35rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff; text-decoration: none; font-size: .84rem; font-weight: 600;
  box-shadow: 0 6px 16px rgba(187,139,61,.26); transition: transform .18s, box-shadow .25s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(187,139,61,.36); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px; color: var(--indigo);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* mobile menu */
.nav-mobile {
  display: none; flex-direction: column; gap: .35rem;
  padding: .75rem var(--gut) 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none; color: var(--text); font-weight: 500;
  padding: .7rem .5rem; border-radius: 8px; font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a.active { color: var(--gold); }
.nav-mobile .btn { margin-top: .75rem; }

@media (max-width: 920px) {
  .nav-links, .nav-right .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── HERO (home) ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; text-align: center;
  color: #fff;
  background: radial-gradient(120% 90% at 50% -10%, #34457a 0%, var(--night) 48%, var(--night-2) 100%);
  padding: clamp(1.75rem, 3.5vw, 3.5rem) var(--gut) clamp(1.5rem, 2.5vw, 2.75rem);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 20% 10%, rgba(187,139,61,.22), transparent 70%),
    radial-gradient(40% 60% at 85% 20%, rgba(125,149,128,.16), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-2);
  border: none; background: transparent;
  padding: .42rem 1.05rem; border-radius: 50px; margin-top: 1.5rem; margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  font-weight: 400; line-height: 1.13; letter-spacing: -.015em;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.18rem); font-weight: 300;
  color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: clamp(1.5rem,4vw,3rem); justify-content: center; flex-wrap: wrap;
  margin-top: 3.2rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust .ht { text-align: center; }
.hero-trust strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem,3vw,2rem); color: #fff; font-weight: 600; line-height: 1;
}
.hero-trust span { font-size: .76rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }

/* ── COUNTDOWN ──────────────────────────────────────────────────── */
.countdown-inline { display: flex; }
.countdown {
  display: none; align-items: center; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap; text-align: center;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--indigo-2) 100%);
  color: #fff; padding: 1.15rem var(--gut);
}
.countdown.active { display: flex; }
.countdown-label { font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .92rem; }
.countdown-label strong { color: var(--gold-2); }
.countdown-timer { display: flex; gap: .5rem; }
.cd-unit {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: .5rem .7rem; min-width: 58px;
  display: flex; flex-direction: column; align-items: center; line-height: 1.05;
}
.cd-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; }
.cd-lab { font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); }

/* ── PILLARS ────────────────────────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pillar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  display: grid; grid-template-columns: 60px 1fr; gap: 1.25rem; align-items: start;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .3s ease;
}
.pillar::before {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: linear-gradient(var(--gold), var(--gold-2)); transform: scaleY(0);
  transform-origin: top; transition: transform .3s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar:hover::before { transform: scaleY(1); }
.pillar img { width: 56px; height: 56px; grid-row: 1 / 3; }
.pillar h3 { font-size: 1.02rem; font-weight: 600; color: var(--indigo); line-height: 1.4; align-self: center; }
.pillar p { font-size: .9rem; color: var(--muted); line-height: 1.66; grid-column: 2; }

/* ── QUOTE ──────────────────────────────────────────────────────── */
.quote-section { text-align: center; position: relative; overflow: hidden; }
.quote-mark {
  font-family: 'Playfair Display', serif; font-size: 5rem; line-height: .5;
  color: var(--gold-2); opacity: .5; margin-bottom: 1rem; display: block;
}
.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-style: italic; font-weight: 400; line-height: 1.5;
  max-width: 860px; margin: 0 auto; color: rgba(255,255,255,.94);
}
.quote-section blockquote span { color: var(--gold-2); font-style: normal; }
.quote-cite { margin-top: 1.75rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-style: normal; }

/* ── CTA BAND ───────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--night) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(187,139,61,.25), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin-bottom: .9rem; line-height: 1.2;
}
.cta-band p { color: rgba(255,255,255,.78); font-weight: 300; max-width: 640px; margin: 0 auto 2rem; }
.cta-band.gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); }
.cta-band.gold::before { background: radial-gradient(60% 120% at 50% 0%, rgba(255,255,255,.18), transparent 70%); }
.cta-band.gold .btn-white { color: var(--gold); }

/* ── COURSES GRID ───────────────────────────────────────────────── */
.courses-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 1.1rem;
}
.course {
  border-radius: var(--radius-s); overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .3s ease;
}
.course:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.course:hover .course-thumb img { transform: scale(1.06); }
.course-label { padding: .7rem .85rem; font-size: .82rem; font-weight: 500; color: var(--indigo); line-height: 1.35; }
@media (max-width: 600px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .course-label { font-size: .72rem; padding: .45rem .6rem; }
}
.courses-note { text-align: center; margin-top: 2.5rem; font-size: .9rem; color: var(--muted); }

/* ── FOR YOU ────────────────────────────────────────────────────── */
.foryou-grid { display: grid; gap: 1.5rem; max-width: 920px; }
.foryou {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 2.25rem; box-shadow: var(--shadow);
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
  transition: transform .22s ease, box-shadow .3s ease;
}
.foryou:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.foryou:nth-child(2) { margin-left: clamp(0px, 4vw, 3rem); }
.foryou:nth-child(3) { margin-left: clamp(0px, 8vw, 6rem); }
.foryou-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; color: var(--gold-2); opacity: .7; line-height: 1; }
.foryou h3 { font-size: 1.05rem; color: var(--indigo); margin-bottom: .4rem; }
.foryou p { font-size: .92rem; color: var(--muted); line-height: 1.7; }

/* ── CONTENTS LIST ──────────────────────────────────────────────── */
.contents-list { list-style: none; max-width: 720px; margin: 0 auto; display: grid; gap: 0; }
.contents-list li {
  display: flex; gap: .9rem; align-items: flex-start;
  font-size: .98rem; padding: .95rem 0; line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.86);
}
.contents-list li:last-child { border-bottom: none; }
.contents-list li::before { content: '✦'; color: var(--gold-2); flex-shrink: 0; margin-top: .15rem; font-size: .8rem; }

/* ── TESTIMONIALS CAROUSEL ──────────────────────────────────────── */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; padding: .5rem 0; }
.carousel-track { display: flex; gap: 1.5rem; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.tcard {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.tcard .quote {
  font-size: .98rem; line-height: 1.78; color: var(--text); font-style: italic;
  margin-bottom: 1.5rem; flex: 1;
}
.tcard .quote::before { content: '\201C'; color: var(--gold); font-family: 'Playfair Display', serif; font-size: 2rem; line-height: 0; vertical-align: -.35em; margin-right: .2rem; }
.tauthor { display: flex; align-items: center; gap: .9rem; }
.tauthor img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-soft); flex-shrink: 0; }
.tauthor a { text-decoration: none; }
.tauthor-ph {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-2)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .95rem;
}
.tname { font-weight: 600; font-size: .92rem; color: var(--indigo); }
.trole { font-size: .8rem; color: var(--light); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--indigo); font-size: 1.5rem; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
  transition: background .2s, color .2s, transform .2s;
}
.carousel-btn:hover { background: var(--indigo); color: #fff; }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.cdot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); border: none; cursor: pointer; padding: 0; transition: all .25s; }
.cdot.active { background: var(--gold); transform: scale(1.4); width: 22px; border-radius: 50px; }

/* ── MASONRY (testimonianze marco) ──────────────────────────────── */
.masonry { columns: 3 280px; column-gap: 1.5rem; }
.masonry .tcard { break-inside: avoid; margin-bottom: 1.5rem; display: block; }
.masonry .tcard .quote { flex: none; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .9rem; max-width: 820px; margin: 0 auto; }
details.faq {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .25s, border-color .25s;
}
details.faq[open] { box-shadow: var(--shadow); border-color: var(--border-2); }
details.faq summary {
  padding: 1.3rem 1.6rem; font-weight: 600; font-size: 1rem; color: var(--indigo);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; font-size: 1.5rem; color: var(--gold); flex-shrink: 0;
  transition: transform .25s; line-height: 1;
}
details.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.6rem 1.4rem; font-size: .94rem; color: var(--muted); line-height: 1.78; }
.faq-body strong { color: var(--indigo); }
.faq-body p + p { margin-top: .8rem; }

/* ── FOUNDER (home) ─────────────────────────────────────────────── */
.founder-card {
  max-width: 900px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--border); border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.founder-card .role { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin: .3rem 0 1.2rem; }
.founder-card p { color: var(--muted); font-weight: 300; }
.founder-stats { display: flex; flex-wrap: wrap; gap: 2.25rem; margin: 1.75rem 0; }
.founder-stats .fs strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--indigo); line-height: 1; }
.founder-stats .fs span { font-size: .78rem; color: var(--light); }

/* ── PRICING ────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1.75rem; max-width: 760px; margin: 0 auto; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 2rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
  position: relative; transition: transform .25s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 1px solid var(--gold); box-shadow: 0 10px 40px rgba(187,139,61,.2); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px; white-space: nowrap; box-shadow: 0 4px 12px rgba(187,139,61,.35);
}
.price-dur { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.price-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 400; color: var(--indigo); margin-bottom: 1.1rem; }
.price-old { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; }
.price-old del { font-size: 1.05rem; color: var(--light); }
.price-save { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #fff; background: var(--sage); padding: .2rem .6rem; border-radius: 50px; }
.price-now { display: flex; align-items: baseline; gap: .35rem; margin-bottom: .4rem; }
.price-now strong { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 600; color: var(--indigo); line-height: 1; }
.price-now span { font-size: .9rem; color: var(--muted); }
.price-note { font-size: .8rem; color: var(--light); margin-bottom: .4rem; }
.price-breakeven { font-size: .82rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; }
.price-feats { list-style: none; flex: 1; display: flex; flex-direction: column; gap: .65rem; margin: 1.25rem 0 2rem; }
.price-feats li { font-size: .88rem; color: var(--muted); display: flex; gap: .6rem; align-items: flex-start; line-height: 1.5; }
.price-feats li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-card .access { text-align: center; margin-top: .9rem; font-size: .8rem; color: var(--muted); }

/* ── GUARANTEE ──────────────────────────────────────────────────── */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; max-width: var(--maxw); margin: 0 auto; }
.guarantee-shield {
  width: 92px; height: 92px; border-radius: 24px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-soft), #fff); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem; box-shadow: var(--shadow);
}
.guarantee p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; max-width: 720px; }
.guarantee-points { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.guarantee-points .gp { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; }
.guarantee-points .gp span { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.guarantee-points a { color: var(--gold); text-decoration: none; font-weight: 600; }
.guarantee-points a:hover { text-decoration: underline; }

/* ── PAGE HEADER (pagine secondarie) ────────────────────────────── */
.page-header {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: radial-gradient(120% 100% at 50% -20%, var(--indigo-2) 0%, var(--night) 55%, var(--night-2) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(187,139,61,.18), transparent 70%);
}
.page-header > .wrap { position: relative; z-index: 1; }
.page-header .eyebrow { color: var(--gold-2); justify-content: center; }
.page-header .eyebrow::before, .page-header .eyebrow::after { background: var(--gold-2); }
.page-title {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.12; margin-bottom: 1rem; letter-spacing: -.01em;
}
.page-header p { color: rgba(255,255,255,.74); font-weight: 300; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ── MARCO: hero personale ──────────────────────────────────────── */
.marco-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 100% at 80% 0%, var(--indigo-2) 0%, var(--night) 55%, var(--night-2) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gut);
}
.marco-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(45% 70% at 12% 10%, rgba(187,139,61,.22), transparent 70%);
}
.marco-hero-inner {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.marco-hero .eyebrow { color: var(--gold-2); }
.marco-hero .eyebrow::before { background: var(--gold-2); }
.marco-name { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 400; line-height: 1.08; margin-bottom: .6rem; }
.marco-role { font-size: .92rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.5rem; }
.marco-role span { color: rgba(255,255,255,.3); margin: 0 .5rem; }
.marco-bio { color: rgba(255,255,255,.78); font-weight: 300; max-width: 540px; margin-bottom: 2rem; line-height: 1.85; }
.marco-hero-ctas { display: flex; gap: .85rem; flex-wrap: wrap; }
.marco-photo img { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.4); }

/* stats bar */
.stats-bar { background: var(--indigo); color: #fff; padding: 2.25rem var(--gut); }
.stats-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.stats-inner .stat { flex: 1; min-width: 120px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); padding: 0 1rem; }
.stats-inner .stat:last-child { border-right: none; }
.stats-inner .stat strong { display: block; font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); color: var(--gold-2); font-weight: 600; }
.stats-inner .stat span { font-size: .76rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* bio split */
.bio-grid { display: grid; grid-template-columns: 1fr 330px; gap: clamp(2rem,5vw,4rem); align-items: start; }
.bio-text p { color: var(--muted); font-weight: 300; margin-bottom: 1.1rem; line-height: 1.85; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-aside { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.aside-card h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.aside-card ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.aside-card ul li { font-size: .9rem; color: var(--muted); display: flex; gap: .5rem; align-items: baseline; }
.aside-card ul li::before { content: '·'; color: var(--gold); font-weight: 700; }
.social-list { display: flex; flex-direction: column; gap: .65rem; }
.social-list a { display: flex; align-items: center; gap: .7rem; font-size: .9rem; color: var(--indigo); text-decoration: none; font-weight: 500; transition: color .2s; }
.social-list a:hover { color: var(--gold); }
.sl-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; font-weight: 700; background: var(--indigo); flex-shrink: 0; }

/* ── TIMELINE (storia / marco percorso) ─────────────────────────── */
.timeline { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; }
.tl-year { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 600; text-align: right; padding-top: .15rem; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 15px; height: 15px; border-radius: 50%; background: var(--gold); border: 3px solid var(--paper); box-shadow: 0 0 0 2px var(--gold); margin-top: .4rem; flex-shrink: 0; }
.tl-bar { width: 2px; flex: 1; background: var(--border-2); margin: .4rem 0; }
.tl-item:last-child .tl-bar { display: none; }
.tl-body { padding-bottom: 2.75rem; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--indigo); margin-bottom: .5rem; }
.tl-body p { color: var(--muted); font-weight: 300; line-height: 1.75; }
@media (max-width: 560px) {
  .tl-item { grid-template-columns: 56px 1fr; gap: 1rem; }
  .tl-year { font-size: 1.1rem; }
}

/* cards a griglia per percorso/valori */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.mini-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow); transition: transform .22s, box-shadow .3s; }
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mini-card .year { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--gold); font-weight: 600; margin-bottom: .5rem; }
.mini-card .icon { font-size: 2rem; margin-bottom: .9rem; }
.mini-card h3 { font-size: 1.05rem; color: var(--indigo); margin-bottom: .5rem; }
.mini-card p { font-size: .9rem; color: var(--muted); font-weight: 300; line-height: 1.7; }
.bg-night .mini-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.bg-night .mini-card h3 { color: #fff; }
.bg-night .mini-card p { color: var(--on-dark); }

/* ── LIBRI ──────────────────────────────────────────────────────── */
.libri-preview { display: grid; grid-template-columns: 1fr auto; gap: clamp(2rem,5vw,4rem); align-items: center; }
.libri-covers { display: flex; gap: 1rem; }
.libri-covers img { width: 130px; border-radius: 8px; box-shadow: var(--shadow-lg); transition: transform .25s; }
.libri-covers img:nth-child(2) { transform: translateY(-16px); }
.libri-covers img:hover { transform: translateY(-22px); }
.intro-split { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; gap: clamp(2rem,5vw,4rem); align-items: center; }
.intro-split p { color: var(--muted); font-weight: 300; margin-bottom: 1rem; line-height: 1.8; }
.intro-stats { display: flex; flex-direction: column; gap: 1rem; }
.intro-stats .is { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.5rem; box-shadow: var(--shadow); }
.intro-stats .is strong { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold); display: block; line-height: 1; }
.intro-stats .is span { font-size: .82rem; color: var(--muted); }
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.75rem; }
.book {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .25s, box-shadow .3s;
}
.book:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.book-cover { position: relative; background: var(--paper-2); display: flex; align-items: center; justify-content: center; }
.book-cover img { width: 100%; height: auto; display: block; }
.book-collana { position: absolute; top: .8rem; left: .8rem; background: rgba(38,51,92,.9); color: #fff; font-size: .64rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 50px; }
.book-collana.reiki { background: rgba(125,149,128,.95); }
.book-collana.pro { background: rgba(187,139,61,.95); }
.book-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.book-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--indigo); line-height: 1.25; margin-bottom: .3rem; }
.book-sub { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: .8rem; line-height: 1.4; }
.book-desc { font-size: .86rem; color: var(--muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.book-formats { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.1rem; }
.book-formats span { font-size: .68rem; color: var(--muted); background: var(--paper-2); border: 1px solid var(--border); padding: .2rem .6rem; border-radius: 50px; }
.btn-amazon {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1rem; background: var(--indigo); color: #fff; text-decoration: none;
  border-radius: 50px; font-size: .85rem; font-weight: 600; transition: background .2s, transform .18s;
}
.btn-amazon:hover { background: var(--indigo-2); transform: translateY(-2px); }

/* ── TEAM ───────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.75rem; }
.member { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .3s; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.member-photo { aspect-ratio: 1; background: linear-gradient(135deg, var(--paper-2), var(--paper-3)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-ph { display: flex; flex-direction: column; align-items: center; gap: .6rem; color: var(--light); font-size: .8rem; }
.member-info { padding: 1.5rem; }
.member-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--indigo); }
.member-role { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin: .25rem 0 .9rem; }
.member-bio { font-size: .9rem; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }
.member-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.member-links a { font-size: .85rem; color: var(--indigo); text-decoration: none; border-bottom: 1px solid rgba(38,51,92,.25); transition: color .2s; }
.member-links a:hover { color: var(--gold); }
.collab-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 1.5rem; }
.collab { text-align: center; }
.collab-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto .9rem; background: linear-gradient(135deg, var(--paper-2), var(--paper-3)); display: flex; align-items: center; justify-content: center; color: var(--light); overflow: hidden; }
.collab-avatar img { width: 100%; height: 100%; object-fit: cover; }
.collab-name { font-weight: 600; color: var(--indigo); font-size: .95rem; }
.collab-role { font-size: .8rem; color: var(--muted); }

/* ── EVENTI ─────────────────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.75rem; }
.event { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .25s, box-shadow .3s; }
.event:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-img { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--paper-2), var(--paper-3)); display: flex; align-items: center; justify-content: center; color: var(--light); }
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-badge { position: absolute; top: .85rem; right: .85rem; font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 50px; color: #fff; }
.event-badge.online { background: rgba(38,51,92,.92); }
.event-badge.presenza { background: rgba(187,139,61,.95); }
.event-badge.live { background: rgba(125,149,128,.95); }
.event-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.event-date { font-size: .8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.event-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--indigo); margin-bottom: .6rem; line-height: 1.25; }
.event-desc { font-size: .9rem; color: var(--muted); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.event-meta { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; color: var(--muted); margin-bottom: 1.25rem; }
.event-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.event-actions .btn { padding: .65rem 1.3rem; font-size: .85rem; }
.archive-list { display: flex; flex-direction: column; gap: .9rem; max-width: 820px; }
.archive-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 1.25rem; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.5rem; box-shadow: var(--shadow); }
.archive-date { text-align: center; font-weight: 700; color: var(--indigo); font-size: .9rem; text-transform: uppercase; line-height: 1.1; }
.archive-date small { display: block; font-size: .72rem; color: var(--light); font-weight: 500; }
.archive-info h4 { font-size: 1rem; color: var(--indigo); margin-bottom: .15rem; }
.archive-info p { font-size: .84rem; color: var(--muted); }
.newsletter { text-align: center; }
.newsletter-form { display: flex; gap: .6rem; max-width: 480px; margin: 1.75rem auto 0; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: .9rem 1.25rem; border-radius: 50px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; font-size: .92rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }

/* ── CONTATTO ───────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--indigo); }
.form-group input, .form-group select, .form-group textarea {
  padding: .85rem 1.1rem; border-radius: var(--radius-s); border: 1px solid var(--border-2);
  background: var(--surface); font-family: inherit; font-size: .95rem; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(187,139,61,.15); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--light); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--indigo); margin-bottom: 1.1rem; }
.info-item { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1rem; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 1.2rem; flex-shrink: 0; }
.info-text { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.info-text a { color: var(--indigo); text-decoration: none; font-weight: 600; }
.info-text a:hover { color: var(--gold); }
.info-text small { display: block; font-size: .78rem; color: var(--light); margin-top: .15rem; }
.social-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.social-pills a { font-size: .85rem; color: var(--indigo); text-decoration: none; padding: .4rem .9rem; border: 1px solid var(--border-2); border-radius: 50px; transition: all .2s; }
.social-pills a:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.sessioni { text-align: center; max-width: 640px; margin: 0 auto; }
.sessioni .price-tag { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--indigo); margin: 1.25rem 0; }
.sessioni .price-tag small { font-size: 1rem; color: var(--muted); }

/* ── PLATFORMS ──────────────────────────────────────────────────── */
.platforms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 860px; margin: 0 auto;
}
.platform-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem 2rem;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .3s ease;
}
.platform-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.platform-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gold-soft); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.platform-name {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  color: var(--indigo); margin-bottom: .75rem; font-weight: 500;
}
.platform-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

@media (max-width: 720px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--night); color: rgba(255,255,255,.7); padding: clamp(3rem,6vw,4.5rem) var(--gut) 2rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; text-decoration: none; }
.footer-brand span { color: var(--gold-2); }
.footer-about { font-size: .9rem; line-height: 1.7; margin-top: 1rem; max-width: 320px; font-weight: 300; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; }
.footer-col nav { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-2); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .marco-hero-inner { grid-template-columns: 1fr; }
  .marco-photo { max-width: 380px; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-stats { flex-direction: row; flex-wrap: wrap; }
  .libri-preview { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .foryou { grid-template-columns: 1fr; gap: .5rem; padding: 1.75rem; }
  .foryou:nth-child(2), .foryou:nth-child(3) { margin-left: 0; }
  .masonry { columns: 1; }
  .tcard { flex: 0 0 100%; }
  .carousel-prev { left: -8px; }
  .carousel-next { right: -8px; }
  .guarantee { grid-template-columns: 1fr; gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .stats-inner .stat { border-right: none; }
}
@media (max-width: 600px) {
  .hero-actions, .marco-hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .marco-hero-ctas .btn { width: 100%; }
  .countdown { gap: .85rem; padding: 1rem; }
  .cd-unit { min-width: 48px; }
  .archive-item { grid-template-columns: 56px 1fr; }
  .archive-item .btn { grid-column: 1 / -1; }
}

/* ── SITE FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--night); padding: 2rem var(--gut); }
.site-footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.site-footer .brand { color: #fff; font-size: 1rem; }
.site-footer .brand span { color: var(--gold); }
.footer-nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.65); font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
@media (max-width: 520px) {
  .site-footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 1rem; }
}
