/* ===========================================================
   The Bell Inn — site stylesheet

   Palette:
     navy    #26495D   page background
     panel   #1F3C4D   raised panels
     gold    #DAB974   headings, borders, accents
   =========================================================== */

:root {
  --navy: #26495D;
  --navy-deep: #1A3644;
  --panel: #1F3C4D;
  --panel-2: #244556;
  --gold: #DAB974;
  --gold-bright: #F0D48A;
  --gold-dim: rgba(218, 185, 116, 0.35);
  --ink: #0B1E3D;
  --text: #F5F5F5;
  --muted: #D6DEE3;
  --red: #C0392B;
  --serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --max: 1100px;
}

/* ===========================
   Base
=========================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  background: var(--navy);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

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

a { color: var(--gold); }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--gold);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

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

main { flex: 1 0 auto; width: 100%; position: relative; z-index: 1; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.narrow { max-width: 820px; }

/* ===========================
   Bells Animation
=========================== */
.bells {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bell {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  opacity: 0.13;
  user-select: none;
  will-change: transform;
}

/* ===========================
   Announcement bar
=========================== */
.announcement-bar[hidden] { display: none; }

.announcement-bar {
  width: 100%;
  background: var(--red);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 52px 10px 20px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 20;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.announcement-cta {
  background: #fff;
  color: var(--red);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: background-color 0.2s, color 0.2s;
}
.announcement-cta:hover { background: #8E2B20; color: #fff; }

.announcement-dismiss {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
}
.announcement-dismiss:hover { background: rgba(0, 0, 0, 0.25); }

/* ===========================
   Top bar & navigation
=========================== */
.topbar {
  position: relative;
  z-index: 30;
  width: 100%;
  background: linear-gradient(to bottom, #1A3644, #21465A);
  border-bottom: 1px solid var(--gold-dim);
  /* no backdrop-filter here: it would trap the fixed mobile drawer inside the header */
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { font-size: 1.05rem; }
.brand:hover { color: var(--gold-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}
.nav-toggle .bars { font-size: 1.3rem; line-height: 1; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.site-nav a {
  display: block;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.site-nav a:hover { background: rgba(218, 185, 116, 0.15); color: var(--gold-bright); }
.site-nav a[aria-current='page'] { background: var(--gold); color: var(--ink); font-weight: 700; }

.site-nav .nav-call a {
  border: 2px solid var(--gold);
  color: var(--gold);
  margin-left: 6px;
  font-weight: 700;
}
.site-nav .nav-call a:hover { background: var(--gold); color: var(--ink); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 35, 0.6);
  backdrop-filter: blur(3px);
  z-index: 25;
  display: none;
}
.menu-overlay.show { display: block; }

@media (max-width: 1200px) {
  .nav-toggle { display: inline-flex; }

  /* The nav becomes a full-viewport, clipped layer; the panel slides
     inside it, so the closed panel never widens the page. */
  .site-nav {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 0.28s;
    z-index: 40;
  }
  .site-nav.show { visibility: visible; pointer-events: auto; transition-delay: 0s; }

  .site-nav .drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--navy-deep);
    border-left: 1px solid var(--gold-dim);
    box-shadow: var(--shadow);
    padding: 80px 20px 30px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }
  .site-nav.show .drawer { transform: translateX(0); }

  .site-nav ul { flex-direction: column; align-items: stretch; gap: 6px; }
  .site-nav a { font-size: 1.15rem; padding: 12px 16px; border-radius: 10px; }
  .site-nav .nav-call a { margin: 12px 0 0; text-align: center; }

  .nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 6px 10px;
  }
}
@media (min-width: 1201px) { .nav-close { display: none; } .site-nav .nav-home { display: none; } .site-nav .drawer { display: contents; } }

@media (max-width: 600px) {
  .brand span { font-size: 0.95rem; }
  .topbar-inner { padding: 8px 14px; }
}
@media (max-width: 430px) {
  .brand span { display: none; }
}

/* ===========================
   Home hero
=========================== */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 20px 40px;
  background:
    linear-gradient(to bottom, rgba(26, 54, 68, 0.72), rgba(38, 73, 93, 0.92) 85%, var(--navy)),
    url('pub-exterior.jpg') center 40% / cover no-repeat;
}
.webp .hero { background-image:
    linear-gradient(to bottom, rgba(26, 54, 68, 0.72), rgba(38, 73, 93, 0.92) 85%, var(--navy)),
    url('pub-exterior.webp'); }

.hero img.hero-logo {
  width: 170px;
  height: 170px;
  margin: 0 auto 10px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 1px;
  margin-bottom: 0.2em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .hero-line {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 1.4rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.6rem;
}

/* ===========================
   Open / Closed status card
=========================== */
.status-card {
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.status-line {
  font-size: 1.15rem;
  margin: 0.3rem 0;
  font-weight: 600;
  color: var(--ink);
}
.status-line.open         { color: #1D6B41; }
.status-line.closing-soon { color: #8A4B12; }
.status-line.closed       { color: #8E2B20; }
.status-line.fallback     { color: #4A4A4A; font-style: italic; }
.status-line a { color: inherit; }

.status-notice {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8E2B20;
}

/* ===========================
   Buttons
=========================== */
.button-primary,
.button-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s, color 0.2s;
  border: 2px solid var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1.3;
}
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--ink); transform: translateY(-2px); }
.button-secondary { background: transparent; color: var(--gold); }
.button-secondary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.button-large { font-size: 1.35rem; padding: 0.95rem 2rem; }

/* ===========================
   Section titles & panels
=========================== */
.section-title {
  text-align: center;
  margin-bottom: 1.8rem;
}
.section-title h1,
.section-title h2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.section-title h2 { font-size: 1.6rem; }
.section-title .lead { color: var(--muted); max-width: 680px; margin: 0.6rem auto 0; }

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}

.panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.page { padding-top: 2.2rem; padding-bottom: 3rem; }

.lead { font-size: 1.15rem; line-height: 1.65; }

.text-center { text-align: center; }

.rule {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 2rem auto;
  width: 60%;
  opacity: 0.4;
}

.empty-note {
  color: var(--muted);
  text-align: center;
  font-style: italic;
  padding: 1.5rem;
  border: 1px dashed var(--gold-dim);
  border-radius: var(--radius);
}

/* ===========================
   Circular icon buttons (homepage)
=========================== */
.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 2rem 0 1rem;
}

.nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
}

.nav-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: transform 0.25s, background-color 0.25s, color 0.25s;
}
.nav-button a:hover,
.nav-button a:focus-visible { background: var(--gold); color: var(--navy); transform: scale(1.08); }
.nav-button a:active { transform: scale(0.95); }
.nav-button svg { width: 42px; height: 42px; fill: currentColor; pointer-events: none; }

.nav-label {
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.4px;
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}

/* ===========================
   Cards
=========================== */
.cards {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(218, 185, 116, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }
.card .icon { font-size: 2.2rem; line-height: 1; margin-bottom: 0.6rem; }
.card .card-link { font-weight: 600; text-decoration: none; }
.card .card-link:hover { text-decoration: underline; }

.card.gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
}
.card.gold h3 { color: #003366; }
.card.gold p { color: var(--ink); }

/* Highlights on homepage */
.highlights { margin: 2.5rem 0; }
.highlights .cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
@media (max-width: 900px) {
  .hero-nav { gap: 18px; }
  .nav-button { width: 100px; }
}

/* ===========================
   Home: what's on / news previews
=========================== */
.home-section { margin: 3rem 0; }

.home-section .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.5rem;
}
.home-section .section-head h2 { margin: 0; }
.home-section .section-head a { font-weight: 600; text-decoration: none; }
.home-section .section-head a:hover { text-decoration: underline; }

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.quick-group h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  font-family: var(--sans);
}

.menu-text-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}
.pill:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

@media (max-width: 800px) {
  .quick-links { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===========================
   Food menu
=========================== */
.menu-page .panel { max-width: 860px; margin: 0 auto; }

.menu-intro {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.menu-course { margin-top: 2rem; }
.menu-course h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.menu-items { list-style: none; margin: 0; padding: 0; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(218, 185, 116, 0.18);
}
.menu-item:last-child { border-bottom: none; }
.menu-item .name { font-weight: 600; }
.menu-item .tags { font-size: 0.85rem; color: var(--gold); margin-left: 0.5rem; font-weight: 500; }
.menu-item .desc { grid-column: 1; color: var(--muted); font-size: 0.97rem; }
.menu-item .price { font-weight: 700; color: var(--gold); white-space: nowrap; text-align: right; }

.menu-pricing { margin-top: 2rem; text-align: center; font-size: 1.1rem; }
.menu-pricing strong { color: var(--gold); }
.menu-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--gold-dim);
  padding-top: 1rem;
}
.menu-legend { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 1rem; }

.menu-holding { text-align: center; margin-top: 1.5rem; }
.menu-holding .button-primary, .menu-holding .button-secondary { margin: 0.35rem; }

.menu-actions { text-align: center; margin: 1rem 0 0; }

/* ===========================
   Drinks
=========================== */
.drinks-page .panel { max-width: 1000px; margin: 0 auto; text-align: center; }
.drinks-page .intro { color: var(--muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto 1.5rem; }

.accordion { margin-top: 1rem; }

.accordion-toggle {
  width: 100%;
  background: var(--gold);
  font-family: var(--serif);
  color: var(--ink);
  padding: 0.9rem 1.2rem;
  font-size: 1.3rem;
  text-align: left;
  border: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: color 0.2s;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  z-index: -1;
}
.accordion-toggle:hover::before,
.accordion-toggle[aria-expanded='true']::before { transform: scaleX(1); }
.accordion-toggle:hover,
.accordion-toggle[aria-expanded='true'] { color: var(--gold); }
.accordion-toggle .chev { transition: transform 0.3s; font-size: 1rem; }
.accordion-toggle[aria-expanded='true'] .chev { transform: rotate(180deg); }

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  margin-bottom: 0.75rem;
}
.accordion-content > .cards { padding: 0.75rem 0.25rem 1rem; }

.drink-card { text-align: center; }
.drink-card img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 1rem;
}
.drink-card .strength {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(11, 30, 61, 0.12);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 0.5rem;
}

/* ===========================
   What's On / events
=========================== */
.event-list { display: grid; gap: 1.4rem; }

.event-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.event-card.has-image { grid-template-columns: 110px 1fr 220px; }

.event-date {
  background: var(--gold);
  color: var(--ink);
  border-radius: 12px;
  text-align: center;
  padding: 10px 6px;
  line-height: 1.1;
}
.event-date .day { display: block; font-size: 2rem; font-weight: 800; font-family: var(--serif); }
.event-date .month { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.event-date .year { display: block; font-size: 0.75rem; opacity: 0.8; }
.event-date.undated .day { font-size: 1.6rem; }

.event-body h3 { margin-bottom: 0.2em; }
.event-when { color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.event-body p:last-child { margin-bottom: 0; }

.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 720px) {
  .event-card, .event-card.has-image { grid-template-columns: 90px 1fr; }
  .event-card img { grid-column: 1 / -1; max-height: 260px; }
}

.festival { margin-top: 3rem; }
.festival .festival-dates {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.festival .festival-photo {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--gold);
  border-radius: 10px;
}
.festival .festival-intro { text-align: center; max-width: 720px; margin: 0 auto 2rem; color: var(--muted); font-size: 1.1rem; }
.festival .thanks { text-align: center; max-width: 760px; margin: 0 auto 1.5rem; }

.sponsor-card { text-align: center; }
.sponsor-card .sponsor-logo {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.sponsor-card .sponsor-logo img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }

.festival-tagline {
  text-align: center;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin: 2rem 0 0.3rem;
}
.festival-charity { text-align: center; color: var(--muted); }

/* ===========================
   News
=========================== */
.post-list { display: grid; gap: 1.4rem; max-width: 820px; margin: 0 auto; }
.post .post-date {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.post h3 { font-size: 1.4rem; }
.post p:last-child { margin-bottom: 0; }

.post.preview p { display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===========================
   Gallery
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-grid button {
  padding: 0;
  border: 2px solid transparent;
  background: var(--panel);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}
.gallery-grid button:hover { transform: scale(1.03); border-color: var(--gold); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  font-size: 0.85rem;
  padding: 18px 10px 8px;
  text-align: left;
}

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 28, 0.94);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: contain;
}
.lightbox .lb-caption { color: var(--muted); margin-top: 10px; text-align: center; min-height: 1.5em; }
.lightbox .lb-controls { display: flex; gap: 1rem; align-items: center; margin-top: 12px; }
.lightbox button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.6rem 1.2rem;
  font: inherit;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}
.lightbox button:hover { background: var(--gold-bright); }
.lightbox .lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.3rem;
  padding: 0.5rem 0.9rem;
}
.lightbox .lb-counter { color: var(--gold); font-variant-numeric: tabular-nums; }

/* ===========================
   History
=========================== */
.history-intro { font-size: 1.2rem; text-align: center; max-width: 760px; margin: 0 auto 2rem; }

.history-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) { .history-layout { grid-template-columns: 1fr; } }

.history-section { margin-bottom: 2rem; }
.history-section h2 { font-size: 1.5rem; }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--gold-dim);
}
.timeline li { position: relative; padding-left: 32px; margin-bottom: 1.2rem; }
.timeline li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--navy);
}
.timeline .year { display: block; color: var(--gold); font-weight: 800; font-family: var(--serif); }
.timeline .text { color: var(--muted); font-size: 0.97rem; }

.history-photo { border: 3px solid var(--gold); border-radius: 10px; margin-bottom: 1.5rem; }

/* ===========================
   Opening times
=========================== */
.times-page .panel { max-width: 820px; margin: 0 auto; }

.times-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.times-table th,
.times-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(218, 185, 116, 0.15);
  text-align: left;
  vertical-align: top;
}
.times-table th {
  background: #16303D;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.times-table tbody tr:nth-child(even) td { background: #1B3948; }
.times-table tbody tr:nth-child(odd) td  { background: var(--panel-2); }
.times-table td { color: var(--muted); }
.times-table td .label { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-right: 4px; }
.times-table tbody tr.today td { background: var(--gold); color: var(--navy); font-weight: 700; }
.times-table tbody tr.today td .label { color: #5a3d00; }
.times-table .closed { font-style: italic; opacity: 0.85; }

.notice-box {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.6);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin: 1.2rem auto 0;
  text-align: center;
  font-weight: 600;
}

.hours-mini { list-style: none; margin: 0; padding: 0; }
.hours-mini li { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; border-bottom: 1px dashed rgba(218, 185, 116, 0.15); font-size: 0.95rem; }
.hours-mini li.today { color: var(--gold-bright); font-weight: 700; }
.hours-mini span:last-child { white-space: nowrap; }

@media (max-width: 560px) {
  .times-table th, .times-table td { padding: 0.65rem 0.6rem; font-size: 0.92rem; }
}

/* ===========================
   Contact & Find us
=========================== */
.contact-cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.call-cta { text-align: center; margin: 1.5rem 0 2.2rem; }

.address-block { font-size: 1.1rem; line-height: 1.6; text-align: center; }

.map-embed {
  width: 100%;
  height: 380px;
  border: 3px solid var(--gold);
  border-radius: 10px;
  display: block;
}

.directions-list h3 { margin-top: 1.4rem; }
.directions-list p { color: var(--muted); }

/* ===========================
   Facebook feed
=========================== */
.fb-feed { display: flex; justify-content: center; max-width: 100%; overflow-x: auto; margin: 0 auto; }
.feed-fallback { margin-top: 1.5rem; color: var(--muted); font-size: 0.95rem; text-align: center; }

/* ===========================
   Footer
=========================== */
footer {
  width: 100%;
  margin-top: auto;
  background: var(--navy-deep);
  color: var(--muted);
  border-top: 1px solid var(--gold-dim);
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-col h2 {
  font-size: 1rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.footer-col p { margin: 0 0 0.5rem; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; columns: 2; }
.footer-links li { padding: 3px 0; break-inside: avoid; }

.social-icons { display: flex; gap: 14px; margin-top: 0.6rem; }
.social-icons a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.social-icons svg { width: 26px; height: 26px; transition: transform 0.2s; }
.social-icons a:hover svg { transform: scale(1.15); }

.footer-bottom {
  border-top: 1px solid rgba(218, 185, 116, 0.15);
  text-align: center;
  padding: 14px 20px 18px;
  font-size: 0.9rem;
  color: var(--gold);
}

.bell-icon {
  margin-left: 6px;
  animation: ring 1.5s infinite ease-in-out;
  display: inline-block;
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(10deg); }
  75%      { transform: rotate(-10deg); }
}

/* ===========================
   Floating call button (small screens)
=========================== */
.call-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  font-size: 1rem;
}
@media (max-width: 720px) {
  .call-fab { display: inline-flex; align-items: center; gap: 8px; }
  footer { padding-bottom: 60px; }
}

/* ===========================
   Small screens
=========================== */
@media (max-width: 700px) {
  body { font-size: 1rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.45rem; }
  .panel { padding: 1.3rem; }
  .hero { padding: 36px 16px 30px; }
  .hero img.hero-logo { width: 130px; height: 130px; }
  .hero-nav { gap: 16px; }
  .nav-button { width: 92px; }
  .nav-button a { width: 78px; height: 78px; border-width: 2px; }
  .nav-button svg { width: 34px; height: 34px; }
  .button-large { font-size: 1.15rem; padding: 0.85rem 1.6rem; }
  .map-embed { height: 300px; }
  .footer-links { columns: 1; }
}

/* ===========================
   Reduced motion
=========================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- "Coming soon" holding page (site.js buildHolding) ---------- */
.holding {
  max-width: 640px;
  margin: 3rem auto 4rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.holding-logo { width: 130px; height: 130px; margin: 0 auto 1rem; display: block; }
.holding-kicker { color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .85rem; margin-bottom: .25rem; }
.holding h1 { font-family: var(--serif); color: var(--gold-bright); font-size: clamp(2rem, 6vw, 2.8rem); margin: 0 0 1rem; }
.holding-message { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.holding-links { margin-top: 2rem; border-top: 1px solid var(--gold-dim); padding-top: 1.25rem; }
.holding-links p { color: var(--muted); margin-bottom: .75rem; }
.holding .menu-text-links { justify-content: center; }
@media (max-width: 600px) {
  .holding { margin: 1.5rem 16px 3rem; padding: 2rem 1rem; }
}
