:root {
  --black: #060605;
  --gold: #c9a24b;
  --gold-light: #e9d8a6;
  --cream: #ece4d3;
  --line: rgba(201, 162, 75, 0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.7;
}

h2 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* header / nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.5rem 0;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.site-header-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold-light);
  font-size: 1.05rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-bottom 0.4s ease;
}

.site-header.scrolled .site-header-title {
  max-height: 2.5rem;
  opacity: 1;
  margin-bottom: 1rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.nav a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav a:hover { color: var(--gold-light); }

/* hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.logo {
  width: min(600px, 85vw);
  height: auto;
  /*filter: drop-shadow(0 0 30px rgba(201, 162, 75, 0.15));*/
}

.logosm {
  width: min(150px, 85vw);
  height: auto;
  /*filter: drop-shadow(0 0 30px rgba(201, 162, 75, 0.15));*/
}


.tagline {
  margin-top: 0;
  color: var(--gold);
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.tagline-break {
  display: none;
}

.ornament-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin-bottom: 2rem;
}

.ornament-line.bottom {
  background: linear-gradient(to top, transparent, var(--gold));
  margin-top: 2rem;
  margin-bottom: 0;
}

.visit .ornament-line.top {
  margin: 0 auto 2rem;
}

/* A simple, subtle divider used consistently before every section: a
   full-width hairline with a small diamond centered on it, echoing the
   diamond in the logo. */
.deco-divider {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 3rem 0;
  padding: 0 2rem;
  box-sizing: border-box;
}

.deco-divider-line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}

.deco-divider-diamond {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin: 0 1rem;
  background: var(--gold);
  transform: rotate(45deg);
}

/* about */
.about {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.section-frame {
  max-width: 620px;
  text-align: center;
  padding: 3rem 1rem;
}

.section-frame h2 { margin-bottom: 1.5rem; }

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 2rem auto -61px;
}

.hours {
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* gallery */
.gallery {
  padding: 4rem 2rem 6rem;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  appearance: none;
  font: inherit;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.gallery-item:focus-visible {
  outline: 1px solid var(--gold-light);
  outline-offset: 2px;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 6, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--gold-light);
}

/* menu */
.menu {
  padding: 4rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-print-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.menu-print-link:hover {
  color: var(--gold-light);
}

.menu-frame {
  width: 100%;
  max-width: 700px;
  height: 80vh;
  max-height: 900px;
  padding: 1.5rem 1.25rem;
  background: #0c0c0a;
  box-shadow: 0 0 40px rgba(201, 162, 75, 0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
}

.menu-frame .status-message {
  text-align: center;
  color: var(--cream);
  padding: 2rem 1rem;
}

/* The widget's own bar name/logo/last-updated header would just duplicate
   this page's own "Menu" heading and branding above the frame. */
.menu-frame .display-header { display: none; }

.menu-frame .category { margin-bottom: 2rem; }
.menu-frame .category:last-child { margin-bottom: 0; }

.menu-frame .category-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}

.menu-frame .category-header h2 {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.menu-frame .category-desc {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--cream);
  opacity: 0.75;
  text-align: center;
}

.menu-frame .beer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.menu-frame .beer-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.menu-frame .beer-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-frame .beer-image {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  background: #16160f;
  border: 1px solid var(--line);
}

.menu-frame .beer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-frame .beer-name {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 0;
}

.menu-frame .beer-brewery {
  margin: 0.25rem 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
}

.menu-frame .beer-style {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9c9484;
}

.menu-frame .beer-desc {
  margin: 0.5rem 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--cream);
}

.menu-frame .desc-toggle {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-frame .desc-toggle:hover,
.menu-frame .desc-toggle:focus-visible {
  color: var(--gold-light);
}

.menu-frame .beer-stats-prices {
  margin: 0.5rem 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  font-size: 0.78rem;
}

.menu-frame .beer-stat { color: #9c9484; }
.menu-frame .beer-price { color: var(--gold-light); font-weight: 600; }
.menu-frame .beer-price .price-label { font-weight: 400; color: #9c9484; margin-right: 0.2rem; }

/* footer */
.visit {
  padding: 5rem 2rem 3rem;
  text-align: center;
  color: var(--cream);
}

.visit p { margin: 0.3rem 0; }

.visit a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.visit a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--gold);
  display: inline-flex;
  transition: color 0.3s ease;
}

.social-links a:hover { color: var(--gold-light); }

.knock {
  margin-top: 1rem;
  color: var(--gold);
  font-style: italic;
  font-size: 0.95rem;
}

.copyright {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #5a5344;
}

/* responsive */
@media (max-width: 640px) {
  .nav { gap: 1.5rem; }
  .nav a { font-size: 0.75rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .menu-frame { height: 70vh; }
  .tagline-break { display: inline; }
  .about-photo { max-width: 260px; }
  .about { padding: 6rem 2.5rem; }
  .section-frame { padding: 3rem 1.5rem; }
}

h1 {margin-bottom:0}
