@charset "UTF-8";
/* ==========================================================================
   Jai Alai Restaurant — Basque Spanish Cuisine, Dover, New Jersey
   main.css — single stylesheet for the whole site
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Status notice bar
   5.  Site header & navigation
   6.  Hero
   7.  Sections, cards & grids
   8.  Menu presentation
   9.  FAQ (details/summary)
   10. Page masthead & breadcrumbs
   11. Footer
   12. Utilities & accessibility
   13. Responsive
   14. Print
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  /* Brand palette, drawn from the restaurant's original 2003 identity:
     warm tan walls, dark slate lettering and Basque red accents. */
  --red: #a32126;
  --red-dark: #7c171b;
  --red-soft: #f6e4e4;
  --green: #3f5d4b;
  --green-soft: #e8efe9;
  --gold: #b8892f;
  --slate: #3a444e;

  --ink: #241f1c;
  --ink-2: #57504a;
  --ink-3: #8b8177;

  --cream: #fffaf3;
  --paper: #ffffff;
  --tan-100: #fdf3e3;
  --tan-200: #f5debd;
  --tan-300: #e9c99c;
  --line: #e8dcc8;
  --line-2: #d8c8ac;

  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype",
    "Book Antiqua", "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;

  --wrap: 1140px;
  --wrap-narrow: 760px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(36, 31, 28, 0.06),
    0 2px 8px rgba(36, 31, 28, 0.05);
  --shadow: 0 2px 4px rgba(36, 31, 28, 0.05),
    0 12px 30px rgba(36, 31, 28, 0.09);
  --ring: 0 0 0 3px rgba(163, 33, 38, 0.35);
}

/* 2. Reset & base -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--slate);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.1rem);
}

h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
}

h4 {
  font-size: 1.075rem;
}

p {
  margin: 0 0 1.1em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--red-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* Class-based display rules must never defeat the hidden attribute. */
[hidden] {
  display: none !important;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.5;
}

blockquote {
  margin: 0;
}

address {
  font-style: normal;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

code,
kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

/* 3. Layout primitives --------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.wrap--narrow {
  max-width: var(--wrap-narrow);
}

.section {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.section:first-of-type {
  border-top: 0;
}

.section--tan {
  background-color: var(--tan-100);
}

.section--slate {
  background-color: var(--slate);
  color: #f3ece2;
  border-top: 0;
}

.section--slate h2,
.section--slate h3 {
  color: #fff;
}

.section--slate a {
  color: var(--tan-200);
}

.section--slate a:hover {
  color: #fff;
}

.section__head {
  max-width: 62ch;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section--slate .eyebrow {
  color: var(--tan-300);
}

.lede {
  font-size: clamp(1.075rem, 1rem + 0.5vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-2);
}

.section--slate .lede {
  color: #ded4c6;
}

.rule {
  width: 72px;
  height: 5px;
  background: var(--red);
  border-radius: 3px;
  margin: 0 0 1.5rem;
}

.section__head--center .rule {
  margin-inline: auto;
}

/* 4. Status notice bar --------------------------------------------------- */
.notice-bar {
  background-color: var(--slate);
  color: #f3ece2;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-block: 0.7rem;
  border-bottom: 3px solid var(--red);
}

.notice-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  justify-content: center;
  text-align: center;
}

.notice-bar strong {
  color: #fff;
  font-weight: 700;
}

.notice-bar a {
  color: var(--tan-200);
  white-space: nowrap;
}

.notice-bar a:hover {
  color: #fff;
}

/* 5. Site header & navigation -------------------------------------------- */
.site-header {
  background-color: rgba(255, 250, 243, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

@supports not (backdrop-filter: blur(2px)) {
  .site-header {
    background-color: var(--cream);
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 74px;
  padding-block: 0.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--slate);
  flex: 0 1 auto;
  min-width: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--slate);
}

.brand__tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.3;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
}

.nav-toggle__bars {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--slate);
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--slate);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars::before {
  top: -5px;
}

.nav-toggle__bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a:hover {
  background-color: var(--tan-100);
  color: var(--red);
}

.site-nav a[aria-current="page"] {
  color: var(--red);
  font-weight: 700;
  background-color: var(--red-soft);
}

.site-nav .nav-cta a {
  background-color: var(--red);
  color: #fff;
  font-weight: 600;
  padding-inline: 0.95rem;
}

.site-nav .nav-cta a:hover {
  background-color: var(--red-dark);
  color: #fff;
}

.site-nav .nav-cta a[aria-current="page"] {
  background-color: var(--red-dark);
  color: #fff;
}

/* 6. Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, var(--tan-100) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.hero__title {
  margin-bottom: 0.5rem;
}

.hero__kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  color: var(--red);
  margin-bottom: 1rem;
}

.hero__lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: var(--ink-2);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--tan-200);
  border: 6px solid var(--paper);
}

.hero__media img {
  width: 100%;
}

.stat-strip {
  border-top: 1px solid var(--line);
  background-color: var(--paper);
}

.stat-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-strip li {
  padding: 1.35rem clamp(0.9rem, 2.5vw, 1.75rem);
  border-left: 1px solid var(--line);
}

.stat-strip li:first-child {
  border-left: 0;
}

.stat-strip dt,
.stat-strip .stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.stat-strip .stat__value {
  font-family: var(--font-display);
  font-size: 1.075rem;
  color: var(--slate);
  line-height: 1.4;
}

.stat-strip a {
  text-decoration: none;
}

/* 7. Sections, cards & grids -------------------------------------------- */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease;
}

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

.btn--primary {
  background-color: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--red-dark);
  color: #fff;
}

.btn--ghost {
  background-color: transparent;
  color: var(--red);
  border-color: var(--line-2);
}

.btn--ghost:hover {
  background-color: var(--tan-100);
  border-color: var(--red);
  color: var(--red-dark);
}

.section--slate .btn--ghost {
  color: #f3ece2;
  border-color: rgba(243, 236, 226, 0.4);
}

.section--slate .btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.grid {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
}

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

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

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

.grid--sidebar {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: start;
}

.card {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--ink-2);
  margin-bottom: 0.75rem;
}

.card__meta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card__foot {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.card--media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card--media .card__body {
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  flex: 1;
}

.card--accent {
  border-top: 4px solid var(--red);
}

.card--icon {
  text-align: center;
}

.card--icon img {
  width: 84px;
  height: 105px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 1rem;
  border: 1px solid var(--line);
}

.tile {
  display: block;
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: border-color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
}

.tile:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
}

.tile__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  display: block;
  margin-bottom: 0.3rem;
}

.tile__desc {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.tile__arrow {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
}

.aside-panel {
  background-color: var(--tan-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
}

.aside-panel h2,
.aside-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.aside-panel ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}

.aside-panel li {
  margin-bottom: 0.4rem;
  color: var(--ink-2);
}

.notice-inline {
  background-color: var(--red-soft);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

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

.notice-inline--green {
  background-color: var(--green-soft);
  border-left-color: var(--green);
}

.pullquote {
  border-left: 4px solid var(--red);
  padding: 0.25rem 0 0.25rem 1.4rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.05rem + 0.6vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--slate);
}

.pullquote footer {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-3);
  margin-top: 0.75rem;
}

.prose > h2 {
  margin-top: 2.25rem;
}

.prose > h2:first-child {
  margin-top: 0;
}

.prose > h3 {
  margin-top: 1.75rem;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose li::marker {
  color: var(--red);
}

/* 8. Menu presentation --------------------------------------------------- */
.menu-section {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.menu-section:last-of-type {
  margin-bottom: 0;
}

.menu-section__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  border-bottom: 2px solid var(--slate);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}

.menu-section__head h2 {
  margin: 0;
  font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.65rem);
  letter-spacing: 0.02em;
}

.menu-section__note {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-3);
  font-size: 0.95rem;
}

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

.menu-item {
  padding-block: 0.85rem;
  border-bottom: 1px dotted var(--line-2);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-item__head::after {
  content: "";
  flex: 1 1 auto;
  order: 2;
  border-bottom: 1px dotted var(--line-2);
  transform: translateY(-0.3rem);
  min-width: 1.5rem;
}

.menu-item__name {
  order: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--slate);
}

.menu-item__price {
  order: 3;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  font-size: 1rem;
}

.menu-item__desc {
  margin: 0.25rem 0 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  max-width: 74ch;
  line-height: 1.6;
}

.menu-item--featured {
  background-color: var(--tan-100);
  border-radius: var(--radius-sm);
  padding-inline: 0.9rem;
  border-bottom-color: transparent;
}

.menu-item--featured .menu-item__name::after {
  content: "signature";
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--red);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  vertical-align: 0.15em;
}

.menu-columns {
  columns: 2;
  column-gap: clamp(1.5rem, 4vw, 3rem);
}

.menu-columns .menu-item {
  break-inside: avoid;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.facts-table caption {
  text-align: left;
  font-size: 0.875rem;
  color: var(--ink-3);
  padding-bottom: 0.6rem;
}

.facts-table th,
.facts-table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.facts-table th {
  color: var(--slate);
  font-weight: 700;
  white-space: nowrap;
  width: 40%;
}

.facts-table td {
  color: var(--ink-2);
}

.facts-table tr:last-child th,
.facts-table tr:last-child td {
  border-bottom: 0;
}

/* 9. FAQ ---------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 3rem 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate);
  position: relative;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] > summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item[open] > summary {
  border-bottom: 1px solid var(--line);
  background-color: var(--tan-100);
}

.faq-item__body {
  padding: 1.15rem;
}

.faq-item__body p:last-child,
.faq-item__body ul:last-child {
  margin-bottom: 0;
}

.faq-item__body ul {
  padding-left: 1.2rem;
}

/* 10. Page masthead & breadcrumbs --------------------------------------- */
.masthead {
  background: linear-gradient(180deg, var(--tan-100) 0%, var(--cream) 100%);
  padding-block: clamp(2rem, 4.5vw, 3.25rem) clamp(1.5rem, 3vw, 2.25rem);
}

.masthead--media .masthead__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.masthead__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}

.masthead h1 {
  margin-bottom: 0.6rem;
}

.masthead .lede {
  max-width: 62ch;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink-3);
  padding-block: 0.85rem;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--line-2);
  margin-right: 0.35rem;
}

.breadcrumbs a {
  color: var(--ink-2);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--red);
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink-3);
}

/* 11. Footer ------------------------------------------------------------ */
.site-footer {
  background-color: var(--slate);
  color: #ded4c6;
  margin-top: clamp(3rem, 7vw, 5rem);
  font-size: 0.925rem;
}

.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan-300);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.site-footer a {
  color: #f3ece2;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.9fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding-block: clamp(2.25rem, 5vw, 3.25rem);
}

.site-footer__brand .brand__name,
.site-footer__brand .brand__tag {
  color: #fff;
}

.site-footer__brand .brand__tag {
  color: var(--tan-300);
}

.site-footer__brand p {
  margin-top: 1rem;
  max-width: 40ch;
}

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

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(243, 236, 226, 0.18);
  padding-block: 1.35rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #bdb2a3;
}

.site-footer__bottom p {
  margin: 0;
  max-width: 68ch;
}

/* 12. Utilities & accessibility ----------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.text-small {
  font-size: 0.875rem;
}

.text-muted {
  color: var(--ink-3);
}

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

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 2.25rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.center-block {
  margin-inline: auto;
}

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

.link-list li {
  border-bottom: 1px solid var(--line);
}

.link-list li:last-child {
  border-bottom: 0;
}

.link-list a {
  display: block;
  padding: 0.7rem 0;
  text-decoration: none;
  font-weight: 600;
}

.link-list a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.link-list--inline li {
  display: inline;
  border: 0;
}

.link-list--inline a {
  display: inline-block;
  padding-right: 1.25rem;
}

/* Strip of the restaurant's original 84x105 food icons, kept for reference */
.icon-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.icon-strip img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

/* Small illustrative figure that sits inside a column of running text */
.figure-inline {
  float: right;
  width: 150px;
  margin: 0.4rem 0 1rem 1.75rem;
  padding: 0.65rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.figure-inline img {
  width: 84px;
  margin: 0 auto 0.55rem;
  border-radius: 3px;
}

.figure-inline figcaption {
  font-size: 0.775rem;
  line-height: 1.45;
  color: var(--ink-3);
}

@media (max-width: 620px) {
  .figure-inline {
    float: none;
    width: auto;
    max-width: 220px;
    margin: 1.25rem auto;
  }
}

/* 13. Responsive -------------------------------------------------------- */

/* Tablet and below: switch to the disclosure navigation, which is cleaner
   than letting a nine-item row wrap onto a second line. */
@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    flex-basis: 100%;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    padding-block: 0.6rem 1rem;
    border-top: 1px solid var(--line);
  }

  .site-nav a {
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
  }

  .site-nav .nav-cta a {
    text-align: center;
    margin-top: 0.35rem;
  }
}

@media (max-width: 1000px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stat-strip li:nth-child(3) {
    border-left: 0;
  }

  .stat-strip li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 860px) {
  .hero__grid,
  .masthead--media .masthead__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__media,
  .masthead__media {
    order: -1;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-columns {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__name {
    font-size: 1.05rem;
  }

  /* Let the tagline wrap again so the header never forces the page wider
     than the phone viewport. */
  .brand__tag {
    white-space: normal;
    letter-spacing: 0.06em;
  }

  .nav-toggle {
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Stack two-column fact tables on narrow screens: the nowrap label column
   would otherwise force the page wider than the phone viewport. */
@media (max-width: 480px) {
  .facts-table,
  .facts-table tbody,
  .facts-table tr,
  .facts-table th,
  .facts-table td {
    display: block;
    width: auto;
  }

  .facts-table tr {
    padding-block: 0.55rem;
    border-bottom: 1px solid var(--line);
  }

  .facts-table tr:last-child {
    border-bottom: 0;
  }

  .facts-table th,
  .facts-table td {
    white-space: normal;
    padding: 0;
    border-bottom: 0;
  }

  .facts-table th {
    font-size: 0.775rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
}

@media (max-width: 560px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-strip ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-strip li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-strip li:first-child {
    border-top: 0;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .menu-item__head {
    flex-wrap: wrap;
  }

  .menu-item__head::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .btn:hover,
  .tile:hover {
    transform: none;
  }
}

/* 14. Print ------------------------------------------------------------- */
@media print {
  .notice-bar,
  .site-header,
  .site-footer,
  .breadcrumbs,
  .hero__actions,
  .btn,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .wrap,
  .wrap--narrow {
    max-width: none;
    padding: 0;
  }

  .section,
  .masthead {
    border: 0;
    padding-block: 1rem;
    background: none;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  .menu-item__price {
    color: #000;
  }

  .faq-item {
    border: 0;
    box-shadow: none;
  }

  .faq-item > summary {
    padding-left: 0;
  }

  .faq-item > summary::after {
    display: none;
  }

  .faq-item__body {
    padding-left: 0;
  }
}
