/* ============================================================
   Bar Arena Lugano — style.css
   Aesthetic: Full-Bleed Magazine / Italian Bar Editoriale
   Brand: Slate Blue #5a7184 · Amber #d4843e · Ink #0e0e0e
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --brand:         #5a7184;
  --brand-deep:    #3d5264;
  --brand-light:   #7a92a6;
  --amber:         #d4843e;
  --amber-deep:    #b86c28;
  --amber-light:   #e8a060;
  --ink:           #0e0e0e;
  --ink-soft:      #3a3530;
  --ink-muted:     #6b6460;
  --off-white:     #f8f4ee;
  --cream:         #f2ede4;
  --paper:         #ede8de;
  --white:         #fdfcf9;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', sans-serif;

  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  2rem;
  --gap-lg:  4rem;
  --gap-xl:  8rem;

  --r-sm:    3px;
  --r-md:    8px;
  --r-lg:    16px;

  --shadow-lift: 0 8px 40px rgba(14,14,14,0.12);
  --shadow-card: 0 4px 24px rgba(14,14,14,0.08);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.3s;
}

/* ── Dark Mode ─────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --brand:         #7a92a6;
    --brand-deep:    #5a7184;
    --brand-light:   #9aafc0;
    --amber:         #e8a060;
    --amber-deep:    #d4843e;
    --amber-light:   #f0b87a;
    --ink:           #f0ebe0;
    --ink-soft:      #ccc4b4;
    --ink-muted:     #9a9288;
    --off-white:     #181510;
    --cream:         #1c1814;
    --paper:         #221e18;
    --white:         #ede8de;
    --shadow-lift:   0 8px 40px rgba(0,0,0,0.4);
    --shadow-card:   0 4px 24px rgba(0,0,0,0.32);
  }
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::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);
  background-color: var(--off-white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}

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

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

ul { list-style: none; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
  white-space: nowrap;
}

/* ── Typography helpers ────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-block: 1.1rem;
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.scrolled {
  background: rgba(248,244,238,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(90,113,132,0.12);
}

@media (prefers-color-scheme: dark) {
  .site-header.scrolled {
    background: rgba(24,21,16,0.96);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.site-logo em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
}

/* Desktop nav */
.desktop-nav { display: none; }

.desktop-nav ul {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

.desktop-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(90,113,132,0.08);
}

.desktop-nav a.active {
  color: var(--amber);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  position: fixed;
  top: 0.85rem;
  right: 1.1rem;
  z-index: 200;
  width: 46px; height: 46px;
  background: var(--brand-deep);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: background var(--dur) var(--ease);
}

.hamburger:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] { background: var(--amber-deep); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

html.menu-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
}

.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--off-white);
  display: block;
  padding: 0.4rem 2rem;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a:focus-visible {
  color: var(--amber-light);
  transform: translateX(10px);
  outline: none;
}

.mobile-nav-overlay a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .desktop-nav { display: block; }
  .hamburger { display: none; }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
}
.btn-brand:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 10s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.2) 0%,
    rgba(14,14,14,0.05) 25%,
    rgba(14,14,14,0.5) 65%,
    rgba(14,14,14,0.88) 100%
  );
}

.hero-bg.loaded { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.75);
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(242,237,228,0.82);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(90,113,132,0.22);
  border: 1px solid rgba(90,113,132,0.4);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(242,237,228,0.9);
  margin-top: 2rem;
}

.hero-badge .stars { color: #f5c842; letter-spacing: -1px; }

/* ── INTRO STRIP ───────────────────────────────────────────── */
/* Hard-coded dark background per design brief */
.intro-strip {
  background: #111111;
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .intro-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.intro-strip-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.intro-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--amber-light);
}

.intro-stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.5);
}

.intro-strip-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .intro-strip-divider { display: none; }
}

.intro-strip-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(242,237,228,0.75);
  max-width: 38ch;
  line-height: 1.4;
}

/* ── ABOUT STRIP (index) ───────────────────────────────────── */
.about-strip {
  background: var(--off-white);
  padding-block: clamp(5rem, 10vw, 8rem);
}

@media (prefers-color-scheme: dark) {
  .about-strip { background: var(--cream); }
}

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

@media (min-width: 768px) {
  .about-strip-inner { grid-template-columns: 5fr 4fr; }
}

.about-text p {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-image-frame {
  position: relative;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--amber);
  border-radius: var(--r-md);
  z-index: 0;
  opacity: 0.4;
}

.about-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
}

/* ── HIGHLIGHTS ────────────────────────────────────────────── */
.highlights {
  background: var(--brand-deep);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.highlight-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.highlight-desc {
  font-size: 0.88rem;
  color: rgba(242,237,228,0.68);
  line-height: 1.65;
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-section {
  background: var(--cream);
  padding-block: clamp(5rem, 10vw, 8rem);
}

@media (prefers-color-scheme: dark) {
  .reviews-section { background: var(--paper); }
}

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

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

@media (min-width: 600px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }

.review-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

@media (prefers-color-scheme: dark) {
  .review-card { background: var(--brand-deep); }
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  color: #e8a020;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.75;
  flex: 1;
}

@media (prefers-color-scheme: dark) {
  .review-text { color: rgba(242,237,228,0.8); }
}

.review-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

@media (prefers-color-scheme: dark) {
  .review-author { color: var(--amber-light); }
}

.rating-block {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--brand-deep);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-md);
}

.rating-score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.rating-details { display: flex; flex-direction: column; gap: 0.2rem; }
.rating-stars { color: #f5c842; font-size: 0.88rem; }
.rating-count { font-size: 0.75rem; color: rgba(242,237,228,0.6); }

/* ── HOURS & CONTACT (index) ───────────────────────────────── */
.hours-section {
  background: var(--off-white);
  padding-block: clamp(5rem, 10vw, 8rem);
}

@media (prefers-color-scheme: dark) {
  .hours-section { background: var(--cream); }
}

.hours-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  margin-top: 0.5rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--paper);
  transition: background var(--dur) var(--ease);
}

@media (prefers-color-scheme: dark) {
  .hours-table tr { border-bottom-color: rgba(255,255,255,0.07); }
}

.hours-table tr:last-child { border-bottom: none; }
.hours-table tr:hover { background: rgba(90,113,132,0.05); }

.hours-table td {
  padding: 0.7rem 0.25rem;
  color: var(--ink-soft);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  padding-right: 1.75rem;
  white-space: nowrap;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--brand-deep);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-top: 2px;
}

.contact-item-text {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.contact-item-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.contact-item-text a {
  color: var(--brand-deep);
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.contact-item-text a:hover { color: var(--amber); }

@media (prefers-color-scheme: dark) {
  .contact-item-text a { color: var(--brand-light); }
  .contact-item-text a:hover { color: var(--amber-light); }
}

/* ── GALLERY STRIP ─────────────────────────────────────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .gallery-strip { grid-template-columns: repeat(5, 1fr); }
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
  filter: saturate(0.8);
}

.gallery-strip img:hover {
  transform: scale(1.07);
  filter: saturate(1.1);
  z-index: 1;
  position: relative;
}

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding-top: clamp(8rem, 16vw, 13rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background: var(--brand-deep);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(212,132,62,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(90,113,132,0.5) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 0.6rem;
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(242,237,228,0.72);
  max-width: 55ch;
  line-height: 1.7;
  margin-top: 1rem;
}

.page-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(242,237,228,0.5);
  margin-bottom: 1.25rem;
}

.page-nav a {
  color: rgba(242,237,228,0.55);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.page-nav a:hover { color: var(--amber-light); }
.page-nav span { color: rgba(242,237,228,0.3); }

/* ── DRINKS PAGE ───────────────────────────────────────────── */
.drinks-section {
  background: var(--off-white);
  padding-block: clamp(4rem, 8vw, 7rem);
}

@media (prefers-color-scheme: dark) {
  .drinks-section { background: var(--cream); }
}

.drinks-image-hero {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  max-height: 480px;
}

@media (max-width: 600px) {
  .drinks-image-hero { aspect-ratio: 4/3; max-height: 320px; }
}

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

.drinks-category:last-child { margin-bottom: 0; }

.drinks-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--amber);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

@media (prefers-color-scheme: dark) {
  .drinks-category-title { color: var(--white); border-bottom-color: var(--amber-deep); }
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (prefers-color-scheme: dark) {
  .drinks-grid { background: rgba(255,255,255,0.05); }
}

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

.drinks-item {
  background: var(--white);
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background var(--dur) var(--ease);
}

@media (prefers-color-scheme: dark) {
  .drinks-item { background: var(--brand-deep); }
}

.drinks-item:hover { background: var(--off-white); }

@media (prefers-color-scheme: dark) {
  .drinks-item:hover { background: rgba(255,255,255,0.05); }
}

.drinks-item-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

@media (prefers-color-scheme: dark) {
  .drinks-item-name { color: var(--cream); }
}

.drinks-item-desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
  font-style: italic;
}

.menu-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(212,132,62,0.07);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-main {
  background: var(--off-white);
  padding-block: clamp(5rem, 10vw, 8rem);
}

@media (prefers-color-scheme: dark) {
  .about-main { background: var(--cream); }
}

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

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

.about-prose p {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--ink-soft);
  line-height: 1.82;
  margin-bottom: 1.4rem;
}

.about-prose p:last-child { margin-bottom: 0; }

.about-side-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
}

.about-values {
  background: var(--cream);
  padding-block: clamp(4rem, 8vw, 7rem);
}

@media (prefers-color-scheme: dark) {
  .about-values { background: var(--paper); }
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 600px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr 1fr; } }

.value-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease);
}

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

@media (prefers-color-scheme: dark) {
  .value-card { background: var(--brand-deep); }
}

.value-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  opacity: 0.2;
  margin-bottom: 0.75rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

@media (prefers-color-scheme: dark) {
  .value-title { color: var(--white); }
}

.value-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.68;
}

@media (prefers-color-scheme: dark) {
  .value-text { color: var(--ink-muted); }
}

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-section {
  background: var(--off-white);
  padding-block: clamp(4rem, 8vw, 7rem);
}

@media (prefers-color-scheme: dark) {
  .contact-section { background: var(--cream); }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

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

.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.map-embed iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.full-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-card);
}

@media (prefers-color-scheme: dark) {
  .contact-card { background: var(--brand-deep); }
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--brand-deep);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.contact-card-body strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.contact-card-body a,
.contact-card-body p {
  font-size: 0.94rem;
  color: var(--brand-deep);
  font-weight: 500;
  line-height: 1.55;
}

@media (prefers-color-scheme: dark) {
  .contact-card-body a,
  .contact-card-body p { color: var(--brand-light); }
}

.contact-card-body a {
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.contact-card-body a:hover { color: var(--amber); }

/* Hours table (contact page) */
.hours-table-contact {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.hours-table-contact tr {
  border-bottom: 1px solid var(--paper);
}

@media (prefers-color-scheme: dark) {
  .hours-table-contact tr { border-bottom-color: rgba(255,255,255,0.07); }
}

.hours-table-contact tr:last-child { border-bottom: none; }

.hours-table-contact td {
  padding: 0.65rem 0.25rem;
  color: var(--ink-soft);
}

.hours-table-contact td:first-child {
  font-weight: 600;
  color: var(--ink);
  padding-right: 1.5rem;
  white-space: nowrap;
}

@media (prefers-color-scheme: dark) {
  .hours-table-contact td:first-child { color: var(--white); }
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 1.4rem 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(242,237,228,0.4);
}

.site-footer a {
  color: rgba(242,237,228,0.55);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.site-footer a:hover { color: var(--amber-light); }

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

.animate-fade-up {
  animation: fadeUp 0.75s var(--ease) both;
}
.animate-fade-up:nth-child(2) { animation-delay: 0.12s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.24s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.36s; }

/* ── Responsive helpers ────────────────────────────────────── */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
