/* =========================================================
   Fred's Charcoal Grill — single stylesheet
   ========================================================= */
:root {
  --red: #fe0000;
  --red-dark: #c02b2b;
  --ink: #1f2121;
  --ink-2: #333333;
  --muted: #6b6b6b;
  --cream: #fff8f1;
  --yellow: #ffb700;
  --gold: #ffb700;
  --line: #e7e7e7;
  --container: 1200px;
  --radius: 6px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --font: "Karla", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Gelasio", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 188px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #1f2121;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 .4em;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-head);
}

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

.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid var(--red);
  transition: .2s ease;
  cursor: pointer;
}

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

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

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

/* =================== HEADER =================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-top: 5px solid var(--gold);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: #141414;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

.site-header .container {
  max-width: 1380px;
}

/* ---- top bar ---- */
.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
}

.topbar-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e6e6e6;
  font-size: 18px;
  transition: color .3s ease;
}

.topbar-address:hover {
  color: var(--gold);
}

.topbar-phone {
  display: none;
}

.topbar-socials {
  display: flex;
  gap: 34px;
}

.topbar-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e6e6e6;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .3s ease;
}

.topbar-socials a:hover {
  color: var(--gold);
}

/* ---- main bar ---- */
.mainbar-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 125px;
}

.logo img {
  height: 101px;
  width: auto;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 57px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 22px;
  padding-bottom: 10px;
  position: relative;
}

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

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  padding: 18px 31px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .2s ease;
}

.header-cta:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}

/* mobile-only extras (phone + socials) live inside .nav, hidden on desktop */
.nav-extra {
  display: none;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: #000 url("images/hero.png") center/cover no-repeat;
  background-image: image-set(url("images/hero.webp") type("image/webp"), url("images/hero.png") type("image/png"));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  padding: 270px 20px 180px;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 92px);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
  margin-bottom: 32px;
  white-space: nowrap;
}

.hero-notice {
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  border-radius: 4px;
  padding: 26px 30px;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.hero-notice strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hero-notice span {
  display: block;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: .5px;
}

.hero p {
  font-size: clamp(17px, 2vw, 21px);
  max-width: 760px;
  margin: 0 auto;
  opacity: .95;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: wheel 1.8s infinite;
}

@keyframes wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

/* =================== INFO BAR =================== */
.info-bar {
  position: relative;
  z-index: 5;
  margin-top: -90px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.info-card {
  background: var(--red);
  color: #fff;
  padding: 48px 40px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  text-align: center;
}

.info-card .ico {
  display: flex;
  justify-content: center;
}

.info-card:last-child {
  border-right: none;
}

.info-card .ico {
  line-height: 0;
  margin-bottom: 22px;
  color: #fff;
}

.info-card h3 {
  font-size: 24px;
  letter-spacing: .3px;
  margin-bottom: 14px;
}

.info-card p {
  margin: 0;
  font-size: 15px;
  opacity: .95;
  line-height: 1.7;
}

.info-card a {
  color: #fff;
}

/* =================== ABOUT =================== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about h2 {
  font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.about p {
  color: var(--muted);
  font-size: 18px;
}

.about-features {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature .ico {
  color: var(--red);
  display: inline-flex;
  line-height: 0;
}

.about-img {
  position: relative;
  min-height: 560px;
}

.about-img-front {
  position: relative;
  z-index: 2;
  width: 72%;
  height: 560px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.about-img-back {
  position: absolute;
  z-index: 1;
  top: 90px;
  right: 0;
  width: 42%;
  height: 470px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center right;
}

/* =================== MENU =================== */
.menu {
  background: #1f2121;
  color: #fff;
}

.menu .section-head {
  max-width: 1100px;
}

.menu .section-head h2 {
  color: #fff;
}

.menu .section-head p {
  color: rgba(255, 255, 255, .7);
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.acc-item {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  background: #26282a;
}

.acc-item[open] {
  box-shadow: 0 18px 45px rgba(0, 0, 0, .4);
}

.acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  background: #2c2e30;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .25s ease, color .25s ease;
}

.acc-item summary:hover {
  background: #343638;
}

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

.acc-item summary .plus {
  width: 26px;
  height: 26px;
  position: relative;
  flex: none;
}

.acc-item summary .plus::before,
.acc-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.acc-item summary .plus::before {
  width: 16px;
  height: 3px;
  transform: translate(-50%, -50%);
}

.acc-item summary .plus::after {
  width: 3px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.acc-item[open] summary {
  background: var(--red);
  color: #fff;
}

.acc-item[open] summary .plus::before {
  background: #fff;
}

.acc-item[open] summary .plus::after {
  background: #fff;
  transform: translate(-50%, -50%) scaleY(0);
}

.acc-body {
  padding: 14px 26px 26px;
}

.acc-item[open] .acc-body {
  animation: accReveal .5s ease both;
}

@keyframes accReveal {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* True height animation where supported (Chrome 129+, etc.) */
@supports (interpolate-size: allow-keywords) {
  html {
    interpolate-size: allow-keywords;
  }

  .acc-item::details-content {
    height: 0;
    overflow: hidden;
    transition: height .5s ease, content-visibility .5s allow-discrete;
  }

  .acc-item[open]::details-content {
    height: auto;
  }

  .acc-item[open] .acc-body {
    animation: none;
  }
}

.price-head {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 12px 0 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 6px;
}

.dish {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .14);
}

.dish:last-child {
  border-bottom: none;
}

.dish-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.dish-name {
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
  color: #fff;
}

.dish-name span {
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
}

.dish-name strong {
  color: #fff;
}

.dish-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255, 255, 255, .28);
  transform: translateY(-5px);
}

.dish-price {
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  font-size: 16px;
}

.dish-desc {
  color: rgba(255, 255, 255, .6);
  font-size: 14.5px;
  margin-top: 5px;
  max-width: 80%;
}

/* New menu items highlight */
.dish-name--new strong {
  color: var(--gold);
}

.new-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 6px;
}

/* =================== OFFERS =================== */
.offers {
  background: var(--ink);
  color: #fff;
}

.offers .section-head h2 {
  color: #fff;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-card {
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
}

.offer-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.offer-body {
  padding: 24px 26px 30px;
}

.offer-body h3 {
  font-size: 22px;
  text-transform: uppercase;
}

.offer-body p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
}

.offer-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* =================== MAP =================== */
.map-section {
  line-height: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: grayscale(.2) contrast(1.05);
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--red);
  color: #fff;
  padding: 0;
}

.footer-top {
  background: #1f2121;
  color: #fff;
  text-align: center;
  padding: 60px 0 56px;
}

.footer-top .container {
  max-width: 720px;
}

.footer-logo {
  height: 110px;
  width: auto;
  margin: 0 auto 24px;
}

.footer-top h3 {
  font-size: clamp(20px, 3vw, 28px);
  text-transform: uppercase;
}

.footer-top p {
  opacity: .9;
  font-size: 18px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 0;
}

.footer-cols h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-cols p,
.footer-cols a {
  opacity: .92;
}

.footer-cols a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  transition: .2s ease;
}

.footer-social a:hover {
  background: #fff;
  color: var(--red);
}

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .25);
  font-size: 14px;
  opacity: .9;
}

/* =================== CHAT WIDGET / BACK TO TOP =================== */
.chat-widget {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 95;
}

/* Round green launcher */
.chat-launcher {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transition: transform .2s ease;
}

.chat-launcher:hover {
  transform: scale(1.06);
}

/* "Need help?" bubble on hover */
.chat-tip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) scale(.85);
  transform-origin: left center;
  white-space: nowrap;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.chat-tip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #fff;
  border-left: 0;
}

.chat-launcher:hover .chat-tip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.chat-widget.open .chat-tip {
  opacity: 0;
  pointer-events: none;
}

/* Pop-up panel */
.chat-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  width: 300px;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transform-origin: left bottom;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.chat-widget.open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-panel-head {
  background: var(--red);
  color: #fff;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-close {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}

.chat-close:hover {
  background: rgba(0, 0, 0, .35);
}

.chat-panel-body {
  padding: 22px 20px 14px;
}

.chat-bubble {
  position: relative;
  background: #fff;
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 14px 18px;
  font-size: 15.5px;
  color: var(--ink-2);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.chat-open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px 16px 18px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 50px;
  transition: background .2s ease;
}

.chat-open:hover {
  background: var(--red-dark);
}

.chat-open svg {
  transform: rotate(0deg);
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  border: none;
  cursor: pointer;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .info-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {

  /* compact header */
  html {
    scroll-padding-top: 148px;
  }

  .site-header {
    border-top-width: 4px;
  }

  /* top bar: address + phone stacked, centered */
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    height: auto;
    padding: 8px 0;
  }

  .topbar-socials {
    display: none;
  }

  .topbar-address {
    font-size: 14px;
    text-align: center;
  }

  .topbar-address svg {
    flex: none;
  }

  .topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e6e6e6;
    font-size: 14px;
    transition: color .3s ease;
  }

  .topbar-phone:hover {
    color: var(--gold);
  }

  .topbar-phone svg {
    flex: none;
  }

  /* main bar: bigger logo + burger */
  .mainbar-inner {
    height: 80px;
    gap: 16px;
  }

  .logo img {
    height: 70px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 210;
  }

  /* burger -> X when menu open */
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* full-screen overlay menu */
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #141414;
    flex: none;
    margin: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    text-align: center;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    color: #fff;
    display: block;
    padding: 18px 0;
    font-size: 26px;
    letter-spacing: 1px;
  }

  .nav a::after {
    display: none;
  }

  /* socials inside the overlay */
  .nav-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 29px;
  }

  .nav-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .nav-socials a {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    transition: background .2s ease, color .2s ease;
    padding-top: 14px;
  }

  .nav-socials a svg {
    display: block;
  }

  .nav-socials a:hover {
    background: var(--gold);
    color: #141414;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img {
    order: -1;
    min-height: 440px;
  }

  .about-img-front {
    width: 75%;
    height: 440px;
  }

  .about-img-back {
    top: 70px;
    width: 46%;
    height: 360px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    white-space: normal;
  }

  .section {
    padding: 64px 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    border-right: none;
    border-bottom: 1px solid var(--red-dark);
  }

  .dish-desc {
    max-width: 100%;
  }

  .dish-name {
    white-space: normal;
  }
}