/* ============================================
   ARIA DI MARE - MAIN STYLESHEET
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
  --blu-profondo: #223B67;
  --blu-mare: #4E7FA7;
  --azzurro-polvere: #A8C7D9;
  --sabbia-chiara: #E8DDCC;
  --avorio: #FAF6F0;
  --avorio-2: #F5EFE6;
  --oro-tenue: #C7A86A;
  --testo-morbido: #5E6270;
  --white: #FFFFFF;
  --shadow-soft: 0 14px 38px rgba(41, 63, 101, 0.08);
  --border-soft: 1px solid rgba(199, 168, 106, 0.22);
  --header-height: 76px;
}

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

html {
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--blu-profondo);
  font-family: 'Inter', sans-serif;
  background: var(--avorio);
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

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

button {
  font: inherit;
}

/* ============ TYPOGRAPHY ============ */
.font-editorial,
.editorial-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--blu-profondo);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.editorial-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--oro-tenue);
  letter-spacing: 0.02em;
}

/* ============ LAYOUT ============ */
.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.menu-container {
  width: min(100% - 32px, 860px);
  margin: 0 auto;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(34, 59, 103, 0.05);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(34, 59, 103, 0.08);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

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

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blu-profondo);
  letter-spacing: 0.02em;
}

.logo-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--oro-tenue);
}

.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--oro-tenue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============ NAVIGATION ============ */
nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blu-profondo);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--oro-tenue);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--oro-tenue);
}

.nav-cta {
  background: var(--blu-profondo);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--oro-tenue);
  color: white !important;
}

/* ============ MOBILE MENU ============ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--blu-profondo);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--avorio);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--blu-profondo);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(199, 168, 106, 0.15);
  color: var(--oro-tenue);
}

.mobile-nav .nav-cta-mobile {
  background: var(--blu-profondo);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.mobile-nav .nav-cta-mobile:hover {
  background: var(--oro-tenue);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--blu-profondo);
  cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(circle at top left, rgba(168,199,217,0.22), transparent 22%),
    radial-gradient(circle at bottom right, rgba(199,168,106,0.12), transparent 28%),
    linear-gradient(180deg, var(--avorio) 0%, var(--avorio-2) 100%);
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  padding-top: 100px;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oro-tenue);
  margin-bottom: 1rem;
}

.hero-logo {
  width: 450px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}

.hero-title,
.hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: .02em;
  color: var(--blu-profondo);
}

.hero-title span {
  color: var(--oro-tenue);
}

.hero-subtitle {
  margin: 16px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--testo-morbido);
}

.hero-description {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: var(--testo-morbido);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-tagline {
  margin: 24px 0 32px;
  color: var(--testo-morbido);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--oro-tenue);
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oro-tenue), transparent);
}

/* ============ BUTTONS ============ */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  color: var(--blu-profondo);
  background: linear-gradient(135deg, var(--oro-tenue) 0%, #d4b87a 100%);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(199, 168, 106, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary svg,
.btn-secondary svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(199, 168, 106, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  color: var(--blu-profondo);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--blu-profondo);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-light {
  background: var(--white);
  color: var(--blu-profondo);
}

.btn-light:hover {
  background: var(--avorio);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blu-profondo);
  border: 2px solid var(--blu-profondo);
}

.btn-outline:hover {
  background: var(--blu-profondo);
  color: var(--white);
}

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

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--avorio);
}

.section-cream {
  background: linear-gradient(180deg, var(--avorio-2) 0%, var(--avorio) 100%);
}

.section-dark {
  background: linear-gradient(180deg, var(--blu-profondo) 0%, #1a2d4d 100%);
  color: var(--white);
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oro-tenue);
}

.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--blu-profondo);
  text-align: center;
}

.section-title small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--oro-tenue);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.section-dark .section-title {
  color: var(--white);
}

.section-ornament {
  width: 120px;
  height: 12px;
  margin: 20px auto 0;
  opacity: .7;
}

/* ============ INTRO GRID ============ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-text h2 {
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--blu-profondo);
}

.intro-text p {
  margin: 0 0 16px;
  color: var(--testo-morbido);
  font-size: 1rem;
  line-height: 1.75;
}

.intro-text a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--blu-profondo);
  font-weight: 600;
  transition: color 0.2s ease;
}

.intro-text a:hover {
  color: var(--oro-tenue);
}

.intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intro-img {
  border-radius: 20px;
  aspect-ratio: 3/4;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(34, 59, 103, 0.1);
  overflow: hidden;
  position: relative;
}

.intro-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-img span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: white;
  text-align: center;
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
}

.feature-card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(34, 59, 103, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(199,168,106,0.15) 0%, rgba(199,168,106,0.05) 100%);
  display: grid;
  place-items: center;
  color: var(--oro-tenue);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blu-profondo);
}

.feature-card p {
  margin: 0;
  color: var(--testo-morbido);
  font-size: .95rem;
  line-height: 1.65;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 6rem 2rem;
  background: var(--blu-profondo);
  text-align: center;
  color: var(--white);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.cta-image {
  background: linear-gradient(135deg, var(--blu-mare) 0%, var(--blu-profondo) 100%);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(34, 59, 103, 0.15);
}

.cta-content h2 {
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}

.cta-content p {
  margin: 0 0 24px;
  color: var(--azzurro-polvere);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============ GALLERY ============ */
.gallery-section {
  padding: 5rem 2rem;
  background: var(--avorio);
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sabbia-chiara) 0%, var(--azzurro-polvere) 100%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(34, 59, 103, 0.9), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.gallery-item-overlay span {
  font-size: 0.8rem;
  color: var(--oro-tenue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Tutte le immagini hanno la stessa dimensione */

/* Filter tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--testo-morbido);
  background: transparent;
  border: 1px solid rgba(199, 168, 106, 0.3);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  color: var(--blu-profondo);
  background: var(--white);
  border-color: var(--oro-tenue);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 59, 103, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  text-align: center;
  color: var(--white);
}

.lightbox-caption h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  font-size: 0.85rem;
  color: var(--oro-tenue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-info {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
}

.lightbox-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.lightbox-info span {
  font-size: 0.85rem;
  color: var(--oro-tenue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ FOOTER ============ */
/* Footer site-footer (index.html) */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4f7 0%, var(--avorio-2) 100%);
  color: var(--blu-profondo);
  border-top: 1px solid rgba(199,168,106,0.18);
  padding: 68px 0 26px;
}

/* Footer generico (pagine interne) */
footer {
  background: var(--blu-profondo);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2rem;
}

footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
}

footer .footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

footer .footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-links li {
  padding: 0.35rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

footer .footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: var(--oro-tenue);
}

footer .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

footer .footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--oro-tenue);
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer .footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

footer .footer-social {
  display: flex;
  gap: 1rem;
}

footer .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

footer .footer-social a:hover {
  background: var(--oro-tenue);
  transform: translateY(-2px);
}

footer .footer-social svg {
  width: 18px;
  height: 18px;
}

/* CTA Section (pagine interne) */
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--azzurro-polvere);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* site-footer grid style */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.1fr;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-title {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blu-profondo);
}

.footer-text {
  color: var(--testo-morbido);
  font-size: .95rem;
  line-height: 1.7;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  padding: 6px 0;
  color: var(--testo-morbido);
  font-size: .95rem;
  line-height: 1.75;
}

.footer-link {
  color: var(--testo-morbido);
  font-size: .95rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--oro-tenue);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(34,59,103,0.08);
  color: var(--blu-profondo);
  transition: transform .2s ease, background .2s ease;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(34,59,103,0.14);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(199,168,106,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--testo-morbido);
  font-size: .84rem;
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--oro-tenue);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--blu-profondo), #355783);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(34, 59, 103, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============ CONTACT PAGE ============ */
.contact-cards-section {
  padding: 5rem 2rem;
  background: var(--avorio);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: var(--border-soft);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(199, 168, 106, 0.15) 0%, rgba(199, 168, 106, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oro-tenue);
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--blu-profondo);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--testo-morbido);
  line-height: 1.6;
}

.contact-card a {
  color: var(--blu-profondo);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--oro-tenue);
}

/* Reservation section */
.reservation-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--avorio-2) 0%, var(--avorio) 100%);
}

.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.reservation-form {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  border: var(--border-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blu-profondo);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(199, 168, 106, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

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

.hours-section {
  padding: 2rem;
}

.hours-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--blu-profondo);
  margin-bottom: 2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hour-item {
  background: rgba(199, 168, 106, 0.08);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
}

.hour-item .day {
  font-weight: 600;
  color: var(--blu-profondo);
  margin-bottom: 0.5rem;
}

.hour-item .time {
  color: var(--testo-morbido);
  font-size: 0.9rem;
}

/* Map section */
.map-section {
  padding: 5rem 2rem;
  background: var(--avorio);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(34, 59, 103, 0.15);
  max-width: 300px;
}

.map-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--blu-profondo);
  margin-bottom: 0.5rem;
}

.map-overlay p {
  color: var(--testo-morbido);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--blu-profondo);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: #1a2f52;
  transform: translateY(-2px);
}

.directions-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============ CHI SIAMO PAGE ============ */
.story-section {
  padding: 6rem 2rem;
  background: var(--avorio);
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.story-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--oro-tenue), #d4b87a);
  border-radius: 50%;
  opacity: 0.3;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--testo-morbido);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Values section */
.values-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--avorio-2) 0%, var(--avorio) 100%);
}

.values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.values-header .editorial-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.values-header .editorial-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: var(--border-soft);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(199, 168, 106, 0.15) 0%, rgba(199, 168, 106, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oro-tenue);
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--blu-profondo);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--testo-morbido);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Chef section */
.chef-section {
  padding: 6rem 2rem;
  background: var(--avorio);
}

.chef-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.chef-image {
  position: relative;
}

.chef-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.chef-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--blu-profondo);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(34, 59, 103, 0.3);
}

.chef-badge-years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--oro-tenue);
}

.chef-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.chef-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.chef-role {
  font-size: 1rem;
  color: var(--oro-tenue);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.chef-content p {
  color: var(--testo-morbido);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.chef-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--blu-profondo);
  padding-left: 1.5rem;
  border-left: 3px solid var(--oro-tenue);
  margin: 2rem 0;
}

/* Stats section */
.stats-section {
  padding: 4rem 2rem;
  background: var(--blu-profondo);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--oro-tenue);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* ============ MENU PAGE ============ */
.menu-section {
  position: relative;
  scroll-margin-top: 150px;
  padding: 6px 0;
}

.menu-panel {
  position: relative;
  background: rgba(255,255,255,0.65);
  border: var(--border-soft);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: 34px 26px 110px;
  overflow: hidden;
}

.menu-list {
  position: relative;
  z-index: 1;
}

.menu-item {
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(199,168,106,0.18);
  transition: background .25s ease;
  text-align: center;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: rgba(255,255,255,0.20);
}

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.52rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--blu-profondo);
  margin: 0;
}

.menu-item-desc {
  margin: 8px auto 0;
  max-width: 46rem;
  color: var(--testo-morbido);
  font-size: .97rem;
  line-height: 1.65;
}

.menu-subcategory {
  margin: 28px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(199,168,106,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-subcategory:first-of-type {
  margin-top: 0;
}

.menu-subcategory-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--blu-mare);
  margin: 0;
}

.menu-subcategory-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(199,168,106,0.4), transparent);
}

.menu-notes {
  margin-top: 8px;
  padding: 28px 18px 0;
  text-align: center;
  border-top: 1px solid rgba(199,168,106,0.18);
  color: var(--testo-morbido);
  font-size: .92rem;
  line-height: 1.8;
}

.btn-menu-completo {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 36px;
  background: var(--oro-tenue);
  color: var(--blu-profondo);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(199, 168, 106, 0.35);
}

.btn-menu-completo:hover {
  background: var(--blu-profondo);
  color: var(--oro-tenue);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(34, 59, 103, 0.3);
}

/* Category navigation */
.category-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: rgba(250, 246, 240, 0.98);
  border-top: 1px solid rgba(199,168,106,0.10);
  border-bottom: 1px solid rgba(199,168,106,0.16);
}

.category-scroller {
  display: flex;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 0;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.category-scroller::-webkit-scrollbar {
  display: none;
}

.category-nav-item {
  position: relative;
  white-space: nowrap;
  scroll-snap-align: center;
  padding: 12px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--testo-morbido);
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
}

.category-nav-item:hover,
.category-nav-item.active {
  color: var(--blu-profondo);
  background-color: rgba(199,168,106,0.10);
}

/* Section divider */
.section-divider {
  display: flex;
  justify-content: center;
  margin: 8px 0;
  opacity: .6;
}

.section-divider svg {
  width: 220px;
  height: 36px;
}

/* ============ UTILITY CLASSES ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 1024px) {
  .story-container,
  .chef-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-image-accent {
    display: none;
  }

  .chef-badge {
    right: 1rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .reservation-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-container {
    padding: 0 1rem;
  }

  .logo-img {
    height: 40px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 8rem 1.5rem 4rem;
    min-height: 50vh;
  }

  .hero h1,
  .hero-title {
    font-size: 2.5rem;
  }

  .story-section,
  .values-section,
  .chef-section,
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .story-image img,
  .chef-image img {
    height: 350px;
  }

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

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
  }

  .btn-group .btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-list {
    text-align: center;
  }

  .footer-list li {
    padding: 3px 0;
    font-size: 0.85rem;
    justify-content: center;
  }

  .footer-text {
    font-size: 0.85rem;
    text-align: center;
  }

  .social-row {
    justify-content: center;
  }

  .site-footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom p,
  .footer-bottom a,
  .footer-bottom div {
    font-size: 0.8rem;
  }

  /* Footer generico (pagine interne) mobile */
  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  footer .footer-brand {
    text-align: center;
  }

  footer .footer-logo {
    font-size: 1.4rem;
  }

  footer .footer-brand p {
    font-size: 0.85rem;
  }

  footer .footer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  footer .footer-links {
    text-align: center;
  }

  footer .footer-links li {
    padding: 0.25rem 0;
    font-size: 0.85rem;
  }

  footer .footer-contact-item {
    justify-content: center;
    font-size: 0.85rem;
  }

  footer .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  footer .footer-copyright {
    font-size: 0.75rem;
  }

  footer .footer-social {
    justify-content: center;
  }

  footer {
    padding: 2rem 1rem 1.5rem;
  }

  /* Gallery mobile */
  .gallery-section {
    padding: 3rem 1rem 4rem;
  }

  .filter-tabs {
    gap: 0.5rem;
  }

  .filter-tab {
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 1;
  }

  .gallery-item {
    border-radius: 12px;
  }

  .gallery-item-overlay {
    padding: 12px;
  }

  .gallery-item-overlay h3 {
    font-size: 1rem;
  }

  .gallery-item-overlay span {
    font-size: 0.7rem;
  }

  /* Lightbox mobile */
  .lightbox-content {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  /* Contact mobile */
  .contact-cards-section,
  .reservation-section,
  .map-section {
    padding: 4rem 1.5rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-card h3 {
    font-size: 1.3rem;
  }

  .reservation-form {
    padding: 2rem;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .reservation-form input,
  .reservation-form select,
  .reservation-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .reservation-form button {
    min-height: 48px;
    font-size: 1rem;
  }

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

  .hours-title {
    font-size: 1.5rem;
  }

  .hour-item {
    padding: 1rem;
  }

  .map-wrapper {
    height: 350px;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .map-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 1.5rem;
    box-shadow: none;
    background: var(--avorio);
  }

  /* Chi siamo mobile */
  .story-content h2,
  .chef-content h2 {
    font-size: 1.8rem;
  }

  .story-content p,
  .chef-content p {
    font-size: 0.95rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-card h3 {
    font-size: 1.3rem;
  }

  .chef-content blockquote {
    font-size: 1.1rem;
  }

  /* Footer generico mobile */
  footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  footer .footer-brand {
    grid-column: auto;
  }

  footer .footer-logo {
    font-size: 1.4rem;
  }

  footer .footer-brand p {
    font-size: 0.8rem;
  }

  footer .footer-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  footer .footer-links {
    text-align: center;
  }

  footer .footer-links li,
  footer .footer-contact-item {
    font-size: 0.8rem;
    padding: 0.2rem 0;
    justify-content: center;
  }

  footer .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  footer .footer-copyright {
    font-size: 0.7rem;
  }

  footer .footer-social {
    justify-content: center;
  }

  footer .footer-social a {
    width: 36px;
    height: 36px;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

  /* Menu mobile */
  .menu-container {
    width: min(100% - 16px, 860px);
  }

  .menu-panel {
    padding: 20px 14px 90px;
    border-radius: 20px;
  }

  .menu-item {
    padding: 14px 0 16px;
  }

  .menu-item-name {
    font-size: 1.2rem;
  }

  .menu-item-desc {
    font-size: .88rem;
    line-height: 1.55;
  }

  .menu-subcategory-title {
    font-size: 1.15rem;
  }

  .btn-menu-completo {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .category-scroller {
    justify-content: flex-start;
    padding-inline: 4px;
  }

  .category-nav-item {
    padding: 12px 16px;
    font-size: .9rem;
    min-height: 44px;
  }
}

/* ============ RESPONSIVE - SMALL MOBILE ============ */
@media (max-width: 600px) {
  .hero {
    min-height: 55vh;
    padding-top: 60px;
    padding-bottom: 2rem;
  }

  .hero-content {
    padding: 0 16px;
    padding-top: 40px;
  }

  .hero-logo {
    width: 280px;
    margin-bottom: 24px;
  }

  .hero-title,
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-top: 12px;
  }

  .hero-tagline {
    font-size: 0.9rem;
    margin: 16px 0 24px;
    padding: 0 8px;
  }

  .hero-kicker {
    font-size: 0.65rem;
    gap: 10px;
    letter-spacing: 0.18em;
  }

  .hero-kicker::before,
  .hero-kicker::after {
    width: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.8rem;
    min-height: 48px;
  }

  .scroll-indicator {
    bottom: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .intro-text h2 {
    font-size: 1.8rem;
  }

  .intro-text p {
    font-size: 0.95rem;
  }

  .intro-images {
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-list {
    text-align: center;
  }

  .footer-list li,
  .footer-links li {
    padding: 3px 0;
    font-size: 0.8rem;
  }

  .footer-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .footer-bottom p,
  .footer-bottom a,
  .footer-bottom div {
    font-size: 0.75rem;
  }

  .site-footer {
    padding: 24px 16px 16px;
  }

  .site-footer .container {
    padding: 0;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .site-footer .footer-grid > div {
    text-align: center;
  }

  .site-footer .footer-brand {
    justify-content: center;
  }

  .site-footer .footer-list li {
    justify-content: center;
  }

  .social-row {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }
}
