:root {
  color-scheme: dark;
  --ink: #f8efd8;
  --muted: #cdbf9a;
  --paper: #090806;
  --panel: #11100d;
  --panel-2: #18140d;
  --gold: #d3a329;
  --gold-soft: #f0c453;
  --copper: #a9692f;
  --cream: #fff7df;
  --line: rgba(211, 163, 41, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(4, 3, 2, 0.86), rgba(4, 3, 2, 0));
}

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

.brand img {
  width: 128px;
  height: 62px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 247, 223, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  border: 1px solid rgba(240, 196, 83, 0.55);
  background: rgba(17, 16, 13, 0.44);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 146px clamp(18px, 6vw, 84px) 72px;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 2, 0.9), rgba(5, 4, 2, 0.62) 47%, rgba(5, 4, 2, 0.22)),
    linear-gradient(0deg, rgba(5, 4, 2, 0.82), rgba(5, 4, 2, 0.06) 58%);
  z-index: -1;
}

.hero-content {
  width: min(830px, 100%);
  color: white;
}

.hero-logo {
  width: min(220px, 48vw);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.38));
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7.1vw, 92px);
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy {
  width: min(650px, 100%);
  color: rgba(255, 247, 223, 0.88);
  font-size: clamp(18px, 2.3vw, 24px);
}

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

.button.primary {
  background: var(--gold);
  color: #100d08;
}

.button.secondary {
  border: 1px solid rgba(240, 196, 83, 0.55);
  color: white;
  background: rgba(10, 8, 5, 0.26);
}

.rating-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 42px;
  display: grid;
  gap: 2px;
  width: 190px;
  padding: 20px;
  border: 1px solid rgba(240, 196, 83, 0.42);
  border-radius: 8px;
  color: white;
  background: rgba(10, 8, 5, 0.62);
  backdrop-filter: blur(16px);
}

.rating-score {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.1;
}

.stars {
  color: var(--gold-soft);
  font-size: 16px;
  letter-spacing: 0;
}

.rating-panel small {
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #0d0b08;
}

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

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

.quick-info span,
.quick-info strong {
  display: block;
}

.quick-info span {
  color: var(--muted);
  font-size: 13px;
}

.quick-info strong {
  margin-top: 8px;
  font-size: 18px;
}

.section-band,
.story-section,
.menu-section,
.reviews-section,
.visit-section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 900px);
  gap: clamp(24px, 6vw, 80px);
  background: linear-gradient(135deg, #171109, #241a0d);
  border-bottom: 1px solid var(--line);
}

.intro p,
.experience p,
.visit-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  background:
    radial-gradient(circle at 16% 24%, rgba(211, 163, 41, 0.16), transparent 34%),
    #0d0b08;
  border-bottom: 1px solid var(--line);
}

.story-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(240, 196, 83, 0.46);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.22));
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.story-copy {
  max-width: 820px;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.menu-section {
  background:
    radial-gradient(circle at top right, rgba(211, 163, 41, 0.15), transparent 34%),
    var(--paper);
}

.menu-heading {
  margin-bottom: 28px;
}

.menu-cover {
  width: min(760px, 100%);
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

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

.menu-page {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.menu-page.large {
  grid-column: span 2;
}

.menu-page img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.menu-page span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(240, 196, 83, 0.34);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--cream);
  font-size: 13px;
  font-weight: 850;
}

.experience {
  background: #1f160b;
  color: white;
  border-block: 1px solid var(--line);
}

.experience .section-label,
.experience .feature-list strong {
  color: var(--gold-soft);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

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

.feature-list p {
  margin: 0;
  color: rgba(255, 247, 223, 0.78);
}

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

blockquote {
  min-height: 218px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

blockquote p {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.25;
}

cite {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 800;
}

.google-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #15110c, #22180b);
}

.google-panel p {
  margin: 4px 0 0;
  color: var(--muted);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 8vw, 110px);
  align-items: center;
  background: #0d0b08;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-list a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  font-weight: 800;
}

.visit-card {
  min-height: 520px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(160deg, rgba(17, 16, 13, 0.96), rgba(60, 37, 12, 0.9)),
    repeating-linear-gradient(45deg, rgba(240, 196, 83, 0.1), rgba(240, 196, 83, 0.1) 1px, transparent 1px, transparent 18px);
  box-shadow: var(--shadow);
}

.visit-logo {
  width: min(260px, 100%);
}

.visit-card span {
  color: rgba(255, 247, 223, 0.74);
  font-weight: 800;
}

.visit-card strong {
  display: block;
  margin: 8px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.1;
}

.visit-card p {
  margin: 0;
  color: rgba(255, 247, 223, 0.84);
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .menu-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 106px;
    height: 52px;
  }

  .hero {
    min-height: 86svh;
    padding-top: 116px;
    padding-bottom: 150px;
  }

  .rating-panel {
    left: 18px;
    right: auto;
    bottom: 28px;
  }

  .quick-info,
  .review-grid,
  .intro,
  .story-section,
  .experience-grid,
  .visit-section {
    grid-template-columns: 1fr;
  }

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

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

  .quick-info div:last-child,
  .quick-info a:last-child {
    border-bottom: 0;
  }

  .google-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-logo {
    width: 168px;
  }

  .hero-actions,
  .contact-list,
  footer {
    flex-direction: column;
  }

  .button,
  .contact-list a {
    width: 100%;
  }

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

  .menu-page.large {
    grid-column: span 1;
  }

  .menu-page,
  blockquote {
    min-height: auto;
  }

  .menu-page img {
    min-height: auto;
  }

  .visit-card {
    min-height: 460px;
  }
}
