:root {
  --ink: #15100d;
  --charcoal: #231d19;
  --charcoal-soft: #342a24;
  --oxblood: #8f1f1d;
  --oxblood-dark: #681411;
  --brass: #c99b4a;
  --paper: #fffaf1;
  --ivory: #f6efe3;
  --olive: #586244;
  --muted: #766b5d;
  --line: rgba(35, 29, 25, 0.16);
  --shadow: 0 24px 70px rgba(21, 16, 13, 0.18);
  --display: "Newsreader", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--brass);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(21, 16, 13, 0.88);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  background: var(--paper);
  border: 1px solid rgba(201, 155, 74, 0.5);
  overflow: hidden;
}

.brand-mark img {
  width: 26px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0;
  margin-left: 10px;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.brand-line {
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle {
  justify-self: end;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  gap: 0;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 72px 0 auto;
  display: grid;
  gap: 0;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  transform: translateY(-130%);
  transition: transform 220ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
}

.site-nav a {
  padding: 17px 24px;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 250, 241, 0.1);
}

.site-nav a:hover {
  color: var(--brass);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--paper);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 50% 52%;
  z-index: -3;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(21, 16, 13, 0.9), rgba(21, 16, 13, 0.56) 45%, rgba(21, 16, 13, 0.22)),
    linear-gradient(0deg, rgba(21, 16, 13, 0.72), rgba(21, 16, 13, 0.08) 54%, rgba(21, 16, 13, 0.45));
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 160px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 0.9;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions,
.party-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--oxblood);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--oxblood-dark);
}

.button-secondary {
  background: var(--paper);
  color: var(--charcoal);
  border-color: rgba(255, 250, 241, 0.72);
}

.button-secondary:hover {
  background: #ffffff;
}

.button-secondary.on-dark {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 250, 241, 0.45);
}

.button-secondary.on-dark:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.button-quiet {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(35, 29, 25, 0.24);
}

.button-quiet:hover {
  border-color: var(--oxblood);
  color: var(--oxblood);
}

.hero-address {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 220px;
  padding: 14px 16px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  border-left: 4px solid var(--brass);
  box-shadow: var(--shadow);
}

.hero-address strong {
  font-size: 0.95rem;
}

.hero-address span {
  color: var(--muted);
  font-size: 0.82rem;
}

.essentials {
  background: var(--charcoal);
  color: var(--paper);
  border-top: 1px solid rgba(255, 250, 241, 0.12);
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
}

.essentials-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.essentials p {
  margin: 0;
  padding: 18px 0;
  color: rgba(255, 250, 241, 0.76);
  border-top: 1px solid rgba(255, 250, 241, 0.12);
}

.essentials p:first-child {
  border-top: 0;
}

.essentials strong {
  display: block;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section,
.visit-section {
  padding: 72px 0;
}

.section-inner,
.visit-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.story-section {
  background: var(--ivory);
}

.story-grid,
.parties-grid,
.happy-hour-grid {
  display: grid;
  gap: 34px;
}

.story-copy h2,
.section-heading h2,
.happy-copy h2,
.party-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.story-copy p,
.section-heading p,
.happy-copy p,
.party-copy p,
.visit-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
}

.story-media,
.party-image,
.directions-panel {
  overflow: hidden;
  border: 1px solid rgba(35, 29, 25, 0.14);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.story-media img,
.party-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.story-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.story-facts span {
  border: 1px solid rgba(143, 31, 29, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 241, 0.7);
  color: var(--oxblood);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.text-link {
  width: fit-content;
  color: var(--oxblood);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.menu-layout {
  display: grid;
  gap: 16px;
}

.menu-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fffdf7;
  box-shadow: 0 14px 34px rgba(21, 16, 13, 0.08);
}

.menu-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.menu-label {
  margin: 0 0 10px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(35, 29, 25, 0.1);
}

.menu-list strong {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.menu-card-image {
  min-height: 300px;
  padding: 0;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.happy-hour {
  padding: 72px 0;
  background:
    linear-gradient(rgba(21, 16, 13, 0.88), rgba(21, 16, 13, 0.88)),
    url("../img/long-bar-tvs.jpg") center / cover;
  color: var(--paper);
}

.happy-copy p {
  color: rgba(255, 250, 241, 0.74);
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.special {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
}

.special span {
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.special strong {
  color: var(--brass);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.parties-section {
  background: var(--ivory);
}

.party-copy a:not(.button) {
  color: var(--oxblood);
  font-weight: 800;
}

.source-note {
  padding-left: 14px;
  border-left: 3px solid var(--brass);
  font-size: 0.92rem;
}

.gallery-section {
  background: var(--charcoal);
  color: var(--paper);
}

.gallery-section .section-heading p {
  color: rgba(255, 250, 241, 0.74);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 8px;
  background: var(--ink);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.visit-section {
  background: var(--paper);
}

.visit-inner {
  display: grid;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.contact-list div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.contact-list a {
  color: var(--oxblood);
}

.hours {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  overflow: hidden;
}

.hours h3 {
  margin: 0;
  padding: 16px 18px;
  background: var(--charcoal);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.3rem;
}

.hours p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.hours span {
  color: var(--muted);
}

.hours strong {
  color: var(--ink);
}

.nearby {
  font-size: 0.92rem;
}

.directions-panel {
  display: grid;
  min-height: 420px;
  color: var(--paper);
}

.directions-panel img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
}

.directions-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
}

.directions-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.directions-copy p {
  margin: 0;
  color: rgba(255, 250, 241, 0.74);
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 250, 241, 0.72);
  border-top: 1px solid rgba(255, 250, 241, 0.12);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  gap: 8px;
}

.footer-brand {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--paper);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 74px 16px 26px;
  background: rgba(8, 6, 5, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1080px, 100%);
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border: 1px solid rgba(255, 250, 241, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-close,
.lightbox-control {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.08);
  color: var(--paper);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-control:hover {
  background: var(--paper);
  color: var(--ink);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-control {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-copy {
    font-size: 1.15rem;
  }

  .essentials-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .essentials p {
    padding: 20px 22px;
    border-top: 0;
    border-left: 1px solid rgba(255, 250, 241, 0.12);
  }

  .essentials p:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .story-copy h2,
  .section-heading h2,
  .happy-copy h2,
  .party-copy h2,
  .visit-copy h2 {
    font-size: 3rem;
  }

  .specials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 2px;
    background: transparent;
    border-bottom: 0;
    transform: none;
    transition: none;
  }

  .site-nav a {
    padding: 12px 11px;
    border-top: 0;
    font-size: 0.72rem;
  }

  .header-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 250, 241, 0.26);
    border-radius: 6px;
    padding: 10px 13px;
    color: var(--paper);
    font-size: 0.76rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header-cta:hover {
    border-color: var(--brass);
    color: var(--brass);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: 6.2rem;
  }

  .section,
  .visit-section,
  .happy-hour {
    padding: 104px 0;
  }

  .story-grid,
  .parties-grid,
  .visit-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    align-items: center;
    gap: 56px;
  }

  .parties-grid {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  }

  .happy-hour-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: 54px;
  }

  .menu-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(300px, auto);
  }

  .menu-card-image {
    grid-row: span 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 0;
    height: 100%;
  }

  .gallery-item.is-wide {
    grid-column: span 2;
  }

  .gallery-item.is-tall {
    grid-row: span 2;
  }
}

@media (min-width: 1120px) {
  .site-nav a {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.76rem;
  }

  .brand-name {
    font-size: 1.48rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 124px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-address {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .button {
    width: 100%;
  }

  .menu-list li,
  .hours p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lightbox-control {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
