:root {
  --mahogany: #2a1810;
  --wood: #3d2317;
  --forest: #1a3a2a;
  --forest-deep: #0f2418;
  --cream: #f3e6d0;
  --cream-soft: #e8d4b5;
  --gold: #c9a227;
  --gold-soft: #e0c56a;
  --pub-red: #8b1e1e;
  --brass: #b8956c;
  --ink: #1a100c;
  --muted: #a89078;
  --glass: rgba(243, 230, 208, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-sign: "Cormorant Garamond", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(180deg, var(--forest-deep) 0%, var(--mahogany) 40%, var(--ink) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
}

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

a { color: var(--gold-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cream); }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(15, 36, 24, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: flex-end;
}
.nav a {
  color: var(--cream-soft);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav a:hover, .nav a:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 36, 24, 0.35) 0%, rgba(26, 16, 12, 0.15) 35%, rgba(26, 16, 12, 0.88) 100%),
    radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.18), transparent 40%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 0.75rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}
.tagline {
  font-family: var(--font-sign);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  color: var(--cream-soft);
  margin: 0 0 1.5rem;
  max-width: 32ch;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-primary:hover { color: var(--ink); }
.btn-ghost {
  background: rgba(243, 230, 208, 0.08);
  border-color: rgba(243, 230, 208, 0.35);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(243, 230, 208, 0.16); color: var(--cream); }

.section {
  padding: 4.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 0.5rem;
  color: var(--cream);
}
.section-head p {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.divider {
  width: 64px;
  height: 3px;
  margin: 0.9rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 999px;
}

.about-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 0.95fr 1.05fr; }
}
.about-photos {
  display: grid;
  gap: 1rem;
}
.about-photos .frame img {
  aspect-ratio: 5 / 4;
}
.about-photos .frame:nth-child(2) img {
  object-position: center 35%;
}
.about-photos .frame:nth-child(3) img {
  object-position: center 45%;
}
@media (max-width: 799px) {
  .about-photos .frame:nth-child(n+3) {
    display: none;
  }
}
.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 149, 108, 0.35);
  align-self: start;
}
.frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}
.about-copy {
  background: var(--glass);
  border: 1px solid rgba(243, 230, 208, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  line-height: 1.7;
}
.about-copy p {
  color: var(--cream-soft);
  margin: 0 0 1.05rem;
  max-width: 42rem;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-copy .about-closer {
  font-family: var(--font-sign);
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-top: 1.35rem;
  margin-bottom: 0;
}
.pull-quote {
  font-family: var(--font-sign);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 0.35rem 0 0.35rem 1rem;
  margin: 1.35rem 0 1.45rem;
}

.menu-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
.menu-card {
  background: linear-gradient(160deg, rgba(61, 35, 23, 0.85), rgba(15, 36, 24, 0.75));
  border: 1px solid rgba(184, 149, 108, 0.3);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.1rem;
  box-shadow: var(--shadow);
}
.menu-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-card h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.5), transparent);
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(243, 230, 208, 0.15);
  color: var(--cream-soft);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list .name { font-weight: 600; }
.menu-list .note {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.gallery {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; }
  .gallery .tall { grid-column: span 2; grid-row: span 2; }
}
.gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 108, 0.35);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery .tall img {
  aspect-ratio: 4 / 3;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 800px) {
  .gallery .tall img { aspect-ratio: auto; }
}
.gallery a:hover img, .gallery a:focus-visible img {
  transform: scale(1.04);
}

.rules {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .rules { grid-template-columns: repeat(3, 1fr); }
}
.rule {
  background: rgba(139, 30, 30, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius);
  padding: 1.35rem;
  text-align: center;
}
.rule .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.35rem;
}
.rule h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-sign);
  font-size: 1.35rem;
}
.rule p { margin: 0; color: var(--muted); font-size: 0.98rem; }

.hours-banner {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(26, 58, 42, 0.6), rgba(61, 35, 23, 0.7));
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.hours-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
}

.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
}
.site-footer .mark {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}
.site-footer .mark span { color: var(--gold); }

@media (max-width: 640px) {
  .nav { gap: 0.25rem 0.75rem; }
  .nav a { font-size: 0.78rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

.welcome-line {
  font-family: var(--font-sign);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: var(--gold-soft);
  margin: 0 0 0.35rem;
  font-weight: 600;
}
.welcome-sub {
  margin: 0 0 1.1rem;
  color: var(--cream-soft);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 36ch;
  font-style: italic;
}
.featured-brew {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  max-width: 1100px;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(139, 30, 30, 0.35), rgba(26, 58, 42, 0.55)),
    rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow);
}
.featured-brew .badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-soft);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.featured-brew h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--cream);
}
.featured-brew p {
  margin: 0.35rem 0 0;
  color: var(--cream-soft);
  max-width: 42ch;
}
.featured-brew .pour {
  font-family: var(--font-sign);
  font-size: 1.2rem;
  color: var(--gold-soft);
  white-space: nowrap;
}
.menu-list li.highlight {
  background: rgba(201, 162, 39, 0.12);
  margin: 0 -0.6rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}
.menu-list li.highlight .name {
  color: var(--gold-soft);
}

/* Events */
.page-hero {
  padding: 3.5rem 1.5rem 1.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin: 0 0 0.6rem;
}
.page-hero p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 42ch;
}
.events-list {
  list-style: none;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  max-width: 720px;
  display: grid;
  gap: 1.1rem;
}
.event-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: start;
  background: linear-gradient(160deg, rgba(61, 35, 23, 0.85), rgba(15, 36, 24, 0.75));
  border: 1px solid rgba(184, 149, 108, 0.3);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  box-shadow: var(--shadow);
}
.event-date {
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 12px;
  padding: 0.65rem 0.4rem;
}
.event-date .month {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
}
.event-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--cream);
}
.event-date .year {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.event-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--gold-soft);
}
.event-card .when {
  margin: 0 0 0.45rem;
  color: var(--cream-soft);
  font-weight: 600;
  font-size: 0.95rem;
}
.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.event-card.tbc .event-date .day {
  font-size: 1.15rem;
  padding: 0.35rem 0;
}
.event-card.nye {
  border-color: rgba(201, 162, 39, 0.55);
  background: linear-gradient(160deg, rgba(139, 30, 30, 0.35), rgba(15, 36, 24, 0.8));
}

/* Members gate */
.gate, .members-only {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.gate-card, .members-panel {
  background: linear-gradient(160deg, rgba(61, 35, 23, 0.9), rgba(15, 36, 24, 0.85));
  border: 1px solid rgba(184, 149, 108, 0.35);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.gate-card h1, .members-panel h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.9rem;
}
.gate-card p, .members-panel p { color: var(--cream-soft); }
.gate label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.25rem 0 0.45rem;
  font-weight: 700;
}
.gate input[type="password"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  font-size: 1rem;
  font-family: inherit;
}
.gate input[type="password"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gate .btn { margin-top: 1rem; width: 100%; border: none; cursor: pointer; }
.gate .error {
  color: #f0a0a0;
  margin: 0.75rem 0 0;
  min-height: 1.3em;
  font-size: 0.95rem;
}
.members-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--cream-soft);
}
.members-panel .logout {
  margin-top: 1.5rem;
  display: inline-flex;
}
.hidden { display: none !important; }
.nav a[aria-current="page"] { color: var(--gold-soft); }

/* Members forms + reviews */
.members-wide {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.members-wide .members-panel { margin-bottom: 1.5rem; }
.member-forms {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .member-forms { grid-template-columns: 1fr 1fr; }
}
.member-form {
  background: linear-gradient(160deg, rgba(61, 35, 23, 0.9), rgba(15, 36, 24, 0.85));
  border: 1px solid rgba(184, 149, 108, 0.35);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.member-form h2 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
  color: var(--gold-soft);
}
.member-form .hint {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.member-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0.85rem 0 0.35rem;
}
.member-form input,
.member-form select,
.member-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  font: inherit;
}
.member-form textarea { resize: vertical; min-height: 6rem; }
.member-form input[type="file"] {
  padding: 0.55rem;
  font-size: 0.9rem;
}
.member-form .btn { margin-top: 1rem; width: 100%; border: none; cursor: pointer; }
.form-status { min-height: 1.3em; margin: 0.75rem 0 0; font-size: 0.95rem; }
.form-status.ok { color: #b7e0a8; }
.form-status.bad { color: #f0a0a0; }
.members-note {
  margin: 1.5rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.members-wide .logout { margin-top: 0.5rem; }

.reviews-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  gap: 1rem;
}
.review-card {
  background: linear-gradient(160deg, rgba(61, 35, 23, 0.85), rgba(15, 36, 24, 0.75));
  border: 1px solid rgba(184, 149, 108, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}
.review-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.review-card .stars { color: var(--gold-soft); letter-spacing: 0.05em; }
.review-card p { margin: 0 0 0.65rem; color: var(--cream-soft); }
.review-card time { color: var(--muted); font-size: 0.85rem; }
.reviews-empty {
  text-align: center;
  color: var(--muted);
  padding: 1rem 1.5rem 3rem;
}

.reviews-teaser {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .reviews-teaser { grid-template-columns: 1fr 1fr; }
  .reviews-teaser .teaser-more { grid-column: 1 / -1; }
}
.teaser-card {
  margin: 0;
  background: rgba(243, 230, 208, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.teaser-card .stars { color: var(--gold-soft); margin-bottom: 0.4rem; }
.teaser-card p { margin: 0 0 0.6rem; color: var(--cream-soft); font-family: var(--font-sign); font-size: 1.15rem; }
.teaser-card cite { color: var(--muted); font-style: normal; font-size: 0.9rem; }
.teaser-more { text-align: center; margin: 0.25rem 0 0; }
.teaser-empty { text-align: center; color: var(--muted); grid-column: 1 / -1; }

.gallery a.member-snap {
  position: relative;
}
.gallery a.member-snap .snap-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.45rem 0.6rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--cream);
  font-size: 0.78rem;
}

/* Reservations */
.spaces-left { margin-top: .75rem; font-weight: 700; color: var(--gold-soft); }
.spaces-left.full { color: #f0a0a0; }
.spaces-left.low { color: #f0c070; }
.spaces-meta { font-weight: 500; color: var(--muted); font-size: .9em; }
.reserve-hint, .events-footnote { color: var(--muted); font-size: .92rem; margin: .35rem 0 0; }
.events-footnote { text-align: center; padding: 0 1.5rem 3rem; }
.reserve-grid { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 700px) { .reserve-grid { grid-template-columns: 1fr 1fr; } }
.reserve-card { background: rgba(0,0,0,.22); border: 1px solid rgba(201,162,39,.28); border-radius: 12px; padding: 1rem; }
.reserve-card h3 { font-family: var(--font-display); margin: 0 0 .35rem; font-size: 1.2rem; color: var(--gold-soft); }
.reserve-card .btn { width: 100%; margin-top: .75rem; border: none; cursor: pointer; }
.reserve-card .btn:disabled { opacity: .55; cursor: not-allowed; }
#member-reservations > h2 { font-family: var(--font-display); color: var(--gold-soft); margin: 0 0 .4rem; }
#member-reservations > .hint { margin: 0 0 .75rem; color: var(--muted); }
#member-reservations > label { display: block; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin: .5rem 0 .35rem; }
#member-reservations > input { width: 100%; padding: .75rem .9rem; border-radius: 10px; border: 1px solid rgba(201,162,39,.35); background: rgba(0,0,0,.35); color: var(--cream); font: inherit; box-sizing: border-box; }

/* Drink thumbs on ales list */
.menu-list li.drink-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.menu-list li.drink-row .drink-text {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.drink-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  background: #111;
}
.menu-list li.highlight.drink-row {
  align-items: center;
}

/* Gallery lightbox */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox.hidden { display: none; }
.lightbox-frame {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  max-width: min(96vw, 1100px);
  max-height: 80vh;
  text-align: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.lightbox-cap {
  margin-top: 0.75rem;
  color: var(--cream-soft);
  font-size: 0.95rem;
}
.lightbox-count {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(26, 58, 42, 0.85);
  color: var(--cream);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(201, 162, 39, 0.35); color: #fff; }
.lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
}
.lightbox-prev { grid-column: 1; grid-row: 2; }
.lightbox-next { grid-column: 3; grid-row: 2; }
@media (max-width: 640px) {
  .lightbox { grid-template-columns: 1fr; grid-template-rows: auto auto 1fr auto auto; }
  .lightbox-prev, .lightbox-next { grid-column: 1; }
  .lightbox-prev { grid-row: 4; justify-self: start; }
  .lightbox-next { grid-row: 4; justify-self: end; }
  .lightbox-frame { grid-column: 1; grid-row: 3; }
  .lightbox-close { grid-column: 1; }
  .lightbox-count { grid-row: 5; }
}
