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

:root {
  --cream: #F5F0E8;
  --dark: #1A1612;
  --brown: #6B4E35;
  --gold: #C9963A;
  --sand: #D4B896;
  --text: #2E2520;
  --light-text: #7A6A5E;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable; /* riserva spazio per la scrollbar — evita che copra elementi fissi */
}

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

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2.5rem;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,150,58,0.2);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--light-text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 6rem;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 120px;
  background: var(--dark);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-cta:hover { background: #b8852e; transform: translateX(4px); }
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-right {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #c8a882 0%, #a0785a 35%, #6B4E35 70%, #3d2a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-placeholder::after {
  content: 'CUJBA';
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

/* Brick pattern SVG background */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(0,0,0,0.08) 29px, rgba(0,0,0,0.08) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,0,0,0.05) 59px, rgba(0,0,0,0.05) 60px);
  background-size: 120px 30px;
  opacity: 0.6;
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  background: var(--dark);
  color: var(--cream);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--gold);
  animation: spin 20s linear infinite;
  z-index: 5;
}
.hero-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}

.hero-photo-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── STRIP ── */
.strip {
  background: var(--gold);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-inner {
  display: inline-block;
  animation: ticker 20s linear infinite;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}
.strip-inner span { margin: 0 2.5rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 6rem 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* ── CHI SIAMO ── */
#chi-siamo .inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
}

.about-img {
  position: relative;
}
.about-img-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #b89070, #6B4E35);
  position: relative;
  overflow: hidden;
}
.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(0,0,0,0.1) 29px, rgba(0,0,0,0.1) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,0,0,0.06) 59px, rgba(0,0,0,0.06) 60px);
}
.about-photo-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  z-index: -1;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 1.2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,150,58,0.3);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 0.25rem;
}

/* ── SERVIZI ── */
#servizi { background: var(--dark); }
#servizi .section-title { color: var(--cream); }
#servizi .section-label { color: var(--gold); }

.servizi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(201,150,58,0.2);
}

.servizio-card {
  padding: 2.5rem;
  border-right: 1px solid rgba(201,150,58,0.2);
  border-bottom: 1px solid rgba(201,150,58,0.2);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.servizio-card:hover { background: rgba(201,150,58,0.07); }
.servizio-card:nth-child(2n) { border-right: none; }
.servizio-card:nth-child(3),
.servizio-card:nth-child(4) { border-bottom: none; }

.servizi-nota {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--sand);
  font-style: italic;
}

.servizio-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.servizio-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.servizio-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--sand);
}
.servizio-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,150,58,0.08);
  line-height: 1;
  pointer-events: none;
}

/* ── LAVORI ── */
#lavori .gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

/* ── GALLERY CAROUSEL ── */
.gallery-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.gallery-grid {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item {
  flex-shrink: 0;
  background: linear-gradient(135deg, #c8a882, #8a6045);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-inner {
  aspect-ratio: 4/3;
  display: block;
  overflow: hidden;
}

.gallery-item:hover .gallery-item-inner img {
  transform: scale(1.04);
  transition: transform 0.4s ease;
}
.gallery-item-inner img { transition: transform 0.4s ease; }

.gallery-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--dark);
  border: 1px solid rgba(201,150,58,0.35);
  border-radius: 6px;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
}
.gallery-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.gallery-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.93);
  cursor: pointer;
}

.lightbox-img {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
  animation: lightboxOpen 0.25s ease;
}
@keyframes lightboxOpen {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  z-index: 3;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0.3rem 0.6rem;
}
.lightbox-close:hover { opacity: 1; transform: scale(1.15); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--cream);
  font-size: 2.8rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}
.lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,0.15); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── RECENSIONI ── */
#recensioni { background: #EDE7DA; }

.recensioni-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.recensioni-text { max-width: 520px; }

.recensioni-text p:last-of-type {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-text);
  margin-top: 0.5rem;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--dark);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2rem;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.google-review-btn:hover {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}

@media (max-width: 768px) {
  .recensioni-inner { flex-direction: column; align-items: flex-start; }
}

/* ── CONTATTI ── */
#contatti { background: var(--dark); }
#contatti .section-title { color: var(--cream); }
#contatti .section-label { color: var(--gold); }

.contatti-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--sand);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,150,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text {
  font-size: 0.9rem;
  color: var(--sand);
  line-height: 1.4;
}
.contact-item-text strong {
  display: block;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,150,58,0.3);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: #b8852e; }

/* ── FOOTER ── */
footer {
  background: #0E0B09;
  padding: 2rem 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-logo span { color: var(--gold); }
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--light-text);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV SOCIAL ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta-btn:hover { transform: translateY(-1px); }

.nav-cta-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.nav-cta-wa:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
}

.nav-cta-ig {
  background: transparent;
  color: var(--light-text);
  border-color: rgba(107,78,53,0.3);
}
.nav-cta-ig:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .nav-social { margin-left: 0.5rem; gap: 0.4rem; }
}

@media (max-width: 700px) {
  .nav-cta-btn span { display: none; }
  .nav-cta-btn { padding: 0.4rem 0.5rem; }
}

/* ── SPYRALVERSE DEV CREDIT ── */
.spyralverse-credit {
  position: fixed;
  bottom: 1.2rem;
  right: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 50;
}
.spyralverse-credit a {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(122, 106, 94, 0.35);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.spyralverse-credit a:hover { color: rgba(201,150,58,0.7); }
.spyralverse-gh svg { display: block; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(8px);
  padding: 5rem 2rem 2rem;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu ul li {
  border-bottom: 1px solid rgba(201,150,58,0.2);
}
.mobile-menu ul li a {
  display: block;
  padding: 1.1rem 0;
  text-decoration: none;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Nav: hamburger */
  nav { padding: 0.5rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  /* Nav */
  nav { padding: 0.2rem 1rem; }

  /* Hero */
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 6rem 1.5rem 3.5rem; }
  .hero-left::after { display: none; }

  /* Chi Siamo */
  #chi-siamo .inner { grid-template-columns: 1fr; }

  /* Servizi */
  .servizi-grid { grid-template-columns: 1fr; }
  .servizio-card:nth-child(3),
  .servizio-card:nth-child(4) { border-bottom: 1px solid rgba(201,150,58,0.2); }
  .servizio-card:last-child { border-bottom: none; }

  /* Gallery */
  #lavori .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  #lavori .gallery-header p { text-align: left; max-width: 100%; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 1.6rem; }

  /* Lightbox */
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 2rem; }

  /* Recensioni */
  .recensioni-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .google-review-btn { width: 100%; justify-content: center; }

  /* Contatti */
  .contatti-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-copy { font-size: 0.72rem; }
  .footer-links { justify-content: center; }
}

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

  .nav-cta-btn { padding: 0.4rem 0.5rem; }

  /* Hero */
  .hero-left { padding: 5.5rem 1.25rem 3rem; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 0.9rem; }

  /* Stats */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Servizi */
  .servizio-card { padding: 1.75rem 1.5rem; }

  /* Gallery carousel: frecce ancora più piccole */
  .gallery-arrow { width: 30px; height: 30px; font-size: 1.3rem; }
  .gallery-carousel-wrap { gap: 0.4rem; }

  /* Contatti */
  .contatti-inner { gap: 2rem; }
  .contact-icon { width: 38px; height: 38px; font-size: 1rem; }

  /* Footer */
  .footer-logo-img { height: 48px; }
}
