/* Saigon Bowl: a lively street-kitchen identity, layered over the functional UI. */
:root {
  --green: #153f32;
  --green-dark: #0d2b22;
  --orange: #edbea3;
  --lime: #d5ed77;
  --ink: #153f32;
  --surface: #f4f7ef;
  --line: #cbd9c7;
  --muted: #4f6054;
  --peach: #ffe9dd;
}
.header {
  border-bottom-color: var(--green);
}
.wordmark svg {
  width: 100%;
  height: 100%;
  stroke-width: 3;
}
.wordmark .brand-prefix {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.footer-brand .brand-prefix {
  display: block;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.brand-bowl {
  fill: var(--lime);
  stroke: none;
}
.brand-chopsticks,
.brand-steam {
  stroke: var(--orange);
}
.brand-rim {
  stroke: var(--lime);
}
.brand-steam:last-child {
  animation-delay: -1.6s;
}
.navigation {
  background: #edf3e5;
}
.nav-indicator {
  background: var(--lime);
}
.cart-toggle {
  background: var(--lime);
}
.button {
  border-radius: 8px;
}
.hero {
  background: var(--orange);
  grid-template-columns: 1.08fr 1fr;
  min-height: 650px;
}
.hero-copy {
  color: var(--green);
  padding-top: 62px;
  padding-bottom: 36px;
}
.hero-location {
  font-size: 11px;
  letter-spacing: 1.2px;
}
.hero-location > span {
  background: var(--green);
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(62px, 6.3vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero h1 span {
  display: inline-block;
  background: var(--green);
  color: var(--lime);
  padding: 0 0.12em 0.06em;
  border-radius: 4px;
  transform: rotate(-2deg);
}
.hero-description {
  color: var(--green-dark);
  font-size: 15px;
  max-width: 400px;
}
.hero-actions .button {
  background: var(--green);
  color: white;
  box-shadow: 4px 4px 0 var(--green-dark);
}
.hero-actions .button:hover {
  background: var(--green-dark);
  transform: translate(-2px, -2px);
}
.hero-link {
  color: var(--green);
  border-bottom-color: var(--green);
  font-weight: 800;
}
.hero-foot,
.hero-foot a {
  color: var(--green-dark);
  font-weight: 600;
}
.hero-photo {
  margin: 32px 40px 38px 0;
  border: 7px solid white;
  border-radius: 12px;
  transform: rotate(2deg);
  box-shadow: 8px 8px 0 #b2866c;
}
.hero-photo > img {
  border-radius: 4px;
}
.photo-stamp {
  background: var(--lime);
  top: 20px;
  right: 20px;
  width: 116px;
  height: 116px;
  transform: rotate(8deg);
}
.photo-stamp strong {
  font-size: 27px;
}
.hero-dish {
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--green);
  padding: 18px;
}
.hero-dish .round-arrow {
  background: var(--lime);
  color: var(--green);
}
.hero-taster {
  position: absolute;
  left: 18px;
  bottom: 118px;
  width: 164px;
  padding: 6px;
  background: white;
  border: 0;
  border-radius: 8px;
  transform: rotate(-7deg);
  box-shadow: 4px 4px 0 var(--green);
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-taster:hover {
  transform: rotate(-3deg) translateY(-5px);
}
.hero-taster img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  border-radius: 3px;
}
.hero-taster > span {
  display: block;
  padding: 8px 6px 5px;
  font-size: 9px;
  line-height: 1.5;
}
.hero-taster strong {
  display: block;
  font-size: 12px;
}
.flavour-strip {
  color: var(--lime);
  background: var(--green);
  padding-block: 21px;
  font-size: 12px;
  gap: 36px;
  letter-spacing: 1px;
}
.strip-flower {
  color: var(--orange);
  font-size: 29px;
}
.about {
  grid-template-columns: 0.9fr 0.9fr 1.1fr;
  align-items: center;
  gap: 38px;
  padding-block: 100px;
}
.about h2 {
  font-size: clamp(45px, 4vw, 58px);
}
.about .section-label {
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
}
.about-image {
  position: relative;
  height: 310px;
  padding: 0;
  border: 2px solid var(--green);
  border-radius: 12px;
  background: var(--peach);
  transform: rotate(-3deg);
  box-shadow: 7px 7px 0 var(--lime);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-image:hover {
  transform: rotate(0);
}
.about-image img {
  width: 100%;
  height: 100%;
}
.about-image > span {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--lime);
  border-radius: 50%;
  font-size: 24px;
}
.about-copy p:first-child {
  font-size: 16px;
  font-weight: 600;
}
.about-copy p + p {
  font-size: 13px;
}
.menu {
  background: #f0f5e8;
  border-block: 1px solid var(--line);
}
.section-heading {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section-heading h2 {
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 700;
}
.section-heading > p {
  font-size: 14px;
}
.section-heading > p br {
  display: none;
}
.section-heading .section-label {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.menu-toolbar {
  border: 0;
  padding: 0;
  gap: 20px;
}
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #aabc9f;
  background: #ffffff90;
  border-radius: 6px;
  font-size: 12px;
  padding: 10px 16px;
}
.category-icon {
  display: inline-block;
  flex-shrink: 0;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}
.filter.active {
  border-color: var(--green);
  background: var(--green);
}
.filter:hover {
  background: var(--lime);
  color: var(--green);
}
.menu-search {
  background: white;
  max-width: 350px;
  padding: 9px 14px;
  border: 1px solid #aabc9f;
  border-radius: 7px;
}
.menu-search input {
  border: 0;
  font-size: 13px;
}
.menu-summary {
  font-size: 12px;
  margin-block: 24px;
}
.dish-grid {
  gap: 28px;
}
.dish-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1.5px solid var(--green);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s;
}
.dish-card:nth-child(3n + 1) {
  background: #eaf4cc;
}
.dish-card:nth-child(3n) {
  background: var(--peach);
}
.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 0 var(--orange);
}
.dish-image {
  flex-shrink: 0;
  border-radius: 0;
  aspect-ratio: 1.55;
  border-bottom: 1px solid var(--green);
}
.dish-image .round-arrow {
  background: var(--lime);
  color: var(--green);
}
.dish-tag {
  background: var(--lime);
  color: var(--green);
  border: 1px solid var(--green);
  font-size: 10px;
}
.dish-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}
.dish-top {
  align-items: flex-start;
  gap: 12px;
}
.dish-top h3 {
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.dish-price {
  background: var(--green);
  color: white;
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 5px;
}
.dish-content p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 12px;
}
.dish-category {
  font-size: 10px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.dish-cart-actions {
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid #153f3225;
  justify-content: space-between;
}
.dish-add {
  background: var(--orange);
  border-color: transparent;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}
.dish-add:hover {
  background: var(--green);
}
.dish-in-cart {
  font-size: 11px;
}
.menu-more .button {
  background: var(--green);
  color: white;
  border: 0;
}
.menu-note {
  font-size: 11px;
}
.order-section {
  padding-block: 76px;
  background: var(--green-dark);
}
.order-inner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 50px;
}
.order-food {
  position: relative;
}
.order-food img {
  width: 240px;
  height: 240px;
  border: 6px solid white;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(-8deg);
}
.order-food > span {
  position: absolute;
  bottom: -15px;
  right: -18px;
  background: var(--lime);
  color: var(--green);
  border-radius: 7px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.45;
  transform: rotate(5deg);
}
.order-inner h2 {
  font-size: 68px;
}
.order-inner h2 span {
  color: var(--lime);
}
.order-inner p {
  font-size: 14px;
}
.order-inner .section-label {
  font-size: 13px;
}
.order-actions .button {
  min-height: 58px;
}
.gallery-grid {
  grid-template-columns: 1.12fr 1fr;
  grid-template-rows: 235px 235px;
  gap: 22px;
}
.gallery-photo {
  border: 2px solid var(--green);
  border-radius: 12px;
}
.gallery-large {
  transform: rotate(-1.5deg);
}
.gallery-photo > span {
  background: var(--green);
  color: white;
  font-size: 13px;
  border-radius: 6px;
}
.gallery-photo:nth-child(2) > span {
  background: var(--lime);
  color: var(--green);
}
.gallery-photo:nth-child(3) > span {
  background: var(--orange);
  color: var(--green);
}
.reservation {
  display: block;
  width: 100%;
  background: var(--orange);
  padding-block: 88px;
  margin: 0;
}
.reservation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
}
.reservation-copy h2 {
  font-size: clamp(48px, 4.7vw, 68px);
  font-weight: 700;
}
.reservation-copy .section-label,
.reservation-copy > p {
  color: var(--green-dark);
}
.reservation-photo {
  position: relative;
  width: min(100%, 370px);
  height: 200px;
  margin-top: 28px;
  border: 6px solid white;
  border-radius: 10px;
  transform: rotate(-3deg);
  overflow: hidden;
}
.reservation-photo img {
  width: 100%;
  height: 100%;
}
.reservation-photo > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 10px 13px;
  border-radius: 5px;
  background: var(--green);
  color: white;
  font-size: 10px;
  line-height: 1.5;
}
.reservation-photo strong {
  color: var(--lime);
  font-size: 13px;
}
.reservation .request-form {
  background: white;
  padding: 32px;
  border: 2px solid var(--green);
  border-radius: 12px;
  box-shadow: 7px 7px 0 var(--green);
}
.reservation .request-form h3 {
  font-size: 24px;
}
.request-form input,
.request-form textarea,
.request-form select,
.dish-wishes textarea,
.dialog-cart-action input {
  border-color: #adbea4;
  background: #f7f9f3;
}
.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  background: white;
}
.request-form .button {
  background: var(--green);
}
.visit {
  background: #eaf3d7;
}
.visit-intro h2 {
  font-size: clamp(48px, 4.7vw, 68px);
  font-weight: 700;
}
.detail-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--lime);
  flex-shrink: 0;
  font-size: 27px;
}
.detail-row {
  border-bottom-color: #aec299;
  gap: 18px;
}
.detail-row h3 {
  font-size: 13px;
}
.detail-row p,
.detail-row address {
  font-size: 14px;
}
.visit-map iframe {
  border: 2px solid var(--green);
  border-radius: 12px;
}
.footer {
  background: var(--green-dark);
  padding-top: 0;
  border-top: 4px solid var(--orange);
}
.footer-invitation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 64px 54px;
  border-bottom: 1px solid #ffffff25;
}
.footer-invitation p {
  font-size: 13px;
  color: #d3e0cd;
  margin-bottom: 18px;
}
.footer-invitation h2 {
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.1;
}
.footer-invitation h2 span {
  color: var(--lime);
}
.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.footer-actions .button {
  justify-content: space-between;
  min-height: 56px;
}
.footer-actions .footer-reserve {
  border: 1px solid #adc997;
  color: var(--lime);
  background: transparent;
}
.footer-actions .footer-reserve:hover {
  background: #244438;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 75px;
  padding-block: 56px;
}
.footer-brand {
  display: inline-block;
  font-family: var(--heading);
  font-size: 76px;
  line-height: 1.05;
  color: var(--lime);
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.footer-brand:hover {
  color: var(--orange);
}
.footer-brand span {
  font-family: var(--body);
  color: #d3e0cd;
  font-size: 12px;
  margin-top: 10px;
}
.footer-identity > p {
  max-width: 310px;
  font-size: 12px;
  line-height: 1.9;
  color: #d3e0cd;
  margin: 20px 0;
}
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}
.footer-chat-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--lime);
  color: var(--green);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.25s;
}
.footer-whatsapp:hover .footer-chat-icon {
  transform: rotate(45deg);
}
.footer-navigation,
.footer-contact {
  padding-top: 8px;
  min-width: 0;
}
.footer-main h3 {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-navigation > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 220px;
  font-size: 12px;
  padding: 7px 0;
  gap: 18px;
  transition: color 0.2s;
}
.footer-navigation > a span {
  transition: transform 0.25s;
  font-size: 17px;
}
.footer-navigation > a:hover {
  color: var(--orange);
  text-decoration: none;
}
.footer-navigation > a:hover span {
  transform: translate(3px, -3px);
}
.footer-contact address {
  font-style: normal;
  color: #d3e0cd;
  font-size: 13px;
  line-height: 1.9;
}
.footer-phone {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  white-space: nowrap;
}
.footer-phone:hover {
  color: var(--orange);
}
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  font-size: 10px;
  color: #d3e0cd;
}
.footer-hours strong {
  font-size: 12px;
  color: white;
  font-weight: 600;
}
.footer-links {
  font-size: 13px;
}
.footer-bottom {
  font-size: 11px;
  color: #d3e0cd;
  align-items: center;
  padding-block: 22px;
}
.footer-bottom strong {
  color: var(--lime);
}
.back-top {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--green);
  margin-left: 0;
  flex-shrink: 0;
  transition:
    transform 0.25s,
    background 0.25s;
}
.back-top:hover {
  transform: translateY(-4px);
  background: var(--orange);
}
.cart-header {
  background: #eef5dc;
  margin-inline: -28px;
  padding-inline: 28px;
  border-bottom: 1px solid var(--green);
}
.cart-close {
  background: white;
}
.cart-dialog,
.dish-dialog {
  border: 2px solid var(--green);
}
.cart-total {
  font-weight: 700;
}
.cart-total strong {
  background: var(--lime);
  color: var(--green);
  padding: 3px 9px;
  border-radius: 5px;
}
.floating-cart {
  background: var(--lime);
  color: var(--green);
  border: 2px solid var(--green);
  box-shadow: 4px 4px 0 var(--green);
  font-weight: 800;
}
.quantity-control button {
  background: #eef5dc;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 710px;
  }
  .hero-copy {
    padding-top: 75px;
  }
}
@media (max-width: 1150px) {
  .footer-main {
    gap: 40px;
    grid-template-columns: 1.25fr 1fr 1fr;
  }
  .footer-brand {
    font-size: 66px;
  }
  .hero-copy {
    padding-inline: 32px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-photo {
    margin-right: 26px;
    margin-left: 0;
  }
  .about {
    gap: 26px;
    grid-template-columns: 0.9fr 0.85fr 1.1fr;
  }
  .about h2 {
    font-size: 46px;
  }
  .about-image {
    height: 280px;
  }
  .about-copy p:first-child {
    font-size: 14px;
  }
  .order-inner {
    grid-template-columns: 180px 1fr auto;
    gap: 30px;
  }
  .order-food img {
    width: 180px;
    height: 180px;
  }
  .order-inner h2 {
    font-size: 56px;
  }
  .reservation-inner {
    gap: 48px;
  }
  .flavour-strip {
    gap: 25px;
    font-size: 10px;
  }
}
@media (max-width: 900px) {
  .footer-invitation {
    gap: 28px;
    padding-block: 50px;
  }
  .footer-invitation h2 {
    font-size: 52px;
  }
  .footer-actions .button {
    font-size: 12px;
    padding-inline: 18px;
    gap: 16px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-identity {
    grid-column: span 2;
  }
  .footer-identity > p {
    max-width: 410px;
  }
  .navigation {
    background: var(--green);
  }
  .hero {
    min-height: 605px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-copy {
    padding-top: 48px;
    padding-right: 26px;
  }
  .hero-location {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-taster {
    width: 134px;
    bottom: 110px;
    left: 14px;
  }
  .hero-taster > span {
    font-size: 8px;
  }
  .hero-taster strong {
    font-size: 10px;
  }
  .photo-stamp {
    width: 94px;
    height: 94px;
    top: 16px;
    right: 16px;
  }
  .photo-stamp strong {
    font-size: 22px;
  }
  .about {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-block: 76px;
  }
  .about-image {
    grid-column: 2;
    grid-row: span 2;
    height: 350px;
  }
  .about-copy {
    grid-column: 1;
    grid-row: 2;
  }
  .about-copy p:first-child {
    font-size: 15px;
  }
  .dish-grid {
    gap: 20px;
  }
  .dish-content {
    padding: 16px;
  }
  .dish-top {
    flex-direction: column;
    gap: 9px;
  }
  .dish-top h3 {
    font-size: 15px;
  }
  .order-inner {
    grid-template-columns: 170px 1fr;
    gap: 38px;
  }
  .order-actions {
    grid-column: span 2;
    flex-direction: row;
  }
  .order-actions .button {
    flex: 1;
  }
  .gallery-grid {
    grid-template-rows: 200px 200px;
  }
  .reservation-inner {
    gap: 32px;
  }
  .reservation .request-form {
    padding: 24px;
  }
  .reservation-copy h2 {
    font-size: 50px;
  }
  .reservation-photo {
    height: 190px;
  }
}
@media (max-width: 640px) {
  .footer {
    padding-top: 0;
  }
  .footer-invitation {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-block: 42px;
  }
  .footer-invitation h2 {
    font-size: 48px;
  }
  .footer-invitation p {
    font-size: 12px;
  }
  .footer-actions {
    width: 100%;
  }
  .footer-main {
    gap: 30px 22px;
    padding-block: 38px;
  }
  .footer-main h3 {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .footer-navigation > a {
    font-size: 11px;
    gap: 8px;
    padding-block: 8px;
  }
  .footer-contact address {
    font-size: 12px;
  }
  .footer-phone {
    font-size: 13px;
    gap: 6px;
  }
  .footer-hours strong {
    font-size: 10px;
  }
  .footer-brand span {
    font-size: 11px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px 16px;
    padding-block: 20px;
  }
  .footer-bottom > span {
    grid-column: 1;
  }
  .footer-bottom .back-top {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    width: 42px;
    height: 42px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 38px 24px 30px;
    min-height: 465px;
  }
  .hero h1 {
    font-size: clamp(57px, 13vw, 76px);
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-location {
    font-size: 10px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-foot {
    font-size: 10px;
  }
  .hero-photo {
    height: 385px;
    margin: 5px 25px 34px;
    transform: rotate(2deg);
    border-width: 5px;
  }
  .hero-dish {
    bottom: 14px;
    left: 12px;
    right: 12px;
    padding: 14px;
  }
  .hero-dish strong {
    font-size: 13px;
  }
  .hero-dish small {
    font-size: 7px;
    letter-spacing: 0.6px;
  }
  .hero-taster {
    width: 128px;
    bottom: 100px;
  }
  .flavour-strip {
    gap: 15px;
    padding-block: 18px;
    font-size: 9px;
    letter-spacing: 0.7px;
  }
  .strip-flower {
    font-size: 25px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 60px;
  }
  .about h2 {
    font-size: 52px;
  }
  .about-image {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
    width: calc(100% - 14px);
    margin: 2px auto 8px;
  }
  .about-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .about-copy p:first-child {
    font-size: 16px;
  }
  .about-copy p + p {
    font-size: 14px;
  }
  .section-heading {
    gap: 16px;
  }
  .section-heading h2 {
    font-size: 52px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .menu-toolbar {
    margin-inline: 0;
    padding-inline: 0;
  }
  .category-filters {
    margin-inline: -20px;
    padding-inline: 20px;
    gap: 7px;
    padding-bottom: 8px;
  }
  .filter {
    font-size: 12px;
    padding: 9px 14px;
  }
  .menu-search {
    width: 100%;
    max-width: none;
  }
  .menu-search input {
    font-size: 16px;
  }
  .menu-summary {
    font-size: 10px;
  }
  .dish-grid {
    gap: 18px 12px;
  }
  .dish-card {
    border-radius: 9px;
  }
  .dish-image {
    aspect-ratio: 1.1;
    border-radius: 0;
  }
  .dish-content {
    padding: 12px 10px;
  }
  .dish-top {
    gap: 8px;
  }
  .dish-top h3 {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0;
  }
  .dish-price {
    font-size: 11px;
    padding: 3px 7px;
  }
  .dish-content p {
    font-size: 11px;
    line-height: 1.7;
    margin-top: 10px;
    -webkit-line-clamp: 3;
  }
  .dish-category {
    font-size: 9px;
    margin-top: 10px;
    margin-bottom: 11px;
  }
  .dish-tag {
    font-size: 8px;
    padding: 3px 7px;
  }
  .dish-cart-actions {
    gap: 6px;
    margin-top: auto;
    padding-top: 11px;
  }
  .dish-add {
    width: 100%;
    font-size: 11px;
    padding: 8px 5px;
  }
  .dish-in-cart {
    font-size: 9px;
  }
  .menu-note {
    font-size: 10px;
  }
  .order-section {
    padding-block: 50px;
  }
  .order-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .order-food {
    width: 200px;
    margin-inline: auto;
  }
  .order-food img {
    width: 200px;
    height: 200px;
  }
  .order-food > span {
    right: -20px;
  }
  .order-inner h2 {
    font-size: 60px;
  }
  .order-inner p {
    font-size: 13px;
  }
  .order-actions {
    grid-column: auto;
    flex-direction: column;
    gap: 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 200px;
    gap: 14px;
  }
  .gallery-large {
    grid-column: span 2;
    transform: rotate(-1deg);
  }
  .gallery-photo > span {
    left: 7px;
    right: 7px;
    bottom: 7px;
    padding: 8px;
    font-size: 10px;
  }
  .reservation {
    padding-block: 60px;
  }
  .reservation-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .reservation-copy h2 {
    font-size: 54px;
  }
  .reservation-photo {
    height: 220px;
    width: calc(100% - 12px);
    margin-inline: auto;
  }
  .reservation .request-form {
    padding: 22px 18px;
    box-shadow: 5px 5px 0 var(--green);
  }
  .reservation .form-grid label:nth-child(-n + 2) {
    grid-column: 1 / -1;
  }
  .visit-intro h2 {
    font-size: 54px;
  }
  .detail-row p,
  .detail-row address {
    font-size: 13px;
  }
  .detail-row strong {
    margin-left: 10px;
  }
  .footer-brand {
    font-size: 66px;
  }
  .footer-links {
    gap: 22px;
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 10px;
  }
  .cart-header {
    margin-inline: -18px;
    padding-inline: 18px;
  }
}
@media (max-width: 360px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-identity {
    grid-column: auto;
  }
  .footer-invitation h2 {
    font-size: 44px;
  }
  .footer-navigation > a {
    max-width: none;
  }
  .footer-phone {
    font-size: 18px;
  }
  .footer-hours strong {
    font-size: 12px;
  }
  .hero-copy {
    padding-inline: 20px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-foot {
    font-size: 9px;
  }
  .hero-photo {
    margin-inline: 20px;
    height: 350px;
  }
  .hero-dish strong {
    font-size: 11px;
  }
  .hero-dish .round-arrow {
    width: 32px;
    height: 32px;
  }
  .section-heading h2 {
    font-size: 46px;
  }
  .dish-top h3 {
    font-size: 12px;
  }
  .dish-content {
    padding: 11px 9px;
  }
  .reservation-copy h2 {
    font-size: 48px;
  }
  .detail-row {
    gap: 12px;
  }
  .detail-row strong {
    display: block;
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-whatsapp:hover .footer-chat-icon,
  .footer-navigation > a:hover span,
  .back-top:hover {
    transform: none;
  }
  .hero-actions .button:hover,
  .hero-taster:hover,
  .about-image:hover,
  .dish-card:hover {
    transform: none;
  }
}
