@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #10100f;
  --paper: #f4efe5;
  --muted: #bfbcb5;
  --orange: #f49349;
  --line: #37352f;
  --heading: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font: 16px/1.65 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
textarea {
  text-transform: none;
}

input::placeholder,
textarea::placeholder,
select,
option,
button {
  text-transform: uppercase;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
.brand,
.nav a,
.btn,
.eyebrow,
.menu-jump a,
.footer strong,
.visit-strip strong {
  font-family: var(--heading);
  font-weight: 400;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: .025em;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  letter-spacing: .01em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.55rem;
}

h1 span {
  color: var(--orange);
}

p {
  margin: 0 0 20px;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: .15em;
  margin-bottom: 18px;
}

.container {
  width: min(90%, 1180px);
  margin: auto;
}

.center {
  text-align: center;
}

.section {
  padding: 84px 0;
}

.alt {
  background: #1a1916;
  border-block: 1px solid #302c25;
}


/* HEADER & NAVIGATION */

.site-header {
  background: #10100f;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 32px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.35rem;
  letter-spacing: .075em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-lockup img {
  width: 68px;
  height: 72px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 1.05rem;
  letter-spacing: .07em;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--orange);
  border-color: var(--orange);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}


/* GENERAL GRIDS */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-2 > * {
  min-width: 0;
}

.grid-2 > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

.grid-2 > .owners-photo {
  height: auto;
  max-height: 470px;
  object-fit: contain;
}

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


/* CARDS */

.card {
  border: 1px solid var(--line);
  padding: 28px;
  background: #171714;
  border-radius: 6px;
  margin-bottom: 20px;
}

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

.card h2 {
  font-size: 1.9rem;
}


/* HOME HERO */

.hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.44)),
    url('../images/hero.png') center / cover;
  padding: 76px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero h1 {
  font-size: clamp(4.4rem, 7.5vw, 7rem);
  line-height: 1;
}

.hero-copy .lead {
  color: #ded9cf;
  font-size: 1.2rem;
}

.hero-logo {
  width: 100%;
  max-width: 470px;
  justify-self: center;
  filter: drop-shadow(0 8px 24px #000);
}


/* BUTTONS */

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 3px;
  color: #17100b;
  font-size: 1.1rem;
  letter-spacing: .055em;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, transform .15s;
}

.btn:hover {
  background: #ffac6c;
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(0,0,0,.25);
  color: var(--paper);
  border-color: #aaa193;
}

.btn-outline:hover {
  background: #31281f;
}

.btn:disabled {
  opacity: .6;
  cursor: wait;
  transform: none;
}

.text-link {
  color: var(--orange);
  display: inline-block;
  padding: 10px 0;
  text-underline-offset: 6px;
  font-weight: 700;
}


/* HOME VISIT STRIP */

.visit-strip {
  background: var(--orange);
  color: #20140b;
}

.visit-strip > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
}

.visit-strip p {
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.visit-strip strong {
  letter-spacing: .06em;
}

.visit-strip a {
  text-decoration: none;
  font-size: .9rem;
}

.visit-strip a:hover {
  text-decoration: underline;
}


/* SECTION HEADINGS */

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 32px;
}

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

.section-heading > .lead {
  max-width: 380px;
  margin: 0;
}


/* HOME FOOD */

.food-feature {
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  max-height: 480px;
}

.food-feature img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 34px;
}

.menu-highlights > a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.menu-highlights > a:hover {
  border-color: var(--orange);
}

.menu-highlights .eyebrow {
  font-size: .73rem;
  margin-bottom: 12px;
}

.menu-highlights h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.menu-highlights p {
  color: var(--muted);
  font-size: .95rem;
  flex: 1;
}

.menu-highlights strong {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: var(--orange);
}


/* MENU */

.menu-intro {
  padding-bottom: 44px;
  background:
    radial-gradient(ellipse at 95% 0, #342318 0, transparent 65%);
}

.menu-notice {
  font-size: .93rem;
  color: var(--muted);
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  max-width: 680px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr);
  gap: 64px;
  padding-bottom: 70px;
}

.menu-content {
  min-width: 0;
}

.menu-jump {
  display: flex;
  flex-direction: column;
  align-self: start;
  position: sticky;
  top: 24px;
  border-top: 1px solid var(--line);
}

.menu-jump a {
  padding: 13px 10px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: 1.18rem;
  letter-spacing: .045em;
}

.menu-jump a:hover {
  color: var(--orange);
  background: #201c17;
}

.menu-category {
  padding: 26px 0 38px;
  scroll-margin-top: 20px;
}

.category-heading {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 16px;
}

.category-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.category-heading p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.item-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.item-heading h3 {
  font-size: 1.5rem;
  letter-spacing: .025em;
  margin: 0;
}

.price {
  font-size: 1.13rem;
  color: var(--orange);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-item p {
  max-width: 600px;
  color: var(--muted);
  margin: 10px 0 0;
  font-size: .95rem;
}

.menu-boards {
  margin: 35px 0;
  border: 1px solid var(--line);
  padding: 20px;
}

.menu-boards summary {
  cursor: pointer;
  font-weight: 700;
}

.menu-img {
  display: block;
  width: 100%;
  margin: 25px auto;
}


/* FORMS / CATERING */

.form {
  display: grid;
  gap: 18px;
  width: 100%;
  min-width: 0;
  padding: 30px;
  background: #1b1a17;
  border: 1px solid var(--line);
  border-radius: 6px;
  scroll-margin-top: 25px;
}

.form > div {
  min-width: 0;
}

.form label,
.form legend {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: .94rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px;
  background: #10100f;
  color: var(--paper);
  border: 1px solid #686359;
  border-radius: 3px;
  font-size: 16px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.form textarea {
  resize: vertical;
  min-height: 125px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-help {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

.checkbox-group {
  min-width: 0;
  margin: 0;
  padding: 16px 20px;
  border: 1px solid #686359;
  border-radius: 3px;
}

.checkbox-group legend {
  padding: 0 6px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  cursor: pointer;
}

.checkbox-group input {
  width: 19px;
  height: 19px;
  accent-color: var(--orange);
}


/* MAP */

.map-wrap iframe {
  width: 100%;
  min-height: 470px;
  border: 0;
  border-radius: 6px;
}


/* FOOTER */

.footer {
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
  background: #0a0a09;
  color: var(--muted);
  font-size: .87rem;
}

.footer-grid {
  width: min(90%, 880px);
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 32px;
}

.footer strong {
  font-size: 1rem;
  color: var(--paper);
  letter-spacing: .06em;
}

.footer p {
  margin: 9px 0 8px;
}

.footer a {
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  width: min(90%, 880px);
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 16px;
  font-size: .75rem;
}


/* TABLET */

@media (max-width: 900px) {

  .nav-wrap {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 8px;
  }

  .brand-lockup img {
    width: 58px;
    height: 62px;
  }

  .brand-lockup {
    font-size: 1.2rem;
  }

  .nav {
    gap: 24px;
    justify-content: center;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-logo {
    max-width: 360px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 8vw, 5.3rem);
  }

  .grid-2 {
    gap: 30px;
  }

  .menu-layout {
    gap: 35px;
    grid-template-columns: 150px minmax(0,1fr);
  }

  .visit-strip > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .section-heading {
    align-items: start;
  }

  .menu-highlights {
    gap: 20px;
  }
}


/* MOBILE */

@media (max-width: 650px) {

  .section {
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  /* Keep mobile header compact */
  .nav-wrap {
    align-items: flex-start;
    padding: 10px 0 6px;
  }

  .brand-lockup img {
    width: 42px;
    height: 46px;
  }

  .brand-lockup {
    font-size: 1.05rem;
    gap: 9px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 2px 10px;
  }

  .nav a {
    font-size: .84rem;
    letter-spacing: .035em;
    min-height: 44px;
  }

  /* Home hero */
  .hero {
    padding: 34px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-logo {
    grid-row: 1;
    width: 165px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 4.6rem);
  }

  .hero .eyebrow {
    font-size: .8rem;
    margin-bottom: 14px;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .actions {
    justify-content: center;
    gap: 10px;
  }

  .btn {
    padding: 13px 18px;
    gap: 12px;
    font-size: 1rem;
  }

  .visit-strip p {
    gap: 5px 14px;
    font-size: .9rem;
  }

  .visit-strip a {
    font-size: .8rem;
  }

  .visit-strip > .container {
    padding-block: 15px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .grid-2 > img {
    height: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading > .lead {
    margin-top: 20px;
  }

  .menu-highlights {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-highlights > a {
    padding-bottom: 20px;
  }

  .food-feature {
    max-height: none;
  }

  /* Menu */
  .menu-intro {
    padding-bottom: 22px;
  }

  .menu-layout {
    display: block;
  }

  .menu-jump {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    border: 0;
    margin: 0 0 22px;
  }

  .menu-jump a {
    border: 1px solid var(--line);
    padding: 8px 13px;
    font-size: 1.05rem;
    min-height: 44px;
  }

  .menu-category {
    padding: 20px 0 26px;
  }

  .category-heading h2 {
    font-size: 1.9rem;
  }

  .item-heading h3 {
    font-size: 1.35rem;
  }

  .price {
    font-size: 1.05rem;
  }

  /* Forms */
  .form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .catering-events,
  .catering-callout {
    display: none;
  }

  .catering-copy .catering-bottom-message {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .catering-bottom-message h3,
  .catering-bottom-message .eyebrow {
    display: none;
  }

  .map-wrap iframe {
    min-height: 330px;
  }

  .card {
    padding: 23px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: center;
  }
}


/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}


/* PRINT */

@media print {

  body {
    background: white;
    color: black;
  }

  .site-header,
  .footer,
  .menu-jump,
  .menu-boards,
  .btn {
    display: none;
  }

  .menu-layout {
    display: block;
  }

  .menu-item,
  .menu-category {
    break-inside: avoid;
  }

  .price,
  .eyebrow,
  .menu-item p,
  .category-heading p {
    color: black;
  }

  .section {
    padding: 15px 0;
  }
}