/* ============================================================
   CALIBRO — BAR LUGANO
   Aesthetic: Maximalist Editorial Luxury · Art Deco Inflected
   Layout:    Dense, layered, rich typographic hierarchy
   Fonts:     Cormorant Garamond (display) + Outfit (body labels)
   Palette:   Near-black · Warm grey · Antique gold · Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Palette — dark theme (default) */
  --bg:           #0c0b09;
  --bg-alt:       #141210;
  --bg-card:      #1a1815;
  --bg-card2:     #211f1b;
  --border:       rgba(201, 169, 110, 0.18);
  --border-faint: rgba(255,255,255,0.07);
  --text:         #f2ece0;
  --text-muted:   #b5a98e;
  --text-dim:     #6e6455;
  --gold:         #c9a96e;
  --gold-bright:  #e0c080;
  --gold-deep:    #8a6a2e;
  --brand-grey:   #8b8378;
  --copper:       #c9a96e; /* alias */
  --white:        #f8f3ea;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Outfit', 'Helvetica Neue', sans-serif;

  /* Layout */
  --max-w: 1340px;
  --nav-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.25s;
}

/* Light mode override */
@media (prefers-color-scheme: light) {
  :root {
    --bg:           #f5f0e6;
    --bg-alt:       #ece6d8;
    --bg-card:      #e8e1d0;
    --bg-card2:     #dfd8c6;
    --border:       rgba(138, 106, 46, 0.3);
    --border-faint: rgba(0,0,0,0.1);
    --text:         #1a1612;
    --text-muted:   #52493e;
    --text-dim:     #8a8070;
    --gold:         #8a5c1a;
    --gold-bright:  #a37025;
    --gold-deep:    #c8a86e;
    --brand-grey:   #6b6055;
    --white:        #0c0b09;
  }
}

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

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

html.menu-open { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.7;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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='512' height='512' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-bright); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text);
}

h1 { font-size: clamp(3.2rem, 9vw, 8rem); }
h2 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h3 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 400; }

p {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--text-muted);
}

.label, .eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

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

.section { padding-block: clamp(4rem, 10vw, 9rem); }

/* ── Decorative elements ────────────────────────────────────── */
.deco-rule {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.deco-rule::before,
.deco-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.deco-rule span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.hr-faint { border: none; border-top: 1px solid var(--border-faint); }

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), box-shadow var(--t);
}

.site-header.scrolled {
  background: rgba(12, 11, 9, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-faint);
}

@media (prefers-color-scheme: light) {
  .site-header.scrolled {
    background: rgba(245, 240, 230, 0.97);
    box-shadow: 0 1px 0 var(--border-faint);
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  transition: color var(--t);
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold); }

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t);
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* Hamburger toggle — fixed top-right */
.nav-toggle {
  display: none;
  position: fixed;
  top: calc((var(--nav-h) - 44px) / 2);
  right: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 300;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  transition: border-color var(--t);
}

.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.32s var(--ease), opacity 0.2s, background var(--t);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 9, 7, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.nav-overlay ul li a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 0.2s;
}

.nav-overlay ul li a:hover,
.nav-overlay ul li a[aria-current="page"] {
  color: var(--gold);
}

/* ── Desktop show, mobile hide/show ─────────────────────────── */
@media (max-width: 767px) {
  .nav-links       { display: none; }
  .nav-toggle      { display: flex; }
}

/* ── Hero section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.45) saturate(0.75);
  transform: scale(1.04);
  animation: heroReveal 14s var(--ease) forwards;
}

@keyframes heroReveal {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* Layered gradient vignette */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,   rgba(12,11,9,1) 0%, rgba(12,11,9,0.55) 38%, rgba(12,11,9,0) 65%),
    linear-gradient(to right, rgba(12,11,9,0.4) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 clamp(3rem, 8vh, 7rem);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s var(--ease) forwards;
}

.hero-eyebrow .eyebrow { margin: 0; }

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s var(--ease) forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s var(--ease) forwards;
}

/* ── Rating pill in hero ── */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  padding: 0.6rem 1.25rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s var(--ease) forwards;
}

.hero-rating .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hero-rating .meta { display: flex; flex-direction: column; gap: 2px; }
.hero-rating .stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; }
.hero-rating .count { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1px solid;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform 0.15s;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: #0c0b09;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #0c0b09;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(242, 236, 224, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Intro strip — hardcoded #111111 per brief ───────────────── */
.intro-strip {
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: 1.5rem;
  overflow: hidden;
}

.intro-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.intro-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 2.5rem;
}

.intro-strip-item .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.intro-strip-item span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8b8378;
}

/* ── Feature grid — dense 4-col ────────────────────────────── */
.features-dense {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-faint);
}

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

.feature-cell {
  padding: 3rem 2rem 2.5rem;
  border-right: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  transition: background 0.3s;
}

.feature-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.feature-cell:hover { background: var(--bg-card2); }
.feature-cell:hover::after { width: 100%; }

.feature-cell:last-child,
.features-dense .feature-cell:nth-child(4n) { border-right: none; }

.feature-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,169,110,0.1);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.feature-cell h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.feature-cell p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

/* ── Split layout ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-media { order: -1; }
}

.split-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.split-media:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

.split-media .tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #0c0b09;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
}

.split-text { padding-block: 1rem; }
.split-text .label { margin-bottom: 1rem; }
.split-text h2 { margin-bottom: 1.25rem; }
.split-text p { margin-bottom: 1.25rem; }

/* ── Photo mosaic ───────────────────────────────────────────── */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  background: var(--bg);
}

.mosaic-cell {
  overflow: hidden;
  background: var(--bg-card);
}

.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.45s, transform 0.7s var(--ease);
  display: block;
}

.mosaic-cell:hover img {
  filter: saturate(1.15);
  transform: scale(1.04);
}

/* Desktop mosaic layout */
.mosaic-cell:nth-child(1) { grid-column: 1 / 7;  aspect-ratio: 4/3; }
.mosaic-cell:nth-child(2) { grid-column: 7 / 10; aspect-ratio: 4/3; }
.mosaic-cell:nth-child(3) { grid-column: 10 / 13; aspect-ratio: 4/3; }
.mosaic-cell:nth-child(4) { grid-column: 1 / 5;  aspect-ratio: 5/3; }
.mosaic-cell:nth-child(5) { grid-column: 5 / 9;  aspect-ratio: 5/3; }
.mosaic-cell:nth-child(6) { grid-column: 9 / 13; aspect-ratio: 5/3; }

@media (max-width: 768px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .mosaic-cell { grid-column: auto !important; aspect-ratio: 1 !important; }
}

@media (max-width: 480px) {
  .mosaic { grid-template-columns: 1fr; }
}

/* ── Section header ─────────────────────────────────────────── */
.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header .label { margin-bottom: 1rem; }

/* ── Big quote strip ────────────────────────────────────────── */
.quote-strip {
  padding-block: clamp(5rem, 12vw, 10rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  text-align: center;
}

.quote-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1.5rem;
}

.quote-strip blockquote::before {
  content: '\201C';
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.6;
  color: rgba(201,169,110,0.12);
  position: absolute;
  left: -0.5rem;
  top: 0.2em;
  font-style: normal;
}

.quote-strip cite {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.review-card {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  position: relative;
  transition: background 0.25s;
}

.review-card:hover { background: var(--bg-card2); }

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,169,110,0.15);
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: none;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Hours strip ────────────────────────────────────────────── */
.hours-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  padding-block: 3rem;
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 640px) {
  .hours-inner { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .hours-inner { grid-template-columns: auto 1fr auto; gap: 4rem; align-items: center; }
}

.hours-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table-wrap td {
  padding: 0.45rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border-faint);
  color: var(--text-muted);
}

.hours-table-wrap td:first-child {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-right: 2.5rem;
  width: 40%;
}

.hours-table-wrap td.closed { color: var(--text-dim); font-style: italic; }

.hours-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-aside .label { margin-bottom: 0.25rem; }

.hours-aside p { font-size: 0.85rem; max-width: 28ch; }

/* ── Drinks page — category headers ────────────────────────── */
.drink-category {
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.drink-cat-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.drink-cat-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  white-space: nowrap;
  color: var(--text);
}

.drink-cat-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

.drinks-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.drink-item {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  transition: background 0.25s;
}

.drink-item:hover { background: var(--bg-card2); }

.drink-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.drink-desc { font-size: 0.82rem; color: var(--text-muted); max-width: none; }

.drink-tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
}

/* ── Page hero (inner pages) ────────────────────────────────── */
.page-hero {
  min-height: 52vh;
  display: grid;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

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

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.65);
}

.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(12,11,9,0.4) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 clamp(2.5rem, 6vw, 5rem);
}

/* ── About page ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.5s, transform 0.7s var(--ease);
}

.about-img:hover img {
  filter: saturate(1);
  transform: scale(1.03);
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
  margin-top: 4rem;
}

.value-cell {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold);
  transition: background 0.25s;
}

.value-cell:hover { background: var(--bg-card2); }
.value-cell .label { margin-bottom: 0.75rem; }
.value-cell p { font-size: 0.87rem; max-width: none; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.6fr; }
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  padding: 3rem 2.5rem;
}

.contact-row {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--border-faint);
}

.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }

.contact-row .label { margin-bottom: 0.6rem; }

.contact-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

.contact-value a { color: var(--text); }
.contact-value a:hover { color: var(--gold); }

.map-embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid var(--border-faint);
  overflow: hidden;
  background: var(--bg-card);
}

@media (max-width: 899px) {
  .map-embed-wrapper { aspect-ratio: 4/3; }
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(0.5) invert(0.88) hue-rotate(180deg);
}

/* ── Rating display ─────────────────────────────────────────── */
.rating-display {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201,169,110,0.07);
  border: 1px solid var(--border);
  padding: 1.25rem 2rem;
}

.rating-display .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.rating-display .stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }
.rating-display .count { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 3px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-faint);
  padding-block: 1.75rem;
  text-align: center;
  background: var(--bg-alt);
}

.site-footer p {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  max-width: none;
}

.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--gold); }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utilities ──────────────────────────────────────────────── */
.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;
}

.italic { font-style: italic; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3.5rem; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
