/* =============================================================
   BONNIE JEAN BAR & GRILL — Main Stylesheet
   WCAG AA: all text contrast ratios ≥ 4.5:1 verified
   ============================================================= */

/* ── TOKENS ── */
:root {
  --black:        #0a0805;
  --dark:         #130f09;
  --card:         #1a1410;

  --gold:         #d4a04a;   /* 5.3:1 on --black */
  --gold-light:   #e8bf7a;   /* 7.8:1 on --black */
  --gold-dark:    #a07830;

  --red-heading:  #e05050;   /* large display headings only */

  --text-primary: #f0e6cc;   /* 13.4:1 */
  --text-body:    #d4c8ae;   /*  9.1:1 */
  --text-subtle:  #b8a880;   /*  5.2:1 */
  --text-muted:   #9e9070;   /*  4.6:1 — minimum */

  --border:       rgba(212, 160, 74, 0.28);
  --focus-ring:   #e8bf7a;

  --nav-height:   72px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent any decorative overflow from creating a horizontal scrollbar */
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── SCREEN-READER ONLY ── */
.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;
}

/* ── BASE ── */
body {
  background: var(--black);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body::before {
  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='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");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ── GLOBAL FOCUS RING ── */
:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}


/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 8, 5, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: var(--nav-height);
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-body);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--black);
  background: var(--gold);
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }
.nav-cta i { font-size: 0.75rem; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-body);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10, 8, 5, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 190;
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.mobile-nav ul a {
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--text-body);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(212, 160, 74, 0.1);
  transition: color 0.2s;
  min-height: 48px;
}

.mobile-nav ul a i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

.mobile-nav ul a:hover { color: var(--gold-light); }

.mobile-nav .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2rem;
  text-decoration: none;
  min-height: 48px;
  width: 100%;
  transition: background 0.2s;
}

.mobile-nav .mobile-cta:hover { background: var(--gold-light); }


/* =============================================================
   BUTTONS (global)
   ============================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.5rem;
  min-height: 48px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-primary);
  padding: 0.9rem 2.5rem;
  min-height: 48px;
  text-decoration: none;
  border: 2px solid rgba(240, 230, 204, 0.45);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}


/* =============================================================
   SHARED UTILITIES
   ============================================================= */

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.6875rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.gold-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 2.5rem;
}


/* =============================================================
   HERO
   ============================================================= */

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7rem 2rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(139, 60, 20, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 70% 20%, rgba(155, 32, 32, 0.12) 0%, transparent 60%),
    var(--black);
}

.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 160, 74, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 74, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
}

.hero-logo {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
  animation: fadeUp 1.2s ease both;
}

.hero-logo img {
  height: 180px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.97;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.5s ease both;
}

.hero-title .line1 {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, #e05050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line2 { color: var(--text-primary); }

.hero-rule {
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.6rem auto;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.7s ease both;
}

.hero-tagline {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 440px;
  line-height: 1.75;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 0.9s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s 1.1s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  pointer-events: none;
  color: var(--text-subtle);
}

.scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--text-subtle);
}

.scroll-icon {
  font-size: 0.75rem;
  color: var(--gold);
  animation: scrollBounce 2s infinite;
}


/* =============================================================
   ABOUT
   ============================================================= */

#about {
  padding: 8rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;           /* don't exceed viewport */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Extra padding so the ::before shadow-frame and the badge
   are fully inside the stacking context and never overflow */
.about-visual {
  position: relative;
  padding: 16px 36px 36px 16px; /* top right bottom left — right+bottom accommodate ::before offset and badge */
  isolation: isolate;           /* new stacking context — keeps z-index effects local */
  overflow: hidden;             /* hard clip: nothing can bleed outside this box */
}

.about-frame {
  width: 100%;
  padding-top: 108%;
  position: relative;
  border: 1px solid var(--border);
}

/* Decorative offset frame — kept fully within .about-visual padding */
.about-frame::before {
  content: '';
  position: absolute;
  /* top:-12 right:-12 bleed into the padding zone, never outside .about-visual */
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.flame-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 160, 74, 0.06);
}

.flame-cell {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flame-cell i {
  font-size: 1.75rem;
  color: var(--gold);
  opacity: 0.2;
}

.flame-cell i.big {
  font-size: 2.75rem;
  opacity: 0.25;
}

.flame-year-cell {
  background: rgba(212, 160, 74, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flame-year-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.55;
  display: block;
  text-align: center;
}

.flame-year-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.28;
  display: block;
  text-align: center;
}

/* Badge sits inside the .about-visual bottom-right padding */
.about-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  z-index: 2;
}

.badge-year {
  font-family: 'Cinzel', serif;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.badge-text {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--black);
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-top: 0.3rem;
}


/* =============================================================
   MENU
   ============================================================= */

#menu {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 20%, var(--dark) 80%, var(--black) 100%);
  position: relative;
}

#menu::before,
#menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#menu::before { top: 0; }
#menu::after  { bottom: 0; }

.menu-header {
  text-align: center;
  padding: 0 2rem 3.5rem;
}

.menu-header .section-eyebrow {
  justify-content: center;
}

.menu-header .section-eyebrow::before {
  display: none;
}

.menu-header .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.menu-header p {
  color: var(--text-subtle);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* Tab bar — scrolls horizontally on mobile */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.875rem 1.5rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;

  /* Horizontal scroll on small screens */
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.menu-tabs::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.tab-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-subtle);
  border: 1px solid rgba(212, 160, 74, 0.22);
  padding: 0.65rem 1.2rem;
  min-height: 44px;
  white-space: nowrap;   /* prevent text wrap inside button */
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.tab-btn[aria-selected="true"] {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Fade-edge hint that tabs scroll */
.menu-tabs-wrapper {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.menu-tabs-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  background: linear-gradient(to left, var(--dark), transparent);
  pointer-events: none;
}

/* Tab panels */
.menu-section {
  display: none;
  max-width: 980px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.menu-section.is-active { display: block; }

.menu-cat-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.4rem;
}

.menu-cat-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 900;
  text-align: center;
  color: var(--red-heading);
  margin-bottom: 0.4rem;
}

/* Menu items */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu-grid.single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.menu-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(212, 160, 74, 0.12);
  transition: background 0.15s;
}

.menu-item:hover { background: rgba(212, 160, 74, 0.05); }

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.item-name {
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  font-weight: 700;
}

.item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.item-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

.item-add-on {
  font-size: 0.8125rem;
  color: var(--gold);
  margin-top: 0.3rem;
  font-style: italic;
}

.dressings-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-subtle);
  margin-top: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.dressings-note strong { color: var(--text-primary); }


/* =============================================================
   DRINK CTA
   ============================================================= */

#drink {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.drink-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(155, 32, 32, 0.16) 0%, transparent 70%);
}

.drink-ornament {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  z-index: 1;
}

.drink-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.drink-heading span { color: var(--gold-light); }

.drink-text {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.drink-cta { position: relative; z-index: 1; }


/* =============================================================
   INFO — Hours, Contact, Map
   ============================================================= */

#info {
  padding: 8rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  border-top: 1px solid var(--border);
}

.info-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6875rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-row td {
  padding: 0.55rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(212, 160, 74, 0.09);
  vertical-align: middle;
}

.hours-row:last-child td { border-bottom: none; }
.hours-day  { color: var(--text-subtle); letter-spacing: 0.04em; }
.hours-time { color: var(--text-primary); font-weight: 700; text-align: right; }

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 18px;
  text-align: center;
}

.contact-detail {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

.contact-detail a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-detail a:hover { color: var(--text-primary); }

.phone-big {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.phone-big a { color: inherit; text-decoration: none; }
.phone-big a:hover { color: var(--text-primary); }

.map-embed {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem;
}

.map-pin {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.map-addr {
  font-size: 0.9rem;
  color: var(--text-body);
  text-align: center;
  line-height: 1.6;
}

.map-placeholder a {
  font-family: 'Cinzel', serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--black);
  background: var(--gold);
  padding: 0.65rem 1.2rem;
  margin-top: 0.5rem;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.map-placeholder a:hover { background: var(--gold-light); }


/* =============================================================
   FOOTER
   ============================================================= */

footer {
  padding: 3rem 3rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.footer-brand span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  color: var(--text-subtle);
  font-weight: 400;
  margin-top: 0.3rem;
}

.footer-brand span i { color: var(--gold); font-size: 0.6rem; }

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--text-body);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
}


/* =============================================================
   ANIMATIONS
   ============================================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(5px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

/* ── Tablet / small desktop ── */
@media (max-width: 1024px) {
  nav { padding: 0.6rem 2rem; }

  /* Stack the about section earlier — the decorative grid
     causes layout issues at any width below full two-column */
  #about {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 6rem 2rem;
  }
  .about-visual { display: none; }

  #info { gap: 3rem; padding: 6rem 2rem; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  /* Hide desktop nav links, show hamburger */
  .nav-links  { display: none; }
  .nav-hamburger { display: inline-flex; }

  /* Show mobile drawer */
  .mobile-nav { display: block; }

  nav { padding: 0.5rem 1.25rem; }

  .nav-logo img { height: 44px; }

  /* Hide "Call Us" CTA in nav on mobile — it's in the drawer */
  .nav-cta { display: none; }

  /* About: stack vertically — hide the decorative grid (aria-hidden, purely visual) */
  #about {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 5rem 1.5rem;
  }
  .about-visual { display: none; }

  /* Menu tabs already scroll horizontally via flex+overflow */
  .menu-tabs {
    justify-content: flex-start;
    padding: 0.75rem 1rem;
  }

  /* Menu items: single column */
  .menu-grid { grid-template-columns: 1fr; }

  .menu-section { padding: 2.5rem 1rem; }

  .menu-item { padding: 1rem 1rem; }

  /* Info: stack vertically */
  #info {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }

  .map-embed { aspect-ratio: 4 / 3; }

  /* Footer: stack */
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
  }
  .footer-nav { justify-content: center; }
  .footer-brand span { justify-content: center; }

  /* Hero */
  .hero-logo img { height: 140px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline { width: 100%; max-width: 320px; }

  /* Drink CTA */
  #drink { padding: 6rem 1.5rem; }
}

/* ── Very small screens ── */
@media (max-width: 380px) {
  .hero-logo img { height: 110px; }
  .tab-btn { font-size: 0.625rem; padding: 0.6rem 0.9rem; }
}