:root {
  --bg: #fff8ef;
  --ink: #221713;
  --muted: #6f5d54;
  --red: #7b1113;
  --red-deep: #3a0808;
  --gold: #f3b91f;
  --gold-soft: #ffe7a1;
  --cream: #fff8ef;
  --paper: #fffdf8;
  --line: rgba(60, 25, 20, 0.14);
  --shadow: 0 22px 60px rgba(55, 13, 10, 0.18);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(243, 185, 31, 0.18), transparent 26rem),
    radial-gradient(circle at 18% 22%, rgba(123, 17, 19, 0.44), transparent 30rem),
    linear-gradient(180deg, #160505 0%, #3a0808 56rem, #fff8ef 56.05rem, #fbefe0 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(23, 5, 5, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(150px, 15vw, 205px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.nav a {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 750;
  border-radius: 999px;
}

.nav a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action,
.button.primary {
  color: #2d1305;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(243, 185, 31, 0.32);
}

.button.secondary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 32px rgba(123, 17, 19, 0.22);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  gap: 54px;
  align-items: center;
  width: var(--container);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 56px 0 84px;
}

.since {
  width: fit-content;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 850;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}

.hero-lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.quick-facts {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0;
}

.quick-facts div {
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 850;
}

.hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  min-height: 600px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 35%, rgba(243, 185, 31, 0.2), transparent 20rem),
    linear-gradient(135deg, #260506, #7b1113 62%, #230403);
  border: 1px solid rgba(123, 17, 19, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 4, 4, 0.82));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(14, 7, 6, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-card strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.hero-card b {
  font-size: 24px;
}

.section,
.menu-section,
.contact-section {
  width: var(--container);
  margin: 0 auto;
  padding: 82px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 40px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.intro-band h2,
.section-heading h2,
.ads-copy h2,
.contact-content h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.intro-band p,
.ads-copy p,
.contact-content p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.service-row span {
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  background: var(--red);
  border-radius: 999px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 0.76fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading p,
.ads-copy > p:first-child,
.contact-content > div > p:first-child {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading.light p,
.section-heading.light h2 {
  color: #fff;
}

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

.dish-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(55, 13, 10, 0.08);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.dish-card div {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.dish-card h3 {
  margin: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.dish-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.dish-card span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.menu-section {
  width: 100%;
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(243, 185, 31, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 72%, rgba(243, 185, 31, 0.12), transparent 28rem),
    linear-gradient(135deg, var(--red-deep), var(--red) 58%, #220303);
}

.menu-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.search-field {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  text-transform: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  outline: none;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.tab {
  min-height: 42px;
  padding: 10px 13px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.tab.active,
.tab:hover {
  color: #2d1305;
  background: var(--gold);
  border-color: var(--gold);
}

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

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.menu-item h3 {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.menu-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.menu-item strong {
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
}

.ads-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 44px;
  align-items: center;
}

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

.conversion-panel div {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(55, 13, 10, 0.08);
}

.conversion-panel b {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-panel span {
  font-weight: 900;
}

.contact-section {
  width: 100%;
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #1c0c08;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr) minmax(280px, 0.52fr);
  gap: 24px;
  align-items: stretch;
}

.contact-content p,
.contact-content h2 {
  color: #fff;
}

.contact-content > div > p:not(:first-child) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hours {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.hours h3 {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.hours dl,
.hours div {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours div {
  grid-template-columns: 1fr auto;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours dt {
  color: rgba(255, 255, 255, 0.68);
}

.hours dd {
  margin: 0;
  font-weight: 900;
}

.map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 64% 42%, var(--gold) 0 8px, transparent 9px),
    linear-gradient(135deg, #4c1110, #7b1113);
  background-size: 52px 52px, 52px 52px, auto, auto;
  border-radius: var(--radius);
}

.map-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.map-card strong {
  margin: 8px 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.map-card small {
  font-size: 15px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 34px;
  color: #6f5d54;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  display: block;
  width: 78px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .intro-band,
  .ads-section,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .quick-facts {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .quick-facts {
    order: 3;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-media {
    min-height: 460px;
  }

  .hero-media img {
    min-height: 460px;
  }

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

  .menu-toolbar,
  .menu-list,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .tabs,
  .service-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
  }

  .brand-logo {
    width: 148px;
  }

  .header-action {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 13px;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    gap: 28px;
    padding-bottom: 56px;
  }

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

  .quick-facts,
  .dish-grid,
  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .section,
  .menu-section,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

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

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
