/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === TYPEWRITER === */
.typewriter-cursor {
  display: inline-block;
  color: var(--accent);
  animation: tw-blink 0.8s step-end infinite;
  margin-left: 1px;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* === VARIABILI BRAND === */
:root {
  --accent:       #B5602F;
  --accent-hover: #9E4E23;
  --bg:           #FFFFFF;
  --bg-warm:      #FAF8F4;
  --dark:         #1C1C1A;
  --stone:        #7A7065;
  --stone-ui:     #8A8275;
  --border:       #E5E0D8;
}

/* === LANG TOGGLE === */
.lang-toggle {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  background: none;
  border: 1px solid var(--border);
  color: var(--stone);
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === FOCUS ACCESSIBILE === */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--dark);
  color: #FFFFFF;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

/* === LAYOUT === */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.bg-warm { background: var(--bg-warm); }

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.sq { display: block; }
.sq-1 { width: 10px; height: 10px; background: #1C1C1A; }
.sq-2 { width: 10px; height: 7px;  background: #8A8275; }
.sq-3 { width: 10px; height: 10px; background: var(--accent); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--dark);
}

.logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--stone-ui);
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

/* === DESKTOP NAV === */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.desktop-nav a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.desktop-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.desktop-nav a:not(.nav-cta):hover { color: var(--dark); }
.desktop-nav a:not(.nav-cta):hover::after { width: 100%; }

.desktop-nav .nav-cta {
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.desktop-nav .nav-cta:hover {
  background: var(--accent);
  color: #FFFFFF;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.22s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* === MOBILE NAV === */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.28s ease;
  z-index: 199;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  padding: 1.1rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover { color: var(--dark); background: var(--bg-warm); }

.mobile-nav .mobile-nav-cta {
  color: var(--accent);
  border-bottom: none;
  padding-bottom: 1.4rem;
}

/* === TIPOGRAFIA UTILITY === */
.eyebrow,
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* === PULSANTI === */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  min-height: 48px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.btn:hover { background: var(--accent-hover); }

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn:hover::after { left: 160%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--dark);
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  min-height: 48px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/* === HERO === */
.hero {
  padding: 10rem 0 9rem;
  background: #0A0A09;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

/* Bagliore arancio principale dal lato destro */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(181, 96, 47, 0.30) 0%, rgba(181, 96, 47, 0.10) 40%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Luce ambientale sottile da sinistra */
.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 2rem;
  max-width: 680px;
  font-feature-settings: "ss01", "kern";
  letter-spacing: -0.015em;
  color: #ffffff;
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.credentials span {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.45rem 0.9rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Decorazione verticale hero */
.hero-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  flex-shrink: 0;
}

.hero-deco-line {
  width: 1px;
  flex: 1;
  background: rgba(255,255,255,0.12);
  min-height: 40px;
}

.hero-deco-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.22);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
}

/* === HERO ANIMATIONS === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow { animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }
.hero h1       { animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both; }
.hero-sub      { animation: fadeSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.50s both; }
.credentials   { animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both; }
.hero-ctas     { animation: fadeSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.80s both; }

/* Slogan typewriter — eyebrow coerente con il sistema tipografico del sito */
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  letter-spacing: 0.22em;
  margin-bottom: 2.4rem;
  display: block;
  min-height: 1.4em;
  opacity: 1 !important;
}
#typewriter {
  color: rgba(255, 255, 255, 0.88);
}
.hero .typewriter-cursor {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  opacity: 1;
}

/* Bottone ghost bianco sull'hero scuro */
.hero .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
}
.hero .btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
}

/* Header trasparente quando è sull'hero scuro */
header:not(.scrolled) {
  background: transparent;
}
header:not(.scrolled) .logo-name {
  color: #ffffff;
}
header:not(.scrolled) .logo-sub {
  color: rgba(255,255,255,0.55);
}
header:not(.scrolled) .sq-1 {
  background: rgba(255,255,255,0.85);
}
header:not(.scrolled) .sq-2 {
  background: rgba(255,255,255,0.45);
}
header:not(.scrolled) .desktop-nav a:not(.nav-cta) {
  color: rgba(255,255,255,0.75);
}
header:not(.scrolled) .desktop-nav a:not(.nav-cta):hover {
  color: #ffffff;
}
header:not(.scrolled) .lang-toggle {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.22);
}
header:not(.scrolled) .lang-toggle:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
header:not(.scrolled) .hamburger span {
  background: #ffffff;
}

/* === SCROLL REVEAL === */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .chi-photo.reveal { transform: translateY(16px) translateX(-12px); }
.js .chi-content .reveal { transform: translateY(16px) translateX(8px); }
.js .chi-photo.reveal.visible,
.js .chi-content .reveal.visible { transform: translateY(0) translateX(0); }

.js .service.reveal, .js .testi-card.reveal, .js .target-pills span.reveal {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === PROBLEMA === */
.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.problema-card {
  padding: 2rem;
  border: 1px solid var(--border);
}

.problema-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2.8rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.problema-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.problema-card p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.stat {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.5;
}

/* === COME FUNZIONA === */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.step {
  flex: 1;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--bg);
}

.step-arrow {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 2.5rem;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

.cta-center { text-align: center; }

/* === SERVIZI === */
.section-intro {
  font-style: italic;
  color: var(--stone);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.service {
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: var(--bg);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.service::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  pointer-events: none;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(28, 28, 28, 0.09);
}

.service:hover::before { width: 3px; }

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.3rem;
}

.service-header.dark   { background: var(--dark); color: #FFFFFF; }
.service-header.accent { background: var(--accent); color: #FFFFFF; }

.service-tag {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.15em;
}

.service-body { padding: 1.3rem; }

.service-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: var(--dark);
}

.service-body > p {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  margin: 0 -1.3rem -1.3rem;
}

.ba-col {
  padding: 1rem 1.3rem;
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.55;
}

.ba-col:first-child { border-right: 1px solid var(--border); }

.ba-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--stone-ui);
  margin-bottom: 0.5rem;
}

.ba-label.dopo { color: var(--accent); }

/* === CHI SONO === */
.chi-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.chi-photo {
  position: sticky;
  top: 7rem;
}

.photo-frame {
  aspect-ratio: 3 / 4;
  background: var(--bg-warm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) sepia(18%) contrast(1.08) brightness(1.03);
  transition: filter 0.5s ease;
}

.photo-frame img:hover {
  filter: grayscale(60%) sepia(30%) contrast(1.08) brightness(1.03);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: linear-gradient(145deg, #EDE8E1 0%, #DDD8CF 100%);
}

.photo-initials {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-style: italic;
  color: var(--stone-ui);
  letter-spacing: 0.25em;
  line-height: 1;
}

.photo-hint {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-ui);
}

.chi-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.chi-content h2 em {
  color: var(--accent);
  font-style: italic;
}

.chi-text p {
  color: var(--stone);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.value { display: flex; flex-direction: column; gap: 0.3rem; }

.value-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1;
}

.value strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.value span {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.55;
}

/* === TESTIMONIANZE === */
.testimonianze {
  background: var(--bg);
}

.testimonianze h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(28, 28, 28, 0.08);
  transform: translateY(-3px);
}

.testi-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  font-style: italic;
  user-select: none;
}

.testi-card blockquote {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-card blockquote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark);
}

.testi-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.testi-card figcaption strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.testi-card figcaption span {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: var(--stone);
}

/* === CASO REALE === */
.caso-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 760px;
}

.caso-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.caso-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  color: var(--dark);
  line-height: 1.3;
}

.caso-desc {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.caso-numeri {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.caso-num {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.caso-num-val {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1;
}

.caso-num-val.dopo { color: var(--accent); }

.caso-num-label {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: var(--stone-ui);
}

.caso-freccia {
  font-size: 1.4rem;
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  margin-top: -0.8rem;
}

/* === PER CHI === */
.per-chi {
  background: var(--dark);
  color: #FFFFFF;
  border-top: none;
}

.per-chi .section-label { color: #4A4840; }

.per-chi .section-intro { color: #A0987E; }

.per-chi h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 3rem;
}

.per-chi h2 em {
  color: var(--accent);
  font-style: italic;
}

.target-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.target-pills span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  border: 1px solid #2E2C28;
  color: #A0987E;
  padding: 0.6rem 1.1rem;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
  cursor: default;
}

.target-pills span:hover {
  border-color: var(--accent);
  color: #FFFFFF;
  background: var(--accent);
}

/* === GARANZIE === */
.garanzie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.garanzia {
  padding: 2rem;
  border: 1px solid var(--border);
}

.garanzia-mark {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.garanzia h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.garanzia p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

/* === CONTATTI === */
.contatti h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.contatti-sub {
  color: var(--stone);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.btn-booking {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  min-height: 72px;
  text-decoration: none;
  border: 1px solid var(--border);
  margin-bottom: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--dark);
  background: var(--bg);
}

.btn-booking:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(181, 96, 47, 0.12);
}

.btn-wa:hover {
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
}

.booking-icon {
  flex-shrink: 0;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
}

.btn-booking:hover .booking-icon { color: var(--accent); }
.btn-wa:hover .booking-icon { color: #25D366; }

.booking-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.booking-text strong {
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-text small {
  font-size: 0.78rem;
  color: var(--stone);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
}

.contact-direct { margin-top: 2rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem 0;
  min-height: 48px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: color 0.2s;
}

.contact-row:first-child { border-top: 1px solid var(--border); }
.contact-row:hover { color: var(--accent); }

.contact-key {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.15em;
  color: var(--stone-ui);
  width: 90px;
  flex-shrink: 0;
}

.contact-val { font-size: 0.9rem; }

/* === FORM CONTATTO === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group-full {
  margin-bottom: 1rem;
}

.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.15em;
  color: var(--stone);
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  min-height: 48px;
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #BBBBBB; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-note {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--stone-ui);
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
}

.contact-form .btn { align-self: flex-start; }

.form-error-msg {
  color: #c0392b;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  background: #fff0ee;
  border: 1px solid #f5c6c0;
  border-radius: 4px;
  padding: 0.6rem 0.9rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* === FOOTER === */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}

.footer-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--stone);
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.footer-copy a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copy a:hover { color: var(--accent); }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero h1, .hero-sub, .credentials, .hero-ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .js .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .service, .service::before,
  .testi-card,
  .mobile-nav,
  .hamburger span { transition: none; }
  .btn::after { display: none; }
  header { transition: none; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .chi-grid {
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  /* Header */
  .desktop-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 6rem 0 5rem; }
  .hero-deco { display: none; }

  /* Sezioni */
  .problema-grid,
  .garanzie-grid,
  .stat-bar,
  .testi-grid { grid-template-columns: 1fr; }

  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }

  .steps { flex-direction: column; }
  .step-arrow { display: none; }

  .services-grid,
  .contatti-grid { grid-template-columns: 1fr; }

  .contatti-grid { gap: 2.5rem; }

  /* Chi Sono con foto */
  .chi-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chi-photo {
    position: static;
    max-width: 280px;
  }

  .js .chi-content .reveal {
    transform: translateY(16px);
  }

  .values,
  .form-row { grid-template-columns: 1fr; }

  .credentials { flex-direction: column; }
  .credentials span { width: fit-content; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero h1 { font-size: 2.2rem; }

  .btn, .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-ctas .btn-ghost { width: auto; }
}

