/* ==========================================================================
   Outlaw Pizza — Murwillumbah, NSW
   Palette sampled directly from the provided logo (images/logo.jpg) and
   Kelly Gang texture (images/kelly-gang-texture.webp).
   ========================================================================== */

:root {
  --black: #161513;
  --black-soft: #211f1c;
  --black-line: #322f2a;
  --silver: #b7bcc0;
  --silver-dim: #8c9094;
  --red: #c8202f;
  --red-dark: #9c1824;
  --red-bright: #e5303f;
  --rust: #7a5233;
  --rust-dark: #5c3d26;
  --parchment: #ede8dd;
  --parchment-dim: #ddd5c2;
  --ink: #211c16;

  --font-display: "Rye", "Rammetto One", serif;
  --font-body: "Oswald", "Barlow Condensed", sans-serif;

  --container: 1240px;
  --radius: 3px;
  --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.55);

  color-scheme: dark;
}

/* ---------------------------------- Reset -------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Fixed, non-scrolling backdrop for the whole site (hero excluded — it has
   its own scroll-scrubbed visual). A true fixed-position layer is used
   instead of background-attachment:fixed so it also holds still on iOS
   Safari, which ignores that property on scrolling bodies. */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(11, 10, 9, 0.87), rgba(11, 10, 9, 0.91)),
    url("images/kelly-gang-texture.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Visible focus states everywhere — never suppressed */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  z-index: 1000;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

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

/* ------------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 0 var(--red-dark);
}

.btn-red:hover {
  background: var(--red-bright);
}

.btn-red:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--parchment);
  border-color: var(--silver);
}

.btn-outline:hover {
  background: var(--silver);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--parchment);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--black-soft);
}

.btn-block {
  width: 100%;
}

/* ------------------------------ Site header ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(22, 21, 19, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--black-line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 10px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.main-nav {
  margin-inline: auto;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  color: var(--silver);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

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

.header-call {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: transparent;
  border: 2px solid var(--silver);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Menu page category quick-jump strip */
.category-jump {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-block: 10px;
  border-top: 1px solid var(--black-line);
  scrollbar-width: thin;
}

.category-jump a {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--silver-dim);
  padding: 6px 14px;
  border: 1px solid var(--black-line);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.category-jump a:hover {
  color: var(--black);
  background: var(--silver);
  border-color: var(--silver);
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--black-soft);
    border-left: 1px solid var(--black-line);
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    margin: 0;
    z-index: 600;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 22px;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-call span.full-number {
    display: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 550;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  .header-call {
    padding: 10px 12px;
  }
}

/* ================================ HERO ================================== */
.hero {
  position: relative;
  height: 185vh;
  padding-block: 0; /* override the generic `section` padding-block rule */
  background: var(--black);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual,
.hero-canvas,
.hero-video,
.hero-static {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-static {
  z-index: 1;
}

.hero-canvas {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-canvas.is-active {
  opacity: 1;
}

.hero-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    100deg,
    rgba(10, 9, 8, 0.92) 0%,
    rgba(10, 9, 8, 0.72) 32%,
    rgba(10, 9, 8, 0.18) 58%,
    rgba(10, 9, 8, 0.05) 100%
  );
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image: url("images/kelly-gang-texture.webp");
  background-size: cover;
  background-position: left center;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Signature riveted "wanted poster" panel */
.wanted-panel {
  position: relative;
  max-width: 620px;
  background: linear-gradient(160deg, rgba(22, 21, 19, 0.85), rgba(22, 21, 19, 0.6));
  border: 1px solid rgba(183, 188, 192, 0.35);
  padding: 40px 40px 44px;
  box-shadow: var(--shadow-deep);
}

.wanted-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(183, 188, 192, 0.3);
  pointer-events: none;
}

.rivet {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #dfe2e4, var(--silver) 45%, #5b5f62 100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.6);
}

.rivet-tl {
  top: 14px;
  left: 14px;
}

.rivet-tr {
  top: 14px;
  right: 14px;
}

.rivet-bl {
  bottom: 14px;
  left: 14px;
}

.rivet-br {
  bottom: 14px;
  right: 14px;
}

.hero-logo {
  width: min(320px, 70%);
  height: auto;
  margin-bottom: 22px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--silver);
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--parchment);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.hero-title span {
  color: var(--red-bright);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--silver);
  margin-top: 10px;
}

.hero-sub {
  margin-top: 6px;
  font-size: 1.05rem;
  color: var(--parchment-dim);
}

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

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--silver);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-scroll-cue .chevron {
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--silver);
  border-bottom: 2px solid var(--silver);
  transform: rotate(45deg);
  animation: cue-bounce 1.8s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue .chevron {
    animation: none;
  }
}

@media (max-width: 860px) {
  .hero {
    height: 100vh;
  }

  .hero-sticky {
    position: relative;
    height: 100vh;
  }

  .wanted-panel {
    padding: 28px 24px 32px;
  }

  .rivet {
    width: 10px;
    height: 10px;
  }

  .rivet-tl, .rivet-tr { top: 9px; }
  .rivet-bl, .rivet-br { bottom: 9px; }
  .rivet-tl, .rivet-bl { left: 9px; }
  .rivet-tr, .rivet-br { right: 9px; }

  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Reduced-motion / no-scrub mode: static image only, shorter hero */
.hero.is-static {
  height: 100vh;
}

.hero.is-static .hero-sticky {
  position: relative;
}

/* ============================== SECTIONS ================================= */
section {
  padding-block: 72px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-eyebrow {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--red-bright);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-title.on-light {
  color: var(--ink);
}

.section-copy {
  margin-top: 14px;
  color: var(--parchment-dim);
  font-size: 1.05rem;
  max-width: 60ch;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------------ Deals band -------------------------------- */
.deals {
  padding-block: 60px;
}

.deals .section-eyebrow {
  color: var(--parchment);
}

.deals .section-title {
  color: #fff;
}

.deal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 36px;
}

.deal-card {
  background: rgba(122, 82, 51, 0.82);
  border: 1px solid rgba(237, 232, 221, 0.35);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}

.deal-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.deal-card__name {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--parchment);
  margin-bottom: 14px;
  display: block;
}

.deal-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.deal-card li {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  padding-left: 18px;
  position: relative;
}

.deal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--parchment);
}

.deal-card__note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

@media (min-width: 640px) {
  .deal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------------------------- Category showcase --------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rust);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.15) 65%);
}

.category-card__body {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}

.category-card__body a {
  display: block;
}

.category-card__body a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.category-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
}

.category-card__price {
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver);
  font-size: 0.95rem;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid .category-card:nth-child(4),
  .category-grid .category-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (min-width: 1240px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* -------------------------------- Hours ----------------------------------- */
.hours {
  border-top: 1px solid var(--black-line);
  border-bottom: 1px solid var(--black-line);
}

.hours-wrap {
  display: grid;
  gap: 32px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--black-line);
  font-size: 1rem;
}

.hours-table th {
  color: var(--silver);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.hours-table td.closed {
  color: var(--silver-dim);
  font-style: italic;
}

.hours-note {
  margin-top: 22px;
  padding: 16px 18px;
  background: rgba(200, 32, 47, 0.12);
  border-left: 3px solid var(--red);
  font-size: 0.95rem;
  color: var(--parchment);
}

.hours-note strong {
  color: var(--red-bright);
}

@media (min-width: 900px) {
  .hours-wrap {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

/* ------------------------------- Location ---------------------------------- */
.location-wrap {
  display: grid;
  gap: 28px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-details dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silver);
  margin-bottom: 4px;
}

.location-details dd {
  margin: 0;
  font-size: 1.1rem;
}

.location-details a.tel-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red-bright);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--black-line);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

@media (min-width: 900px) {
  .location-wrap {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

/* -------------------------------- Footer ----------------------------------- */
.site-footer {
  border-top: 1px solid var(--black-line);
  padding-block: 44px 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--silver-dim);
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-col h2 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silver);
  margin-bottom: 12px;
}

.footer-col address {
  font-style: normal;
  color: var(--parchment-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col a.tel-link {
  color: var(--red-bright);
  font-weight: 600;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--parchment-dim);
  padding-block: 3px;
  max-width: 260px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--black-line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--silver-dim);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

/* ============================ MENU PAGE ==================================== */
.menu-hero {
  padding-block: 56px 44px;
  text-align: center;
}

.menu-hero__eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--silver);
}

.menu-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-top: 10px;
  color: var(--parchment);
}

.menu-hero p {
  margin-top: 12px;
  color: var(--parchment-dim);
  max-width: 56ch;
  margin-inline: auto;
}

.menu-hero .btn {
  margin-top: 24px;
}

.menu-body {
  background: var(--parchment);
  color: var(--ink);
}

.menu-body section {
  padding-block: 52px;
}

.deals-recap {
  background: var(--parchment-dim);
  padding-block: 40px;
}

.deals-recap .section-title {
  color: var(--ink);
}

.deals-recap .deal-grid {
  margin-top: 24px;
}

.deals-recap .deal-card {
  background: var(--black);
  border-color: var(--rust);
}

.half-half-callout {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--rust);
  border-left: 4px solid var(--rust);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.98rem;
  max-width: 640px;
}

.menu-category {
  scroll-margin-top: 130px;
  border-top: 1px solid rgba(122, 82, 51, 0.25);
}

.menu-category:first-of-type {
  border-top: none;
}

.menu-category__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--rust);
  padding-bottom: 14px;
}

.menu-category__head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  color: var(--ink);
}

.menu-category__price {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rust-dark);
  font-size: 1rem;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 40px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(33, 28, 22, 0.12);
}

.menu-item__text h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.menu-item__text p {
  margin-top: 4px;
  font-size: 0.95rem;
  color: #4c4438;
}

.menu-item__price {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--red);
  white-space: nowrap;
}

@media (min-width: 860px) {
  .menu-items {
    grid-template-columns: 1fr 1fr;
  }
}

/* Extras / sides tables */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 10px;
}

.extras-card {
  background: #fff;
  border: 1px solid rgba(122, 82, 51, 0.3);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.extras-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--rust-dark);
  margin-bottom: 12px;
}

.extras-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.extras-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.98rem;
  padding-block: 4px;
  border-bottom: 1px dashed rgba(33, 28, 22, 0.15);
}

.extras-card li span:last-child {
  font-weight: 700;
  color: var(--red);
}

.extras-card__note {
  font-size: 0.92rem;
  color: #4c4438;
}

@media (min-width: 700px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .extras-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 10px;
}

.sides-card {
  background: #fff;
  border: 1px solid rgba(122, 82, 51, 0.3);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.sides-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  text-transform: uppercase;
}

.sides-card h3 .unit-note {
  font-weight: 400;
  text-transform: none;
}

.sides-card .price {
  font-weight: 700;
  color: var(--red);
  text-align: right;
  white-space: nowrap;
}

@media (min-width: 700px) {
  .sides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-footer-cta {
  background: var(--black);
  color: var(--parchment);
  text-align: center;
  padding-block: 56px;
}

.menu-footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.menu-footer-cta p {
  margin-top: 10px;
  color: var(--parchment-dim);
}

.menu-footer-cta .btn {
  margin-top: 22px;
}
