/*
  Быстрые правки:
  - Цвета бренда меняются в :root.
  - Логотип и фото лежат в папке assets.
  - Ссылки и меню меняются в script.js.
*/
:root {
  --bg: #1d1d1e;
  --bg-soft: #262323;
  --card: #2b2929;
  --orange: #f8b712;
  --cream: #ffefdd;
  --white: #ffffff;
  --muted: rgba(255, 239, 221, 0.72);
  --line: rgba(255, 239, 221, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --site-width: 430px;
  --font-main: Montserrat, Arial, sans-serif;
  --font-display: "Arial Black", Impact, Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #111112;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-main);
  line-height: 1.5;
  width: min(100%, var(--site-width));
  min-height: 100vh;
  margin-inline: auto;
  overflow-x: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.46);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(29, 29, 30, 0.9), rgba(29, 29, 30, 0.94)),
    url("assets/logo-pattern.webp") center top / min(1200px, 150vw) auto repeat,
    linear-gradient(150deg, rgba(248, 183, 18, 0.1), transparent 34%),
    radial-gradient(circle at 70% 8%, rgba(255, 239, 221, 0.08), transparent 28%),
    #1d1d1e;
}

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

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

.hero {
  min-height: auto;
  padding: 12px 8px 28px;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
}

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

.topbar-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.topbar-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.68rem;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  display: block;
  max-width: 1180px;
  margin: 10px auto 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.5));
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  padding: 20px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  color: var(--cream);
  font-size: 1.42rem;
  white-space: nowrap;
}

.hero-title {
  position: absolute;
  top: 4%;
  left: 0;
  right: 0;
  width: fit-content;
  max-width: calc(100% - 34px);
  margin-inline: auto;
  transform: none;
}

h2 {
  color: var(--white);
  font-size: 1.76rem;
}

.section-title-accent {
  position: relative;
  display: inline-block;
  color: var(--orange);
  isolation: isolate;
  -webkit-text-stroke: 0.035em rgba(0, 0, 0, 0.92);
  paint-order: stroke fill;
  text-shadow:
    0.045em 0.045em 0 rgba(0, 0, 0, 0.92),
    -0.025em 0.035em 0 rgba(0, 0, 0, 0.76);
}

.section-title-accent::before {
  content: "";
  position: absolute;
  left: -0.34em;
  right: -0.36em;
  top: 53%;
  z-index: -1;
  height: 1.22em;
  transform: translateY(-46%) rotate(-1.4deg);
  background:
    linear-gradient(90deg, transparent 0 0.5%, rgba(0, 0, 0, 0.98) 3% 97%, transparent 99.5%),
    repeating-linear-gradient(111deg, rgba(0, 0, 0, 1) 0 16px, rgba(0, 0, 0, 0.78) 16px 24px);
  filter: blur(0.35px);
  border-radius: 42% 34% 46% 36%;
  box-shadow:
    -0.24em -0.05em 0 rgba(0, 0, 0, 0.72),
    0.22em 0.08em 0 rgba(0, 0, 0, 0.82),
    0 0.12em 0 rgba(0, 0, 0, 0.7);
}

.hero-lead {
  max-width: 560px;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 430px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  margin: 0;
}

.order-panel {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: calc(100% - 34px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow);
  margin: 0;
}

.order-title {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.78rem;
  line-height: 1;
}

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

.order-card,
.button,
.quick-links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.order-card {
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(248, 183, 18, 0.42);
  background: rgba(255, 239, 221, 0.07);
  color: var(--cream);
  text-shadow: none;
}

.order-card-primary {
  background: var(--orange);
  color: #171717;
}

.order-card span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.96rem;
}

.order-card small {
  color: currentColor;
  opacity: 1;
  font-size: 0.66rem;
  font-weight: 600;
}

.order-card:hover,
.button:hover,
.quick-links a:hover {
  transform: translateY(-2px);
}

.section {
  width: calc(100% - 16px);
  margin: 0 auto;
  padding: 56px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
  padding-inline: 14px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin: 14px 0 0;
}

.menu-section .section-heading p {
  font-size: 0.76rem;
  line-height: 1.3;
  white-space: nowrap;
}

.intro-band {
  border-top: 1px solid var(--line);
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefits article,
.menu-item,
.map-card,
.review-grid blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 239, 221, 0.055);
}

.benefits article {
  padding: 18px;
}

.benefits strong,
.map-card strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.05;
}

.benefits span,
.map-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
}

.campaign {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  border-block: 1px solid var(--line);
  padding-inline: 18px;
}

.campaign p {
  color: var(--muted);
  font-size: 1.08rem;
}

.campaign h2 {
  white-space: nowrap;
  font-size: 1.08rem;
  line-height: 1.12;
}

.menu-toolbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-color: rgba(255, 239, 221, 0.22) rgba(0, 0, 0, 0.24);
  scrollbar-width: thin;
}

.menu-toolbar::-webkit-scrollbar,
.reviews-carousel::-webkit-scrollbar {
  height: 8px;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.menu-toolbar::-webkit-scrollbar-track,
.reviews-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.24);
  border-radius: 999px;
}

.menu-toolbar::-webkit-scrollbar-thumb,
.reviews-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 239, 221, 0.24);
  border-radius: 999px;
}

.menu-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  flex: 0 0 auto;
  font: 800 0.88rem var(--font-main);
  padding: 10px 14px;
}

.menu-filter.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #151515;
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(166px, 56%) minmax(0, 1fr);
  min-height: 210px;
  overflow: hidden;
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.menu-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 239, 221, 0.1);
  color: rgba(255, 239, 221, 0.58);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  text-transform: uppercase;
}

.menu-item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 14px;
}

.menu-item h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
}

.dish-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66em;
  white-space: nowrap;
}

#map-title {
  font-size: 1.14rem;
  white-space: nowrap;
  text-shadow: none;
}

#campaign-title {
  white-space: nowrap;
  text-shadow: none;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  max-width: 150px;
}

.price {
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.22);
  padding: 9px 11px;
  min-width: 0;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.12;
}

.price strong {
  color: var(--orange);
  font-size: 1.08rem;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .menu-item {
    grid-template-columns: minmax(180px, 56%) minmax(0, 1fr);
  }

  .menu-item h3 {
    font-size: 1.12rem;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 7px;
    max-width: 150px;
  }

  .price small {
    font-size: 0.68rem;
  }

  .price strong {
    font-size: 1.08rem;
  }
}

.map-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.map-placeholder,
.map-widget {
  display: grid;
  place-items: center;
  min-height: 300px;
  margin-top: 0;
  border: 1px dashed rgba(248, 183, 18, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(248, 183, 18, 0.1), transparent 38%),
    rgba(255, 239, 221, 0.04);
  color: var(--muted);
  text-align: center;
  padding: 22px;
}

.map-widget {
  display: block;
  overflow: hidden;
  padding: 0;
  border-style: solid;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.map-widget iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
}

.map-widget .dg-widget-link,
.map-widget noscript {
  display: block;
  padding: 12px;
  color: var(--orange);
  font-weight: 900;
  text-align: center;
}

.map-placeholder strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.map-placeholder span {
  display: block;
  margin-top: 10px;
}

.button {
  min-width: 156px;
  padding: 14px 18px;
  background: var(--orange);
  color: #141414;
  text-transform: uppercase;
}

.button-outline {
  border: 1px solid var(--orange);
}

.reviews-carousel {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 2px 0 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transition: height 180ms ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 239, 221, 0.055);
  scroll-snap-align: start;
}

.review-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.review-nav {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border: 1px solid rgba(255, 239, 221, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--cream);
  cursor: pointer;
  font: 900 1.65rem/1 var(--font-display);
}

.review-nav:active {
  transform: translateY(1px);
}

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

.quick-links a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  border: 1px solid var(--line);
  min-height: 96px;
  padding: 12px;
  background: rgba(255, 239, 221, 0.06);
  text-align: center;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #171717;
}

.social-icon img {
  width: 18px;
  height: 18px;
}

.contact-note {
  color: var(--muted);
  margin: 16px 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 28px 18px 36px;
  color: var(--muted);
}

.footer img {
  width: 54px;
  height: auto;
}

.footer a {
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-inline: 8px;
  }

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

  .hero-grid {
    margin-top: 12px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual img {
    min-height: 430px;
  }

  .brand img {
    width: 58px;
  }

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

  .map-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 1.42rem;
    white-space: nowrap;
  }

  h2 {
    font-size: 1.76rem;
  }

  .campaign h2 {
    font-size: 1.08rem;
  }

  .section {
    width: calc(100% - 16px);
    padding: 42px 0;
  }

  .order-card {
    min-height: 58px;
    padding: 8px 4px;
  }

  .order-card span {
    font-size: 0.96rem;
  }

  .order-card small {
    font-size: 0.66rem;
    line-height: 1.15;
    max-width: 110px;
    text-align: center;
  }

  .menu-item {
    grid-template-columns: minmax(166px, 56%) minmax(0, 1fr);
    min-height: 210px;
  }

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

  .menu-item h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 7px;
    max-width: 136px;
  }

  .price {
    padding: 7px 9px;
  }

  .price strong {
    font-size: 1.05rem;
  }

}
