:root {
  --charcoal: #11100d;
  --charcoal-2: #1b1712;
  --ink: #1a1712;
  --paper: #f6f0e5;
  --paper-bright: #fffaf0;
  --line: rgba(26, 23, 18, 0.14);
  --muted: #706a5f;
  --gold: #c5a059;
  --gold-deep: #8c6422;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(197, 160, 89, 0.13), transparent 28rem),
    linear-gradient(180deg, #17130f 0, #21180f 34rem, var(--paper) 34rem);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  color: var(--charcoal);
  background: var(--gold);
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(17, 16, 13, 0.88) 0%, rgba(17, 16, 13, 0.63) 41%, rgba(17, 16, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 16, 13, 0.46) 0%, rgba(17, 16, 13, 0) 36%, rgba(17, 16, 13, 0.94) 100%),
    url("assets/yard-hero.webp");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background: linear-gradient(180deg, transparent, var(--paper));
  z-index: -1;
}

.topbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
  text-decoration: none;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  background: rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 4vw, 46px);
  padding: 14px 18px;
  border: 1px solid rgba(197, 160, 89, 0.38);
  background: rgba(17, 16, 13, 0.44);
  backdrop-filter: blur(12px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.nav-links a[aria-current="true"] {
  color: var(--gold);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  min-height: 570px;
  margin: 0 auto;
  padding: 82px 0 86px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-copy {
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-copy picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-sign {
  display: block;
  width: min(680px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.38));
}

main {
  width: min(var(--max), calc(100% - 40px));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
}

.menu-section {
  scroll-margin-top: 24px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 18rem),
    var(--paper-bright);
  border: 1px solid rgba(140, 100, 34, 0.18);
  box-shadow: 0 18px 50px rgba(47, 32, 14, 0.13);
}

.section-heading {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--charcoal);
}

.section-heading span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 45px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading em {
  color: var(--gold-deep);
  font-style: normal;
}

.menu-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.table-head,
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(128px, 210px);
  align-items: center;
}

.table-head {
  color: var(--paper-bright);
  background: var(--charcoal);
}

.table-head span {
  padding: 12px 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.table-head span + span {
  text-align: right;
}

.menu-row {
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.menu-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.58);
}

.menu-row div {
  padding: 18px;
}

.menu-row h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.16;
  font-weight: 900;
}

.menu-row small {
  color: var(--muted);
  font-size: 0.76em;
}

.menu-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.menu-row > strong {
  align-self: stretch;
  display: grid;
  place-items: center end;
  padding: 18px;
  color: var(--ink);
  text-align: right;
  font-size: clamp(18px, 2.2vw, 24px);
  border-left: 1px solid var(--line);
}

.split-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.compact {
  height: 100%;
}

.compact .section-heading {
  align-items: center;
}

.compact .section-heading h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.item-list li {
  display: grid;
  gap: 5px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.item-list strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.item-list span {
  color: var(--gold-deep);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.item-list small {
  max-width: 34rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.sauce-list li {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.8fr);
  align-items: baseline;
  column-gap: 18px;
}

.sauce-list span {
  text-align: right;
}

footer {
  margin-top: 64px;
  padding: 48px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  background: var(--charcoal);
}

footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 0 18px;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(197, 160, 89, 0.54);
}

footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
  }

  .hero-content {
    align-items: start;
    padding-top: 58px;
  }

  .split-sections {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (orientation: portrait) {
  body {
    background: var(--paper);
  }

  .hero {
    min-height: 0;
    padding-bottom: 34px;
    background-image:
      linear-gradient(180deg, rgba(17, 16, 13, 0.84), rgba(17, 16, 13, 0.68)),
      url("assets/yard-hero.webp");
    background-position: center top;
  }

  .topbar {
    width: min(680px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }

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

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 15px 6px;
  }

  .nav-links a {
    min-width: 0;
    text-align: center;
    font-size: 14px;
  }

  .hero-content,
  main {
    width: min(680px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    min-height: auto;
    justify-content: center;
    padding: 42px 0 18px;
  }

  .hero-sign {
    width: min(100%, 620px);
    margin: 0 auto;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.34));
  }

  main {
    margin-top: 0;
  }

  .split-sections {
    grid-template-columns: 1fr;
  }

  .menu-section {
    margin-top: 24px;
    padding: 30px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(34px, 6.4vw, 58px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .section-heading em {
    display: block;
    margin-top: 5px;
  }

  .table-head {
    display: none;
  }

  .menu-row {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 22px 0;
  }

  .menu-row div {
    padding: 0;
  }

  .menu-row > strong {
    place-items: start;
    margin-top: 12px;
    padding: 0;
    border-left: 0;
  }

  .sauce-list li {
    grid-template-columns: 1fr;
  }

  .sauce-list span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    background: var(--paper);
  }

  .hero {
    min-height: 0;
    padding-bottom: 22px;
    background-image:
      linear-gradient(180deg, rgba(17, 16, 13, 0.84), rgba(17, 16, 13, 0.68)),
      url("assets/yard-hero.webp");
    background-position: center top;
  }

  .topbar {
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 18px 0 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 10px 4px;
  }

  .nav-links a {
    min-width: 0;
    text-align: center;
    font-size: 10px;
  }

  .hero-content,
  main {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    min-height: auto;
    justify-content: center;
    padding: 24px 0 10px;
  }

  .hero-sign {
    width: min(100%, 330px);
    margin: 0 auto;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34));
  }

  main {
    margin-top: 0;
  }

  .menu-section {
    margin-top: 14px;
    padding: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(25px, 9vw, 34px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .section-heading em {
    display: block;
    margin-top: 4px;
  }

  .table-head {
    display: none;
  }

  .menu-row {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 16px 0;
  }

  .menu-row div {
    padding: 0;
  }

  .menu-row > strong {
    place-items: start;
    margin-top: 12px;
    padding: 0;
    border-left: 0;
  }

  .sauce-list li {
    grid-template-columns: 1fr;
  }

  .sauce-list span {
    text-align: left;
  }
}
