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

:root {
  --cream: #f5f0e8;
  --green-dark: #2d4a1e;
  --green-mid: #3d5a2a;
  --green-light: #4a6e32;
  --text: #1a1a18;
  --text-muted: #6b6b60;
  --border: rgba(45, 74, 30, 0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.eyebrow.light {
  color: rgba(245, 240, 232, 0.6);
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 120px 0;
}

/* ===========================
   REVEAL ANIMATION
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.98);
  filter: blur(8px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.servizio-item.reveal {
  transform: translateY(56px);
}

.servizio-item.reverse.reveal {
  transform: translateY(56px);
}

.servizio-item.reveal.visible,
.servizio-item.reverse.reveal.visible {
  transform: translateY(0);
}

.perche-card.reveal:nth-child(2),
.faq-item.reveal:nth-child(2),
.footer-col.reveal:nth-child(2) {
  --reveal-delay: 90ms;
}

.perche-card.reveal:nth-child(3),
.faq-item.reveal:nth-child(3),
.footer-col.reveal:nth-child(3) {
  --reveal-delay: 180ms;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 24px;
  left: clamp(20px, 10vw, 190px);
  right: clamp(20px, 10vw, 190px);
  width: auto;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  pointer-events: none;
  transition: top 0.3s ease, left 0.3s ease, right 0.3s ease;
}

.navbar.scrolled {
  top: 18px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(245, 240, 232, 0.88);
  border: 1px solid rgba(245, 240, 232, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.nav-logo img {
  height: 25px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.btn-chiama {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  background: rgba(45, 74, 30, 0.92);
  color: var(--cream);
  padding: 8px 8px 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-chiama:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-chiama .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--green-dark);
  font-size: 0;
  line-height: 1;
}

.btn-chiama .arrow::before {
  content: "↗";
  font-size: 15px;
}

.hamburger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.18);
  background: rgba(45, 74, 30, 0.92);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hamburger:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.hamburger span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.hamburger.open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, 100vw);
  height: 100dvh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px clamp(28px, 4vw, 56px);
  gap: 32px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  z-index: 170;
  box-shadow: -30px 0 80px rgba(0,0,0,0.22);
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu > a {
  display: none;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-logo {
  display: inline-flex;
  align-items: center;
}

.menu-logo img {
  height: 30px;
  width: auto;
}

.menu-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--green-dark);
  color: var(--cream);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-close:hover {
  background: var(--green-light);
  transform: rotate(90deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-links a span {
  font-family: var(--font-sans);
  font-size: 18px;
  color: rgba(45, 74, 30, 0.22);
}

.mobile-menu-links a:hover {
  color: var(--green-dark);
  padding-left: 10px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.mobile-menu-contact a,
.mobile-menu-contact span {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}

.mobile-menu-contact a:hover {
  color: var(--green-dark);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(22, 48, 20, 0.62);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

body.menu-open {
  overflow: hidden;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('media/hero-desktop.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 48px;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-weight: 400;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--text);
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

.hero-card {
  position: absolute;
  right: 48px;
  bottom: 100px;
  z-index: 2;
  background: var(--cream);
  border-radius: 16px;
  padding: 20px 24px;
  width: 380px;
  min-height: 246px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: fadeSlideUp 1s ease 0.4s both;
  overflow: hidden;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stars {
  color: #f0a500;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-review {
  position: absolute;
  inset: 20px 24px 38px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-review.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 14px;
  flex: 1;
}

.hero-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.author-avatar.bg-green {
  background: var(--green-light);
}

.hero-card-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.hero-card-author span {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-review-dots {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 17px;
  display: flex;
  gap: 7px;
}

.hero-review-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(45, 74, 30, 0.22);
  transition: width 0.35s ease, background 0.35s ease;
}

.hero-review-dots span.active {
  width: 24px;
  background: var(--green-dark);
}

/* ===========================
   CHI SIAMO
=========================== */
.chi-siamo {
  background: var(--cream);
}

.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.chi-siamo-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}

.chi-siamo-right p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chi-siamo-img {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.chi-siamo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.chi-siamo-img:hover img {
  transform: scale(1.03);
}

/* ===========================
   PERCHE SCEGLIERCI
=========================== */
.perche {
  background: var(--green-dark);
  padding: 100px 0;
}

.perche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.perche-card {
  background: var(--green-dark);
  padding: 48px 40px;
  transition: background 0.3s ease;
}

.perche-card:hover {
  background: var(--green-mid);
}

.perche-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.perche-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}

.perche-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.65);
}

/* ===========================
   SERVIZI
=========================== */
.servizi {
  background: var(--cream);
}

.servizi-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.servizi-header-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
}

.servizi-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  align-self: end;
}

.servizio-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.servizio-item.reverse {
  direction: rtl;
}

.servizio-item.reverse > * {
  direction: ltr;
}

.servizio-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.servizio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.servizio-img:hover img {
  transform: scale(1.04);
}

.servizio-info {
  position: relative;
}

.servizio-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: block;
  margin-bottom: 8px;
}

.servizio-num {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: rgba(45, 74, 30, 0.12);
  line-height: 1;
}

.servizio-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.servizio-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.servizio-info p:not(.servizio-sub) {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-servizio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-servizio:hover {
  background: var(--green-dark);
  color: var(--cream);
}

/* ===========================
   TESTIMONIANZE
=========================== */
.testimonianze {
  background: var(--cream);
  overflow: hidden;
}

.testi-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.testi-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  max-width: 700px;
}

.testi-track-wrap {
  overflow: hidden;
  margin: 0 -48px;
  padding: 0 48px;
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testi-card {
  flex-shrink: 0;
  width: 340px;
  background: #edeae1;
  border-radius: 16px;
  padding: 28px;
}

.testi-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 12px 0 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.testi-author span {
  font-size: 11px;
  color: var(--text-muted);
}

.testi-controls {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.testi-btn:hover {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}

/* ===========================
   FAQ
=========================== */
.faq {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.faq-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.faq-left p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--green-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-style: normal;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ===========================
   CONTATTI
=========================== */
.contatti {
  background: var(--green-dark);
}

.contatti-header {
  text-align: center;
  margin-bottom: 48px;
}

.contatti-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}

.contatti-header h2 em {
  color: var(--cream);
}

.contatti-header p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.7);
}

.contatti-form {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contatti-form input,
.contatti-form select,
.contatti-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 100px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.95);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}

.contatti-form textarea {
  border-radius: 20px;
  resize: none;
}

.contatti-form 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='%231a1a18' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}

.contatti-form input:focus,
.contatti-form select:focus,
.contatti-form textarea:focus {
  border-color: var(--green-light);
}

.btn-submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 100px;
  border: none;
  background: var(--text);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #000;
}

.btn-submit span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.contatti-info {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
}

.info-item a,
.info-item span:not(.info-label) {
  font-size: 15px;
  color: var(--cream);
  font-weight: 400;
  transition: color 0.2s ease;
}

.info-item a:hover {
  color: rgba(245, 240, 232, 0.7);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--cream);
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  text-align: center;
  padding: 0 48px 60px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-name-italic {
  font-family: var(--font-serif);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-col a,
.footer-col span:not(.footer-col-title) {
  font-size: 14px;
  color: var(--text);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--green-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  .navbar {
    left: 32px;
    right: 32px;
  }
  .hero-content {
    padding: 0 32px;
  }
  .chi-siamo-grid {
    gap: 48px;
  }
  .servizi-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .servizio-item {
    gap: 48px;
  }
  .faq-grid {
    gap: 60px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .container {
    padding: 0 24px;
  }
  .navbar {
    top: 16px;
    left: 20px;
    right: 20px;
  }
  .navbar.scrolled {
    top: 12px;
  }
  .nav-logo {
    min-height: 42px;
    padding: 7px 14px;
  }
  .nav-logo img {
    height: 22px;
  }
  .btn-chiama {
    min-height: 42px;
    padding: 7px 7px 7px 14px;
    gap: 7px;
    font-size: 12px;
    white-space: nowrap;
  }
  .btn-chiama .arrow {
    width: 28px;
    height: 28px;
  }
  .btn-chiama .arrow::before {
    font-size: 14px;
  }
  .hamburger {
    width: 42px;
    height: 42px;
  }
  .mobile-menu {
    width: 100vw;
    padding: 28px 28px 34px;
  }
  .mobile-menu-links a {
    padding: 20px 0;
    font-size: clamp(38px, 12vw, 52px);
  }
  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .hero {
    min-height: 680px;
    background-image: url('media/hero-mobile.jpg');
    background-position: center top;
    padding-bottom: 72px;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.68) 100%);
  }
  .hero-card {
    display: none;
  }
  .chi-siamo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats {
    gap: 24px;
  }
  .perche-grid {
    grid-template-columns: 1fr;
  }
  .servizio-item,
  .servizio-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .servizio-num {
    display: none;
  }
  .testi-header {
    flex-direction: column;
  }
  .testi-card {
    width: 280px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contatti-info {
    flex-direction: column;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    padding: 0 24px 48px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 24px;
  }
  .mobile-menu {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-review {
    transition: none;
  }
  .testi-track {
    transition: none;
  }
}

/* ===========================
   GALLERY STRIP
=========================== */
.gallery-strip {
  overflow: hidden;
  padding: 80px 0;
  background: var(--cream);
}

.gallery-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: galleryScroll 42s linear infinite;
  will-change: transform;
}

.gallery-track img {
  height: 320px;
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-strip:hover .gallery-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .gallery-strip {
    padding: 48px 0;
  }
  .gallery-track img {
    height: 220px;
  }
  .gallery-track {
    gap: 16px;
    animation-duration: 32s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
  }
}
