/* ============================================
   VARIABILI CSS
   ============================================ */
:root {
  --color-primary:      #7B4B2A;
  --color-secondary:    #A0714F;
  --color-accent:       #C4956A;
  --color-light:        #F5EDE0;
  --color-light-purple: #EDE0D4;
  --color-gradient:      linear-gradient(135deg, #7B4B2A, #A0714F);
  --color-gradient-soft: linear-gradient(135deg, #C4956A, #D4B896);

  --color-text:       #2D2218;
  --color-text-light: #6B5A4E;
  --color-bg:         #FDFAF6;
  --color-bg-section: #FAF5EF;

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Poppins', sans-serif;

  --shadow-sm: 0 2px 12px rgba(123, 75, 42, 0.08);
  --shadow-md: 0 8px 32px rgba(123, 75, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(123, 75, 42, 0.18);

  --radius:      16px;
  --radius-sm:   8px;
  --radius-full: 999px;

  --transition: all 0.3s ease;
  --container:  1200px;
  --nav-h:      70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 88px 0; }

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-light);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section__desc {
  color: var(--color-text-light);
  font-size: 1rem;
}

/* ============================================
   BOTTONI
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 75, 42, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123, 75, 42, 0.45);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.75);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  background: #20BC5A;
}

/* ============================================
   PLACEHOLDER IMMAGINI
   ============================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-gradient-soft);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 1.5rem;
  border-radius: inherit;
  user-select: none;
}

.img-placeholder--hero      { min-height: 100vh; border-radius: 0; font-size: 1.1rem; }
.img-placeholder--chi-siamo { min-height: 420px; border-radius: var(--radius); }
.img-placeholder--gallery   { min-height: 280px; border-radius: var(--radius); }

/* ============================================
   ANIMAZIONI FADE-IN
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER & NAV
   ============================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo { z-index: 1001; }
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--color-gradient);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  background: var(--color-gradient);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123,75,42,0.35);
}

/* Links bianchi sulla hero non ancora scrollata */
.header:not(.scrolled) .nav__link:not(.nav__link--cta) {
  color: rgba(255,255,255,0.92);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.hamburger__line {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.header:not(.scrolled) .hamburger__line { background: #fff; }

.nav__hamburger.active .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback quando l'immagine di sfondo non è ancora caricata */
  background: var(--color-gradient);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(44,24,8,0.70) 0%, rgba(123,75,42,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  text-align: center;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
}

.hero__pretitle {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  animation: bounce 2.2s infinite ease-in-out;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SERVIZI
   ============================================ */
.servizi { background: var(--color-bg-section); }

.servizi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.servizio-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.servizio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.servizio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.servizio-card:hover::before { transform: scaleX(1); }

.servizio-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--color-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  transition: background 0.3s ease, color 0.3s ease;
}
.servizio-card:hover .servizio-card__icon {
  background: var(--color-gradient);
  color: #fff;
}

.servizio-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--color-text);
}
.servizio-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================
   CHI SIAMO
   ============================================ */

/* Layout a due colonne (con immagine) */
.chi-siamo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chi-siamo__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chi-siamo__img img { width: 100%; height: 100%; object-fit: cover; }

.chi-siamo__content .section__title { text-align: left; }
.chi-siamo__content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.chi-siamo__content .btn { margin-top: 0.5rem; }

/* Layout a tutta larghezza (senza immagine) */
.chi-siamo__content--full {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.chi-siamo__content--full .section__title {
  text-align: center;
}
.chi-siamo__content--full .btn {
  margin-top: 1.5rem;
}

/* ============================================
   STORIA / TIMELINE
   ============================================ */
.storia { background: var(--color-bg-section); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--color-gradient-soft);
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 3rem;
  position: relative;
}
.timeline__item--right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}

.timeline__dot {
  position: absolute;
  left: 50%; top: 1.5rem;
  width: 16px; height: 16px;
  background: var(--color-gradient);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--color-accent);
  z-index: 1;
}

.timeline__content {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  max-width: 340px;
  width: 100%;
}

.timeline__year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: var(--color-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}
.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.timeline__content p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

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

.galleria__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  max-width: 600px;
  max-height: 600px;
}
.galleria__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.galleria__item:hover img,
.galleria__item:hover .img-placeholder { transform: scale(1.06); }
.galleria__item .img-placeholder { transition: transform 0.4s ease; }

.galleria__overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,75,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}
.galleria__item:hover .galleria__overlay,
.galleria__item:focus  .galleria__overlay { opacity: 1; }
.galleria__item:focus { outline: 3px solid var(--color-primary); outline-offset: 2px; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.lightbox__content .img-placeholder {
  width: 600px;
  max-width: 90vw;
  height: 450px;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none; color: #fff;
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none; color: #fff;
  font-size: 2.5rem; line-height: 1;
  cursor: pointer;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ============================================
   CONTATTI
   ============================================ */
.contatti__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contatti__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contatti__card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.contatti__card p, .contatti__card address {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.contatti__card a { color: var(--color-text-light); transition: color 0.2s; }
.contatti__card a:hover { color: var(--color-primary); }

.contatti__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contatti__cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contatti__mappa {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.contatti__mappa iframe {
  width: 100%; height: 380px;
  border: none; display: block;
}

.mappa-placeholder {
  width: 100%; height: 380px;
  background: var(--color-light-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-secondary);
  text-align: center;
  padding: 2rem;
}
.mappa-placeholder p   { font-weight: 600; font-size: 1rem; }
.mappa-placeholder small { font-size: 0.78rem; color: var(--color-text-light); }

/* ============================================
   NEWS
   ============================================ */
.news { background: var(--color-bg-section); }

/* Griglia news (da usare quando si aggiungono le card) */
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.news-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-gradient-soft);
}
.news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body { padding: 1.5rem; }
.news-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0.5rem 0 0.65rem;
}
.news-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Stato vuoto — placeholder in attesa dei contenuti */
.news__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--color-text-light);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px dashed var(--color-light);
  max-width: 480px;
  margin: 0 auto;
}
.news__empty svg { opacity: 0.4; color: var(--color-primary); }
.news__empty p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}
.news__empty span { font-size: 0.88rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #a0714f;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer__social-link:hover {
  background: var(--color-gradient);
  color: #fff;
  transform: translateY(-3px);
}

.footer__nav h4,
.footer__contatti h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--color-accent); }

.footer__contatti p { font-size: 0.88rem; margin-bottom: 0.6rem; line-height: 1.5; }
.footer__contatti a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__contatti a:hover { color: var(--color-accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__legal a:hover { color: var(--color-accent); }

/* ============================================
   RESPONSIVE — TABLET  (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .chi-siamo__grid { gap: 2.5rem; }
  .contatti__grid  { gap: 2rem; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — MOBILE  (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Nav mobile */
  .nav__hamburger { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav__menu.active { right: 0; }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--color-text) !important;
    border-bottom: 1px solid var(--color-light);
    width: 100%;
  }
  .nav__link--cta {
    display: inline-flex;
    margin-top: 1.5rem;
    border-bottom: none;
    color: #fff !important;
    align-self: flex-start;
  }
  .nav__link::after { display: none; }

  /* Hero */
  .hero__cta { flex-direction: column; align-items: center; }

  /* Chi siamo */
  .chi-siamo__grid { grid-template-columns: 1fr; gap: 2rem; }
  .chi-siamo__content .section__title,
  .chi-siamo__content { text-align: center; }
  .chi-siamo__content--full { text-align: center; }

  /* Timeline */
  .timeline::before { left: 1.5rem; }
  .timeline__item,
  .timeline__item--right {
    padding: 0 0 0 4rem;
    justify-content: flex-start;
  }
  .timeline__dot { left: 1.5rem; }
  .timeline__content { max-width: 100%; }

  /* Galleria */
  .galleria__grid { grid-template-columns: repeat(2, 1fr); }

  /* Contatti */
  .contatti__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   GALLERIA — sfondi placeholder (classi CSS invece di inline style)
   ============================================ */
.gallery-bg-1 { background: linear-gradient(135deg, #7B4B2A, #A0714F); }
.gallery-bg-2 { background: linear-gradient(135deg, #A0714F, #C4956A); }
.gallery-bg-3 { background: linear-gradient(135deg, #C4956A, #D4B896); }
.gallery-bg-4 { background: linear-gradient(135deg, #5A3418, #A0714F); }
.gallery-bg-5 { background: linear-gradient(135deg, #3E1F0A, #7B4B2A); }
.gallery-bg-6 { background: linear-gradient(135deg, #6B4226, #B07D55); }

/* ============================================
   RESPONSIVE — SMALL  (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .galleria__grid { grid-template-columns: 1fr; }

  .lightbox__nav { width: 44px; height: 44px; font-size: 2rem; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }

  .contatti__cta-buttons { flex-direction: column; }
  .contatti__cta-buttons .btn { justify-content: center; }
}