:root {
  --ink: #f8f3e8;
  --muted: #c6bbab;
  --subtle: #8e8375;
  --bg: #0b0b0a;
  --panel: #161411;
  --panel-2: #201d18;
  --gold: #d5ad67;
  --gold-2: #f0d19a;
  --line: rgba(248, 243, 232, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 173, 103, 0.12), transparent 32rem),
    linear-gradient(180deg, #090908 0%, #11100e 46%, #080807 100%);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(10, 10, 9, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #11100e;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 50%;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.header-call:hover {
  color: var(--gold-2);
}

.header-call {
  color: var(--gold-2);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  padding: 8rem clamp(1rem, 5vw, 4rem) 3rem;
  align-items: end;
}

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

.hero-image {
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.82) contrast(1.02) brightness(0.72);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.58) 45%, rgba(8, 8, 7, 0.32)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.96), transparent 52%);
}

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

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

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

h1 {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #11100e;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: 3rem;
  width: min(340px, calc(100% - 2rem));
  padding: 1.35rem;
  background: rgba(22, 20, 17, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-card strong {
  display: block;
  margin: 0.55rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.hero-card p,
.dish-card p,
.intro p,
.contact-panel p,
.location-copy p,
.note {
  color: var(--muted);
  line-height: 1.65;
}

.band,
.menu-section,
.pricing-section,
.location-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 2rem;
  align-items: end;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 0;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dish-card {
  min-height: 410px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.dish-card.wide {
  grid-column: span 2;
}

.dish-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.dish-card div {
  padding: 1.2rem;
}

.full-menu {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.menu-panel,
.price-panel {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  background: rgba(11, 11, 10, 0.56);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.panel-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.panel-title.lower {
  margin-top: 1.4rem;
}

.panel-title h3,
.station-panel h3,
.price-panel h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.panel-title span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.menu-list.multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.1rem;
}

.menu-list li {
  position: relative;
  padding-left: 0.9rem;
  line-height: 1.45;
}

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

.tag {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 800;
}

.station-panel {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(213, 173, 103, 0.16), rgba(11, 11, 10, 0.7)),
    var(--panel-2);
}

.station-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-section {
  background: #0a0a09;
}

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

.price-panel {
  background: var(--panel);
}

.price-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  line-height: 1.35;
}

.price-list dd {
  color: var(--gold-2);
  white-space: nowrap;
}

.details {
  background:
    linear-gradient(rgba(11, 11, 10, 0.82), rgba(11, 11, 10, 0.9)),
    url("assets/dining-room.jpg") center/cover;
  border-block: 1px solid var(--line);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 2rem;
}

.hours-panel,
.contact-panel,
.location-copy {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(22, 20, 17, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.phone-link {
  display: inline-block;
  margin: 0.4rem 0 1rem;
  color: var(--gold-2);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-family: Georgia, "Times New Roman", serif;
}

.location-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.map {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: grayscale(0.95) invert(0.9) contrast(0.9);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  color: var(--subtle);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

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

  .hero {
    min-height: 860px;
  }

  .hero-card {
    left: clamp(1rem, 5vw, 4rem);
    right: auto;
  }

  .intro,
  .detail-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 0.8rem 1rem;
  }

  .brand span:last-child {
    max-width: 170px;
    font-size: 0.92rem;
  }

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

  .header-call {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 830px;
    padding: 6.5rem 1rem 2rem;
    align-items: center;
  }

  .hero-image {
    object-position: center top;
  }

  .hero-content {
    padding-bottom: 10rem;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    bottom: 1rem;
    left: 1rem;
  }

  .band,
  .menu-section,
  .pricing-section,
  .location-section {
    padding: 3.25rem 1rem;
  }

  .dish-grid,
  .menu-columns,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .dish-card,
  .dish-card.wide,
  .menu-panel.large {
    grid-column: auto;
    min-height: auto;
  }

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

  .panel-title,
  .price-list div {
    align-items: flex-start;
  }

  .dish-card img {
    height: 225px;
  }

  .hours-list div,
  .footer {
    display: block;
  }

  dd {
    margin-top: 0.25rem;
    text-align: left;
  }

  .map {
    min-height: 360px;
  }

  .footer p + p {
    margin-top: 0.5rem;
  }
}
