:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0c0908;
  --charcoal: #17110f;
  --lacquer: #641822;
  --red: #9f302c;
  --gold: #d0a04f;
  --jade: #6f816d;
  --bone: #f3ead8;
  --muted: #b6aa97;
  --line: rgba(243, 234, 216, 0.16);
  --line-strong: rgba(208, 160, 79, 0.32);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(159, 48, 44, 0.22), transparent 31rem),
    radial-gradient(circle at 84% 20%, rgba(111, 129, 109, 0.15), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #120d0b 52%, #050505 100%);
  color: var(--bone);
  font-family: var(--sans);
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  background: var(--bone);
  color: var(--ink);
  padding: 12px 16px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(243, 234, 216, 0.1);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(208, 160, 79, 0.64);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.brand small {
  display: block;
  color: rgba(243, 234, 216, 0.56);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(243, 234, 216, 0.72);
  font-size: 0.88rem;
}

.desktop-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

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

.header-actions,
.hero-actions,
.visit-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.gold-action,
.dark-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.gold-action {
  background: var(--gold);
  border-color: var(--gold);
  color: #130d08;
}

.gold-action:hover {
  background: #e7bd6a;
}

.dark-action,
.ghost-action {
  background: rgba(5, 5, 5, 0.44);
  color: var(--bone);
}

.dark-action:hover,
.ghost-action:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.large {
  min-height: 50px;
  padding-inline: 22px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.48);
  color: var(--bone);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  z-index: 45;
  inset: 84px 16px auto;
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

.mobile-nav.is-open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 13px 12px;
  color: rgba(243, 234, 216, 0.78);
  border-bottom: 1px solid rgba(243, 234, 216, 0.08);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 82px) 58px;
  border-bottom: 1px solid var(--line);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.86) contrast(1.1) brightness(0.74);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.28) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95), transparent 45%),
    radial-gradient(circle at 25% 26%, rgba(208, 160, 79, 0.18), transparent 21rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 8.4vw, 7.6rem);
  line-height: 0.9;
}

.hero-subtitle {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(243, 234, 216, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 70px);
  bottom: 30px;
  display: grid;
  gap: 6px;
  width: min(310px, calc(100vw - 36px));
  padding: 20px 22px;
  border-left: 1px solid var(--line-strong);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0));
}

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

.hero-panel a {
  color: var(--bone);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 9, 8, 0.96);
}

.quick-info a {
  min-height: 122px;
  padding: 28px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.quick-info a:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 800;
}

.quick-info strong {
  font-family: var(--serif);
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  font-weight: 400;
}

.story-section,
.menu-section,
.visit-section {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 82px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding-block: clamp(68px, 8vw, 108px);
  background:
    linear-gradient(90deg, rgba(100, 24, 34, 0.22), transparent 58%),
    var(--ink);
}

.story-section h2,
.menu-heading h2,
.visit-main h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.96;
}

.story-section p:last-child {
  margin-bottom: 0;
  color: rgba(243, 234, 216, 0.72);
  max-width: 630px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.75;
}

.story-section h2 {
  max-width: 980px;
  font-size: clamp(2.15rem, 4.2vw, 4.15rem);
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.showcase article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #050505;
}

.showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.72);
  transition: transform 500ms ease, filter 500ms ease;
}

.showcase article:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.86);
}

.showcase div {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
}

.showcase span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase h3 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(111, 129, 109, 0.12), transparent 32rem),
    #080706;
}

.menu-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.menu-search {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--bone);
}

.menu-search input::placeholder {
  color: rgba(243, 234, 216, 0.36);
}

.category-nav {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  margin-bottom: 28px;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(16px);
  border-block: 1px solid var(--line);
}

.category-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 234, 216, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-button:hover,
.category-button.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-grid {
  display: grid;
  gap: 36px;
}

.menu-category {
  scroll-margin-top: 150px;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  gap: clamp(24px, 5vw, 64px);
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.category-intro {
  align-self: start;
  position: sticky;
  top: 152px;
}

.category-intro h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.category-intro p {
  color: rgba(243, 234, 216, 0.62);
}

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

.menu-item {
  min-height: 148px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(243, 234, 216, 0.12);
}

.item-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
}

.menu-item h4 {
  margin: 0;
  color: var(--bone);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 400;
  line-height: 1.08;
}

.price {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.menu-item p {
  margin: 12px 0 0;
  color: rgba(243, 234, 216, 0.62);
  font-size: 0.92rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tag {
  padding: 4px 8px;
  border: 1px solid rgba(208, 160, 79, 0.25);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(32px, 7vw, 92px);
  background:
    linear-gradient(120deg, rgba(100, 24, 34, 0.28), rgba(5, 5, 5, 0.2) 46%),
    var(--black);
  border-top: 1px solid var(--line);
}

.visit-main h2 {
  max-width: 780px;
}

.visit-actions {
  margin-top: 34px;
}

.hours-card {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.hours-card h3 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 1.9rem;
}

.hours-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(243, 234, 216, 0.1);
}

.hours-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-row dt,
.hours-row dd {
  margin: 0;
}

.hours-row dt {
  color: var(--bone);
}

.hours-row dd {
  color: var(--muted);
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 82px);
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.site-footer span,
.footer-links a {
  color: rgba(243, 234, 216, 0.62);
}

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

.site-disclaimer {
  grid-column: 1 / -1;
  justify-self: end;
  max-width: 620px;
  margin: 0;
  color: rgba(243, 234, 216, 0.42);
  font-size: 0.76rem;
  line-height: 1.6;
  text-align: right;
}

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

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .hero {
    min-height: 84svh;
    align-items: end;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.48)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.25) 62%, transparent);
  }

  .hero-panel {
    position: relative;
    inset: auto;
    margin-top: 34px;
  }

  .quick-info,
  .showcase,
  .items-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-section,
  .menu-heading,
  .menu-category,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .category-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 80svh;
    padding-inline: 18px;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .hero-panel {
    display: none;
  }

  .gold-action,
  .dark-action,
  .ghost-action {
    width: 100%;
  }

  .quick-info,
  .showcase,
  .items-grid {
    grid-template-columns: 1fr;
  }

  .quick-info a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-section,
  .menu-section,
  .visit-section {
    padding-inline: 18px;
  }

  .showcase article {
    min-height: 310px;
  }

  .category-nav {
    top: 70px;
    margin-inline: -18px;
    padding-left: 18px;
  }

  .item-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-row dd {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-disclaimer {
    justify-self: start;
    text-align: left;
  }
}
