/* ============================================================
   LA TORRE COCKTAIL BAR — stylesheet
   ============================================================ */

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

:root {
  --black:        #0B0B0B;
  --black-soft:   #111111;
  --black-mid:    #1A1A1A;
  --black-light:  #222222;
  --terra:        #C8654A;
  --terra-light:  #D4795A;
  --terra-dark:   #A8502F;
  --terra-glow:   rgba(200, 101, 74, 0.6);
  --white:        #F4EFE9;
  --white-soft:   #CCC7C1;
  --gray:         #6B6560;
  --border:       rgba(200, 101, 74, 0.18);
  --border-soft:  rgba(255, 255, 255, 0.06);

  --azzurro:      #6AACBE;
  --azzurro-soft: rgba(106, 172, 190, 0.18);
  --azzurro-dim:  rgba(106, 172, 190, 0.06);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.section-title em {
  font-style: italic;
  color: var(--terra-light);
  font-weight: 700;
}

.body-text {
  font-size: 15px;
  color: var(--white-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 18px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terra-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn-primary span, .btn-primary { z-index: 1; }
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,101,74,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 48px; font-size: 13px; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* staggered children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }


/* INTRO RIMOSSO */



/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: invert(1);
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-soft);
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta-link {
  padding: 10px 24px;
  border: 1px solid var(--terra);
  color: var(--terra);
  letter-spacing: 0.18em;
}
.nav-cta-link::after { display: none; }
.nav-cta-link:hover {
  background: var(--terra);
  color: var(--white);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  will-change: transform;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.45;
  display: block;
  /* fallback gradient sotto la foto */
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,101,74,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d0d 0%, #111 40%, #0a0a0a 100%);
}
/* overlay scuro sul hero quando c'è la foto */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,11,11,0.55) 0%,
    rgba(11,11,11,0.30) 40%,
    rgba(11,11,11,0.75) 100%
  );
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 60px) 80px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 780px;
}
.hero-title em {
  font-style: italic;
  color: var(--terra-light);
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--white-soft);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.scroll-bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--terra), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}


/* ============================================================
   IL LOCALE
   ============================================================ */
.locale {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--black);
  border-top: 1px solid var(--border-soft);
}

.locale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.locale-features {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--terra);
  letter-spacing: 0.1em;
  min-width: 28px;
}
.feature-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white-soft);
}

.locale-image {
  position: relative;
  border-radius: 2px;
  overflow: visible;
}
.locale-image-inner {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
  background: #0e0c0a;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.locale-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
  display: block;
  transition: transform 0.6s var(--ease-out), opacity 0.4s ease;
}
.locale-image:hover .locale-photo {
  transform: scale(1.04);
  opacity: 0.85;
}
.locale-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
}
.locale-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--terra);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.badge-est  { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.badge-year { font-family: var(--font-head); font-size: 22px; font-weight: 500; color: var(--white); }


/* ============================================================
   COCKTAIL
   ============================================================ */
.cocktail-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border-soft);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}
.section-desc {
  font-size: 15px;
  color: var(--white-soft);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

.cocktail-card {
  background: var(--black-soft);
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}
.cocktail-card:hover { background: var(--black-mid); transform: translateY(-4px); }

.cocktail-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.cocktail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.85) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}
.cocktail-card:hover .cocktail-img::after { opacity: 0.5; }
.cocktail-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--terra);
  color: var(--white);
}

/* moody cocktail backgrounds */
.c-img-1 { background: linear-gradient(160deg, #1a0e08 0%, #2d1508 40%, #150d07 100%); }
.c-img-2 { background: linear-gradient(160deg, #200d0d 0%, #3d1515 50%, #1a0808 100%); }
.c-img-3 { background: linear-gradient(160deg, #0e1218 0%, #141e28 50%, #0a0d12 100%); }
.c-img-4 { background: linear-gradient(160deg, #1c1008 0%, #2e1a06 50%, #160d04 100%); }

/* shimmer on hover */
.cocktail-img::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s var(--ease-out);
  z-index: 1;
}
.cocktail-card:hover .cocktail-img::before { left: 130%; }

.cocktail-body {
  padding: 22px 24px 28px;
}
.cocktail-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cocktail-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cocktail-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--terra);
  letter-spacing: 0.05em;
}

.cocktail-footer {
  text-align: center;
  margin-top: clamp(40px, 6vw, 64px);
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--black);
  border-top: 1px solid var(--border-soft);
}
.gallery-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
  padding: 0 clamp(20px, 5vw, 60px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
  padding: 0 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.12);
  transition: background 0.4s ease;
}
.gallery-item:hover::after { background: rgba(11,11,11,0.04); }

.gallery-caption {
  position: absolute;
  bottom: 16px; left: 20px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.gallery-item:hover .gallery-caption { color: var(--white); }

/* grid placement */
.gi-1 { grid-column: 1 / 5; grid-row: 1; }
.gi-2 { grid-column: 5 / 9; grid-row: 1; }
.gi-3 { grid-column: 9 / 13; grid-row: 1; }
.gi-4 { grid-column: 1 / 4;  grid-row: 2; }
.gi-5 { grid-column: 4 / 9;  grid-row: 2; }
.gi-6 { grid-column: 9 / 13; grid-row: 2; }

/* gallery backgrounds fallback (mostrate se la foto non carica) */
.gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 { background: #0d0d0d; }

/* foto reali nella gallery */
.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out), opacity 0.4s ease;
  opacity: 1;
}
.gallery-item:hover .gallery-photo {
  transform: scale(1.04);
  opacity: 1;
}

/* image shimmer on hover */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s var(--ease-out);
  z-index: 1;
}
.gallery-item:hover::before { left: 150%; }


/* ============================================================
   CONTATTI
   ============================================================ */
.contatti-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border-soft);
}

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.info-list { margin-top: 44px; display: flex; flex-direction: column; gap: 28px; }

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  padding: 9px;
  margin-top: 2px;
}
.info-icon svg { width: 100%; height: 100%; }

.info-item strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}
.info-item p { font-size: 14px; color: var(--white-soft); line-height: 1.7; }
.info-item a { color: var(--white-soft); transition: color 0.3s; }
.info-item a:hover { color: var(--terra-light); }
.closed-day { color: var(--gray); font-size: 13px; }

.map-box {
  width: 100%;
  aspect-ratio: 1;
  max-height: 440px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(200,101,74,0.08) 0%, transparent 70%),
    linear-gradient(160deg, #111 0%, #0d0d0d 100%);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.map-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,101,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,101,74,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.map-pin-icon {
  width: 44px;
  height: 44px;
  color: var(--terra);
}
.map-pin-wrap span {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.map-open-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 10px 22px;
  transition: all 0.3s ease;
}
.map-open-btn svg { width: 14px; height: 14px; }
.map-open-btn:hover { background: var(--terra); color: var(--white); }


/* ============================================================
   CTA FINALE
   ============================================================ */
.cta-final {
  padding: clamp(100px, 15vw, 180px) 0;
  background: var(--black);
  border-top: 1px solid var(--border-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,101,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(20px, 5vw, 60px);
}
.cta-final-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-final-title em { font-style: italic; color: var(--terra-light); font-weight: 700; }
.cta-final-sub {
  font-size: 15px;
  color: var(--white-soft);
  line-height: 1.75;
  margin-bottom: 44px;
}


/* ============================================================
   RECENSIONI
   ============================================================ */
.reviews-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--black);
  border-top: 1px solid var(--border-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  margin-top: clamp(40px, 6vw, 64px);
}

.review-card {
  background: var(--black);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease;
  position: relative;
}
.review-card:hover { background: var(--black-mid); }

.review-quote {
  font-family: var(--font-head);
  font-size: 72px;
  line-height: 0.6;
  color: var(--terra);
  opacity: 0.6;
  font-style: italic;
  user-select: none;
}

.review-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  font-style: italic;
  color: var(--white-soft);
  line-height: 1.65;
  flex: 1;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.review-stars {
  font-size: 14px;
  color: var(--terra);
  letter-spacing: 3px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.author-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.author-sep { color: var(--gray); font-size: 11px; }
.author-location {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
}
.rating-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.rating-stars {
  font-size: 18px;
  color: var(--terra);
  letter-spacing: 4px;
}
.rating-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 36px 0;
  background: var(--black);
  border-top: 1px solid var(--border-soft);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.7;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--white-soft);
}
.footer-copy {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.footer-ig {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
}
.footer-ig:hover { color: var(--terra); }


/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher-li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 16px;
  border-left: 1px solid var(--border-soft);
  margin-left: 8px;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 1px;
  transition: color 0.25s ease;
  line-height: 1;
}
.lang-btn.active {
  color: var(--terra);
}
.lang-btn:hover:not(.active) {
  color: var(--white);
}

.lang-sep {
  color: var(--border-soft);
  font-size: 12px;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .lang-switcher-li {
    border-left: none;
    border-top: 1px solid var(--border-soft);
    padding-left: 0;
    padding-top: 24px;
    margin-left: 0;
    justify-content: center;
    gap: 16px;
  }
  .lang-btn { font-size: 13px; letter-spacing: 0.22em; }
}


/* ============================================================
   AZZURRO — DETTAGLI MARE
   ============================================================ */

/* ── Linea orizzonte nell'hero ─────────────────────────── */
/* Una sottilissima striscia azzurra grezzo-ondulata,
   come il confine tra mare e cielo visto dall'interno. */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 6' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,3 Q80,1 160,4 Q240,6 320,2 Q400,0 480,3.5 Q560,5 640,2 Q720,0 800,3 Q880,5 960,2 Q1040,0 1120,3.5 Q1160,5 1200,3' stroke='%236AACBE' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 3;
}

/* ── Wash azzurro nel locale ───────────────────────────── */
/* Un alito di colore marino nell'angolo, come luce riflessa. */
.locale {
  background:
    radial-gradient(ellipse 45% 50% at 92% 80%, var(--azzurro-dim) 0%, transparent 65%),
    var(--black);
}

/* ── Gallery — sfondo con tonalità marina ──────────────── */
.gallery-section {
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, var(--azzurro-dim) 0%, transparent 70%),
    var(--black);
}

/* ── Linea ondulata azzurra sopra la gallery ───────────── */
.gallery-section::before {
  content: '';
  display: block;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 6' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,3 Q100,0 200,4 Q300,6 400,2 Q500,0 600,3.5 Q700,6 800,2 Q900,0 1000,4 Q1100,6 1200,3' stroke='%236AACBE' stroke-width='1' fill='none' opacity='0.28'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  position: absolute;
  top: 0; left: 0; right: 0;
  pointer-events: none;
}

/* ── Accent azzurro sugli info-icon contatti ───────────── */
.info-icon {
  border-color: var(--azzurro-soft);
  color: var(--azzurro);
  background: rgba(106, 172, 190, 0.04);
}

/* ── Linea azzurra grezzo a sinistra delle feature ─────── */
.feature-item { position: relative; }
.feature-item::before {
  content: '';
  position: absolute;
  left: -2px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--azzurro), transparent);
  opacity: 0.4;
}

/* ── Sfondo lieve nella mappa ──────────────────────────── */
.map-box { border-color: var(--azzurro-soft); }
.map-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 90%, rgba(106,172,190,0.07) 0%, transparent 70%);
  pointer-events: none;
}


/* ============================================================
   ARRUZZO — TEXTURE LEGGERE
   ============================================================ */

/* ── Grana globale (film-grain analogico) ──────────────── */
/* Un layer fisso sottilissimo che copre tutta la pagina,
   come la grana di una vecchia pellicola. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9997;
  mix-blend-mode: overlay;
}

/* ── Texture diagonale sulle sezioni scure ─────────────── */
/* Un tratteggio a 45° quasi invisibile, come una tela grezza. */
.cocktail-section,
.reviews-section,
.contatti-section {
  position: relative;
}
.cocktail-section::before,
.reviews-section::before,
.contatti-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 18px,
    rgba(255,255,255,0.012) 18px,
    rgba(255,255,255,0.012) 19px
  );
  pointer-events: none;
  z-index: 0;
}
/* assicura che il contenuto resti sopra la texture */
.cocktail-section > *,
.reviews-section > *,
.contatti-section > * {
  position: relative;
  z-index: 1;
}

/* ── Bordo vissuto sulle card ──────────────────────────── */
/* Un'ombra interna tenue che simula un bordo leggermente consumato. */
.review-card,
.menu-card {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03),
              inset 1px 1px 3px rgba(0,0,0,0.25);
}

/* ── Badge arruzzo — cerchio con texture radiale ───────── */
.locale-badge { overflow: hidden; }
.locale-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(0,0,0,0.08) 0deg,
    transparent 1.5deg,
    transparent 9deg,
    rgba(0,0,0,0.08) 10.5deg
  );
  pointer-events: none;
  z-index: 0;
}
.locale-badge > * { position: relative; z-index: 1; }

/* ── Eyebrow — piccolo trattino grezzo a sinistra ──────── */
/* Aggiunge un marcatore artigianale prima di ogni label. */
.eyebrow::before {
  content: '—';
  margin-right: 10px;
  color: var(--terra-dark);
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0;
}

/* ── Vignette hero più marcata ─────────────────────────── */
/* Scurisce leggermente gli angoli per un look più analogico. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    transparent 55%,
    rgba(0,0,0,0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .reviews-grid  { grid-template-columns: 1fr; }
  .cocktail-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 220px 220px 220px;
  }
  .gi-1 { grid-column: 1 / 4; grid-row: 1; }
  .gi-2 { grid-column: 4 / 7; grid-row: 1; }
  .gi-3 { grid-column: 1 / 3; grid-row: 2; }
  .gi-4 { grid-column: 3 / 7; grid-row: 2; }
  .gi-5 { grid-column: 1 / 4; grid-row: 3; }
  .gi-6 { grid-column: 4 / 7; grid-row: 3; }
}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* Nav — non sticky su mobile */
  .nav {
    position: relative;
    background: var(--black) !important;
    border-bottom: 1px solid var(--border-soft);
    padding: 18px 0;
  }
  .nav.scrolled {
    padding: 18px 0;
  }

  /* Menu burger fullscreen */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11,11,11,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 13px; }
  .nav-cta-link { padding: 12px 32px; }
  .nav-burger { display: flex; position: relative; z-index: 10; }

  /* Locale */
  .locale-grid { grid-template-columns: 1fr; gap: 50px; }
  .locale-visual-col { order: -1; }
  .locale-image-inner { aspect-ratio: 16/9; }
  .locale-badge { bottom: -14px; right: 16px; width: 72px; height: 72px; }
  .badge-year { font-size: 18px; }

  /* Cocktail */
  .cocktail-grid { grid-template-columns: 1fr; gap: 1px; }
  .cocktail-img { aspect-ratio: 16/9; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
    grid-column: auto;
    grid-row: auto;
  }

  /* Contatti */
  .contatti-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-box { aspect-ratio: 4/3; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }

  /* Hero — padding top ridotto perché nav non è più fixed su mobile */
  .hero-container { padding-top: 60px; }

  /* Scroll indicator */
  .hero-scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .intro-logo-wrap { width: 90px; height: 90px; }
}
