/* ============================================================
   AURUM TERRAE – Antico Podere · Main Stylesheet
   ============================================================ */

:root {
  --c-dark:        #1E0E06;
  --c-brown:       #3B1A0A;
  --c-brown-mid:   #5C2E14;
  --c-gold:        #C9A96E;
  --c-gold-light:  #DFC08A;
  --c-beige:       #F5EDD6;
  --c-cream:       #FAF7F2;
  --c-text:        #3B1A0A;
  --c-text-mid:    #6B4835;
  --c-text-light:  #9B7B6B;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Lato', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.4s var(--ease);
}

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

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

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-beige); }
::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 3px; }
::selection { background: var(--c-gold); color: var(--c-dark); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.15;
}
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  {
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-text-mid);
}
a  { text-decoration: none; color: inherit; transition: color var(--t); }
img { max-width: 100%; display: block; }

/* ── Layout helpers ── */
.container      { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1420px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--c-gold-light); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--c-brown);
  color: var(--c-gold-light);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--c-brown);
  cursor: pointer;
  transition: all var(--t);
}
.btn-primary:hover {
  background: transparent;
  color: var(--c-brown);
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.6rem;
  background: var(--c-gold);
  color: var(--c-dark);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0.4rem;
  transition: all var(--t);
}
.btn-hero:hover { background: var(--c-gold-light); transform: translateY(-3px); }

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

.btn-menu {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--c-gold);
  color: var(--c-gold-light);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--t);
}
.btn-menu:hover { background: var(--c-gold); color: var(--c-dark); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: #25D366;
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--t);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(30, 14, 6, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity var(--t);
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-aurum {
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-gold-light);
  letter-spacing: 0.22em;
}
.logo-terrae {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--c-gold-light); }
.nav-links a:hover::after { width: 100%; }

.btn-lang {
  background: none;
  border: 1px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.32rem 0.72rem;
  cursor: pointer;
  transition: all var(--t);
}
.btn-lang:hover { border-color: var(--c-gold); color: var(--c-gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}
.hero-slide.active { opacity: 1; }

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 8, 2, 0.55) 0%,
    rgba(20, 8, 2, 0.22) 40%,
    rgba(20, 8, 2, 0.38) 70%,
    rgba(20, 8, 2, 0.78) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp 1.4s ease forwards;
}

.hero-logo {
  width: 165px; height: 165px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.hero-subtitle {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 2.8rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0) translateY(0); transform-origin: top; opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scaleY(1) translateY(0); transform-origin: top; opacity: 0; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--t);
  border: none;
}
.hero-dot.active { background: var(--c-gold); transform: scale(1.3); }


/* ============================================================
   STORIA
   ============================================================ */
.section-storia {
  padding: 9rem 0 8rem;
  background: var(--c-cream);
}

.storia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.storia-text .section-label { margin-bottom: 0.6rem; }
.storia-text h2 { margin-bottom: 1.6rem; color: var(--c-brown); }
.storia-text p  { margin-bottom: 1.4rem; font-size: 1.04rem; }
.storia-text .btn-primary { margin-top: 0.8rem; }

.storia-image { position: relative; padding-bottom: 2.5rem; }

.image-frame {
  position: relative;
  overflow: hidden;
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-gold);
  pointer-events: none;
  transform: translate(14px, 14px);
  transition: transform var(--t);
  z-index: 1;
}
.storia-image:hover .image-frame::after { transform: translate(8px, 8px); }

.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.image-frame:hover img { transform: scale(1.03); }

.storia-badge {
  position: absolute;
  bottom: 0; left: -1.5rem;
  background: var(--c-brown);
  color: var(--c-gold-light);
  padding: 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 2;
}
.storia-badge span:first-child {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
}
.storia-badge span:last-child {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(223, 192, 138, 0.65);
}


/* ============================================================
   STATS
   ============================================================ */
.section-stats {
  padding: 3.5rem 0;
  background: var(--c-brown);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 2.2rem 1rem;
  border-right: 1px solid rgba(201, 169, 110, 0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(201, 169, 110, 0.55);
  text-transform: uppercase;
}


/* ============================================================
   MENU
   ============================================================ */
.section-menu {
  padding: 9rem 0;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.section-menu::before {
  content: 'MENU';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: 22vw;
  font-weight: 400;
  color: rgba(201, 169, 110, 0.03);
  white-space: nowrap;
  pointer-events: none;
}
.section-menu .section-header h2 { color: var(--c-cream); }
.section-menu .section-header p  { color: rgba(245, 237, 214, 0.55); }

.menu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.menu-card {
  padding: 3.2rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t);
}
.menu-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.menu-card:hover { border-color: rgba(201, 169, 110, 0.45); }
.menu-card:hover::before { transform: scaleX(1); }

.menu-card.featured {
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.04);
}

.menu-card-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-dark);
  background: var(--c-gold);
  padding: 0.28rem 0.72rem;
}

.menu-card-icon { font-size: 2.8rem; margin-bottom: 1.5rem; }

.menu-card h3 {
  color: var(--c-cream);
  font-size: 1.65rem;
  margin-bottom: 1rem;
}
.menu-card p { color: rgba(245, 237, 214, 0.55); font-size: 0.95rem; }

.menu-cta {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}
.menu-cta p {
  color: rgba(245, 237, 214, 0.65);
  margin-bottom: 1.8rem;
  font-size: 1rem;
}
.menu-cta .btn-primary {
  margin-right: 1rem;
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-dark);
}
.menu-cta .btn-primary:hover {
  background: transparent;
  color: var(--c-gold-light);
  border-color: var(--c-gold);
}


/* ============================================================
   GALLERIA
   ============================================================ */
.section-galleria {
  padding: 9rem 0;
  background: var(--c-beige);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--c-brown);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(30, 14, 6, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item-overlay svg {
  width: 36px; height: 36px;
  color: var(--c-gold-light);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }


/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(10, 4, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--c-gold-light);
  background: none; border: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity var(--t);
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
  color: var(--c-gold-light);
  background: none; border: none;
  cursor: pointer;
  opacity: 0.6;
  padding: 1rem;
  transition: opacity var(--t);
}
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(223, 192, 138, 0.6);
}


/* ============================================================
   CONTATTI
   ============================================================ */
.section-contatti {
  padding: 9rem 0;
  background: var(--c-cream);
}

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

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
  align-items: flex-start;
}
.info-icon { font-size: 1.25rem; margin-top: 0.1rem; flex-shrink: 0; }

.info-item h4 {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.45rem;
}
.info-item p { font-size: 0.96rem; line-height: 1.75; }
.info-item a { color: var(--c-brown); }
.info-item a:hover { color: var(--c-gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 2.2rem;
}
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff;
  transition: all var(--t);
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn.instagram { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); }
.social-btn.facebook  { background: #1877F2; }
.social-btn.tripadvisor { background: #34E0A1; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.22); }

.contatti-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contatti-map {
  height: 500px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,0.12);
}
.contatti-map iframe { width: 100%; height: 100%; border: 0; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-dark);
  padding: 5.5rem 0 2.2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-logo {
  width: 78px;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  opacity: 0.85;
}
.footer-brand p {
  color: rgba(245, 237, 214, 0.45);
  font-size: 0.88rem;
  max-width: 270px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.6rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.72rem; }
.footer-links a,
.footer-contact p,
.footer-contact a {
  color: rgba(245, 237, 214, 0.55);
  font-size: 0.88rem;
  transition: color var(--t);
}
.footer-contact p { margin-bottom: 0.4rem; line-height: 1.7; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--c-gold-light); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a { color: rgba(201, 169, 110, 0.5); transition: color var(--t); }
.footer-social a:hover { color: var(--c-gold-light); }
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(245, 237, 214, 0.28);
  font-size: 0.78rem;
}
.footer-admin {
  font-size: 0.72rem;
  color: rgba(201, 169, 110, 0.25);
  transition: color var(--t);
}
.footer-admin:hover { color: var(--c-gold); }


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .section-storia,
  .section-menu,
  .section-galleria,
  .section-contatti { padding: 6rem 0; }

  .storia-content { grid-template-columns: 1fr; gap: 3rem; }
  .storia-image { max-width: 580px; margin: 0 auto; padding-bottom: 0; }
  .storia-badge { position: static; margin-top: 1.5rem; display: inline-flex; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: none; border-bottom: none; }
  .stat-item:not(:last-child) { border-right: 1px solid rgba(201,169,110,0.12); }

  .contatti-grid { grid-template-columns: 1fr; }
  .contatti-map { height: 360px; }

  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw); height: 100vh;
    background: rgba(20, 8, 2, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 2.5rem;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -8px 0 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.2em; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-logo { width: 120px; height: 120px; }
  .hero-subtitle { letter-spacing: 0.2em; font-size: 0.7rem; }
  .hero-dots { display: none; }

  /* Sections */
  .section-storia,
  .section-menu,
  .section-galleria,
  .section-contatti { padding: 5rem 0; }
  .section-stats { padding: 2.5rem 0; }

  .section-header { margin-bottom: 2.5rem; }

  /* Menu */
  .menu-cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .menu-card { padding: 2.2rem; }
  .menu-cta .btn-primary { margin-right: 0; margin-bottom: 0.75rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }

  /* Contatti */
  .contatti-cta { flex-direction: column; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer { padding: 4rem 0 2rem; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .container,
  .container-wide { padding: 0 1.2rem; }

  .hero-logo { width: 100px; height: 100px; }
  .hero-subtitle { display: none; }
  .btn-hero { display: block; width: 100%; max-width: 280px; margin: 0.4rem auto; text-align: center; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-number { font-size: 2.2rem; }

  .gallery-grid { grid-template-columns: 1fr; }

  .contatti-cta { flex-direction: column; align-items: stretch; }
  .contatti-cta .btn-whatsapp,
  .contatti-cta .btn-primary { text-align: center; justify-content: center; }

  .menu-cta { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
  .menu-cta .btn-primary { margin-right: 0; }

  .info-item { gap: 1rem; }
  .image-frame img { height: 300px; }

  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
}
