:root {
  --philly-red: #c31123;
  --philly-red-dark: #9f0c1b;
  --brand-navy: #001a41;
  --brand-white: #fffdf6;
  --brand-black: #090e1f;
  --ink: #123459;
  --ink-soft: #4a617d;
  --paper: #fbf7ed;
  --paper-deep: #f3e9d6;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(0, 26, 65, 0.16);
  --line-soft: rgba(0, 26, 65, 0.09);
  --bg:
    radial-gradient(circle at 14% -8%, rgba(255, 255, 255, 0.9), transparent 44%),
    radial-gradient(circle at 96% 2%, rgba(195, 17, 35, 0.1), transparent 34%),
    linear-gradient(180deg, #fcf8ef 0%, #f7efde 52%, #f1e6cf 100%);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.12);
  --shadow-mist: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --space-1: 0.5rem;
  --space-2: 0.85rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%),
    repeating-linear-gradient(
      0deg,
      rgba(0, 26, 65, 0.012) 0,
      rgba(0, 26, 65, 0.012) 1px,
      transparent 1px,
      transparent 5px
    );
}

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

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

.site-max {
  width: min(1180px, calc(100% - 1.6rem));
  margin-inline: auto;
}

.page-shell {
  margin: 0 auto 2.8rem;
  padding-bottom: 1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0.6rem;
  z-index: 40;
  margin-top: 0.8rem;
  overflow: visible;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  background: rgba(9, 14, 31, 0.92);
  padding: 0.7rem 1rem;
  transition: box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 14, 31, 0.98);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-mist);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-mark {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(6.2rem, 17.5vw, 8.9rem);
  height: clamp(2.35rem, 6.9vw, 3.3rem);
  overflow: visible;
  z-index: 2;
  line-height: 1;
}

.brand-mark:focus-visible {
  outline: 2px solid var(--philly-red);
  outline-offset: 3px;
}

.brand-logo {
  position: absolute;
  left: 50%;
  top: 58%;
  width: auto;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(1.88);
  transform-origin: center;
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.2))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  transition: transform 0.24s ease, top 0.24s ease, filter 0.24s ease;
}

.site-header.is-scrolled .brand-logo {
  top: 52%;
  transform: translate(-50%, -50%) scale(1.03);
  filter:
    drop-shadow(0 9px 13px rgba(0, 0, 0, 0.14))
    drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.16s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.28rem;
  border-bottom: 2px solid var(--philly-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="true"] {
  color: var(--philly-red);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Oswald", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.62rem 1.08rem;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--philly-red), var(--philly-red-dark));
  box-shadow: 0 8px 20px rgba(159, 12, 27, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(0.96);
}

.btn-secondary {
  color: #fff;
  background: rgba(18, 18, 18, 0.84);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #0d0d0d;
}

.mobile-toggle {
  display: inline-flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.mobile-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 0.64rem;
  padding-top: 0.7rem;
}

.mobile-links {
  display: grid;
  gap: 0.58rem;
}

.mobile-order {
  margin-top: 0.5rem;
  width: 100%;
}

.hero-section {
  position: relative;
  margin: 1rem 0 2.35rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 26, 65, 0.08);
  background:
    radial-gradient(circle at 12% 16%, rgba(230, 174, 82, 0.14), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(0, 26, 65, 0.06), transparent 32%),
    linear-gradient(145deg, #fffefb 0%, #fffaf0 52%, var(--brand-white) 100%);
  box-shadow: var(--shadow-soft);
}

.hero-content {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem;
}

.hero-kicker {
  margin: 0;
  color: rgba(0, 26, 65, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0.4rem 0 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.75rem, 5.2vw, 4.7rem);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 0.9;
}

.hero-title .accent {
  color: #e03a49;
}

.hero-description {
  margin: 0.8rem 0 0;
  color: rgba(0, 26, 65, 0.8);
  max-width: 540px;
  font-size: 0.97rem;
}

.hero-cta-row {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.hero-media img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(1.02) contrast(1.02);
}

.hero-strip {
  position: relative;
  background: linear-gradient(90deg, #ad0919, #c31123 40%, #ad0919);
  color: #fff;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.72rem, 2.6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.62rem 0.8rem 0.66rem;
}

.hero-strip::before,
.hero-strip::after {
  content: "";
  position: absolute;
  top: 52%;
  width: 14%;
  border-top: 1px solid rgba(255, 255, 255, 0.56);
}

.hero-strip::before {
  left: 5%;
}

.hero-strip::after {
  right: 5%;
}

.trust-row {
  margin: 0 0 var(--space-4);
  display: grid;
  gap: 0.8rem;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  padding: 0.84rem;
}

.trust-value {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.48rem;
  line-height: 1;
}

.trust-label {
  margin: 0.26rem 0 0;
  color: rgba(0, 26, 65, 0.72);
  font-size: 0.86rem;
}

.section {
  margin: 0 0 var(--space-5);
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-title-row::before,
.section-title-row::after {
  content: "";
  flex: 1;
  border-top: 1px solid rgba(0, 26, 65, 0.2);
}

.section-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.45rem, 4.8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
}

.section-subtitle {
  margin: 0.2rem 0 1.08rem;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(0, 26, 65, 0.78);
}

.section-subtitle-red {
  color: var(--philly-red);
}

.menu-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
  margin-bottom: 1.08rem;
}

.menu-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.52rem;
  width: 100%;
  overflow-x: auto;
  padding: 0.06rem 0.04rem 0.28rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.menu-filters::-webkit-scrollbar {
  height: 6px;
}

.menu-filters::-webkit-scrollbar-thumb {
  background: rgba(0, 26, 65, 0.35);
  border-radius: 999px;
}

.menu-filters::-webkit-scrollbar-track {
  background: rgba(0, 26, 65, 0.08);
}

.menu-filters:empty {
  display: none;
}

.menu-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid rgba(0, 26, 65, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-navy);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.46rem 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.menu-chip:hover,
.menu-chip:focus-visible,
.menu-chip.is-active {
  background: #102f52;
  border-color: #102f52;
  color: #fff;
  transform: translateY(-1px);
}

.menu-chip:focus-visible {
  outline: 2px solid rgba(195, 17, 35, 0.34);
  outline-offset: 1px;
}

.menu-search {
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 0.54rem 0.76rem;
  font-size: 0.9rem;
}

.menu-search:focus-visible {
  outline: 2px solid rgba(195, 17, 35, 0.34);
  outline-offset: 1px;
}

.menu-groups {
  display: grid;
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 26, 65, 0.18);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.menu-item:first-child {
  border-top: 1px solid rgba(0, 26, 65, 0.18);
}

.menu-item:hover {
  transform: translateX(4px);
  border-color: rgba(195, 17, 35, 0.28);
}

.menu-item-media {
  min-width: 0;
}

.menu-item-media img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.menu-item-body {
  min-width: 0;
}

.menu-item-body h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.24rem, 2.1vw, 1.6rem);
  font-weight: 600;
  line-height: 1.05;
}

.menu-price {
  margin: 0;
  justify-self: end;
  align-self: start;
  white-space: nowrap;
  color: var(--philly-red-dark);
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.menu-desc {
  margin: 0.34rem 0 0;
  font-size: 0.9rem;
  color: rgba(0, 26, 65, 0.78);
  line-height: 1.42;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
  margin-top: 0.5rem;
}

.menu-tag {
  border: 1px solid rgba(195, 17, 35, 0.2);
  color: var(--philly-red);
  background: rgba(195, 17, 35, 0.08);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.menu-item-enter {
  opacity: 0;
  transform: translateY(10px);
}

.menu-groups.is-populated .menu-item-enter {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.34s ease var(--menu-item-delay, 0ms),
    transform 0.34s ease var(--menu-item-delay, 0ms);
}

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

.about-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-mist);
}

.about-copy {
  background: transparent;
  border-left: 3px solid rgba(195, 17, 35, 0.72);
  padding: 0.24rem 0 0.24rem 1rem;
}

.about-copy h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.62rem;
  font-weight: 600;
  line-height: 1.04;
}

.about-copy p {
  margin: 0.56rem 0 0;
  font-size: 0.92rem;
  color: rgba(0, 26, 65, 0.8);
  line-height: 1.45;
}

.about-list {
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.44rem;
}

.about-list li {
  list-style: none;
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: rgba(0, 26, 65, 0.82);
}

.about-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--philly-red);
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0.45em;
}

.career-grid {
  display: grid;
  gap: 1rem;
}

.career-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: left;
  box-shadow: none;
  transition: transform 0.2s ease;
}

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

.career-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: var(--shadow-mist);
}

.career-card h3 {
  margin: 0.65rem 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.74rem;
  font-weight: 600;
  line-height: 1;
}

.career-card p {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  color: rgba(0, 26, 65, 0.75);
}

.bottom-red-cta {
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #9f0c1b, #c31123 48%, #9f0c1b);
  color: #fff;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.66rem 0.9rem;
}

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

.contact-left {
  background: var(--surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 1rem;
}

.contact-left h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.contact-left p {
  display: block;
  margin: 0.48rem 0 0;
  font-size: 0.92rem;
  line-height: 1.42;
  color: rgba(0, 26, 65, 0.82);
}

.hours-block {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0, 26, 65, 0.14);
}

.hours-list {
  list-style: none;
  margin: 0.54rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.34rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 26, 65, 0.12);
  font-size: 0.87rem;
}

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

.hours-list span {
  color: rgba(0, 26, 65, 0.72);
}

.hours-list strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.contact-form-wrap {
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: var(--surface-strong);
  backdrop-filter: blur(10px);
  padding: 0.9rem;
  box-shadow: var(--shadow-mist);
}

.contact-map {
  margin-top: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow-mist);
}

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

.form-grid {
  display: grid;
  gap: 0.5rem;
}

.input-field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.56rem 0.68rem;
  font-family: "Inter", sans-serif;
  font-size: 0.91rem;
  color: var(--brand-navy);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea.input-field {
  min-height: 112px;
  resize: vertical;
}

.input-field::placeholder {
  color: rgba(0, 26, 65, 0.5);
}

.input-field:focus-visible {
  border-color: rgba(195, 17, 35, 0.38);
  box-shadow: 0 0 0 3px rgba(195, 17, 35, 0.12);
  outline: 0;
}

.contact-submit {
  margin-top: 0.35rem;
  width: 100%;
}

.error-text {
  margin: 0;
  color: var(--philly-red);
  font-size: 0.8rem;
}

.status-success,
.status-error {
  border: 1px solid;
  border-radius: 12px;
  padding: 0.48rem 0.6rem;
  margin-bottom: 0.56rem;
  font-size: 0.85rem;
}

.status-success {
  border-color: #4f9363;
  background: #e8f6ec;
  color: #1f4f2c;
}

.status-error {
  border-color: #c66c74;
  background: #fcecef;
  color: #731d25;
}

.footer {
  margin-top: 1.15rem;
  border-top: 1px solid rgba(0, 26, 65, 0.2);
  padding-top: 0.8rem;
}

.footer-grid {
  display: grid;
  gap: 0.8rem;
}

.footer-grid h4 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-grid p,
.footer-grid a {
  margin-top: 0.1rem;
  font-size: 0.86rem;
}

.footer-copy {
  border-top: 1px solid rgba(0, 26, 65, 0.16);
  margin-top: 0.66rem;
  padding-top: 0.46rem;
  font-size: 0.75rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(8, 8, 8, 0.68);
}

.modal-card {
  width: min(430px, 100%);
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid rgba(0, 26, 65, 0.16);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.55rem;
}

.modal-head h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.95rem;
  text-transform: uppercase;
  line-height: 1;
}

.modal-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 26, 65, 0.2);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.modal-actions {
  display: grid;
  gap: 0.56rem;
  margin-top: 0.66rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hidden {
  display: none !important;
}

[data-hidden="true"] {
  display: none !important;
}

.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;
}

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

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

  .menu-item-enter {
    opacity: 1;
    transform: none;
  }

  .menu-groups.is-populated .menu-item-enter {
    transition: none;
  }

  .menu-item,
  .menu-chip,
  .career-card,
  .brand-logo,
  .btn {
    transition: none;
  }
}

@media (max-width: 520px) {
  .site-max {
    width: calc(100% - 1rem);
  }

  .site-header {
    top: 0.5rem;
    padding: 0.62rem 0.82rem;
  }

  .brand-mark {
    width: clamp(5.3rem, 24vw, 7.2rem);
    height: clamp(2.1rem, 9.8vw, 2.95rem);
  }

  .brand-logo {
    top: 59%;
    transform: translate(-50%, -50%) scale(1.65);
  }

  .site-header.is-scrolled .brand-logo {
    top: 52%;
    transform: translate(-50%, -50%) scale(1);
  }

  .hero-content {
    padding: 0.95rem;
  }

  .hero-media img {
    height: 198px;
  }

  .menu-item {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.82rem 0;
  }

  .menu-item-media img {
    height: 84px;
  }

  .menu-item-body h3 {
    font-size: 1.12rem;
  }

  .menu-desc {
    margin-top: 0.24rem;
    font-size: 0.8rem;
  }

  .menu-price {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.42rem;
    font-size: 0.92rem;
  }

  .menu-tags {
    margin-top: 0.4rem;
  }

  .bottom-red-cta {
    font-size: 1.2rem;
  }
}

@media (min-width: 760px) {
  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-toolbar {
    align-items: center;
  }

  .section {
    margin-bottom: 3.3rem;
  }
}

@media (min-width: 920px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-toggle,
  .mobile-panel {
    display: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
    padding: 1.25rem;
  }

  .hero-media img {
    height: 300px;
  }

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

  .menu-item-media img {
    height: 128px;
  }

  .menu-item-body h3 {
    font-size: 1.66rem;
  }

  .menu-price {
    font-size: 1.15rem;
  }

  .about-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 1.2rem;
  }

  .about-image img {
    height: 100%;
    min-height: 330px;
  }

  .career-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .contact-map iframe {
    height: 330px;
  }

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