﻿:root {
  --bg: #fffcf3;
  --bg-soft: #ece8dc;
  --text: #10120f;
  --muted: rgba(16, 18, 15, 0.64);
  --panel: #fffcf3;
  --panel-soft: #ece8dc;
  --accent: #f9cf39;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --border: rgba(0, 0, 0, 0.08);
}

@view-transition {
  navigation: auto;
}

body[data-theme="dark"] {
  --bg: #10120f;
  --bg-soft: #171a15;
  --text: #fffcf3;
  --muted: rgba(255, 252, 243, 0.68);
  --panel: #10120f;
  --panel-soft: #171a15;
  --accent: #f9cf39;
  --shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Figtree", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

body.no-view-transitions .page {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 420ms cubic-bezier(.22, 1, .36, 1),
    transform 520ms cubic-bezier(.22, 1, .36, 1),
    filter 520ms cubic-bezier(.22, 1, .36, 1);
}

body.no-view-transitions.page-ready .page {
  opacity: 1;
  transform: none;
  filter: none;
}

body.no-view-transitions.page-leave .page {
  opacity: 0;
  transform: translateY(-18px) scale(1.01);
  filter: blur(8px);
}

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

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  align-items: start;
  width: 100vw;
  max-width: none;
  margin: 0;
}

#hero-panel {
  view-transition-name: hero-panel;
}

.top-nav {
  view-transition-name: top-nav;
}

.testimonial {
  view-transition-name: hero-testimonial;
}

::view-transition-old(root) {
  animation: app-route-out 420ms cubic-bezier(.4, 0, .2, 1) both;
}

::view-transition-new(root) {
  animation: app-route-in 520ms cubic-bezier(.22, 1, .36, 1) both;
}

::view-transition-old(hero-panel),
::view-transition-new(hero-panel) {
  animation-duration: 620ms;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

::view-transition-old(top-nav),
::view-transition-new(top-nav),
::view-transition-old(hero-testimonial),
::view-transition-new(hero-testimonial) {
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

@keyframes app-route-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes app-route-out {
  from {
    opacity: 1;
    transform: none;
    filter: none;
  }

  to {
    opacity: 0;
    transform: translateY(-12px) scale(1.01);
    filter: blur(6px);
  }
}

.panel {
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.left-col {
  position: sticky;
  top: 12px;
  overflow: hidden;
  height: calc(100vh - 24px);
  --nav-cut-width: 420px;
  --nav-cut-height: 42px;
  border: 0;
  box-shadow: none;
}

.clip-main {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}

.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  height: 42px;
  background: var(--panel);
  border-radius: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  border: 0;
  box-shadow: none;
  outline: none;
  filter: none;
}

.top-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-nav::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--panel);
  border-radius: inherit;
  z-index: -1;
}

.testimonial h1,
.section-title,
.links h4 {
  font-family: "Sorts Mill Goudy", serif;
}

.brand {
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.brand-mark {
  font-family: "Great Vibes", cursive;
  color: #cf3a34;
  font-size: 2.1em;
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.02em;
  display: inline-block;
  transform: rotate(10deg);
  transform-origin: 50% 60%;
}

.brand-text {
  font-family: "Montserrat", "Figtree", sans-serif;
  font-size: 1em;
  letter-spacing: -0.05em;
}

.top-nav nav {
  display: flex;
  gap: 20px;
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.top-nav nav a {
  color: var(--text);
}

.top-nav nav a.active {
  opacity: 1;
}

.top-nav nav a:not(.active) {
  opacity: 0.96;
}

.theme-toggle {
  width: 34px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 18, 15, 0.08);
  display: inline-flex;
  align-items: center;
  padding: 4px;
  cursor: pointer;
}

body[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(16, 18, 15, 0.08);
  padding: 0;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body[data-theme="dark"] .menu-toggle {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.top-nav.menu-open .menu-toggle span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

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

.top-nav.menu-open .menu-toggle span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 220ms ease;
}

body[data-theme="dark"] .dot {
  transform: translateX(14px);
}

.carousel,
.slides,
.slide {
  position: absolute;
  inset: 0;
}

.carousel {
  clip-path: polygon(0 var(--nav-cut-height),
      calc(var(--nav-cut-width) - 20px) var(--nav-cut-height),
      var(--nav-cut-width) 0,
      100% 0,
      100% 100%,
      0 100%);
}

@supports (clip-path: path("M0 0 L10 0 L10 10 Z")) {
  .carousel {
    clip-path: path("M0 42 H396 Q420 42 420 18 Q420 0 444 0 H2000 V2000 H0 Z");
  }
}

.slides {
  display: flex;
  transition: transform 480ms cubic-bezier(.2, .8, .2, 1);
}

.slide {
  position: relative;
  min-width: 100%;
  background-size: cover;
  background-position: center;
}

.slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .28), rgba(0, 0, 0, .12) 40%, rgba(0, 0, 0, .06));
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.arrow-left {
  left: 36px;
}

.arrow-right {
  right: 36px;
}

.testimonial {
  position: absolute;
  left: 40px;
  bottom: 40px;
  max-width: 420px;
  z-index: 6;
  padding: 20px 28px;
  border-radius: 16px;
  background: var(--panel);
}

body[data-theme="dark"] .testimonial {
  background: #090b08;
}

.testimonial h1 {
  font-size: 50px;
  line-height: 1.03;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
}

.testimonial p {
  font-size: 13px;
  line-height: 1.42;
  color: var(--muted);
  margin: 0 0 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--panel);
  object-fit: cover;
  margin-right: -8px;
}

.rating-text {
  font-size: 14px;
  color: var(--muted);
}

.rating-text span {
  font-family: "Sorts Mill Goudy", serif;
  color: var(--text);
  font-size: 50px;
  margin-right: 6px;
}

.rating-text strong {
  color: var(--accent);
  letter-spacing: 1px;
}

.rating-text small {
  font-size: 11px;
}

.since {
  position: absolute;
  right: 32px;
  bottom: 8px;
  z-index: 6;
  font-size: 14px;
  color: var(--panel);
}

body[data-theme="dark"] .since {
  color: var(--text);
}

.right-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.right-initial {
  height: calc(100vh - 24px);
  display: grid;
  grid-template-rows: 1fr 1fr 56px minmax(210px, 1fr);
  gap: 12px;
}

.clip-side-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  --title-cut-width: 136px;
  --title-cut-height: 38px;
  border: 0;
  box-shadow: none;
}

.section-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 38px;
  padding: 0 14px;
  border-bottom-right-radius: 18px;
  background: var(--panel);
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  border: 0;
  box-shadow: none;
  outline: none;
  filter: none;
}

.section-title::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--panel);
  border-radius: inherit;
  z-index: -1;
}

.side-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 var(--title-cut-height),
      calc(var(--title-cut-width) - 20px) var(--title-cut-height),
      var(--title-cut-width) 0,
      100% 0,
      100% 100%,
      0 100%);
}

@supports (clip-path: path("M0 0 L10 0 L10 10 Z")) {
  .side-image {
    clip-path: path("M0 38 H112 Q136 38 136 14 Q136 0 152 0 H1000 V1000 H0 Z");
  }
}

.book {
  height: 56px;
  border-radius: 12px;
  font-size: 14px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #cf3a34;
  color: #fffcf3;
  border: 0;
  box-shadow: none;
}

.book span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 252, 243, 0.18);
  color: #fffcf3;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hours {
  background: var(--panel);
  padding: clamp(14px, 1vw, 20px);
  border-radius: 12px;
  overflow: hidden;
}

.hours h3 {
  font-size: clamp(13px, 0.85vw, 16px);
  color: var(--muted);
  font-weight: 500;
  margin: 2px 0 clamp(8px, 0.8vw, 14px);
}

.hours-subheading {
  padding-top: clamp(10px, 0.9vw, 14px);
}

.hours p {
  margin: 0;
  color: var(--text);
  font-size: clamp(12px, 0.85vw, 16px);
  line-height: 1.35;
}

.hours-address-link {
  display: inline-block;
  border-bottom: 1px dotted currentColor;
  padding-bottom: 2px;
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(4px, 0.55vw, 8px);
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: clamp(8px, 0.8vw, 12px);
  align-items: baseline;
  font-size: clamp(12px, 0.9vw, 16px);
  line-height: 1.15;
}

.hours li span {
  color: var(--text);
}

.hours li strong {
  color: var(--text);
  font-weight: 500;
  text-align: right;
  flex-shrink: 0;
}

.reveal-group {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social {
  height: 56px;
  border-radius: 12px;
  font-size: 14px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.links {
  border-radius: 12px;
  background: var(--panel);
  min-height: 460px;
  padding: 30px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.links h4 {
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 14px;
}

.links a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 16px;
}

.links p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

.links p a {
  display: inline;
  font-size: 14px;
  color: var(--text);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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


.menu-page .left-col {
  position: sticky;
}

.menu-page .page,
.about-page .page {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.menu-hero-image {
  position: absolute;
  inset: 0;
  background-image: url("https://framerusercontent.com/images/nUd8TPTbAYGHCjuFfFuKoSfSLu4.webp");
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 var(--nav-cut-height),
      calc(var(--nav-cut-width) - 20px) var(--nav-cut-height),
      var(--nav-cut-width) 0,
      100% 0,
      100% 100%,
      0 100%);
}

@supports (clip-path: path("M0 0 L10 0 L10 10 Z")) {
  .menu-hero-image {
    clip-path: path("M0 42 H396 Q420 42 420 18 Q420 0 444 0 H2000 V2000 H0 Z");
  }
}

.menu-right {
  display: grid;
  gap: 12px;
  align-content: start;
  width: 100%;
}

.about-right {
  display: grid;
  gap: 12px;
  align-content: start;
  width: 100%;
}

.menu-section {
  display: grid;
  gap: 12px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-intro {
  background: var(--panel);
  min-height: 285px;
  padding: 48px;
}

.menu-intro h2 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 46px;
}

.menu-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.menu-cat {
  height: 64px;
  border-radius: 12px;
  background: var(--panel);
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 400;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "content price"
    "image image";
  align-items: start;
  gap: clamp(10px, 1vw, 18px);
  background: var(--panel);
  padding: clamp(10px, 0.8vw, 14px);
  border-radius: 12px;
  overflow: hidden;
}

.menu-item img {
  grid-area: image;
  width: 100%;
  height: clamp(150px, 13vw, 220px);
  object-fit: cover;
  border-radius: 10px;
}

.menu-item div {
  grid-area: content;
  min-width: 0;
}

.menu-item h3 {
  margin: 0 0 6px;
  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 0.95vw, 15px);
  line-height: 1.35;
}

.menu-item strong {
  grid-area: price;
  align-self: start;
  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 400;
  padding-right: 0;
  white-space: nowrap;
  justify-self: end;
}

@media (max-width: 1500px) {
  .menu-item h3 {
    margin-bottom: 4px;
  }
}

.menu-page .testimonial {
  left: 36px;
  bottom: 36px;
  max-width: 520px;
  padding: 28px 30px;
}

.about-hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16, 18, 15, 0.12), rgba(16, 18, 15, 0.22)), url("Owners.jpg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 var(--nav-cut-height),
      calc(var(--nav-cut-width) - 20px) var(--nav-cut-height),
      var(--nav-cut-width) 0,
      100% 0,
      100% 100%,
      0 100%);
}

@supports (clip-path: path("M0 0 L10 0 L10 10 Z")) {
  .about-hero-image {
    clip-path: path("M0 42 H396 Q420 42 420 18 Q420 0 444 0 H2000 V2000 H0 Z");
  }
}

.about-intro,
.about-story,
.about-visit {
  background: var(--panel);
  padding: clamp(28px, 3vw, 48px);
}

.about-intro {
  min-height: 285px;
}

.about-intro h2,
.about-story h3,
.about-visit h3 {
  font-family: "Sorts Mill Goudy", serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 20px;
}

.about-intro h2 {
  font-size: clamp(40px, 4vw, 56px);
  margin-bottom: 28px;
}

.about-story h3,
.about-visit h3 {
  font-size: clamp(28px, 2.4vw, 38px);
}

.about-intro p,
.about-story p,
.about-visit p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-fact {
  background: var(--panel);
  padding: 24px;
  display: grid;
  gap: 10px;
}

.about-fact strong {
  font-family: "Sorts Mill Goudy", serif;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.about-fact span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.about-visit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.about-address {
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-address strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-address a,
.about-address span {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .page {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .left-col {
    position: relative;
    top: auto;
    height: 72vh;
  }

  .left-col {
    --nav-cut-width: 220px;
  }

  .right-initial {
    height: auto;
    grid-template-rows: auto;
  }

  .side-image {
    height: auto;
    aspect-ratio: 1.6 / 1;
  }

  .testimonial h1 {
    font-size: 48px;
  }

  .testimonial p {
    font-size: 16px;
  }

  .hours li,
  .links a,
  .book,
  .social,
  .hours h3,
  .section-title {
    font-size: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .rating-text span {
    font-size: 40px;
  }

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

  .about-page .page {
    grid-template-columns: 1fr;
  }

  .menu-page .menu-right {
    max-width: none;
  }

  .about-right {
    max-width: none;
  }

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

  .menu-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-intro h2 {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .menu-intro p,
  .menu-cat {
    font-size: 16px;
  }

  .about-intro h2 {
    margin-bottom: 22px;
  }

  .about-facts,
  .about-visit {
    grid-template-columns: 1fr;
  }

  .menu-item h3 {
    font-size: 24px;
  }

  .menu-item strong {
    font-size: 24px;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .page {
    gap: 10px;
    padding: 10px;
  }

  .left-col,
  .menu-page .left-col {
    height: auto;
    min-height: 560px;
  }

  .top-nav {
    left: 0;
    right: 0;
    gap: 12px;
    padding: 0 12px;
    width: auto;
    justify-content: space-between;
  }

  .top-nav nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    font-size: 17px;
    flex: 0 0 auto;
  }

  .top-nav-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .top-nav.menu-open {
    overflow: visible;
  }

  .top-nav.menu-open nav {
    display: grid;
  }

  .top-nav nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(250px, calc(100vw - 20px));
    margin-left: 0;
    padding: 14px;
    background: var(--panel);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 12px;
    z-index: 15;
  }

  .top-nav nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(16, 18, 15, 0.04);
  }

  body[data-theme="dark"] .top-nav nav a {
    background: rgba(255, 255, 255, 0.06);
  }

  .arrow {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .arrow-left {
    left: 14px;
  }

  .arrow-right {
    right: 14px;
  }

  .testimonial,
  .menu-page .testimonial,
  .about-page .testimonial {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    width: auto;
    padding: 14px 14px 12px;
  }

  .testimonial h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 0.96;
    margin-bottom: 8px;
  }

  .testimonial p {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .rating-row {
    flex-wrap: wrap;
    gap: 6px 8px;
  }

  .rating-text span {
    font-size: clamp(28px, 8vw, 38px);
  }

  .since {
    right: 16px;
    bottom: 12px;
    font-size: 12px;
  }

  .right-initial {
    grid-template-rows: auto auto 56px auto;
  }

  .side-image {
    aspect-ratio: 1.3 / 1;
  }

  .hours li {
    font-size: 13px;
  }

  .links {
    min-height: auto;
    padding: 24px 20px;
  }

  .links h4 {
    font-size: 34px;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

  .menu-intro,
  .about-intro,
  .about-story,
  .about-visit {
    padding: 24px 20px;
  }

  .menu-intro {
    min-height: auto;
  }

  .menu-cat {
    height: 58px;
    padding: 0 18px;
  }

  .menu-item {
    padding: 12px;
    gap: 12px;
  }

  .menu-item img {
    height: 180px;
  }

  .menu-item h3 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .menu-item p {
    font-size: 15px;
  }

  .menu-item strong {
    font-size: clamp(22px, 7vw, 30px);
  }
}

@media (max-width: 520px) {
  .page {
    gap: 8px;
    padding: 8px;
  }

  .left-col,
  .menu-page .left-col {
    min-height: 520px;
    border-radius: 16px;
  }

  .top-nav {
    height: 40px;
    border-radius: 0 0 18px 0;
    padding-right: 10px;
  }

  .left-col {
    --nav-cut-width: 168px;
    --nav-cut-height: 40px;
  }

  .top-nav-actions {
    gap: 8px;
  }

  .testimonial,
  .menu-page .testimonial,
  .about-page .testimonial {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .testimonial h1 {
    font-size: clamp(24px, 10vw, 34px);
  }

  .testimonial p {
    font-size: 12px;
    line-height: 1.3;
  }

  .avatars img {
    width: 26px;
    height: 26px;
  }

  .rating-text {
    font-size: 12px;
  }

  .rating-text span {
    font-size: 28px;
    margin-right: 4px;
  }

  .rating-text strong {
    letter-spacing: 0;
  }

  .since {
    font-size: 11px;
  }

  .section-title {
    height: 34px;
    padding: 0 12px;
    font-size: 16px;
  }

  .book,
  .social {
    font-size: 15px;
  }

  .hours {
    padding: 14px 12px;
  }

  .hours li {
    grid-template-columns: 1fr auto;
    display: grid;
    align-items: start;
    gap: 6px 10px;
  }

  .hours li strong {
    text-align: right;
  }

  .menu-intro h2,
  .about-intro h2 {
    font-size: 28px;
  }

  .about-story h3,
  .about-visit h3 {
    font-size: 26px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "price"
      "image";
  }

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

  .menu-item img {
    height: 160px;
  }
}
