/* =================================================================
   Faustinos Breakfast & Tacos — Stylesheet
   Mobile-first, responsive, vanilla CSS (Grid + Flexbox)
   ================================================================= */

/* -----------------------------------------------------------------
   1. Design tokens
   ----------------------------------------------------------------- */
:root {
  /* Brand colors */
  --color-yellow: #fbaf1c;
  --color-orange: #e46026;
  --color-red: #ed4335;
  --color-black: #000000;

  /* Neutrals (soft + warm) */
  --color-cream: #fdf8f1;
  --color-sand: #f6efe4;
  --color-white: #ffffff;
  --color-ink: #1a1410;
  --color-muted: #6b625a;
  --color-line: #ece3d6;

  /* Typography */
  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 12px 30px rgba(26, 20, 16, 0.1);
  --shadow-lg: 0 24px 60px rgba(26, 20, 16, 0.16);

  /* Layout */
  --maxw: 1200px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -----------------------------------------------------------------
   3. Layout helpers
   ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.section {
  padding-block: var(--space-6);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-1);
}

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: var(--space-2);
}

.section-sub {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* -----------------------------------------------------------------
   4. Buttons
   ----------------------------------------------------------------- */
.btn {
  --btn-bg: var(--color-orange);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  --btn-bg: var(--color-orange);
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
}

.btn--red {
  --btn-bg: var(--color-red);
}

.btn--dark {
  --btn-bg: var(--color-black);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--color-ink);
  border-color: var(--color-ink);
}

.btn--ghost:hover {
  background: var(--color-ink);
  color: #fff;
}

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--color-ink);
}

.btn--block {
  width: 100%;
}

/* -----------------------------------------------------------------
   5. Header / navigation
   ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 241, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

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

.brand-text {
  display: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-top: 2px;
}

.nav {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-block: 4px;
  transition: color 0.2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover {
  color: var(--color-orange);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}

.header-phone:hover {
  color: var(--color-orange);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.header-actions .btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-cream);
  z-index: 99;
  padding: var(--space-4) var(--space-3) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a.m-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-line);
}

.mobile-menu .btn {
  margin-top: var(--space-2);
}

.mobile-menu .m-contact {
  margin-top: auto;
  padding-top: var(--space-3);
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* -----------------------------------------------------------------
   6. Hero
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(
      120% 120% at 85% 0%,
      rgba(251, 175, 28, 0.18),
      transparent 55%
    ),
    var(--color-cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  gap: var(--space-4);
  padding-block: var(--space-5) var(--space-6);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero h1 {
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  margin-block: var(--space-2);
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--color-orange), var(--color-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.12rem;
  color: var(--color-muted);
  max-width: 540px;
  margin-bottom: var(--space-3);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-media {
  position: relative;
}

.hero-media .photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transform: rotate(-1.5deg);
}

.hero-media .floating-card {
  position: absolute;
  bottom: -22px;
  left: -6px;
  background: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-media .floating-card img {
  height: 44px;
  width: auto;
}

.hero-media .floating-card strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  display: block;
}

.hero-media .floating-card span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Open-now status chip */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-muted);
  position: relative;
  flex-shrink: 0;
}

.status-chip.is-open .status-dot {
  background: #2bb673;
  box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5);
  animation: pulse 2s infinite;
}

.status-chip.is-closed .status-dot {
  background: var(--color-red);
}

.status-chip .status-detail {
  font-weight: 500;
  color: var(--color-muted);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(43, 182, 115, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 182, 115, 0);
  }
}

/* -----------------------------------------------------------------
   7. Featured categories
   ----------------------------------------------------------------- */
.featured {
  background: var(--color-white);
}

.cat-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0) 85%
  );
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card .cat-body {
  padding: var(--space-3);
}

.cat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.cat-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.cat-card .tag {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}

/* -----------------------------------------------------------------
   8. About
   ----------------------------------------------------------------- */
.about {
  background: var(--color-sand);
}

.about-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.about-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.about-media img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.about-media img:first-child {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.about-text p {
  color: var(--color-muted);
  margin-bottom: var(--space-2);
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.about-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-orange);
  line-height: 1;
}

.about-stats .stat span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* -----------------------------------------------------------------
   9. Menu preview
   ----------------------------------------------------------------- */
.menu-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-card .thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.menu-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.menu-card:hover .thumb img {
  transform: scale(1.07);
}

.menu-card .menu-body {
  padding: var(--space-2) var(--space-3) var(--space-3);
}

.menu-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
}

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

.menu-foot {
  text-align: center;
  margin-top: var(--space-5);
}

/* -----------------------------------------------------------------
   10. CTA banner
   ----------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-banner::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -60px;
}

.cta-banner::after {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -50px;
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  margin-bottom: var(--space-2);
  position: relative;
}

.cta-banner p {
  max-width: 560px;
  margin: 0 auto var(--space-3);
  font-size: 1.05rem;
  opacity: 0.95;
  position: relative;
}

.cta-banner .hero-cta {
  justify-content: center;
  position: relative;
}

/* -----------------------------------------------------------------
   11. Footer
   ----------------------------------------------------------------- */
.site-footer {
  background: var(--color-ink);
  color: #d8cfc4;
  padding-block: var(--space-6) var(--space-4);
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

.footer-brand img {
  height: 70px;
  width: auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-bottom: var(--space-2);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
}

.footer-col ul li {
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--color-yellow);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.92rem;
}

.footer-hours li.today {
  color: #fff;
  font-weight: 600;
}

.footer-hours li.today .day::before {
  content: "● ";
  color: var(--color-yellow);
}

.socials {
  display: flex;
  gap: 0.7rem;
  margin-top: var(--space-2);
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.socials a:hover {
  background: var(--color-orange);
  transform: translateY(-3px);
}

.socials svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.footer-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  font-size: 0.85rem;
  color: #9a9088;
}

/* -----------------------------------------------------------------
   12. Contact page
   ----------------------------------------------------------------- */
.page-hero {
  background: radial-gradient(
      120% 120% at 15% 0%,
      rgba(237, 67, 53, 0.14),
      transparent 55%
    ),
    var(--color-cream);
  padding-block: var(--space-6);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  margin-bottom: var(--space-2);
}

.page-hero p {
  color: var(--color-muted);
  font-size: 1.12rem;
  max-width: 600px;
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  margin-bottom: var(--space-2);
}

.contact-card .icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.contact-card p,
.contact-card a {
  color: var(--color-muted);
  font-size: 1rem;
}

.contact-card a:hover {
  color: var(--color-orange);
}

/* Hours table */
.hours-wrap {
  background: var(--color-sand);
}

.hours-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  align-items: start;
}

.hours-list {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-line);
  font-size: 1rem;
}

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

.hours-list li.today {
  background: linear-gradient(
    90deg,
    rgba(251, 175, 28, 0.16),
    rgba(251, 175, 28, 0)
  );
  font-weight: 600;
}

.hours-list .day {
  font-family: var(--font-display);
}

.hours-list .today-flag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-left: 0.5rem;
}

/* Map */
.map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  background: #fff;
}

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

.map-card .map-foot {
  padding: var(--space-2) var(--space-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.map-card .map-foot address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* -----------------------------------------------------------------
   13. Scroll-reveal
   ----------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

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

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* -----------------------------------------------------------------
   14. Responsive — tablet & up
   ----------------------------------------------------------------- */
@media (min-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 860px) {
  .brand-text {
    display: block;
  }
  .nav {
    display: flex;
  }
  .header-phone {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding-block: var(--space-6) var(--space-7);
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

  .hours-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  }
}

@media (min-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cat-card {
    min-height: 380px;
  }
}
