/* ═══════════════════════════════════════════════════
   DR. GAHE – COCKTAIL BAR LODI
   Design: Luxury Dark Editorial – "Speakeasy Moderno"
   Fonts: Cormorant Garamond + DM Mono
   Palette: Deep Charcoal · Aged Ivory · Amber Gold
═══════════════════════════════════════════════════ */

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

:root {
  /* Colors */
  --c-bg:        #0c0b09;
  --c-bg2:       #131210;
  --c-bg3:       #1a1815;
  --c-surface:   #1f1d19;
  --c-border:    rgba(212,183,120,0.15);
  --c-gold:      #d4b778;
  --c-gold-lt:   #e8cc96;
  --c-ivory:     #f5f0e8;
  --c-ivory-dim: rgba(245,240,232,0.6);
  --c-amber:     #c8872a;
  --c-text:      #e8e2d8;
  --c-text-dim:  rgba(232,226,216,0.55);
  --c-accent:    #b5893f;

  /* Typography */
  --f-display:   'Cormorant Garamond', Georgia, serif;
  --f-mono:      'DM Mono', 'Courier New', monospace;

  /* Spacing */
  --gap:    clamp(1rem, 3vw, 2.5rem);
  --radius: 4px;

  /* Transitions */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

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

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

ul[role="list"] { list-style: none; }

/* ─── PARTICLES CANVAS ─── */
#particlesCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  width: 100% !important;
  height: 100% !important;
}

/* Sections z-index */
.site-header { position: relative; z-index: 100; }
section, .ribbon, footer, .back-top { position: relative; z-index: 2; }
.hero {
  position: relative;
  overflow: hidden;
  -webkit-overflow: hidden;
}

/* ─── NOISE OVERLAY ─── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ─── CUSTOM CURSOR – FA MARTINI ─── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -80%);
  transition: transform 0.15s var(--ease);
  line-height: 1;
}
.cursor i {
  font-size: 1.5rem;
  color: var(--c-gold);
  filter: drop-shadow(0 0 6px rgba(212,183,120,0.7));
  transition: transform 0.2s var(--ease), filter 0.2s, color 0.2s;
  display: block;
}

.cursor-follower {
  position: fixed;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,183,120,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.35s var(--ease);
}

body.cursor-hover .cursor i {
  transform: scale(1.3) rotate(-15deg);
  filter: drop-shadow(0 0 12px rgba(212,183,120,1));
  color: var(--c-gold-lt);
}
body.cursor-hover .cursor-follower {
  width: 60px;
  height: 60px;
  border-color: rgba(212,183,120,0.5);
}

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}


/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}
.btn-primary:hover {
  background: var(--c-gold-lt);
  border-color: var(--c-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,183,120,0.3);
}

.btn-gold {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn-gold:hover {
  background: var(--c-gold);
  color: var(--c-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,183,120,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(245,240,232,0.3);
}
.btn-ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.nav-book {
  font-family: var(--f-mono) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--c-gold) !important;
  border: 1px solid var(--c-gold) !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: var(--radius) !important;
  transition: all 0.25s !important;
  white-space: nowrap !important;
}
.nav-book:hover {
  background: var(--c-gold) !important;
  color: var(--c-bg) !important;
}
.nav-book::after { display: none !important; }

/* ─── SECTION COMMON ─── */
.section-tag {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--c-ivory);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--c-gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-dim);
  max-width: 52ch;
  line-height: 1.75;
}

.section-header.centered {
  text-align: center;
}
.section-header.centered .section-desc {
  margin-inline: auto;
}

/* ─── REVEAL ANIMATION ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  gap: 1rem;
  flex-wrap: nowrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.05em;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-dr { color: var(--c-gold); }
.logo-gahe { color: var(--c-ivory); }


.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.8vw, 2rem);
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--c-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--c-gold) !important;
  color: var(--c-bg) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--c-gold-lt) !important; }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-ivory);
  transition: all 0.3s var(--ease);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
  /* Fallback gradient if no image */
  background-color: var(--c-bg3);
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(212,183,120,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,135,42,0.06) 0%, transparent 50%),
    url('images/hero-bg.jpg');
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,11,9,0.75) 0%,
    rgba(12,11,9,0.6) 40%,
    rgba(12,11,9,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-inline: clamp(1.5rem, 7vw, 6rem);
  padding-top: 5rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.3s var(--ease-out) both;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-ivory);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.5s var(--ease-out) both;
  white-space: nowrap;
}
.hero-title em {
  font-style: italic;
  color: var(--c-gold);
  font-size: 0.45em;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-right: 0.1em;
}

.hero-sub {
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-text-dim);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.7s var(--ease-out) both;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: fadeUp 1s 0.9s var(--ease-out) both;
  width: 260px;
}
.hero-actions .btn {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 7vw, 6rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1.2s var(--ease-out) both;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-address {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 1s 1.1s var(--ease-out) both;
}
.hero-address .sep { color: var(--c-gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ─── RIBBON ─── */
.ribbon {
  background: var(--c-gold);
  overflow: hidden;
  padding-block: 0.75rem;
}
.ribbon-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-bg);
  font-weight: 500;
}
.ribbon-track .dot { color: var(--c-amber); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ─── */
.about {
  padding-block: clamp(4rem, 10vw, 9rem);
  background: var(--c-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.5s;
}
.about-img-wrap:hover img { filter: grayscale(0%) contrast(1); }

.about-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(12,11,9,0.9) 0%, transparent 100%);
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-ivory);
  font-style: italic;
}
.about-img-label span {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  font-style: normal;
  margin-top: 0.25rem;
}

.about-stat-block {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  display: flex;
  gap: 2rem;
  border-radius: 2px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-top: 0.35rem;
  display: block;
}

.about-text {
  padding-block: 2rem;
}
.about-lead {
  font-size: 1.2rem;
  color: var(--c-ivory);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--c-text-dim);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-text strong { color: var(--c-gold); }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.badge {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  color: var(--c-gold);
}

/* ─── COCKTAILS ─── */
.cocktails {
  padding-block: clamp(4rem, 10vw, 9rem);
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

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

.cocktail-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.cocktail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.cocktail-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cocktail-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.cocktail-card.featured .cocktail-img-wrap {
  aspect-ratio: auto;
  min-height: 360px;
}
.cocktail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  /* Fallback color if no image */
  background: var(--c-bg3);
}
.cocktail-card:hover .cocktail-img-wrap img {
  transform: scale(1.06);
}

.cocktail-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--c-gold);
  color: var(--c-bg);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.cocktail-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cocktail-body h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--c-ivory);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.cocktail-body p {
  font-size: 0.95rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.cocktail-price {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
  margin-top: auto;
}
.cocktail-price strong { color: var(--c-gold); }

.cocktails-note {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--c-text-dim);
}
.cocktails-note strong { color: var(--c-gold); }

.inline-glass {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4rem;
  margin-bottom: 0.15em;
  filter: drop-shadow(0 0 4px rgba(212,183,120,0.5));
}

/* ─── FOOD – Centrato elegante ─── */
.food {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}

.food-centered {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.food-centered .section-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.food-centered-desc {
  font-size: 1.1rem;
  color: var(--c-text-dim);
  line-height: 1.8;
  max-width: 52ch;
}

.food-deco-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
}

.food-deco-diamonds {
  display: flex;
  gap: 1rem;
  color: var(--c-gold);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  opacity: 0.6;
}

/* ─── EVENTS ─── */
.events {
  padding-block: clamp(4rem, 10vw, 9rem);
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.event-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.event-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}

.event-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.event-card h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-ivory);
  margin-bottom: 0.75rem;
}
.event-card p {
  font-size: 0.92rem;
  color: var(--c-text-dim);
  line-height: 1.65;
}

/* ─── REVIEWS ─── */
.reviews {
  padding-block: clamp(4rem, 10vw, 9rem);
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(212,183,120,0.4); }

.review-stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  font-style: italic;
  font-size: 0.97rem;
  color: var(--c-text-dim);
  line-height: 1.7;
  flex: 1;
  quotes: "\201C" "\201D";
}
.review-card blockquote::before { content: open-quote; }
.review-card blockquote::after  { content: close-quote; }

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card cite {
  font-family: var(--f-display);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--c-ivory);
}
.review-source {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--c-gold);
}

.reviews-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.rev-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-ivory);
  cursor: pointer;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: all 0.25s;
}
.rev-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.rev-counter {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--c-text-dim);
}

.reviews-aggregate {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}
.reviews-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.agg-score {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--c-gold);
  line-height: 1;
}
.agg-stars {
  font-size: 1.2rem;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  margin: 0.5rem 0;
}
.agg-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--c-text-dim);
  text-transform: uppercase;
}
.agg-label strong { color: var(--c-ivory); }

/* ─── CONTACT ─── */
.contact {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contact-info {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-style: normal;
  margin-block: 1.5rem;
}

.detail-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.detail-row strong {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}
.detail-row p {
  color: var(--c-text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}
.detail-row em { color: rgba(232,226,216,0.35); font-style: italic; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.contact-btns .btn {
  text-align: center;
  justify-content: center;
}
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.social-link:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}

.contact-map {
  position: relative;
  min-height: 400px;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
  transition: filter 0.5s;
}
.contact-map:hover { filter: grayscale(30%) contrast(1) brightness(0.85); }
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding-block: 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.footer-brand .nav-logo {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.65;
}

.footer-links h3,
.footer-legal h3 {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a,
.footer-legal a {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  transition: color 0.25s;
}
.footer-links a:hover,
.footer-legal a:hover { color: var(--c-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--c-text-dim);
}
.footer-bottom a {
  color: var(--c-gold);
  transition: opacity 0.25s;
}
.footer-bottom a:hover { opacity: 0.75; }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-ivory);
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.back-top.visible {
  opacity: 1;
  transform: none;
}
.back-top:hover {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}

/* ─── PLACEHOLDER IMAGES (when real images not loaded) ─── */
.about-img-wrap img[src="images/christian-mercuri.jpg"]:not([complete]),
img[src*="images/"]:not([complete]) {
  background: var(--c-bg3);
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-stat-block {
    position: static;
    width: fit-content;
    margin-top: -1rem;
  }

  .cocktails-grid {
    grid-template-columns: 1fr;
  }
  .cocktail-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map { min-height: 350px; }

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

  .reviews-slider {
    grid-template-columns: 1fr;
  }

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

/* Mobile */
@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(12,11,9,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 0.4s var(--ease);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }
  .nav-cta {
    margin-top: 1rem;
    padding: 0.75rem 2rem !important;
  }

  .nav-burger { display: flex; z-index: 100; }
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .hero-content { padding-inline: 1.5rem; }
  .hero-scroll { display: none; }
  .hero-address { display: none; }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .back-top { bottom: 1rem; right: 1rem; }
}

/* ─── REVIEWS WIDGET WRAP ─── */
.reviews-widget-wrap {
  margin-top: 2rem;
}
/* Quando Elfsight è attivo, nasconde il fallback */
.elfsight-app-a7ae3b9c-a829-48d9-a6ef-3cd1481bc3f8:not(:empty) ~ .reviews-fallback {
  display: none;
}

.cocktails-hero-img {
  margin-top: 2rem;
  width: 260px;
  margin-inline: auto;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.cocktails-hero-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cocktails-hero-img:hover img {
  transform: scale(1.04);
}

/* ─── FOOD COCKTAIL GALLERY ─── */
.food-cocktail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.food-cocktail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(10%);
  transition: filter 0.4s, transform 0.4s var(--ease);
}
.food-cocktail-gallery img:hover {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* ─── EVENT CARD WITH IMAGE ─── */
.event-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.event-card:hover .event-img-wrap img {
  transform: scale(1.06);
}

/* ─── PRINT ─── */
@media print {
  .site-header,
  .hero-scroll,
  .ribbon,
  .noise-overlay,
  .cursor,
  .cursor-follower,
  .back-top { display: none; }
  body { background: #fff; color: #000; }
}
