:root {
  --ink: #221711;
  --paper: #f4ead8;
  --sand: #dcc7a4;
  --rust: #a84325;
  --rust-bright: #d05835;
  --sage: #68755a;
  --night: #19120e;
  --line: rgba(34, 23, 17, 0.18);
  --white: #fff9ee;
  --shadow: 0 26px 70px rgba(27, 13, 7, 0.26);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, border 240ms ease;
}

.site-header.is-scrolled,
.menu-header {
  background: rgba(244, 234, 216, 0.9);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: currentColor;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.top-nav a,
.header-action {
  text-decoration: none;
}

.header-action {
  justify-self: end;
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 9, 0.88) 0%, rgba(20, 13, 9, 0.62) 38%, rgba(20, 13, 9, 0.08) 78%),
    linear-gradient(0deg, rgba(20, 13, 9, 0.88) 0%, rgba(20, 13, 9, 0.08) 40%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(760px, calc(100% - 36px));
  padding: 132px 0 120px clamp(18px, 6vw, 78px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 12vw, 10.2rem);
  max-width: 7.6ch;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: rgba(255, 249, 238, 0.82);
}

.hero-actions,
.menu-buttons,
.event-tabs,
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.button.primary {
  background: var(--rust-bright);
  color: var(--white);
}

.button.ghost {
  border: 1px solid rgba(255, 249, 238, 0.52);
  color: var(--white);
}

.button.ghost.dark {
  border-color: rgba(255, 249, 238, 0.24);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 42px;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: min(310px, calc(100% - 36px));
  padding: 18px;
  color: var(--white);
  background: rgba(25, 18, 14, 0.64);
  border: 1px solid rgba(255, 249, 238, 0.22);
  backdrop-filter: blur(16px);
}

.hero-card span {
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-card a {
  margin-top: 8px;
  color: #ffd6a8;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.intro-cell {
  min-height: 210px;
  padding: clamp(24px, 5vw, 58px);
  border-right: 1px solid var(--line);
  background: #eadcc3;
}

.intro-cell:last-child {
  border-right: 0;
}

.intro-cell span {
  display: block;
  margin-bottom: 36px;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--rust);
}

.intro-cell b {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.intro-cell p {
  max-width: 28ch;
  margin-bottom: 0;
  color: rgba(34, 23, 17, 0.68);
}

.split-section,
.music-section,
.patio-section,
.menu-board,
.menu-footer-cta {
  padding: clamp(58px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.section-kicker {
  color: var(--rust);
}

.menu-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  min-height: 680px;
  border: 1px solid var(--line);
  background: #eadcc3;
  box-shadow: var(--shadow);
}

.menu-photo {
  overflow: hidden;
}

.menu-photo img,
.music-photo img,
.patio-section > img,
.menu-footer-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 62px);
  border-left: 1px solid var(--line);
}

.menu-number {
  width: max-content;
  margin-bottom: 30px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rust);
  font-weight: 900;
  color: var(--rust);
}

.menu-panel h2,
.music-copy h2,
.patio-copy h2,
.menu-hero h1,
.menu-footer-cta h2 {
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.menu-panel p:not(.eyebrow),
.music-copy p:not(.eyebrow),
.patio-copy p:not(.eyebrow),
.menu-hero p,
.menu-footer-cta p {
  color: rgba(34, 23, 17, 0.7);
  font-size: 1.02rem;
  max-width: 58ch;
}

.menu-buttons {
  margin: 28px 0 22px;
}

.menu-buttons button,
.event-tabs button,
.menu-filters button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.menu-buttons button.is-selected,
.event-tabs button.is-active,
.menu-filters button.is-active {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  width: max-content;
  color: var(--rust);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.music-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
  background: var(--night);
  color: var(--white);
}

.music-copy {
  align-self: end;
  padding-bottom: 16px;
}

.music-copy p:not(.eyebrow) {
  color: rgba(255, 249, 238, 0.74);
}

.music-photo {
  min-height: 520px;
  overflow: hidden;
}

.event-board {
  grid-column: 1 / -1;
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 249, 238, 0.18);
  background: rgba(255, 249, 238, 0.04);
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.board-head > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.event-tabs button {
  border-color: rgba(255, 249, 238, 0.2);
  color: var(--white);
}

.event-tabs button.is-active {
  background: var(--white);
  color: var(--night);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.event-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 249, 238, 0.16);
  background: rgba(255, 249, 238, 0.07);
  animation: cardIn 420ms ease both;
  animation-delay: var(--delay);
}

.event-card span,
.board-card span {
  display: block;
  margin-bottom: 22px;
  color: #f2a36a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.event-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.event-card p {
  margin-bottom: 0;
  color: rgba(255, 249, 238, 0.72);
}

.patio-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #efe2cb;
}

.patio-section > img {
  min-height: 620px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-grid a {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.contact-grid span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rust);
}

.plan-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  width: min(440px, 100%);
  padding: 86px 28px 28px;
  background: var(--night);
  color: var(--white);
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.34);
  transform: translateX(105%);
  transition: transform 280ms ease;
}

.plan-panel.is-open {
  transform: translateX(0);
}

.plan-panel h2 {
  font-size: clamp(2.6rem, 10vw, 4.8rem);
}

.plan-panel p:not(.eyebrow) {
  color: rgba(255, 249, 238, 0.74);
}

.plan-panel .button {
  width: 100%;
  margin-top: 12px;
}

.panel-close {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 42px;
  border: 1px solid rgba(255, 249, 238, 0.28);
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.mobile-dock {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 238, 0.28);
  background: rgba(25, 18, 14, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.32);
}

.mobile-dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 58px;
  border-right: 1px solid rgba(255, 249, 238, 0.16);
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.mobile-dock a:last-child {
  border-right: 0;
}

.mobile-dock .dock-call {
  background: var(--rust-bright);
}

.menu-page {
  background: #efe2cb;
}

.menu-hero {
  padding: 150px clamp(18px, 6vw, 84px) 42px;
}

.menu-hero h1 {
  max-width: 12ch;
}

.menu-board {
  padding-top: 16px;
}

.menu-filters {
  margin-bottom: 22px;
}

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

.board-card {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.board-card:hover {
  transform: translateY(-4px);
}

.board-card.is-hidden {
  display: none;
}

.board-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
}

.board-card p {
  color: rgba(34, 23, 17, 0.68);
}

.note-card {
  background: var(--ink);
  color: var(--white);
}

.note-card p {
  color: rgba(255, 249, 238, 0.74);
}

.menu-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.menu-footer-cta img {
  min-height: 500px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .menu-stage,
  .music-section,
  .patio-section,
  .menu-footer-cta {
    grid-template-columns: 1fr;
  }

  .menu-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .event-list,
  .board-grid,
  .intro-band {
    grid-template-columns: 1fr;
  }

  .intro-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    padding: 18px 16px;
  }

  .brand {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .brand-mark {
    width: 20px;
    height: 20px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.66rem;
  }

  .hero-copy {
    width: 100%;
    min-height: 100dvh;
    justify-content: center;
    padding: 92px 16px 132px;
  }

  h1 {
    font-size: clamp(3.4rem, 15vw, 4.7rem);
    max-width: 8.2ch;
  }

  .hero-text {
    max-width: 30ch;
    margin-bottom: 20px;
  }

  .hero-card {
    display: none;
  }

  .split-section,
  .music-section,
  .patio-section,
  .menu-board,
  .menu-footer-cta {
    padding: 52px 16px;
  }

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

  .menu-photo {
    min-height: 320px;
  }

  .menu-panel {
    padding: 26px 18px;
  }

  .menu-panel h2,
  .music-copy h2,
  .patio-copy h2,
  .menu-hero h1,
  .menu-footer-cta h2 {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }

  .music-photo,
  .patio-section > img,
  .menu-footer-cta img {
    min-height: 360px;
  }

  .board-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-card,
  .board-card {
    min-height: 230px;
    padding: 20px;
  }

  .menu-hero {
    padding: 118px 16px 26px;
  }

  .mobile-dock {
    display: grid;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
