/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

/* Ensure text remains visible during font load */
html { font-display: swap; }

/* ===== VARIABLES ===== */
:root {
  --bg-dark:   #091d12;
  --bg-mid:    #0d2418;
  --bg-card:   #112c1e;
  --bg-hover:  #163a26;
  --gold:      #c48c3a;
  --gold-lt:   #d9a870;
  --amber:     #b8692e;
  --cream:     #f0e8d0;
  --muted:     #7a9080;
  --border:    rgba(196,140,58,0.22);
  --border-lt: rgba(196,140,58,0.09);
  --red:       #9b2335;
  --green:     #2e7d52;
  --nav-h:     72px;
  --radius:    6px;
  --shadow:    0 4px 28px rgba(0,0,0,0.6);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p  { margin-bottom: 0; }

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.badge {
  display: inline-block;
  background: rgba(200,148,26,0.15);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0 28px;
}
.divider-center { margin: 16px auto 28px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,148,26,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,234,214,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-sm { padding: 9px 20px; font-size: 0.78rem; }

/* ===== RESERVATIONS — pre-order block (mobile: long CTA text, .btn is nowrap by default) ===== */
.reserve-preorder-card {
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(196, 140, 58, 0.06) 100%);
  padding: clamp(18px, 5vw, 32px);
  text-align: center;
  margin-bottom: 32px;
  max-width: 100%;
  box-sizing: border-box;
}
.reserve-preorder-btn {
  font-size: 0.9rem;
  white-space: normal;
  max-width: 100%;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 420px) {
  .reserve-preorder-btn {
    font-size: 0.75rem;
    padding: 12px 14px;
    letter-spacing: 0.04em;
  }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(14,11,8,0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo img {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(196,140,58,0.35));
}
@media (max-width: 768px) {
  .nav-logo img { height: 52px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 4px; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(14,11,8,0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
/* Plain menu links only — .btn links must keep .btn-primary colors (a+class loses to a.nav-mobile without :not) */
.nav-mobile a:not(.btn) {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border-lt);
  transition: color 0.2s;
}
.nav-mobile a:not(.btn):hover,
.nav-mobile a:not(.btn).active { color: var(--gold); }
.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  box-sizing: border-box;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(9,29,18,0.82) 0%,
    rgba(9,29,18,0.70) 50%,
    rgba(9,29,18,0.90) 100%
  );
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 42s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-slide:nth-child(6) { animation-delay: 30s; }
.hero-slide:nth-child(7) { animation-delay: 36s; }

@keyframes heroFade {
  0%     { opacity: 0; }
  1.2%   { opacity: 1; }
  14.3%  { opacity: 1; }
  16.7%  { opacity: 0; }
  100%   { opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}
.hero-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 24px rgba(196,140,58,0.5));
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin: 16px 0 8px;
  letter-spacing: 0.05em;
}
.hero-walkin {
  font-size: 0.9rem;
  color: var(--cream);
  background: rgba(196,140,58,0.15);
  border: 1px solid rgba(196,140,58,0.3);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-location {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-location::before,
.hero-location::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: 0.5; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===== OPEN STATUS ===== */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,125,82,0.15);
  border: 1px solid rgba(46,125,82,0.4);
  color: #5dbf8a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.open-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5dbf8a;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(93,191,138,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(93,191,138,0); }
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .divider { margin: 16px auto 28px; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--bg-card); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== INSTAGRAM FEED ===== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.insta-card {
  position: relative;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
}
.insta-card:hover {
  border-color: rgba(196,140,58,0.45);
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  font-size: 0.75rem;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 100%);
}
.insta-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 30px 16px;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(200,148,26,0.4);
  box-shadow: var(--shadow);
}

/* ===== BEER GRID ===== */
.beer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.beer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.beer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.beer-card:hover {
  border-color: rgba(200,148,26,0.45);
  transform: translateY(-2px);
}
.beer-card:hover::before { opacity: 1; }
.beer-tap-num {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.7;
  text-transform: uppercase;
}
.beer-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}
.beer-style {
  font-size: 0.82rem;
  color: var(--muted);
}
.beer-origin {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
}
.beer-abv {
  display: inline-block;
  background: rgba(200,148,26,0.12);
  border: 1px solid var(--border);
  color: var(--gold-lt);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
.beer-prices {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-lt);
}
.beer-price-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.beer-price-vol {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.beer-price-val {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

/* ===== PIZZA MENU ===== */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.home-pizza-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pizza-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s;
  position: relative;
}
.pizza-card.signature {
  border-color: rgba(200,148,26,0.5);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(200,148,26,0.05) 100%);
}
.pizza-card:hover {
  border-color: rgba(200,148,26,0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.pizza-badge {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  font-family: 'Cinzel', serif;
}
.pizza-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
}
.pizza-desc {
  font-size: 0.83rem;
  color: var(--muted);
  flex: 1;
}
.pizza-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-lt);
}
.pizza-price {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.diet-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.diet-vegan { background: rgba(46,125,82,0.2); color: #5dbf8a; border: 1px solid rgba(46,125,82,0.3); }

/* ===== MENU CATEGORY ===== */
.menu-section { margin-bottom: 56px; }
.menu-section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.menu-section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.menu-section-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: auto;
}
.menu-list { display: flex; flex-direction: column; gap: 2px; }
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-lt);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left { flex: 1; }
.menu-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 2px;
}
.menu-item-detail {
  font-size: 0.8rem;
  color: var(--muted);
}
.menu-item-price {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
}
.menu-item-tags { display: flex; gap: 6px; align-items: center; }

/* ===== HOURS TABLE ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--border-lt);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}
.hours-table td:first-child { color: var(--muted); width: 140px; }
.hours-table td:last-child {
  font-weight: 700;
  color: var(--cream);
}
.hours-table .today {
  background: rgba(200,148,26,0.06);
}
.hours-table .today td:first-child { color: var(--gold); }
.hours-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== EVENTS ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  border-color: rgba(200,148,26,0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.event-date-bar {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-date-bar .date {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.event-photo {
  width: 100%;
  height: 160px;
  /* object-fit / object-position come from inline styles (admin: cover vs contain + focus) */
  display: block;
  background: rgba(9,29,18,0.15);
}
.event-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.event-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.event-desc { font-size: 0.85rem; color: var(--muted); flex: 1; }
.event-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}
.event-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== WEEKLY EVENTS ===== */
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.weekly-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
  transition: border-color 0.2s;
}
.weekly-card:hover { border-color: rgba(200,148,26,0.4); }
.weekly-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.weekly-event-photo {
  width: 112px;
  height: 80px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  background: rgba(9,29,18,0.15);
}
.weekly-day {
  background: rgba(200,148,26,0.12);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 10px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.weekly-info {
  width: 100%;
  min-width: 0;
}
.weekly-title {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.weekly-time {
  font-size: 0.78rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.weekly-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== LOYALTY ===== */
.loyalty-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.loyalty-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  counter-increment: step;
}
.loyalty-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.loyalty-step h3 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.loyalty-step p { font-size: 0.85rem; color: var(--muted); }
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.reward-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
}
.reward-tier:hover {
  border-color: rgba(200,148,26,0.5);
  transform: translateY(-2px);
}
.reward-points {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.reward-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.reward-desc { font-size: 0.83rem; color: var(--cream); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(200,148,26,0.4); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(200,148,26,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
}
.faq-icon svg { transition: transform 0.3s; }
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-lt);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(200,148,26,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-value { font-size: 0.9rem; font-weight: 700; color: var(--cream); }
.contact-value a:hover { color: var(--gold); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(200,148,26,0.2));
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 48px) 0 48px;
  text-align: center;
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }
.beer-hero {
  position: relative;
  background-image:
    linear-gradient(135deg, rgba(9,29,18,0.84) 0%, rgba(9,29,18,0.62) 52%, rgba(9,29,18,0.9) 100%),
    url('../images/bg3.jpg');
  background-size: cover;
  background-position: center 34%;
}

/* ===== TWO COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== REAL PHOTO BLOCKS ===== */
.about-photo-fader {
  position: relative;
  height: 320px;
  margin: 24px 0 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.about-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: aboutFade 18s infinite;
}
.about-fade-slide:nth-child(1) { animation-delay: 0s; }
.about-fade-slide:nth-child(2) { animation-delay: 6s; }
.about-fade-slide:nth-child(3) { animation-delay: 12s; }
.about-fade-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes aboutFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  28% { opacity: 1; }
  34% { opacity: 0; }
  100% { opacity: 0; }
}
.section-photo-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-card);
}
.section-photo-banner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.review-shot {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  opacity: 1;
  transition: opacity 420ms ease;
}
.review-shot.is-fading { opacity: 0; }
.review-shot img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ===== CASTLE FRAME BORDER (matches menu decorative border) ===== */
.castle-frame {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--bg-card), 0 0 0 6px rgba(196,140,58,0.15);
  border-radius: var(--radius);
}

/* ===== UNTAPPD BANNER ===== */
.untappd-banner {
  background: linear-gradient(135deg, #ffcc00 0%, #f4a100 100%);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.untappd-banner-text h3 { color: #1a1a1a; font-size: 1rem; margin-bottom: 4px; }
.untappd-banner-text p { color: rgba(26,26,26,0.7); font-size: 0.85rem; }
.btn-untappd {
  background: #1a1a1a;
  color: #ffcc00;
  border-color: transparent;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}
.btn-untappd:hover { transform: translateY(-1px); }

/* ===== ANNOUNCEMENT BANNER ===== */
.announcement {
  background: rgba(200,148,26,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.announcement-icon { color: var(--gold); flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* ===== ROOMS SECTION ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.room-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-detail { font-size: 0.82rem; color: var(--muted); margin-bottom: 4px; }
.room-rental {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-lt);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .beer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-pizza-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .instagram-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-photo-fader { height: 290px; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--border); }
  .section { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .three-col { grid-template-columns: 1fr; }
  .untappd-banner { flex-direction: column; text-align: center; }
}
/* Quick Actions Bar */
.quick-actions {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  gap: 0;
}
.qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px;
  min-width: 0;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--border);
  text-align: center;
}
.qa-item:first-child { border-left: 1px solid var(--border); }
.qa-item:hover {
  background: rgba(196,140,58,0.1);
  color: var(--gold);
}
.qa-item:hover .qa-icon { color: var(--gold); }
.qa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}
.qa-icon-svg { flex-shrink: 0; }
.qa-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 768px) {
  .quick-actions { top: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .quick-actions .container { max-width: none; padding-left: 0; padding-right: 0; }
  .qa-grid {
    display: flex;
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
  }
  .qa-item {
    flex: 1 0 auto;
    min-width: 118px;
    padding: 12px 16px;
    border-left: none;
  }
  .qa-item:first-child { border-left: none; margin-left: 12px; }
  .qa-item:last-child { margin-right: 12px; }
  .qa-label {
    font-size: 0.7rem;
    white-space: normal;
    line-height: 1.25;
    max-width: 7.5rem;
  }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .beer-grid { grid-template-columns: 1fr; }
  .home-pizza-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
  .feature-item { padding: 20px 12px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-photo-fader { height: 240px; }
  .section-photo-banner img { height: 220px; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
