:root {
  --cream: #f5ead6;
  --warm-black: #14110d;
  --gold: #d7ae72;
  --line: rgba(215, 174, 114, 0.48);
  --soft-cream: rgba(245, 234, 214, 0.76);
  --shadow: 0 18px 48px rgba(20, 17, 13, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background: var(--cream);
  color: var(--warm-black);
  font-family:
    Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.hero-shell {
  padding: 0;
  background: var(--cream);
}

.hero-card {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 10px;
  background:
    radial-gradient(circle at top left, rgba(215, 174, 114, 0.2), transparent 34%),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 7px 10px;
  background: rgba(245, 234, 214, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--warm-black);
}

.language-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.language-icon svg,
.service-time svg,
.instagram-link svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.language-control select {
  appearance: none;
  min-width: 46px;
  background: transparent;
  border: 0;
  color: var(--warm-black);
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.12rem, 3vw, 1.55rem);
  font-weight: 950;
  outline: none;
}

.language-control::after {
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-3px);
}

.hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 4 / 5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wave {
  position: relative;
  z-index: 2;
  height: 52px;
  margin-top: -52px;
  color: var(--cream);
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

.hero-wave path {
  fill: currentColor;
}

.hero-info {
  display: grid;
  grid-template-columns: 114px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.hero-copy h1 {
  margin: 0;
  color: var(--warm-black);
  font-size: clamp(15px, 4.6vw, 21px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-title {
  margin: 8px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 3.9vw, 15px);
  font-weight: 600;
  line-height: 1.05;
  white-space: nowrap;
}

.service-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 12px 0 0;
  padding: 7px 10px;
  background: rgba(215, 174, 114, 0.34);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--warm-black);
  font-size: clamp(9px, 2.9vw, 11px);
  font-weight: 800;
  white-space: nowrap;
}

.service-time svg {
  width: 16px;
  height: 16px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--warm-black);
  font-size: clamp(9px, 2.9vw, 11px);
  font-weight: 600;
  white-space: nowrap;
}

.instagram-link svg {
  width: 19px;
  height: 19px;
}

.page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px) 0 0;
}

.category-jump {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 clamp(34px, 5vw, 52px);
}

.category-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 12px;
  background: var(--soft-cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--warm-black);
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.category-jump a:hover {
  background: var(--warm-black);
  color: var(--cream);
  transform: translateY(-1px);
}

.menu-section {
  margin-top: 0;
  padding: 0 0 clamp(34px, 5vw, 52px);
  scroll-margin-top: 18px;
}

.menu-section + .menu-section {
  padding-top: clamp(10px, 2vw, 18px);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.section-heading::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.section-heading h2 {
  margin: 0;
  color: var(--warm-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

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

.menu-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
  padding: 9px;
  overflow: hidden;
  background: var(--soft-cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-card__image {
  margin: 0;
  min-height: 219px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.menu-card__image img {
  width: 100%;
  height: 219px;
  object-fit: cover;
}

.menu-card__body {
  display: block;
  padding: 0;
}

.menu-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.menu-card h3 {
  margin: 0 0 7px;
  color: var(--warm-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.08;
}

.price {
  flex: 0 0 auto;
  min-width: auto;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--warm-black);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.65vw, 1.24rem);
  font-weight: 900;
  line-height: 1;
  padding: 5px 8px;
  text-align: center;
  white-space: nowrap;
}

.description {
  margin: 0;
  color: var(--warm-black);
  font-size: 0.76rem;
  line-height: 1.36;
}

.footer {
  margin-top: clamp(12px, 4vw, 34px);
  background: var(--warm-black);
  color: var(--cream);
}

.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px) 0;
}

.footer-service {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245, 234, 214, 0.22);
}

.footer-service-line {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 7px;
  white-space: nowrap;
}

.footer-service-line svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--cream);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-service h2 {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  margin: 0;
  color: var(--cream);
  font-size: clamp(0.58rem, 2.42vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
  padding: 18px 0;
}

.footer-block {
  display: flex;
  gap: 8px;
  min-width: 0;
}

.footer-block svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--cream);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-block h3 {
  display: block;
  margin: 0 0 5px;
  color: var(--cream);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-block p,
.footer-closing p,
.footer-credit {
  margin: 0;
  color: var(--cream);
  font-size: 0.62rem;
  line-height: 1.38;
}

.footer-block a {
  color: var(--cream);
  text-decoration: none;
}

.footer-closing {
  display: grid;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid rgba(245, 234, 214, 0.22);
  border-bottom: 1px solid rgba(245, 234, 214, 0.22);
}

.footer-closing p:first-child {
  font-weight: 800;
}

.footer-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
  font-size: 0.56rem;
}

.footer-follow {
  align-items: center;
}

.footer-follow p {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  font-size: clamp(0.52rem, 1.95vw, 0.62rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-follow a {
  min-width: 0;
  overflow: hidden;
  color: var(--cream);
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.mise-mark {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  color: var(--cream);
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 861px) {
  .hero-shell {
    padding: 22px 0 0;
  }

  .hero-card {
    width: min(1120px, calc(100% - 72px));
    padding: 14px;
    border-radius: 10px;
  }

  .hero-topline {
    margin-bottom: 12px;
  }

  .language-control {
    min-height: 44px;
    padding: 6px 10px;
  }

  .language-icon {
    width: 24px;
    height: 24px;
  }

  .language-control select {
    min-width: 40px;
    font-size: 1.05rem;
  }

  .hero-image {
    aspect-ratio: 16 / 7;
    max-height: 520px;
  }

  .hero-image img {
    object-position: center 58%;
  }

  .hero-wave {
    height: 64px;
    margin-top: -64px;
  }

  .hero-info {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px 34px 30px;
  }

  .hero-logo {
    width: 132px;
    height: 132px;
    margin: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
  }

  .hero-title {
    margin-top: 10px;
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  }

  .service-time {
    margin-top: 14px;
    padding: 9px 15px;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  }

  .service-time svg {
    width: 19px;
    height: 19px;
  }

  .instagram-link {
    margin-top: 14px;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
  }

  .instagram-link svg {
    width: 22px;
    height: 22px;
  }

  .page {
    padding-top: clamp(30px, 3.5vw, 46px);
  }

  .category-jump {
    gap: 16px;
    margin-bottom: clamp(36px, 4vw, 56px);
  }

  .category-jump a {
    min-height: 56px;
  }
}

@media (max-width: 860px) {
  .hero-card {
    padding: 10px;
  }

  .hero-topline {
    margin-bottom: 10px;
  }

  .language-control {
    min-height: 54px;
    padding: 8px 10px;
  }

  .language-icon {
    width: 30px;
    height: 30px;
  }

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

  .menu-card {
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  }

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

@media (max-width: 560px) {
  .hero-shell {
    padding: 0;
  }

  .hero-card {
    width: 100%;
    padding: 10px 8px 12px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .language-control {
    gap: 5px;
    min-height: 40px;
    padding: 5px 7px;
  }

  .language-icon {
    width: 22px;
    height: 22px;
  }

  .language-control select {
    min-width: 34px;
    font-size: 1.02rem;
  }

  .language-control::after {
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .hero-info {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 12px 16px;
  }

  .hero-copy h1 {
    font-size: clamp(14px, 4.15vw, 17px);
  }

  .hero-title {
    font-size: clamp(13px, 3.9vw, 15px);
  }

  .service-time {
    font-size: 0.68rem;
  }

  .instagram-link {
    font-size: 0.68rem;
  }

  .page {
    width: min(100% - 24px, 1120px);
    padding-top: 18px;
  }

  .category-jump {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 28px;
  }

  .category-jump a {
    min-height: 52px;
    padding: 10px 6px;
    font-size: 0.68rem;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }

  .menu-card {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 7px;
  }

  .menu-card__image {
    min-height: 268px;
  }

  .menu-card__image img {
    height: 268px;
  }

  .menu-card h3 {
    font-size: 1.05rem;
    line-height: 1.08;
  }

  .price {
    font-size: 1.08rem;
    padding: 5px 8px;
  }

  .description {
    font-size: 0.74rem;
    line-height: 1.36;
  }

  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .footer-grid {
    gap: 16px;
    padding: 20px 0;
  }

  .footer-block p,
  .footer-closing p,
  .footer-credit {
    font-size: 0.62rem;
  }
}

@media (max-width: 390px) {
  .hero-card {
    padding-inline: 10px;
  }

  .language-control {
    transform: scale(0.94);
    transform-origin: right center;
  }

  .hero-info {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 8px;
    padding: 10px 10px 14px;
  }

  .hero-logo {
    width: 100px;
    height: 100px;
  }

  .hero-copy h1 {
    font-size: clamp(13px, 4.05vw, 16px);
  }

  .service-time,
  .instagram-link {
    font-size: 0.63rem;
  }

  .menu-card__image,
  .menu-card__image img {
    height: 239px;
    min-height: 239px;
  }

  .menu-card__topline {
    display: block;
  }

  .price {
    display: block;
    margin-bottom: 7px;
    width: fit-content;
    text-align: center;
  }
}
