/*
Theme Name: Savino Novelli Child
Theme URI: https://example.com/
Description: Child theme package for the Savino Novelli site.
Author: Marketing Movers
Template: hello-elementor
Version: 1.0.0
Text Domain: savino-novelli-child
*/

/* ============================================================
   SAVINO NOVELLI — main.css v2
   ============================================================ */

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

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--black); color: var(--white); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- TOKENS --- */
:root {
  --black:        #080807;
  --black-soft:   #0f0f0d;
  --black-mid:    #141410;
  --white:        #f4f0e8;
  --cream:        #ede8dc;
  --cream-dark:   #ddd8cc;
  --gold:         #b49a35;
  --gold-light:   #cdb84e;
  --text-dark:    #1c1a16;
  --text-muted:   #6b6455;
  --border:       rgba(180,154,53,0.15);
  --border-cream: rgba(180,154,53,0.25);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Syne', system-ui, sans-serif;
  --mono:  'Syne Mono', monospace;
  --max-w: 1280px;
  --pad-x: 64px;
  --gap-xl:  100px;
  --gap-2xl: 140px;
}

/* --- UTILITY --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.dark::before { background: var(--gold); }

/* --- ANIMAZIONI --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineDown {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER
   ============================================================ */
#sn-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 var(--pad-x);
  box-sizing: border-box;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background 0.4s, border-color 0.4s;
}
.header-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
#sn-header.scrolled {
  background: rgba(8,8,7,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.header-logo span { font-weight: 300; font-style: italic; }

.header-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: inherit;
}
.header-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-nav { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.header-nav a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.5);
  transition: color 0.25s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: var(--gold-light); }
.sn-page-chi-sono #sn-header:not(.scrolled) .header-logo { color: var(--text-dark); }
.sn-page-chi-sono #sn-header:not(.scrolled) .header-nav a { color: rgba(28,26,22,0.66); }
.sn-page-chi-sono #sn-header:not(.scrolled) .header-nav a:hover { color: var(--text-dark); }
.sn-page-chi-sono #sn-header:not(.scrolled) .header-nav a.active { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
#sn-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px var(--pad-x) 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.3);
  line-height: 1.7;
}
.footer-nav-group h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a { font-size: 0.88rem; color: rgba(244,240,232,0.4); transition: color 0.25s; }
.footer-nav-group a:hover { color: var(--white); }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-social h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-social a { font-size: 0.88rem; color: rgba(244,240,232,0.4); transition: color 0.25s; }
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  color: rgba(244,240,232,0.2);
}

/* ============================================================
   QUOTE (componente riutilizzabile, una per pagina)
   ============================================================ */
.sn-quote {
  background: var(--black);
  padding: 100px var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sn-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 28rem;
  font-weight: 700;
  color: rgba(180,154,53,0.04);
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.sn-quote.on-cream {
  background: var(--cream);
  border-top: 1px solid var(--border-cream);
}
.sn-quote.on-cream::before { color: rgba(180,154,53,0.06); }
.sn-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 24px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.sn-quote.on-cream blockquote { color: var(--text-dark); }
.sn-quote blockquote strong { font-weight: 700; font-style: normal; color: var(--gold-light); }
.sn-quote.on-cream blockquote strong { color: var(--gold); }
.sn-quote-attr {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.25);
  position: relative;
  z-index: 1;
}
.sn-quote.on-cream .sn-quote-attr { color: rgba(26,26,22,0.3); }

/* ============================================================
   HOME
   ============================================================ */

/* Hero */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,7,0.82) 0%, rgba(8,8,7,0.64) 42%, rgba(8,8,7,0.78) 100%),
    radial-gradient(ellipse 55% 70% at 65% 35%, rgba(180,154,53,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 15% 75%, rgba(180,154,53,0.04) 0%, transparent 45%),
    url('assets/savino_home.jpg'),
    linear-gradient(150deg, #080807 0%, #0d0c08 60%, #080807 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.hero-line {
  position: absolute;
  top: 0; right: 220px;
  width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 40%, transparent 100%);
  opacity: 0.2;
  transform-origin: top;
  animation: lineDown 1.4s 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-content { position: relative; z-index: 2; max-width: var(--max-w); width: 100%; margin: 0 auto; }
.hero-credential {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(180,154,53,0.35);
  background: rgba(8,8,7,0.5);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}
.hero-credential-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.hero-credential span {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 700;
  color: rgba(244,240,232,0.92);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.22);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-name em { font-style: italic; font-weight: 300; color: var(--gold-light); display: block; }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-tagline { font-size: 1.05rem; color: rgba(244,240,232,0.5); max-width: 460px; line-height: 1.75; }
.hero-tagline strong { color: rgba(244,240,232,0.85); font-weight: 500; }
.hero-badges { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(180,154,53,0.2);
  background: rgba(8,8,7,0.7);
  backdrop-filter: blur(8px);
}
.badge-label { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,240,232,0.35); line-height: 1.4; }
.badge-label strong { display: block; color: var(--gold-light); font-size: 0.68rem; margin-bottom: 1px; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-scroll-label { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,240,232,0.25); }

/* Strip numeri */
.numbers-strip { background: var(--gold); padding: 0 var(--pad-x); }
.numbers-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: stretch; }
.number-item {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 0; text-align: center;
  position: relative;
}
.number-item + .number-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(8,8,7,0.15);
}
.number-value { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 5px; }
.number-label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(8,8,7,0.55); }
.page-home .numbers-inner {
  justify-content: center;
}
.page-home .hero-bg {
  background-position: 68% center;
}
.page-home .number-item {
  flex: 0 1 25%;
  min-width: 180px;
}

/* Home: anteprima chi è */
.home-chi { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.home-chi-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 5fr 4fr; gap: 100px; align-items: center; }
.home-chi-left .eyebrow { margin-bottom: 24px; }
.home-chi-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.08; margin-bottom: 28px; letter-spacing: -0.01em;
}
.home-chi-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.home-chi-body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 500px; }
.home-chi-body p + p { margin-top: 16px; }
.home-chi-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(26,26,22,0.3);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.home-chi-link:hover { color: var(--gold); border-color: var(--gold); }

/* Home: portafoglio */
.home-portfolio { background: var(--black-soft); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.home-portfolio-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-title { font-family: var(--serif); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
.section-title em { font-style: italic; font-weight: 300; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.portfolio-card {
  background: var(--black-soft);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.portfolio-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-card:hover { background: var(--black-mid); }
.portfolio-card:hover::after { transform: scaleX(1); }
.card-idx { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: rgba(180,154,53,0.07); line-height: 1; position: absolute; top: 28px; right: 28px; }
.card-cat { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.card-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.1; }
.card-desc { font-size: 0.85rem; color: rgba(244,240,232,0.38); line-height: 1.7; }

/* Home: credenziali (versione compatta) */
.home-credenziali { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.home-credenziali-inner { max-width: var(--max-w); margin: 0 auto; }
.home-credenziali-inner .eyebrow { margin-bottom: 16px; }
.home-credenziali-inner .section-title { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text-dark); margin-bottom: 48px; }
.home-credenziali-inner .section-title em { color: rgba(26,26,22,0.2); }
.credenziali-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-cream);
}
.credenziale-item {
  background: var(--cream);
  padding: 36px 32px;
  transition: background 0.3s;
}
.credenziale-item:hover { background: var(--cream-dark); }
.credenziale-year { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 10px; }
.credenziale-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; line-height: 1.2; }
.credenziale-source { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   CHI SONO
   ============================================================ */
.chi-hero { background: var(--cream); padding-top: 148px; padding-bottom: 0; overflow: hidden; }
.chi-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.chi-hero-left .eyebrow { margin-bottom: 20px; }
.chi-hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 32px;
}
.chi-hero-left h1 em { font-style: italic; font-weight: 300; color: var(--gold); display: block; }
.chi-hero-left p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 480px; }
.chi-hero-right { display: flex; flex-direction: column; gap: 0; padding-bottom: 80px; }
.chi-stat { display: flex; align-items: baseline; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border-cream); }
.chi-stat:first-child { border-top: 1px solid var(--border-cream); }
.chi-stat-value { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--text-dark); line-height: 1; flex-shrink: 0; }
.chi-stat-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

.chi-genesi { background: var(--black); padding: var(--gap-2xl) var(--pad-x); }
.chi-genesi-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 100px; align-items: start; }
.chi-genesi-sticky { position: sticky; top: 100px; }
.chi-genesi-sticky .eyebrow { margin-bottom: 20px; }
.chi-genesi-sticky h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.1; }
.chi-genesi-sticky h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.chi-body-text { display: flex; flex-direction: column; gap: 28px; }
.chi-body-text p { font-size: 1.02rem; color: rgba(244,240,232,0.5); line-height: 1.85; }
.chi-body-text p strong { color: rgba(244,240,232,0.88); font-weight: 500; }
.chi-body-text blockquote {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic; font-weight: 300;
  color: var(--gold-light); border-left: 2px solid var(--gold); padding-left: 28px; line-height: 1.4;
}

.chi-timeline { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.chi-timeline-inner { max-width: var(--max-w); margin: 0 auto; }
.chi-timeline-inner .eyebrow { margin-bottom: 16px; }
.chi-timeline-inner h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.05; margin-bottom: 64px; }
.chi-timeline-inner h2 em { font-style: italic; font-weight: 300; color: rgba(26,26,22,0.25); }
.timeline-full { display: flex; flex-direction: column; position: relative; }
.timeline-full::before { content: ''; position: absolute; left: 100px; top: 0; bottom: 0; width: 1px; background: var(--border-cream); }
.tl-full-item { display: grid; grid-template-columns: 100px 1fr; padding: 0 0 52px 0; position: relative; }
.tl-full-item:last-child { padding-bottom: 0; }
.tl-full-year { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--gold); padding-top: 4px; }
.tl-full-content { padding-left: 48px; position: relative; }
.tl-full-content::before { content: ''; position: absolute; left: -5px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); border: 2px solid var(--cream); }
.tl-full-content h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.tl-full-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; max-width: 580px; }

.chi-restanza { background: var(--black-soft); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.chi-restanza-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 100px; align-items: start; }
.chi-restanza-left .eyebrow { margin-bottom: 20px; }
.chi-restanza-left h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 28px; }
.chi-restanza-left h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.chi-restanza-left p { font-size: 1rem; color: rgba(244,240,232,0.48); line-height: 1.85; max-width: 560px; }
.chi-restanza-left p + p { margin-top: 16px; }
.chi-restanza-right { display: flex; flex-direction: column; gap: 16px; }
.restanza-fact { padding: 22px; border: 1px solid var(--border); background: var(--black-mid); }
.restanza-fact-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.restanza-fact-value { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3; }

/* ============================================================
   METODO
   ============================================================ */
.metodo-hero { background: var(--black); padding-top: 148px; padding-bottom: var(--gap-xl); padding-left: var(--pad-x); padding-right: var(--pad-x); border-bottom: 1px solid var(--border); }
.metodo-hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.metodo-hero .eyebrow { margin-bottom: 20px; }
.metodo-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; color: var(--white); line-height: 0.95; letter-spacing: -0.02em; }
.metodo-hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); display: block; }
.metodo-hero-aside { font-size: 1rem; color: rgba(244,240,232,0.45); line-height: 1.8; border-left: 2px solid var(--border); padding-left: 32px; }
.metodo-hero-aside strong { color: rgba(244,240,232,0.8); font-weight: 500; }

.metodo-presupposto { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.metodo-presupposto-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.metodo-presupposto-left .eyebrow { margin-bottom: 20px; }
.metodo-presupposto-left h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.1; margin-bottom: 24px; }
.metodo-presupposto-left h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.metodo-presupposto-left p { font-size: 1rem; color: var(--text-muted); line-height: 1.85; }
.metodo-presupposto-left p + p { margin-top: 16px; }
.metodo-refs { display: flex; flex-direction: column; gap: 2px; background: var(--border-cream); }
.metodo-ref { background: var(--cream); padding: 24px; transition: background 0.25s; }
.metodo-ref:hover { background: var(--cream-dark); }
.metodo-ref-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.metodo-ref-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.metodo-ref-text strong { color: var(--text-dark); font-weight: 600; }

.metodo-pilastri { background: var(--black); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.metodo-pilastri-inner { max-width: var(--max-w); margin: 0 auto; }
.metodo-pilastri-inner .eyebrow { margin-bottom: 16px; }
.metodo-pilastri-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 64px; }
.metodo-pilastri-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(244,240,232,0.2); }
.pilastri-list { display: flex; flex-direction: column; }
.pilastro { display: grid; grid-template-columns: 56px 280px 1fr; gap: 48px; padding: 52px 0; border-bottom: 1px solid var(--border); align-items: start; }
.pilastro:first-child { border-top: 1px solid var(--border); }
.pilastro-num { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold); padding-top: 6px; }
.pilastro-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.pilastro-body { display: flex; flex-direction: column; gap: 12px; }
.pilastro-desc { font-size: 0.98rem; color: rgba(244,240,232,0.48); line-height: 1.78; }
.pilastro-detail { font-size: 0.88rem; color: rgba(244,240,232,0.25); line-height: 1.7; font-style: italic; }

.metodo-vendita { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.metodo-vendita-inner { max-width: var(--max-w); margin: 0 auto; }
.metodo-vendita-inner .eyebrow { margin-bottom: 16px; }
.metodo-vendita-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); margin-bottom: 56px; line-height: 1.05; }
.metodo-vendita-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(26,26,22,0.22); }
.vendita-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border-cream); margin-bottom: 64px; }
.vendita-card { background: var(--cream); padding: 40px 36px; transition: background 0.3s; }
.vendita-card:hover { background: var(--cream-dark); }
.vendita-card-icon { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: rgba(180,154,53,0.35); margin-bottom: 16px; line-height: 1; }
.vendita-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.vendita-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; }

.metodo-strumenti { background: var(--black-soft); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.metodo-strumenti-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.strumento-card { background: var(--black-soft); padding: 56px 48px; transition: background 0.3s; }
.strumento-card:hover { background: var(--black-mid); }
.strumento-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.strumento-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.strumento-desc { font-size: 0.92rem; color: rgba(244,240,232,0.42); line-height: 1.78; }

/* ============================================================
   SAVINO NOVELLI — main.css v2
   ============================================================ */

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

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--black); color: var(--white); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- TOKENS --- */
:root {
  --black:        #080807;
  --black-soft:   #0f0f0d;
  --black-mid:    #141410;
  --white:        #f4f0e8;
  --cream:        #ede8dc;
  --cream-dark:   #ddd8cc;
  --gold:         #b49a35;
  --gold-light:   #cdb84e;
  --text-dark:    #1c1a16;
  --text-muted:   #6b6455;
  --border:       rgba(180,154,53,0.15);
  --border-cream: rgba(180,154,53,0.25);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Syne', system-ui, sans-serif;
  --mono:  'Syne Mono', monospace;
  --max-w: 1280px;
  --pad-x: 64px;
  --gap-xl:  100px;
  --gap-2xl: 140px;
}

/* --- UTILITY --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.dark::before { background: var(--gold); }

/* --- ANIMAZIONI --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineDown {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER
   ============================================================ */
#sn-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
}
#sn-header.scrolled {
  background: rgba(8,8,7,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.header-logo span { font-weight: 300; font-style: italic; }

.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.5);
  transition: color 0.25s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
#sn-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px var(--pad-x) 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.3);
  line-height: 1.7;
}
.footer-nav-group h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a { font-size: 0.88rem; color: rgba(244,240,232,0.4); transition: color 0.25s; }
.footer-nav-group a:hover { color: var(--white); }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-social h4 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-social a { font-size: 0.88rem; color: rgba(244,240,232,0.4); transition: color 0.25s; }
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  color: rgba(244,240,232,0.2);
}

/* ============================================================
   QUOTE (componente riutilizzabile, una per pagina)
   ============================================================ */
.sn-quote {
  background: var(--black);
  padding: 100px var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sn-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 28rem;
  font-weight: 700;
  color: rgba(180,154,53,0.04);
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.sn-quote.on-cream {
  background: var(--cream);
  border-top: 1px solid var(--border-cream);
}
.sn-quote.on-cream::before { color: rgba(180,154,53,0.06); }
.sn-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 24px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.sn-quote.on-cream blockquote { color: var(--text-dark); }
.sn-quote blockquote strong { font-weight: 700; font-style: normal; color: var(--gold-light); }
.sn-quote.on-cream blockquote strong { color: var(--gold); }
.sn-quote-attr {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.25);
  position: relative;
  z-index: 1;
}
.sn-quote.on-cream .sn-quote-attr { color: rgba(26,26,22,0.3); }

/* ============================================================
   HOME
   ============================================================ */

/* Hero */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,7,0.82) 0%, rgba(8,8,7,0.64) 42%, rgba(8,8,7,0.78) 100%),
    radial-gradient(ellipse 55% 70% at 65% 35%, rgba(180,154,53,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 15% 75%, rgba(180,154,53,0.04) 0%, transparent 45%),
    url('assets/savino_home.jpg'),
    linear-gradient(150deg, #080807 0%, #0d0c08 60%, #080807 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.hero-line {
  position: absolute;
  top: 0; right: 220px;
  width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 40%, transparent 100%);
  opacity: 0.2;
  transform-origin: top;
  animation: lineDown 1.4s 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-content { position: relative; z-index: 2; max-width: var(--max-w); width: 100%; margin: 0 auto; }
.hero-credential {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(180,154,53,0.35);
  background: rgba(8,8,7,0.5);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}
.hero-credential-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.hero-credential span {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-name em { font-style: italic; font-weight: 300; color: var(--gold-light); display: block; }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-tagline { font-size: 1.05rem; color: rgba(244,240,232,0.5); max-width: 460px; line-height: 1.75; }
.hero-tagline strong { color: rgba(244,240,232,0.85); font-weight: 500; }
.hero-badges { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(180,154,53,0.2);
  background: rgba(8,8,7,0.7);
  backdrop-filter: blur(8px);
}
.badge-label { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,240,232,0.35); line-height: 1.4; }
.badge-label strong { display: block; color: var(--gold-light); font-size: 0.68rem; margin-bottom: 1px; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-scroll-label { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,240,232,0.25); }

/* Strip numeri */
.numbers-strip { background: var(--gold); padding: 0 var(--pad-x); }
.numbers-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: stretch; }
.number-item {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 0; text-align: center;
  position: relative;
}
.number-item + .number-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(8,8,7,0.15);
}
.number-value { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 5px; }
.number-label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(8,8,7,0.55); }

/* Home: anteprima chi è */
.home-chi { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.home-chi-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 5fr 4fr; gap: 100px; align-items: center; }
.home-chi-left .eyebrow { margin-bottom: 24px; }
.home-chi-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.08; margin-bottom: 28px; letter-spacing: -0.01em;
}
.home-chi-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.home-chi-body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 500px; }
.home-chi-body p + p { margin-top: 16px; }
.home-chi-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(26,26,22,0.3);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.home-chi-link:hover { color: var(--gold); border-color: var(--gold); }

/* Home: portafoglio */
.home-portfolio { background: var(--black-soft); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.home-portfolio-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-title { font-family: var(--serif); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
.section-title em { font-style: italic; font-weight: 300; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.portfolio-card {
  background: var(--black-soft);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.portfolio-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-card:hover { background: var(--black-mid); }
.portfolio-card:hover::after { transform: scaleX(1); }
.card-idx { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: rgba(180,154,53,0.07); line-height: 1; position: absolute; top: 28px; right: 28px; }
.card-cat { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.card-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.1; }
.card-desc { font-size: 0.85rem; color: rgba(244,240,232,0.38); line-height: 1.7; }

/* Home: credenziali (versione compatta) */
.home-credenziali { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.home-credenziali-inner { max-width: var(--max-w); margin: 0 auto; }
.home-credenziali-inner .eyebrow { margin-bottom: 16px; }
.home-credenziali-inner .section-title { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text-dark); margin-bottom: 48px; }
.home-credenziali-inner .section-title em { color: rgba(26,26,22,0.2); }
.credenziali-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-cream);
}
.credenziale-item {
  background: var(--cream);
  padding: 36px 32px;
  transition: background 0.3s;
}
.credenziale-item:hover { background: var(--cream-dark); }
.credenziale-year { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 10px; }
.credenziale-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; line-height: 1.2; }
.credenziale-source { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   CHI SONO
   ============================================================ */
.chi-hero { background: var(--cream); padding-top: 148px; padding-bottom: 0; overflow: hidden; }
.chi-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.chi-hero-left .eyebrow { margin-bottom: 20px; }
.chi-hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; color: var(--text-dark);
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 32px;
}
.chi-hero-left h1 em { font-style: italic; font-weight: 300; color: var(--gold); display: block; }
.chi-hero-left p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 480px; }
.chi-hero-right { display: flex; flex-direction: column; gap: 0; padding-bottom: 80px; }
.chi-stat { display: flex; align-items: baseline; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border-cream); }
.chi-stat:first-child { border-top: 1px solid var(--border-cream); }
.chi-stat-value { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--text-dark); line-height: 1; flex-shrink: 0; }
.chi-stat-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

.chi-genesi { background: var(--black); padding: var(--gap-2xl) var(--pad-x); }
.chi-genesi-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 100px; align-items: start; }
.chi-genesi-sticky { position: sticky; top: 100px; }
.chi-genesi-sticky .eyebrow { margin-bottom: 20px; }
.chi-genesi-sticky h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.1; }
.chi-genesi-sticky h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.chi-body-text { display: flex; flex-direction: column; gap: 28px; }
.chi-body-text p { font-size: 1.02rem; color: rgba(244,240,232,0.5); line-height: 1.85; }
.chi-body-text p strong { color: rgba(244,240,232,0.88); font-weight: 500; }
.chi-body-text blockquote {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic; font-weight: 300;
  color: var(--gold-light); border-left: 2px solid var(--gold); padding-left: 28px; line-height: 1.4;
}

.chi-timeline { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.chi-timeline-inner { max-width: var(--max-w); margin: 0 auto; }
.chi-timeline-inner .eyebrow { margin-bottom: 16px; }
.chi-timeline-inner h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.05; margin-bottom: 64px; }
.chi-timeline-inner h2 em { font-style: italic; font-weight: 300; color: rgba(26,26,22,0.25); }
.timeline-full { display: flex; flex-direction: column; position: relative; }
.timeline-full::before { content: ''; position: absolute; left: 100px; top: 0; bottom: 0; width: 1px; background: var(--border-cream); }
.tl-full-item { display: grid; grid-template-columns: 100px 1fr; padding: 0 0 52px 0; position: relative; }
.tl-full-item:last-child { padding-bottom: 0; }
.tl-full-year { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--gold); padding-top: 4px; }
.tl-full-content { padding-left: 48px; position: relative; }
.tl-full-content::before { content: ''; position: absolute; left: -5px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); border: 2px solid var(--cream); }
.tl-full-content h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.tl-full-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; max-width: 580px; }

.chi-restanza { background: var(--black-soft); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.chi-restanza-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 100px; align-items: start; }
.chi-restanza-left .eyebrow { margin-bottom: 20px; }
.chi-restanza-left h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 28px; }
.chi-restanza-left h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.chi-restanza-left p { font-size: 1rem; color: rgba(244,240,232,0.48); line-height: 1.85; max-width: 560px; }
.chi-restanza-left p + p { margin-top: 16px; }
.chi-restanza-right { display: flex; flex-direction: column; gap: 16px; }
.restanza-fact { padding: 22px; border: 1px solid var(--border); background: var(--black-mid); }
.restanza-fact-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.restanza-fact-value { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3; }

/* ============================================================
   METODO
   ============================================================ */
.metodo-hero { background: var(--black); padding-top: 148px; padding-bottom: var(--gap-xl); padding-left: var(--pad-x); padding-right: var(--pad-x); border-bottom: 1px solid var(--border); }
.metodo-hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.metodo-hero .eyebrow { margin-bottom: 20px; }
.metodo-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; color: var(--white); line-height: 0.95; letter-spacing: -0.02em; }
.metodo-hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); display: block; }
.metodo-hero-aside { font-size: 1rem; color: rgba(244,240,232,0.45); line-height: 1.8; border-left: 2px solid var(--border); padding-left: 32px; }
.metodo-hero-aside strong { color: rgba(244,240,232,0.8); font-weight: 500; }

.metodo-presupposto { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.metodo-presupposto-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.metodo-presupposto-left .eyebrow { margin-bottom: 20px; }
.metodo-presupposto-left h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.1; margin-bottom: 24px; }
.metodo-presupposto-left h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.metodo-presupposto-left p { font-size: 1rem; color: var(--text-muted); line-height: 1.85; }
.metodo-presupposto-left p + p { margin-top: 16px; }
.metodo-refs { display: flex; flex-direction: column; gap: 2px; background: var(--border-cream); }
.metodo-ref { background: var(--cream); padding: 24px; transition: background 0.25s; }
.metodo-ref:hover { background: var(--cream-dark); }
.metodo-ref-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.metodo-ref-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.metodo-ref-text strong { color: var(--text-dark); font-weight: 600; }

.metodo-pilastri { background: var(--black); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.metodo-pilastri-inner { max-width: var(--max-w); margin: 0 auto; }
.metodo-pilastri-inner .eyebrow { margin-bottom: 16px; }
.metodo-pilastri-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 64px; }
.metodo-pilastri-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(244,240,232,0.2); }
.pilastri-list { display: flex; flex-direction: column; }
.pilastro { display: grid; grid-template-columns: 56px 280px 1fr; gap: 48px; padding: 52px 0; border-bottom: 1px solid var(--border); align-items: start; }
.pilastro:first-child { border-top: 1px solid var(--border); }
.pilastro-num { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold); padding-top: 6px; }
.pilastro-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.pilastro-body { display: flex; flex-direction: column; gap: 12px; }
.pilastro-desc { font-size: 0.98rem; color: rgba(244,240,232,0.48); line-height: 1.78; }
.pilastro-detail { font-size: 0.88rem; color: rgba(244,240,232,0.25); line-height: 1.7; font-style: italic; }

.metodo-vendita { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.metodo-vendita-inner { max-width: var(--max-w); margin: 0 auto; }
.metodo-vendita-inner .eyebrow { margin-bottom: 16px; }
.metodo-vendita-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); margin-bottom: 56px; line-height: 1.05; }
.metodo-vendita-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(26,26,22,0.22); }
.vendita-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border-cream); margin-bottom: 64px; }
.vendita-card { background: var(--cream); padding: 40px 36px; transition: background 0.3s; }
.vendita-card:hover { background: var(--cream-dark); }
.vendita-card-icon { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: rgba(180,154,53,0.35); margin-bottom: 16px; line-height: 1; }
.vendita-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.vendita-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; }

.metodo-strumenti { background: var(--black-soft); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.metodo-strumenti-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.strumento-card { background: var(--black-soft); padding: 56px 48px; transition: background 0.3s; }
.strumento-card:hover { background: var(--black-mid); }
.strumento-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.strumento-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.strumento-desc { font-size: 0.92rem; color: rgba(244,240,232,0.42); line-height: 1.78; }

/* ============================================================
   MEDIA
   ============================================================ */
.media-hero { background: var(--cream); padding-top: 148px; padding-bottom: var(--gap-xl); padding-left: var(--pad-x); padding-right: var(--pad-x); }
.media-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.media-hero .eyebrow { margin-bottom: 20px; }
.media-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 700; color: var(--text-dark); line-height: 0.92; letter-spacing: -0.02em; margin-bottom: 32px; }
.media-hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.media-hero-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 520px; }
.media-hero-sub a { color: var(--gold); border-bottom: 1px solid rgba(180,154,53,0.3); }

.media-awards { background: var(--black); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.media-awards-inner { max-width: var(--max-w); margin: 0 auto; }
.media-awards-inner .eyebrow { margin-bottom: 16px; }
.media-awards-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 56px; }
.media-awards-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(244,240,232,0.2); }
.awards-full { display: flex; flex-direction: column; }
.award-row { display: grid; grid-template-columns: 72px 1fr auto; gap: 40px; align-items: start; padding: 36px 0; border-bottom: 1px solid var(--border); }
.award-row:first-child { border-top: 1px solid var(--border); }
.award-row:hover { background: rgba(180,154,53,0.02); }
.award-year { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gold); padding-top: 4px; }
.award-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.award-institution { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.award-body p { font-size: 0.86rem; color: rgba(244,240,232,0.35); line-height: 1.68; max-width: 600px; }
.award-badge { flex-shrink: 0; padding: 6px 12px; border: 1px solid var(--border); font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,240,232,0.25); align-self: flex-start; white-space: nowrap; }

.media-press { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.media-press-inner { max-width: var(--max-w); margin: 0 auto; }
.media-press-inner .eyebrow { margin-bottom: 16px; }
.media-press-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); margin-bottom: 56px; line-height: 1.05; }
.media-press-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(26,26,22,0.22); }
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border-cream); }
.press-card { background: var(--cream); padding: 44px 40px; display: flex; flex-direction: column; gap: 14px; transition: background 0.3s; }
.press-card:hover { background: var(--cream-dark); }
.press-outlet { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.press-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; flex: 1; }
.press-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }
.press-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(180,154,53,0.3); padding-bottom: 2px; transition: border-color 0.25s; align-self: flex-start; }
.press-link:hover { border-color: var(--gold); }

.media-eventi { background: var(--black-soft); padding: var(--gap-2xl) var(--pad-x); border-top: 1px solid var(--border); }
.media-eventi-inner { max-width: var(--max-w); margin: 0 auto; }
.media-eventi-inner .eyebrow { margin-bottom: 16px; }
.media-eventi-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 56px; line-height: 1.05; }
.media-eventi-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(244,240,232,0.2); }
.eventi-list { display: flex; flex-direction: column; }
.evento-row { display: grid; grid-template-columns: 200px 1fr; gap: 48px; padding: 36px 0; border-bottom: 1px solid var(--border); align-items: start; }
.evento-row:first-child { border-top: 1px solid var(--border); }
.evento-anno { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 4px; }
.evento-luogo { font-size: 0.82rem; color: rgba(244,240,232,0.3); }
.evento-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.evento-body p { font-size: 0.86rem; color: rgba(244,240,232,0.4); line-height: 1.7; max-width: 580px; }

.media-testimonial { background: var(--cream); padding: var(--gap-2xl) var(--pad-x); }
.media-testimonial-inner { max-width: var(--max-w); margin: 0 auto; }
.media-testimonial-inner .eyebrow { margin-bottom: 16px; }
.media-testimonial-inner > h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text-dark); margin-bottom: 56px; line-height: 1.05; }
.media-testimonial-inner > h2 em { font-style: italic; font-weight: 300; color: rgba(26,26,22,0.22); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-cream); }
.testimonial-card { background: var(--cream); padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; }
.testimonial-quote { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--text-dark); line-height: 1.55; flex: 1; }
.testimonial-author { padding-top: 16px; border-top: 1px solid var(--border-cream); }
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.testimonial-role { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.media-presskit { background: var(--black); padding: 80px var(--pad-x); border-top: 1px solid var(--border); text-align: center; }
.media-presskit-inner { max-width: 580px; margin: 0 auto; }
.media-presskit h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.media-presskit p { font-size: 0.95rem; color: rgba(244,240,232,0.38); line-height: 1.7; margin-bottom: 32px; }
.btn-gold { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 16px 36px; transition: background 0.25s; text-decoration: none; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--gold-light); }

/* ============================================================
   CONTATTI
   ============================================================ */
.contatti-wrap { min-height: 100dvh; display: grid; grid-template-columns: 1fr 1fr; }
.contatti-left { background: var(--cream); padding: 148px 48px var(--gap-xl) var(--pad-x); display: flex; flex-direction: column; justify-content: space-between; position: sticky; top: 0; height: 100dvh; }
.contatti-left-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.contatti-left .eyebrow { margin-bottom: 20px; }
.contatti-left h1 { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700; color: var(--text-dark); line-height: 1; letter-spacing: -0.02em; margin-bottom: 24px; }
.contatti-left h1 em { font-style: italic; font-weight: 300; color: var(--gold); display: block; }
.contatti-left > .contatti-left-body > p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; max-width: 380px; margin-bottom: 44px; }
.contatti-channels { display: flex; flex-direction: column; }
.contatti-channel { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border-cream); transition: padding-left 0.25s; }
.contatti-channel:first-child { border-top: 1px solid var(--border-cream); }
.contatti-channel:hover { padding-left: 8px; }
.channel-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.channel-value { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.channel-arrow { color: var(--text-muted); font-size: 0.9rem; transition: color 0.25s; }
.contatti-channel:hover .channel-arrow { color: var(--gold); }
.contatti-left-foot { padding-top: 28px; border-top: 1px solid var(--border-cream); }
.contatti-left-foot p { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(26,26,22,0.3); line-height: 1.7; }
.contatti-right { background: var(--black); padding: 148px 64px var(--gap-xl) 48px; display: flex; flex-direction: column; justify-content: center; }
.form-intro { margin-bottom: 44px; }
.form-intro .eyebrow { margin-bottom: 14px; }
.form-intro h2 { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--white); line-height: 1.1; }
.form-intro h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.sn-form { display: flex; flex-direction: column; gap: 20px; max-width: 520px; }
.sn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sn-field { display: flex; flex-direction: column; gap: 7px; }
.sn-field label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,240,232,0.3); }
.sn-field input, .sn-field textarea, .sn-field select { background: rgba(244,240,232,0.04); border: 1px solid var(--border); border-radius: 0; color: var(--white); font-family: var(--sans); font-size: 0.9rem; padding: 13px 15px; outline: none; transition: border-color 0.25s, background 0.25s; -webkit-appearance: none; appearance: none; }
.sn-field input::placeholder, .sn-field textarea::placeholder { color: rgba(244,240,232,0.18); }
.sn-field input:focus, .sn-field textarea:focus, .sn-field select:focus { border-color: var(--gold); background: rgba(180,154,53,0.04); }
.sn-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b49a35' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; cursor: pointer; }
.sn-field select option { background: var(--black); color: var(--white); }
.sn-field textarea { min-height: 130px; resize: vertical; }
.form-privacy { font-size: 0.76rem; color: rgba(244,240,232,0.2); line-height: 1.6; }
.form-privacy a { color: rgba(244,240,232,0.38); border-bottom: 1px solid rgba(244,240,232,0.15); }
.form-privacy a:hover { color: var(--gold); }
.form-success { display: none; padding: 22px; border: 1px solid rgba(180,154,53,0.3); background: rgba(180,154,53,0.05); margin-top: 4px; }
.form-success p { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--gold-light); line-height: 1.5; }

/* ============================================================
   BLOG / ELEMENTOR
   ============================================================ */
.sn-blog-archive,
.sn-single-post {
  background: var(--black);
  color: var(--white);
}

.sn-blog-archive a,
.sn-single-post a {
  color: inherit;
}

.sn-blog-archive .elementor-heading-title,
.sn-single-post .elementor-heading-title {
  font-family: var(--serif);
}

.sn-blog-archive .elementor-posts-container article,
.sn-blog-archive .elementor-loop-container article {
  background: var(--black-soft);
  border: 1px solid var(--border);
  overflow: hidden;
}

.sn-blog-archive .elementor-post__thumbnail,
.sn-single-post .elementor-widget-theme-post-featured-image img {
  overflow: hidden;
}

.sn-blog-archive .elementor-post__thumbnail img,
.sn-single-post .elementor-widget-theme-post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sn-blog-archive .elementor-post__title,
.sn-single-post .elementor-widget-theme-post-title .elementor-heading-title {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sn-blog-archive .elementor-post__title a:hover,
.sn-single-post .elementor-widget-theme-post-content a:hover,
.sn-single-post .elementor-widget-theme-post-title a:hover {
  color: var(--gold-light);
}

.sn-blog-archive .elementor-post__meta-data,
.sn-single-post .elementor-widget-theme-post-info {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.42);
}

.sn-blog-archive .elementor-post__excerpt p,
.sn-single-post .elementor-widget-theme-post-excerpt,
.sn-single-post .elementor-widget-theme-post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(244,240,232,0.78);
}

.sn-single-post .elementor-widget-theme-post-content h2,
.sn-single-post .elementor-widget-theme-post-content h3,
.sn-single-post .elementor-widget-theme-post-content h4 {
  font-family: var(--serif);
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-top: 1.6em;
  margin-bottom: 0.45em;
}

.sn-single-post .elementor-widget-theme-post-content p,
.sn-single-post .elementor-widget-theme-post-content ul,
.sn-single-post .elementor-widget-theme-post-content ol,
.sn-single-post .elementor-widget-theme-post-content blockquote {
  margin-bottom: 1.1em;
}

.sn-single-post .elementor-widget-theme-post-content blockquote {
  border-left: 1px solid var(--gold);
  padding-left: 22px;
  color: rgba(244,240,232,0.9);
  font-family: var(--serif);
  font-style: italic;
}

.sn-blog-archive .elementor-pagination,
.sn-single-post .elementor-post-navigation {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sn-blog-archive .elementor-pagination a,
.sn-blog-archive .elementor-pagination span,
.sn-single-post .elementor-post-navigation a {
  color: rgba(244,240,232,0.58);
}

.sn-blog-archive .elementor-pagination .current,
.sn-blog-archive .elementor-pagination a:hover,
.sn-single-post .elementor-post-navigation a:hover {
  color: var(--gold-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }
  .home-chi-inner { grid-template-columns: 1fr; gap: 60px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .credenziali-row { grid-template-columns: 1fr 1fr; }
  .chi-hero-inner { grid-template-columns: 1fr; }
  .chi-genesi-inner { grid-template-columns: 1fr; }
  .chi-genesi-sticky { position: static; }
  .chi-restanza-inner { grid-template-columns: 1fr; }
  .metodo-hero-inner { grid-template-columns: 1fr; }
  .metodo-presupposto-inner { grid-template-columns: 1fr; }
  .pilastro { grid-template-columns: 40px 1fr; gap: 20px; }
  .pilastro-body { grid-column: 2; }
  .vendita-grid { grid-template-columns: 1fr; }
  .metodo-strumenti-inner { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .award-row { grid-template-columns: 52px 1fr; }
  .award-badge { display: none; }
  .evento-row { grid-template-columns: 1fr; gap: 12px; }
  .contatti-wrap { grid-template-columns: 1fr; }
  .contatti-left { position: static; height: auto; }
  .sn-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; --gap-xl: 72px; --gap-2xl: 96px; }
  #sn-header {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    display: block;
    gap: 0;
    background: rgba(8,8,7,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .header-topbar {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .header-logo {
    display: block;
    font-size: 1.15rem;
    min-width: 0;
    max-width: calc(100% - 64px);
    white-space: nowrap;
  }
  .header-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .header-nav {
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .header-nav a {
    font-size: 0.74rem;
    color: rgba(244,240,232,0.72);
  }
  #sn-header.menu-open .header-nav {
    display: flex;
  }
  #sn-header.menu-open .header-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  #sn-header.menu-open .header-toggle span:nth-child(2) {
    opacity: 0;
  }
  #sn-header.menu-open .header-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .page-home .hero-bg { background-position: 62% center; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .numbers-inner { flex-wrap: wrap; }
  .number-item { flex: 0 0 50%; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .credenziali-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { align-items: flex-start; }
  .hero-badges { display: none; }
  .timeline-full::before { left: 80px; }
  .tl-full-item { grid-template-columns: 80px 1fr; }
  .page-contatti,
  .contatti-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  .contatti-left,
  .contatti-right {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }
  .contatti-left {
    padding-top: 108px;
    padding-bottom: 48px;
  }
  .contatti-right {
    padding-top: 56px;
    padding-bottom: var(--gap-xl);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }
  .contatti-left > .contatti-left-body > p,
  .form-intro,
  .sn-form,
  .sn-field,
  .sn-field input,
  .sn-field textarea,
  .sn-field select {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  #sn-header {
    display: flex;
    align-items: center;
  }
  .header-topbar {
    width: auto;
    flex: 0 0 auto;
  }
  .header-toggle {
    display: none !important;
  }
  .header-nav {
    display: flex !important;
  }
}

/* ============================================================
   ACCESSIBILITY TUNING
   ============================================================ */
html {
  font-size: 17px;
}

@media (min-width: 769px) {
  .sn-page-chi-sono #sn-header:not(.scrolled) .header-logo,
  .sn-page-media #sn-header:not(.scrolled) .header-logo,
  .sn-page-contatti #sn-header:not(.scrolled) .header-logo {
    color: var(--text-dark);
  }

  .sn-page-chi-sono #sn-header:not(.scrolled) .header-nav a,
  .sn-page-media #sn-header:not(.scrolled) .header-nav a,
  .sn-page-contatti #sn-header:not(.scrolled) .header-nav a {
    color: rgba(28,26,22,0.66);
  }

  .sn-page-chi-sono #sn-header:not(.scrolled) .header-nav a:hover,
  .sn-page-media #sn-header:not(.scrolled) .header-nav a:hover,
  .sn-page-contatti #sn-header:not(.scrolled) .header-nav a:hover {
    color: var(--text-dark);
  }

  .sn-page-chi-sono #sn-header:not(.scrolled) .header-nav a.active,
  .sn-page-media #sn-header:not(.scrolled) .header-nav a.active,
  .sn-page-contatti #sn-header:not(.scrolled) .header-nav a.active {
    color: var(--gold);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  #sn-header:not(.menu-open) .header-nav {
    display: none !important;
  }
  #sn-header.menu-open .header-nav {
    display: flex !important;
  }
  .sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) .header-logo,
  .sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) .header-toggle {
    color: var(--text-dark);
  }
  .sn-page-chi-sono #sn-header .header-nav a,
  .sn-page-contatti #sn-header .header-nav a,
  .sn-page-media #sn-header .header-nav a {
    color: rgba(244,240,232,0.72);
  }
  .sn-page-chi-sono #sn-header .header-nav a:hover,
  .sn-page-contatti #sn-header .header-nav a:hover,
  .sn-page-media #sn-header .header-nav a:hover {
    color: var(--white);
  }
  .sn-page-chi-sono #sn-header .header-nav a.active,
  .sn-page-contatti #sn-header .header-nav a.active,
  .sn-page-media #sn-header .header-nav a.active {
    color: var(--gold-light);
  }

  .sn-page-chi-sono #sn-header.menu-open .header-nav a {
    color: rgba(244,240,232,0.72);
  }

  .sn-page-chi-sono #sn-header.menu-open .header-nav a:hover {
    color: var(--white);
  }

  .sn-page-chi-sono #sn-header.menu-open .header-nav a.active {
    color: var(--gold-light);
  }
}

body.sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) {
  background: rgba(237,232,220,0.92) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-cream);
}

body.sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) .header-logo,
body.sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) .header-toggle {
  color: var(--text-dark) !important;
}

body.sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) .header-nav a {
  color: rgba(28,26,22,0.66) !important;
}

body.sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) .header-nav a:hover {
  color: var(--text-dark) !important;
}

body.sn-page-contatti #sn-header:not(.scrolled):not(.menu-open) .header-nav a.active {
  color: var(--gold) !important;
}

@media (max-width: 768px) {
  body.sn-page-contatti #sn-header .header-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 769px) {
  body.sn-page-contatti #sn-header .header-topbar {
    width: auto;
    min-width: 0;
  }
}

