:root {
  color-scheme: light;
  --bg: #f7f0e7;
  --paper: #fffaf2;
  --paper-strong: #f1e3d2;
  --ink: #241810;
  --muted: #66584b;
  --line: #d7c3a9;
  --wine: #8b3026;
  --wine-strong: #6f231b;
  --olive: #566b42;
  --olive-soft: #e2ead8;
  --gold: #c49a55;
  --charcoal: #17100c;
  --header-bg: rgba(247, 240, 231, 0.82);
  --shadow: 0 18px 45px rgba(48, 30, 18, 0.13);
  --shadow-soft: 0 10px 24px rgba(48, 30, 18, 0.08);
  --radius: 8px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #17100c;
  --paper: #211812;
  --paper-strong: #2a1f18;
  --ink: #fbefe0;
  --muted: #cdb9a4;
  --line: #4a372a;
  --wine: #c86f5e;
  --wine-strong: #df866f;
  --olive: #a4ba86;
  --olive-soft: #314127;
  --gold: #d6b26e;
  --charcoal: #100b08;
  --header-bg: rgba(23, 16, 12, 0.86);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Satoshi", "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.72), rgba(247, 240, 231, 0.96)),
    repeating-linear-gradient(90deg, rgba(139, 48, 38, 0.03) 0 1px, transparent 1px 54px),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

:root[data-theme="dark"] body {
  background:
    linear-gradient(180deg, rgba(33, 24, 18, 0.74), rgba(23, 16, 12, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 54px),
    var(--bg);
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.42rem;
}

h4 {
  font-size: 1.05rem;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3.2rem;
  z-index: 9999;
  border-radius: var(--radius);
  background: var(--wine);
  color: #fff;
  padding: 0.55rem 0.85rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 0.75rem;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding-block: 4.3rem;
  scroll-margin-top: 5.2rem;
}

.hero {
  scroll-margin-top: 5.2rem;
}

.section-header {
  margin-bottom: 1.4rem;
  max-width: 760px;
}

.section-intro,
.section-header > p:not(.eyebrow) {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 62ch;
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: color-mix(in srgb, var(--line), transparent 20%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 5.8rem;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.55rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 76px;
  padding: 0.48rem 0.56rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(48, 30, 18, 0.12);
}

.brand img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  object-position: center;
}

.menu-toggle {
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 0.6rem);
  display: grid;
  gap: 0.18rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header[data-nav-open="true"] .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 0.65rem;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.main-nav a[aria-current="page"] {
  background: var(--paper-strong);
  color: var(--wine);
}

.nav-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.28rem 0.64rem;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  animation: statusPulse 2.4s ease-in-out infinite;
}

.status-badge.open {
  color: #255528;
  background: rgba(86, 107, 66, 0.16);
  border-color: rgba(86, 107, 66, 0.36);
}

.status-badge.closed {
  color: #8b3026;
  background: rgba(139, 48, 38, 0.14);
  border-color: rgba(139, 48, 38, 0.32);
}

:root[data-theme="dark"] .status-badge.open {
  color: #b9d39a;
}

:root[data-theme="dark"] .status-badge.closed {
  color: #e38f80;
}

.theme-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.36rem 0.74rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 82svh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(18, 11, 7, 0.9) 0%, rgba(18, 11, 7, 0.52) 48%, rgba(18, 11, 7, 0.76) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(18, 11, 7, 0.68));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: #fff5e8;
  padding-block: 6rem 5.2rem;
}

.hero-content .eyebrow {
  color: #e5c17e;
}

.hero-content h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 54ch;
  color: #f7e2cb;
  font-size: 1.06rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.08rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 28px rgba(139, 48, 38, 0.28);
}

.btn-primary:hover {
  background: var(--wine-strong);
}

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

.btn-cream {
  background: #fff4dd;
  color: #4b2f20;
}

.menu-strip {
  position: relative;
  z-index: 3;
  margin-top: -2.2rem;
}

.menu-strip__inner {
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(255, 238, 214, 0.42);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper), transparent 4%);
  box-shadow: var(--shadow);
  padding: 0.95rem;
}

.menu-strip__lead {
  color: var(--wine);
  font-weight: 900;
}

.menu-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-strip__list li {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  padding: 0.34rem 0.68rem;
}

.about-layout {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.about-media {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper), transparent 4%);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.about-copy p + p {
  margin-top: 0.95rem;
}

.about-copy p:not(.eyebrow),
.contact-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.recommendations {
  background:
    linear-gradient(180deg, rgba(36, 24, 16, 0.98), rgba(24, 16, 11, 0.98)),
    var(--charcoal);
  color: #fff3e4;
}

.recommendations .eyebrow {
  color: #d9b56d;
}

.recommendations .section-header p:not(.eyebrow) {
  color: #dfc8ad;
}

.recommendation-grid {
  display: grid;
  gap: 0.85rem;
}

.recommendation-card {
  display: grid;
  gap: 0.48rem;
  min-height: 100%;
  border: 1px solid rgba(255, 239, 213, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.recommendation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 193, 126, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.recommendation-card--feature {
  background: linear-gradient(135deg, rgba(139, 48, 38, 0.58), rgba(86, 107, 66, 0.34));
}

.recommendation-card p {
  color: #e4cdb4;
}

.special-chip {
  justify-self: start;
  border: 1px solid rgba(221, 171, 107, 0.44);
  border-radius: 999px;
  background: rgba(221, 171, 107, 0.12);
  color: #e8c483;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.22rem 0.58rem;
  text-transform: uppercase;
}

.special-chip--olive {
  border-color: rgba(164, 186, 134, 0.44);
  background: rgba(164, 186, 134, 0.12);
  color: #c8dea9;
}

.special-chip--gold {
  border-color: rgba(214, 178, 110, 0.48);
  color: #e6c987;
}

.special-price {
  color: #fff3d3;
  font-weight: 900;
}

.special-note {
  font-size: 0.92rem;
}

.recommendation-card .btn {
  justify-self: start;
  margin-top: 0.3rem;
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1.1rem;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.menu-tab {
  flex: 0 0 auto;
  min-height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 900;
  padding: 0.48rem 0.82rem;
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.menu-tab:hover {
  transform: translateY(-1px);
  color: var(--wine);
}

.menu-tab.is-active {
  border-color: transparent;
  background: var(--wine);
  color: #fff;
}

.menu-layout {
  display: grid;
  gap: 1rem;
}

.menu-sidebar {
  display: grid;
  gap: 0.9rem;
}

.menu-highlight {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.menu-highlight img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.menu-highlight__copy {
  padding: 1rem;
}

.menu-highlight__title {
  margin-bottom: 0.35rem;
  color: var(--wine);
  font-weight: 900;
}

.menu-highlight p:not(.menu-highlight__title) {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-pdf-card {
  display: grid;
  gap: 0.65rem;
  border: 1px solid color-mix(in srgb, var(--wine), transparent 62%);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139, 48, 38, 0.1), rgba(86, 107, 66, 0.08));
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.menu-pdf-card p:not(.menu-highlight__title) {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-pdf-card .btn {
  justify-self: start;
}

.menu-panels {
  display: grid;
  gap: 0.95rem;
}

.menu-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper), transparent 2%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel__header {
  display: grid;
  gap: 0.12rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, color-mix(in srgb, var(--paper-strong), transparent 10%), color-mix(in srgb, var(--paper), transparent 8%));
  padding: 0.95rem 1rem;
}

.menu-panel__kicker {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
}

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

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  min-height: 4rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 26%);
}

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

.menu-item h4 {
  margin-bottom: 0.22rem;
  color: var(--ink);
}

.menu-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-item strong {
  color: var(--wine);
  font-size: 1rem;
  white-space: nowrap;
}

.extras-grid {
  display: grid;
  gap: 0;
}

.extras-grid span {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.65rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 26%);
  padding: 0.66rem 1rem;
  color: var(--muted);
}

.extras-grid span:last-child {
  border-bottom: 0;
}

.extras-grid strong {
  color: var(--wine);
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.88rem;
}

.contact-card a {
  color: var(--wine);
  font-weight: 900;
}

.opening-note {
  color: var(--muted);
}

.hours-table-wrap {
  overflow-x: auto;
}

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

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

.hours-table th {
  color: var(--ink);
  font-weight: 900;
}

.hours-table td {
  color: var(--muted);
}

.map-card {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.site-footer {
  margin-top: 2rem;
  background: var(--charcoal);
  color: #faead4;
}

.footer-grid {
  display: grid;
  gap: 1.05rem;
  padding-block: 1.6rem;
}

.footer-brand img {
  width: min(190px, 100%);
  height: 118px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 229, 196, 0.28);
  border-radius: var(--radius);
  background: #fffaf2;
  padding: 0.55rem;
  margin-bottom: 0.58rem;
}

.footer-brand p {
  max-width: 42ch;
  color: #d8c2aa;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.footer-nav a {
  color: #f3d4a9;
  text-underline-offset: 0.2rem;
}

.footer-nav a:hover {
  color: #fff2dc;
}

.copyright {
  color: #c9aa86;
  font-size: 0.9rem;
}

.legal-main {
  padding-block: 3.2rem;
}

.legal-card {
  max-width: 860px;
  margin-inline: auto;
}

.legal-card h1 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.legal-card h2 {
  margin-top: 1.35rem;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.legal-card ul {
  margin: 0.25rem 0 0;
  padding-left: 1.2rem;
}

.allergen-media {
  margin: 0 0 1.25rem;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.allergen-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pdf-download-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--wine), transparent 62%);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139, 48, 38, 0.1), rgba(86, 107, 66, 0.08));
  padding: 1rem;
}

.pdf-download-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.pdf-download-card p:not(.eyebrow) {
  color: var(--muted);
}

.pdf-download-card .btn {
  justify-self: start;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: transform 680ms cubic-bezier(0.19, 1, 0.22, 1), opacity 680ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.4%);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.62;
  }
}

@media (min-width: 700px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  h3 {
    font-size: 1.62rem;
  }

  .container {
    width: min(1160px, calc(100% - 3rem));
  }

  .section {
    padding-block: 5.8rem;
  }

  .menu-strip__inner {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

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

  .recommendation-card--feature {
    grid-column: span 2;
  }

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

  .extras-grid span:nth-last-child(2) {
    border-bottom: 0;
  }
}

@media (min-width: 920px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }

  .brand {
    width: 132px;
    height: 78px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.08rem;
    overflow-x: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    scrollbar-width: thin;
  }

  .main-nav a {
    padding: 0.36rem 0.48rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .nav-actions {
    grid-column: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin-bottom: 0;
  }

  .hero-content {
    padding-block: 7.4rem 6.3rem;
  }

  .hero-content h1 {
    max-width: 13ch;
  }

  .about-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.6rem;
  }

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

  .recommendation-card--feature {
    grid-column: auto;
  }

  .menu-layout {
    grid-template-columns: 305px 1fr;
    align-items: start;
  }

  .menu-sidebar {
    position: sticky;
    top: 5.7rem;
  }

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

  .menu-list--compact .menu-item:nth-last-child(2) {
    border-bottom: 0;
  }

  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr auto;
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 4.15rem;
  }

  .main-nav a {
    padding-inline: 0.6rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .container {
    width: min(1160px, calc(100% - 1.25rem));
  }

  .brand {
    width: 118px;
    height: 70px;
  }

  .theme-toggle {
    padding-inline: 0.62rem;
  }

  .status-badge {
    max-width: 55vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding-block: 4.8rem 4.1rem;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .menu-strip__list li {
    border-radius: var(--radius);
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }

  .menu-item strong {
    justify-self: start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
