/* ============================================================
   Osteria123 — Main Stylesheet
   Fonts: Cormorant Garamond (headings) + Montserrat (body)
   ============================================================ */

/* ── Self-hosted fonts — GDPR compliant, zero richieste esterne ── */

/* Cormorant Garamond — serif per titoli (simile a Reforma 1969) */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond300-italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond500-italic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond/CormorantGaramond600-italic.woff2') format('woff2');
  font-weight: 600; font-style: italic; font-display: swap;
}

/* Raleway — sans-serif per corpo e nav (simile a Billi Ohio) */
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway/Raleway300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway/Raleway300-italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway/Raleway400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway/Raleway400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway/Raleway500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway/Raleway600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* Great Sejagad — font calligrafico per titoli hero e sezioni principali */
@font-face {
  font-family: 'Great Sejagad';
  src: url('../fonts/great-sejagad/GreatSejagad.otf') format('opentype'),
       url('../fonts/great-sejagad/GreatSejagad.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: block;
}

/* ── Variables ── */
:root {
  --color-dark:      #1c1a17;
  --color-dark-alt:  #2a2520;
  --color-cream:     #f5f0e8;
  --color-cream-alt: #ede8de;
  --color-bordeaux:  #7d1d2e;
  --color-gold:      #c9a555;
  --color-text:      #3d3530;
  --color-text-light:#7a6e65;
  --color-white:     #ffffff;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Raleway', sans-serif;
  --font-display:  'Great Sejagad', cursive;

  --transition:  0.35s ease;
  --shadow:      0 8px 40px rgba(0,0,0,0.12);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(3rem, 4vw, 4.2rem); font-family: var(--font-display); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.4rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--color-bordeaux);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
}
.divider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn-osteria {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 1px solid currentColor;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-osteria-light {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-osteria-light:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn-osteria-dark {
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn-osteria-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-osteria-gold {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-osteria-gold:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* ── Navigation ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#site-nav.scrolled {
  background: var(--color-dark);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0; padding: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.85);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--color-white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-book {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold) !important;
  border-radius: 0;
  transition: var(--transition);
}
.nav-book:hover {
  background: var(--color-gold);
  color: var(--color-dark) !important;
}
.nav-book::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--color-white);
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-links-wrap {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links-wrap.open { display: flex; }
  .nav-links { flex-direction: column; align-items: center; gap: 2rem; }
  .nav-links a { font-size: 0.9rem; }
  .nav-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none; border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  transition: opacity 1s ease;
}

/* .hero-content è ridefinito più in basso per lo slider Swiper */

.hero-logo {
  width: clamp(160px, 28vw, 320px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.hero-pre {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  z-index: 1;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ── Sections ── */
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark {
  background: var(--color-dark);
  color: var(--color-cream);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--color-cream); }

.section-dark-alt { background: var(--color-dark-alt); color: var(--color-cream); }
.section-dark-alt h1,
.section-dark-alt h2,
.section-dark-alt h3 { color: var(--color-cream); }

.section-cream { background: var(--color-cream); }
.section-cream-alt { background: var(--color-cream-alt); }

/* ── About Snippet ── */
.about-image-wrap {
  position: relative;
  padding-bottom: 120%;
  overflow: hidden;
}
.about-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }

.about-text { padding: 3rem 0 3rem 3rem; }
@media (max-width: 767px) { .about-text { padding: 2rem 0 0; } }

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Dish Cards / Menu Preview ── */
.dish-card {
  background: var(--color-white);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}
.dish-card:hover { box-shadow: var(--shadow); }

.dish-card-img {
  overflow: hidden;
  position: relative;
  padding-bottom: 70%;
}
.dish-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-card-img img { transform: scale(1.07); }

.dish-card-body { padding: 1.5rem; }

.dish-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bordeaux);
  margin-bottom: 0.4rem;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.dish-desc {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-bordeaux);
  margin-top: 0.8rem;
}

/* ── Philosophy / Quote Section ── */
.philosophy-section {
  background: var(--color-dark);
  color: var(--color-cream);
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/philosophy-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.philosophy-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  color: var(--color-cream);
}
.philosophy-author {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── Reservation CTA ── */
.cta-section {
  background: var(--color-bordeaux);
  color: var(--color-white);
  padding: 6rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--color-white); }

/* ── Menu Page ── */
.menu-category-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--color-dark);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-item-info h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.menu-item-info p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-bordeaux);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.menu-nav-pills a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.45rem 1.6rem;
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  transition: var(--transition);
}
.menu-nav-pills a:hover,
.menu-nav-pills a.active {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.wide { grid-column: span 2; }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Contact / Reservation ── */
.contact-info-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-cream);
}

.form-control-osteria {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  border-radius: 0;
  padding: 0.8rem 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text);
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}
.form-control-osteria:focus { border-bottom-color: var(--color-bordeaux); }
.form-control-osteria::placeholder { color: var(--color-text-light); font-size: 0.8rem; letter-spacing: 0.05em; }

.form-label-osteria {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.3rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 12rem 0 6rem;
  background: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero h1 { color: var(--color-white); position: relative; z-index: 1; }
.page-hero .section-label { position: relative; z-index: 1; }

/* ── Footer ── */
#site-footer {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: 5rem 0 2rem;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  display: block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--color-gold); }

.footer-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 3rem 0 1.5rem;
}

.footer-bottom {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Language switcher ── */
.nav-lang {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.35rem 0.7rem;
  transition: var(--transition);
}
.nav-lang:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

/* ── Mobile nav overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-overlay.open { display: flex; }
.nav-links-mobile {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.nav-links-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.8);
}
.nav-links-mobile a:hover { color: var(--color-gold); }
.nav-close {
  position: absolute;
  top: 4rem; right: 2rem;
  background: none; border: none;
  color: var(--color-white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}
.nav-close:hover { opacity: 1; }

/* ── Contact info labels (homepage contatti section) ── */
.info-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bordeaux);
  margin-bottom: 0.35rem;
}
.info-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-dark);
}
.info-value a { color: inherit; }
.info-value a:hover { color: var(--color-bordeaux); }

/* ── Kaushan Script — titoli display ── */
/* Applicato a: hero title em, titolo philosophy, section-title em scelti */
.hero-title em,
.hero-title-kaushan,
.kaushan {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-style: normal;
}

/* ── Hero Swiper slider ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Swiper occupa tutto il hero */
.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Ogni slide = immagine di sfondo */
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: -10% 0;           /* margine extra per il parallax */
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}
/* Slide video */
.hero-slide-video {
  position: relative;
  height: 100%;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay scuro su ogni slide */
.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,18,14,0.52);
  z-index: 1;
}

/* Swiper pagination bullets */
.hero .swiper-pagination {
  bottom: 5rem;
  z-index: 10;
}
.hero .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  border-radius: 0;
  transition: background 0.3s, width 0.3s;
}
.hero .swiper-pagination-bullet-active {
  background: var(--color-gold);
  width: 28px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next { display: none; }

/* Contenuto hero sopra il slider */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 2rem 1.5rem;
  max-width: none;         /* annulla eventuali max-width ereditati */
  pointer-events: none;   /* permette click sulle frecce Swiper */
}
.hero-content > * { max-width: 860px; width: 100%; }  /* centra il contenuto interno */
.hero-content > .hero-logo { width: clamp(220px, 38vw, 440px); }
.hero-content a { pointer-events: all; }

/* ── Parallax generico ── */
/* Gli elementi con .parallax-bg vengono mossi via JS al scroll */
.parallax-wrap {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* About image wrap con parallax */
.about-image-wrap .parallax-img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

/* ── Utilities ── */
.text-gold { color: var(--color-gold); }
.text-bordeaux { color: var(--color-bordeaux); }
.text-cream { color: var(--color-cream); }
.bg-dark-custom { background: var(--color-dark); }
.container-narrow { max-width: 780px; margin: 0 auto; }

/* ── Stili spostati da inline ── */
.about-text-col { padding: 2rem 0; }
@media (max-width: 991px) {
  .about-text-col { padding: 1rem 1.2rem; }
}

.section-gallery { padding: 5rem 0; }

.allergeni-note {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin: 0;
}

.allergeni-box {
  border: 1px solid rgba(0,0,0,0.07);
  background: rgba(0,0,0,0.02);
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hours-row {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--color-text-light);
}
.hours-label { color: var(--color-text); }

.social-light {
  border-color: rgba(0,0,0,0.15);
  color: var(--color-text-light);
}

.map-wrap {
  overflow: hidden;
  height: 480px;
}
.map-iframe {
  border: none;
  display: block;
  filter: contrast(0.9) saturate(0.7);
}

.footer-lang-switch { color: rgba(255,255,255,0.3); }

.menu-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

/* Footer legal */
.footer-legal { text-align: center; margin-bottom: 1rem; color: rgba(255,255,255,0.4); }
.footer-privacy-link { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-privacy-link:hover { color: #fff; }

/* Privacy page */
.privacy-page { padding: 8rem 0 4rem; }
.privacy-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.25rem; }
.privacy-updated { color: var(--color-text-light); font-size: 0.85rem; margin-bottom: 2rem; }
.privacy-divider { margin-bottom: 2.5rem; }
.privacy-page h2 { font-family: var(--font-heading); font-size: 1.15rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.privacy-page p, .privacy-page li { line-height: 1.8; color: var(--color-text-light); font-size: 0.95rem; }
.privacy-page a { color: var(--color-accent); }

/* PrivacyWire */
.show-banner .privacywire-banner, .show-message .privacywire-message, .show-options .privacywire-options {
    z-index: 9999;
}
#privacy-wire button,
.privacywire-btn,
[class*="privacywire"] button {
  padding: 0.5rem 1.25rem !important;
}
