:root {
  color-scheme: dark;
  --ink: #f7efe3;
  --muted: #cbbda8;
  --paper: #303130;
  --panel: #3d3f3c;
  --panel-2: #4a4d47;
  --line: rgba(247, 239, 227, 0.16);
  --gold: #d9a441;
  --green: #7fa36a;
  --red: #b95b44;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-menu-heading: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  --font-menu: "Barlow Condensed", "Source Sans 3", ui-sans-serif, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(20px, 4.5vw, 64px);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid rgba(217, 164, 65, 0.38);
  background:
    linear-gradient(180deg, rgba(24, 18, 10, 0.98), rgba(12, 10, 8, 0.92)),
    #0c0a08;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.48);
  animation: headerDrop 620ms ease-out both;
}

.brand,
.button,
.footer-links a,
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  min-width: max-content;
  border: 1px solid rgba(217, 164, 65, 0.32);
  background: rgba(247, 239, 227, 0.06);
  letter-spacing: 0;
  padding: 7px 15px 7px 10px;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.brand:hover {
  border-color: rgba(217, 164, 65, 0.58);
  background: rgba(247, 239, 227, 0.09);
  transform: translateY(-2px);
}

.brand-logo {
  width: 82px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 4px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 239, 227, 0.14);
  background: rgba(247, 239, 227, 0.06);
  padding: 0 17px;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.nav-links a:hover {
  border-color: rgba(217, 164, 65, 0.5);
  background: rgba(217, 164, 65, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
}

.header-call {
  min-height: 46px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #1b1409;
  padding: 0 20px;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-call:hover {
  box-shadow: 0 14px 30px rgba(217, 164, 65, 0.3);
  transform: translateY(-2px);
}

.button svg,
.footer-links svg,
.header-call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 84px) 96px;
}

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

.hero-image {
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.54), rgba(10, 10, 10, 0.22) 52%, rgba(10, 10, 10, 0.1)),
    linear-gradient(0deg, #121212, rgba(18, 18, 18, 0) 22%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  width: 100%;
  animation: heroRise 760ms ease-out both;
}

.hero-content {
  max-width: 800px;
}

.hero-panel {
  border: 1px solid rgba(247, 239, 227, 0.22);
  background: rgba(23, 21, 18, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: clamp(22px, 4vw, 34px);
}

.panel-list {
  display: grid;
  gap: 18px;
}

.panel-list article {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.panel-list span {
  color: var(--muted);
  font-size: 0.84rem;
}

.panel-list strong {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 11vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-logo-title {
  margin-bottom: 18px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.animated-logo {
  position: relative;
  display: inline-grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.brand-animated-logo {
  width: 82px;
  height: 74px;
  flex: 0 0 auto;
}

.hero-animated-logo {
  width: min(390px, 72vw);
  animation: logoFloat 5.4s ease-in-out infinite;
  transform-origin: center;
}

.animated-logo-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  transform-origin: center;
}

.brand-animated-logo .animated-logo-image {
  height: 100%;
  object-fit: contain;
}

.hero-logo-mark {
  opacity: 0.62;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.32));
  animation: logoGlow 4.8s ease-in-out infinite;
}

.brand:hover .brand-animated-logo,
.brand-animated-logo:hover {
  animation: nightjarLift 900ms cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

.logo-shine,
.logo-glow,
.logo-star {
  position: absolute;
  pointer-events: none;
}

.logo-shine {
  z-index: 3;
  inset: -30% -62%;
  background: linear-gradient(
    105deg,
    transparent 37%,
    rgba(255, 232, 169, 0.08) 44%,
    rgba(255, 232, 169, 0.42) 49%,
    rgba(255, 232, 169, 0.1) 54%,
    transparent 61%
  );
  mix-blend-mode: screen;
  transform: translateX(-70%) rotate(5deg);
  animation: logoShine 6.5s ease-in-out infinite;
}

.logo-glow {
  z-index: 1;
  right: 16%;
  bottom: 11%;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 190, 73, 0.42), rgba(217, 164, 65, 0.08) 54%, transparent 72%);
  filter: blur(5px);
  animation: lanternPulse 3.4s ease-in-out infinite;
}

.logo-star {
  z-index: 4;
  width: 8px;
  height: 8px;
  color: #f7d988;
  opacity: 0;
  animation: starTwinkle 3.8s ease-in-out infinite;
}

.logo-star::before,
.logo-star::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(247, 217, 136, 0.62);
}

.logo-star::before {
  width: 100%;
  height: 2px;
}

.logo-star::after {
  width: 2px;
  height: 100%;
}

.star-one {
  top: 20%;
  left: 27%;
}

.star-two {
  top: 17%;
  right: 19%;
  width: 6px;
  height: 6px;
  animation-delay: 1.2s;
}

.star-three {
  top: 36%;
  right: 31%;
  width: 7px;
  height: 7px;
  animation-delay: 2.1s;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  min-height: 48px;
  justify-content: center;
  border: 0;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: #1b1409;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(247, 239, 227, 0.1);
  color: var(--ink);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.lunch-section {
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.08), rgba(127, 163, 106, 0.1)),
    #373a36;
}

.lunch-card {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(22px, 5vw, 56px);
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(217, 164, 65, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 239, 0.92), rgba(237, 225, 202, 0.96)),
    #f2e7d2;
  color: #111923;
  box-shadow: var(--shadow);
}

.lunch-card .eyebrow {
  color: #7d551c;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  letter-spacing: 0.14em;
}

.lunch-copy h2 {
  margin-bottom: 20px;
  color: #071624;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5vw, 4.85rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.lunch-hours {
  width: fit-content;
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #071624;
  color: #f0c66b;
  font-family: var(--font-menu);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.lunch-hours span {
  display: block;
  margin-top: 6px;
  color: #fff1c9;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.lunch-tagline {
  width: fit-content;
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #596a33;
  color: #fff7e8;
  font-family: var(--font-menu);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.lunch-local {
  width: fit-content;
  margin: 0;
  padding: 12px 16px 12px 18px;
  border-left: 4px solid #d9a441;
  border-radius: 8px;
  background: rgba(89, 106, 51, 0.16);
  color: #071624;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 800;
  line-height: 1.18;
  box-shadow: inset 0 0 0 1px rgba(89, 106, 51, 0.18);
}

.lunch-local::before {
  content: "Thank you";
  display: block;
  margin-bottom: 3px;
  color: #7d551c;
  font-family: var(--font-menu);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lunch-list {
  display: grid;
  gap: 0;
}

.lunch-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 2px dashed rgba(89, 106, 51, 0.34);
}

.lunch-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.lunch-item:last-child {
  padding-bottom: 0;
}

.lunch-item-photo {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(7, 22, 36, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(7, 22, 36, 0.12);
}

.lunch-item-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-items: baseline;
}

.lunch-item-copy span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #071624;
  color: #d9a441;
  font-family: var(--font-menu);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.lunch-item h3 {
  margin: 0;
  color: #071624;
  font-family: var(--font-menu-heading);
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.lunch-item p {
  grid-column: 2;
  margin: 8px 0 0;
  color: #2f352a;
  font-size: 1.04rem;
  line-height: 1.35;
}

.lunch-item strong {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b8bc86;
  color: #071624;
  font-family: var(--font-menu);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(7, 22, 36, 0.08);
}

.lunch-addons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(170px, 0.4fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(7, 22, 36, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.14), rgba(89, 106, 51, 0.12)),
    rgba(255, 255, 255, 0.42);
  color: #24311f;
}

.lunch-addons-heading {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 6px;
  background: #071624;
  color: #fff1c9;
}

.lunch-addons-heading span {
  color: #596a33;
  font-family: var(--font-menu-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.lunch-addons-heading p {
  margin: 0;
  color: #f0c66b;
  font-family: var(--font-menu);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.lunch-addon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 10px;
}

.lunch-addon-grid p {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  min-height: 86px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(255, 250, 239, 0.72);
  box-shadow: inset 0 0 0 1px rgba(89, 106, 51, 0.14);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.1;
}

.lunch-addon-grid span {
  color: #24311f;
}

.lunch-addon-grid strong {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: #b8bc86;
  color: #071624;
  font-family: var(--font-menu);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-note {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(127, 163, 106, 0.08), rgba(17, 16, 14, 0) 320px),
    #353633;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-category {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.menu-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid rgba(217, 164, 65, 0.26);
  filter: saturate(0.92) contrast(1.04);
}

.menu-category h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-menu-heading);
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.menu-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(210px, 0.5fr) minmax(180px, 0.48fr) minmax(0, 1.18fr);
  gap: clamp(18px, 4vw, 50px);
  align-items: center;
  border-color: rgba(217, 164, 65, 0.52);
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.14), rgba(127, 163, 106, 0.08)),
    var(--panel-2);
}

.menu-featured .menu-photo {
  grid-row: 1 / span 2;
  align-self: stretch;
  height: 100%;
  min-height: 210px;
  margin-bottom: 0;
}

.menu-featured-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.88;
}

.menu-featured-heading {
  grid-row: 1 / span 2;
}

.menu-featured > .menu-note,
.menu-featured > .menu-list {
  grid-column: 3;
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-menu);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.menu-item span {
  min-width: 0;
}

.menu-note,
.event-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-note {
  font-size: 0.96rem;
  line-height: 1.35;
}

.menu-item strong {
  color: var(--green);
  font-size: 1.18rem;
  white-space: nowrap;
}

.menu-featured .menu-list {
  gap: 12px;
}

.menu-featured .menu-item {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
}

.menu-featured .menu-item strong {
  color: var(--gold);
  font-size: 0.78em;
}

.drinks-section {
  background:
    linear-gradient(180deg, rgba(217, 164, 65, 0.1), rgba(48, 49, 48, 0) 280px),
    #303130;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.drink-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.58fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.24);
  background:
    linear-gradient(180deg, rgba(247, 239, 227, 0.06), rgba(247, 239, 227, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.drink-photo {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-right: 1px solid rgba(217, 164, 65, 0.26);
  filter: saturate(0.98) contrast(1.04);
}

.drink-body {
  padding: clamp(20px, 2.4vw, 28px);
}

.drink-type {
  margin-bottom: 10px;
  color: var(--green);
  font-family: var(--font-menu);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.drink-card h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-menu-heading);
  font-size: clamp(2.45rem, 3.4vw, 3.75rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

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

.drink-menu li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.drink-menu span {
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
}

.drink-menu em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.28;
  text-transform: none;
}

.drink-menu strong {
  color: var(--gold);
  font-family: var(--font-menu-heading);
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}

.drink-note {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.drink-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.drink-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  line-height: 1.22;
}

.drink-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.specials-section {
  background:
    linear-gradient(135deg, rgba(185, 91, 68, 0.1), rgba(127, 163, 106, 0.09)),
    #343633;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 292px), 1fr));
  gap: 18px;
}

.special-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(247, 239, 227, 0.08), rgba(247, 239, 227, 0)),
    #3d3f3c;
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.4vw, 26px);
}

.special-card-feature {
  border-top-color: var(--red);
  background:
    linear-gradient(160deg, rgba(185, 91, 68, 0.18), rgba(217, 164, 65, 0.06)),
    #41433f;
}

.special-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 164, 65, 0.32);
  padding: 6px 10px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.special-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-menu-heading);
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.special-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.special-card-menu {
  display: grid;
  gap: 0;
  margin: 8px 0 16px;
  border-top: 1px solid var(--line);
}

.special-card-menu p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: clamp(1.16rem, 1.7vw, 1.38rem);
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
}

.special-card-menu span {
  min-width: 0;
}

.special-card-menu em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.28;
  text-transform: none;
}

.special-card-menu strong {
  color: var(--gold);
  font-family: var(--font-menu-heading);
  font-size: clamp(1.75rem, 2.15vw, 2.35rem);
  font-weight: 400;
  line-height: 0.85;
  white-space: nowrap;
}

.specials-subsection {
  margin-top: clamp(34px, 5vw, 64px);
}

.specials-subheading {
  max-width: 760px;
  margin-bottom: 18px;
}

.specials-subheading h3 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
}

.specials-subheading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.special-event-grid,
.specials-play-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 236px), 1fr));
  gap: 16px;
}

.special-event-card,
.special-play-card {
  min-width: 0;
  border: 1px solid rgba(217, 164, 65, 0.22);
  background:
    linear-gradient(180deg, rgba(247, 239, 227, 0.08), rgba(247, 239, 227, 0.02)),
    rgba(61, 63, 60, 0.9);
  padding: clamp(18px, 2.2vw, 24px);
}

.special-event-card-feature {
  border-color: rgba(217, 164, 65, 0.42);
  background:
    linear-gradient(150deg, rgba(217, 164, 65, 0.18), rgba(127, 163, 106, 0.1)),
    rgba(61, 63, 60, 0.96);
}

.special-event-card span {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(217, 164, 65, 0.3);
  padding: 6px 10px;
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.special-event-card h3,
.special-play-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-menu-heading);
  font-size: clamp(1.95rem, 2.7vw, 2.75rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.special-event-card p,
.special-play-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.42;
}

.specials-play {
  margin-top: clamp(24px, 3.5vw, 44px);
}

.event-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 7vw, 100px);
  background: var(--panel);
}

.event-section .section-heading {
  display: block;
  margin-bottom: 0;
}

.event-content {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.upcoming-shows {
  display: grid;
  gap: 12px;
}

.upcoming-show {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-left: 5px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(217, 164, 65, 0.12), rgba(247, 239, 227, 0.03)),
    #343633;
  padding: 16px 18px;
}

.upcoming-show time {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--red);
  color: #fff7ed;
  font-family: var(--font-menu);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.upcoming-show time span {
  font-size: 0.78rem;
}

.upcoming-show time strong {
  font-size: 1.45rem;
}

.upcoming-show h3 {
  margin: 0;
  font-family: var(--font-menu-heading);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.upcoming-show p {
  margin: 6px 0 0;
  color: var(--muted);
}

.upcoming-show > span {
  color: var(--gold);
  font-family: var(--font-menu);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.event-list time {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--red);
  color: #fff7ed;
  font-weight: 900;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.schedule-month {
  min-width: 0;
  border: 1px solid rgba(217, 164, 65, 0.3);
  background:
    linear-gradient(180deg, rgba(127, 163, 106, 0.08), rgba(17, 16, 14, 0) 120px),
    #393b38;
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.4vw, 26px);
}

.schedule-month h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-menu-heading);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 400;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.schedule-days h4 {
  margin: 0 0 9px;
  color: var(--red);
  font-family: var(--font-menu);
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-days p {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(247, 239, 227, 0.12);
  font-family: var(--font-menu);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.schedule-days time {
  color: var(--red);
  font-size: 0.9rem;
  white-space: nowrap;
}

.schedule-days span {
  min-width: 0;
  color: var(--ink);
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr) minmax(220px, 0.72fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(16px, 3vw, 28px) clamp(20px, 6vw, 84px);
  border-top: 1px solid rgba(217, 164, 65, 0.38);
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.1), rgba(127, 163, 106, 0.08)),
    #303130;
  color: var(--muted);
  animation: sectionRise 760ms ease-out both;
}

.footer strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 0.95;
}

.footer p {
  margin-bottom: 0;
}

.footer-brand img {
  width: min(88px, 36vw);
  margin-bottom: 4px;
  animation: logoFloat 5.5s ease-in-out infinite;
  transform-origin: center;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 8px;
  font-size: 0.92rem;
}

.hours-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hours-heading h2 {
  font-family: var(--font-menu-heading);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hours-heading strong {
  min-width: max-content;
  border: 1px solid rgba(217, 164, 65, 0.5);
  background: rgba(217, 164, 65, 0.14);
  color: var(--gold);
  padding: 5px 9px;
  font-family: var(--font-menu);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 7px;
  max-width: 620px;
  margin: 10px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(247, 239, 227, 0.12);
  background: rgba(247, 239, 227, 0.06);
  font-size: 0.92rem;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.hours-list div:hover {
  border-color: rgba(217, 164, 65, 0.42);
  background: rgba(217, 164, 65, 0.1);
  transform: translateX(4px);
}

.hours-list dt {
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.hours-list .late-hours {
  border-color: rgba(217, 164, 65, 0.55);
  background: rgba(217, 164, 65, 0.14);
}

.hours-list .late-hours dt,
.hours-list .late-hours dd {
  color: var(--gold);
}

.hours-note {
  margin-top: 10px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  min-height: 38px;
  justify-content: center;
  border: 1px solid rgba(217, 164, 65, 0.46);
  background: rgba(247, 239, 227, 0.08);
  color: var(--ink);
  padding: 0 12px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  border-color: rgba(217, 164, 65, 0.7);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.footer-links a:first-child {
  background: var(--gold);
  color: #1b1409;
  border-color: var(--gold);
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 72px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-panel {
    max-width: 520px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 10, 0.54), rgba(10, 10, 10, 0.24)),
      linear-gradient(0deg, #121212, rgba(18, 18, 18, 0) 28%);
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 4.45rem);
  }

  .hero-animated-logo {
    width: min(320px, 74vw);
  }

  .hero-layout,
  .intro,
  .lunch-card,
  .menu-board,
  .drink-grid,
  .specials-grid,
  .schedule-grid,
  .event-section {
    grid-template-columns: 1fr;
  }

  .drink-grid {
    grid-template-columns: 1fr;
  }

  .drink-card {
    grid-template-columns: 1fr;
  }

  .drink-photo {
    height: 220px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 164, 65, 0.26);
  }

  .lunch-copy h2 {
    max-width: 8ch;
  }

  .lunch-addons {
    grid-template-columns: 1fr;
  }

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

  .menu-featured {
    grid-template-columns: 1fr;
  }

  .menu-featured .menu-photo {
    grid-row: auto;
    min-height: 190px;
  }

  .menu-featured-heading,
  .menu-featured .menu-photo,
  .menu-featured > .menu-note,
  .menu-featured > .menu-list {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading {
    display: block;
  }

  .menu-item {
    min-height: 0;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 480px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    padding: 6px 10px 6px 7px;
  }

  .brand-animated-logo {
    width: 52px;
    height: 52px;
  }

  .brand-text {
    display: none;
  }

  .header-call {
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .header-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .menu-item {
    display: flex;
    flex-wrap: wrap;
  }

  .lunch-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lunch-item-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .lunch-item strong {
    width: auto;
    min-width: 64px;
    height: 52px;
    justify-self: start;
    padding: 0 18px;
    border-radius: 999px;
  }

  .lunch-addons {
    grid-template-columns: 1fr;
  }

  .lunch-addon-grid {
    grid-template-columns: 1fr;
  }

  .drink-grid {
    grid-template-columns: 1fr;
  }

  .menu-featured .menu-item {
    font-size: 1.35rem;
  }

  .hours-list {
    grid-template-columns: 1fr;
  }

  .hours-heading {
    display: grid;
  }

  .hours-heading strong {
    width: fit-content;
  }

  .footer-links a {
    width: 100%;
  }

  .event-list article {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .event-list time {
    width: 48px;
    height: 48px;
  }

  .schedule-days {
    grid-template-columns: 1fr;
  }

  .schedule-days p {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .upcoming-show {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .upcoming-show > span {
    grid-column: 2;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-3px) rotate(-0.6deg);
  }
}

@keyframes nightjarLift {
  0% {
    filter: drop-shadow(0 0 0 rgba(217, 164, 65, 0));
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  28% {
    filter: drop-shadow(0 12px 18px rgba(217, 164, 65, 0.28));
    transform: translate(10px, -11px) rotate(-7deg) scale(1.08);
  }

  56% {
    filter: drop-shadow(0 16px 24px rgba(217, 164, 65, 0.2));
    transform: translate(-7px, -5px) rotate(5deg) scale(1.04);
  }

  78% {
    filter: drop-shadow(0 8px 14px rgba(217, 164, 65, 0.16));
    transform: translate(3px, -2px) rotate(-2deg) scale(1.02);
  }

  100% {
    filter: drop-shadow(0 0 0 rgba(217, 164, 65, 0));
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.32));
  }

  50% {
    opacity: 0.72;
    transform: translateY(-5px) scale(1.015);
    filter: drop-shadow(0 18px 30px rgba(217, 164, 65, 0.24));
  }
}

@keyframes logoShine {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-70%) rotate(5deg);
  }

  34% {
    opacity: 1;
  }

  48%,
  100% {
    opacity: 0;
    transform: translateX(72%) rotate(5deg);
  }
}

@keyframes lanternPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.1);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }

  38%,
  54% {
    opacity: 0.95;
    transform: scale(1) rotate(45deg);
  }
}

@keyframes sectionRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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