:root {
      --ink: #111111;
      --ink-2: #191919;
      --ink-3: #252525;
      --paper: #f5f2ec;
      --paper-2: #ebe7df;
      --brand: #b75548;
      --brand-2: #ce6d5e;
      --brand-dark: #843b32;
      --white: #ffffff;
      --muted-dark: #aaa7a1;
      --muted-light: #67645f;
      --line-dark: rgba(255, 255, 255, 0.13);
      --line-light: rgba(17, 17, 17, 0.14);
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
      --header-h: 78px;
      --container: 1180px;
      --ease: cubic-bezier(.2, .75, .25, 1);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-h);
    }
    body {
      min-width: 320px;
      overflow-x: hidden;
      background: var(--ink);
      color: var(--white);
      font-family: "Roboto", sans-serif;
      line-height: 1.6;
    }
    body.drawer-open{
      overflow: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    button,
    input,
    textarea {
      font: inherit;
    }
    button {
      color: inherit;
    }
    img {
      display: block;
      max-width: 100%;
    }
    ::selection {
      background: var(--brand);
      color: var(--white);
    }
    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }
    .section {
      position: relative;
      overflow: hidden;
      padding: 104px 0;
    }
    .paper-texture {
      color: var(--ink);
      background:
        radial-gradient(circle at 20% 10%, rgba(17, 17, 17, .035), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(183, 85, 72, .06), transparent 25%),
        repeating-radial-gradient(circle at 0 0, rgba(17, 17, 17, .022) 0 1px, transparent 1px 5px),
        var(--paper);
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--brand-2);
      font-family: "Great Vibes", cursive;
      font-size: 1.65rem;
      line-height: 1;
      margin-bottom: 8px;
    }
    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
      opacity: .75;
    }
    .section-title {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(2.8rem, 5vw, 5.4rem);
      font-weight: 800;
      line-height: .9;
      letter-spacing: -.02em;
      text-transform: uppercase;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      min-height: 48px;
      padding: 0 25px;
      border: 1px solid transparent;
      border-radius: 2px;
      cursor: pointer;
      font-family: "Bebas Neue", sans-serif;
      font-size: .92rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
    }
    .btn:hover {
      transform: translateY(-2px);
    }
    .btn-brand {
      background: var(--brand);
      color: var(--white);
    }
    .btn-brand:hover {
      background: var(--brand-2);
    }
    .btn-outline {
      border-color: rgba(255, 255, 255, .35);
      background: rgba(0, 0, 0, .12);
      color: var(--white);
    }
    .btn-outline:hover {
      border-color: var(--brand-2);
      background: var(--brand);
    }
    .icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      fill: currentColor;
    }
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: grid;
      place-items: center;
      background: var(--ink);
      transition: opacity .6s ease, visibility .6s ease;
    }
    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
    }
    .preloader-logo {
      color: var(--white);
      font-family: "Great Vibes", cursive;
      font-size: clamp(4rem, 12vw, 8rem);
      animation: loaderPulse 1.2s ease-in-out infinite alternate;
    }
    @keyframes loaderPulse {
      to { color: var(--brand-2); transform: scale(1.035); }
    }
:root {
  --header-h: 104px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(rgba(30, 30, 30, 0.94), rgba(30, 30, 30, 0.94)),
        #242424;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.site-header.scrolled {
  background:
    linear-gradient(rgba(24, 24, 24, 0.98), rgba(24, 24, 24, 0.98)),
        #202020;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.3);
}
.header-inner {
  width: calc(100% - 104px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 285px minmax(520px, 1fr) auto;
  align-items: center;
  gap: 34px;
}
.brand-logo {
  justify-self: start;
  color: #ffffff;
  font-family: "Great Vibes", cursive;
  font-size: 3.3rem;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.brand-logo:hover {
  color: #ffffff;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(26px, 2vw, 42px);
}
.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.93);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -19px;
  width: 100%;
  height: 3px;
  background: var(--brand-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 19px;
}
.header-separator {
  width: 1px;
  height: 57px;
  margin-right: 2px;
  background: rgba(255, 255, 255, 0.22);
}
.header-phone {
  min-width: 145px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  text-align: right;
}
.header-phone small {
  color: rgba(255, 255, 255, 0.55);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.header-phone strong {
  margin-top: 6px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.header-order {
  min-width: 162px;
  min-height: 57px;
  padding-inline: 23px;
  font-size: 1.04rem;
}
.nav-toggle {
  width: 55px;
  height: 55px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 35px;
  height: 3px;
  margin: 0;
  background: #ffffff;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.nav-toggle span:nth-child(2) {
  width: 46px;
}
.nav-toggle:hover span {
  width: 46px;
  background: var(--brand-2);
}
.sweep-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: none !important;
}
.sweep-button > span {
  position: relative;
  z-index: 2;
}
.sweep-button::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #ffffff;
  transform: translateX(-102%);
  transition:
    transform 0.38s cubic-bezier(0.72, 0, 0.2, 1);
}
.sweep-button:hover::before {
  transform: translateX(0);
}
.sweep-button.btn-brand:hover {
  color: #111111;
  background: var(--brand);
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1990;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.77);
  transition:
    visibility 0.4s ease,
    opacity 0.4s ease;
}
.drawer-overlay.open {
  visibility: visible;
  opacity: 1;
}
.info-drawer {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  width: min(515px, 100%);
  height: 100dvh;
  padding: 68px 62px 42px 72px;
  overflow-y: auto;
  color: #ffffff;
  background:
    linear-gradient(rgba(28, 28, 28, 0.93), rgba(28, 28, 28, 0.93)),
        #282828;
  box-shadow: -25px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(102%);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.info-drawer.open {
  transform: translateX(0);
}
.drawer-close {
  position: absolute;
  top: 36px;
  right: 42px;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 15px;
  height: 2px;
  background: #ffffff;
}
.drawer-close::before {
  transform: rotate(45deg);
}
.drawer-close::after {
  transform: rotate(-45deg);
}
.drawer-close:hover {
  border-color: var(--brand-2);
}
.drawer-close:hover::before,
.drawer-close:hover::after {
  background: var(--brand-2);
}
.drawer-brand {
  display: inline-block;
  margin-bottom: 47px;
  color: #ffffff;
  font-family: "Great Vibes", cursive;
  font-size: 4.6rem;
  line-height: 0.9;
}
.drawer-info-block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 32px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.drawer-info-block h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}
.drawer-info-block a,
.drawer-info-block p {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.64);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
.drawer-info-block a:hover {
  color: var(--brand-2);
}
.hero {
  position: relative;
  min-height: 930px;
  padding:
    calc(var(--header-h) + 53px)
    0
    63px;
  overflow: hidden;
  background:
    linear-gradient(rgba(35, 35, 35, 0.9), rgba(35, 35, 35, 0.9)),
        #242424;
}
.hero-layout {
  width: 100%;
  height: 710px;
  display: grid;
  grid-template-columns:
    108px
    minmax(0, 1fr)
    108px;
  gap: 8px;
  align-items: stretch;
}
.hero-main {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #080808;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 70px 65px 81px;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.035);
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.56) 0%,
      rgba(0, 0, 0, 0.25) 48%,
      rgba(0, 0, 0, 0.08) 82%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.5)
    ),
    var(--slide-image);
  background-position: center;
  background-size: cover;
  transition:
    visibility 0.85s ease,
    opacity 0.85s ease,
    transform 1.15s ease;
}
.hero-slide.active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(940px, 94%);
  margin-inline: auto;
  text-align: center;
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(74px);
}
.hero-slide.active .hero-kicker {
  animation: heroRise 0.68s 0.12s forwards;
}
.hero-slide.active .hero-title {
  animation: heroRise 0.74s 0.24s forwards;
}
.hero-slide.active .hero-subtitle {
  animation: heroRise 0.68s 0.38s forwards;
}
.hero-slide.active .hero-actions {
  animation: heroRise 0.68s 0.5s forwards;
}
@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-kicker {
  display: block;
  margin-bottom: 13px;
  color: #ffffff;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}
.hero-title {
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 6.15vw, 7.25rem);
  font-weight: 400;
  letter-spacing: 0.004em;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.hero-title .accent {
  color: var(--brand-2);
}
.hero-subtitle {
  max-width: 730px;
  margin: 23px auto 29px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-cta {
  min-width: 222px;
  min-height: 61px;
  padding-inline: 25px;
  font-size: 1.07rem;
}
.hero-arrow {
  position: absolute;
  z-index: 10;
  top: 67%;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.hero-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}
.hero-prev {
  left: 26px;
}
.hero-next {
  right: 26px;
}
@media (max-width: 1450px) {
  .header-inner {
    width: calc(100% - 58px);
    grid-template-columns:
      235px
      minmax(430px, 1fr)
      auto;
    gap: 22px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-phone {
    min-width: 130px;
  }
  .hero-layout {
  grid-template-columns:
    82px
    minmax(0, 1fr)
    82px;
}
}
@media (max-width: 1180px) {
  .header-separator,
  .header-phone {
    display: none;
  }
  .hero-layout {
  grid-template-columns:
    64px
    minmax(0, 1fr)
    64px;
}
  .hero-slide {
    padding-inline: 50px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }
  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns:
      auto
      1fr
      auto;
  }
  .desktop-nav,
  .header-order {
    display: none;
  }
  .brand-logo {
    font-size: 2.75rem;
  }
  .hero {
    min-height: 760px;
    padding-top:
      calc(var(--header-h) + 28px);
  }
  .hero-layout {
    width: calc(100% - 28px);
    height: 650px;
    margin-inline: auto;
    display: block;
  }
  .hero-main {
    border-radius: 18px;
  }
  .hero-rail{
    display: none;
  }
  .hero-slide {
    padding: 45px 34px 80px;
  }
}
    .food-ticker {
      overflow: hidden;
      border-block: 1px solid rgba(255,255,255,.08);
      background: #070707;
      transform: rotate(-1.1deg) scale(1.02);
      transform-origin: center;
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 25s linear infinite;
    }
    .ticker-set {
      display: flex;
      align-items: center;
      gap: 34px;
      padding: 18px 17px;
      white-space: nowrap;
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(1.1rem, 2.2vw, 1.85rem);
      font-weight: 800;
      letter-spacing: .025em;
      text-transform: uppercase;
    }
    .ticker-set span::after {
      content: "✱";
      margin-left: 34px;
      color: var(--white);
      font-size: .8em;
    }
    @keyframes ticker {
      to { transform: translateX(-50%); }
    }
    .experience {
      padding-top: 92px;
    }
    .experience-card {
      position: relative;
      z-index: 2;
      min-height: 440px;
      overflow: hidden;
      border-radius: 0 0 12px 12px;
      background-image:
        linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.72)),
        url("video-coming-soon.webp");
      background-position: center;
      background-size: cover;
      box-shadow: var(--shadow);
    }
    .experience-video-copy {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 30px;
    }
    .menu-section {
      padding-bottom: 112px;
    }
    .review-stars {
      color: var(--brand-2);
      letter-spacing: .2em;
      margin-bottom: 18px;
    }
    .review-author {
      margin-top: 22px;
      color: var(--muted-dark);
      font-size: .8rem;
    }
    .review-author strong {
      display: block;
      color: var(--white);
      font-family: "Bebas Neue", sans-serif;
      font-size: 1rem;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .back-top {
      position: fixed;
      z-index: 900;
      right: 22px;
      bottom: 22px;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      background: var(--brand);
      color: var(--white);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: .25s ease;
    }
    .back-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .cursor-dot,
    .cursor-ring {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 3000;
      pointer-events: none;
      opacity: 0;
      transform: translate(-50%, -50%);
    }
    .cursor-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand-2);
    }
    .cursor-ring {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(206,109,94,.8);
      border-radius: 50%;
      transition: width .2s ease, height .2s ease, background .2s ease;
    }
    body.cursor-hover .cursor-ring {
      width: 52px;
      height: 52px;
      background: rgba(183,85,72,.09);
    }
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .75s ease, transform .75s var(--ease);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
@media (max-width: 1450px) {
  .header-inner {
    width: calc(100% - 58px);
    grid-template-columns: 230px minmax(420px, 1fr) auto;
    gap: 24px;
  }
  .brand-logo {
    font-size: 3rem;
  }
  .desktop-nav {
    gap: 23px;
  }
  .desktop-nav a {
    font-size: 1rem;
  }
  .header-phone {
    min-width: 128px;
  }
  .header-phone strong {
    font-size: 1.17rem;
  }
  .header-order {
    min-width: 145px;
    min-height: 53px;
    padding-inline: 20px;
  }
  .nav-toggle {
    width: 50px;
    height: 50px;
  }
  .hero-layout {
    grid-template-columns:
      82px
      minmax(0, 1fr)
      minmax(275px, 340px)
      82px;
  }
  .hero-slide {
    padding-inline: 52px;
  }
  .hero-title {
    font-size: clamp(4.8rem, 6vw, 6.8rem);
  }
  .hero-rail-content {
    font-size: 0.82rem;
  }
}
@media (max-width: 1180px) {
  .header-inner {
    width: calc(100% - 42px);
    grid-template-columns: 205px minmax(400px, 1fr) auto;
    gap: 18px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a {
    font-size: 0.94rem;
  }
  .header-separator,
  .header-phone {
    display: none;
  }
  .header-order {
    min-width: 135px;
    min-height: 50px;
    padding-inline: 18px;
    font-size: 0.96rem;
  }
  .hero {
    min-height: 860px;
  }
  .hero-layout {
    height: 670px;
    grid-template-columns:
      62px
      minmax(0, 1fr)
      minmax(235px, 285px)
      62px;
  }
  .hero-slide {
    padding: 60px 42px 76px;
  }
  .hero-copy {
    width: min(800px, 94%);
  }
  .hero-title {
    font-size: clamp(4.35rem, 6.4vw, 6.25rem);
  }
  .hero-subtitle {
    max-width: 640px;
  }
  .hero-rail-content {
    gap: 22px;
    font-size: 0.75rem;
  }
}
@media (max-width: 980px) {
  :root {
    --header-h: 78px;
  }
  .container {
    width: min(100% - 34px, var(--container));
  }
  .section {
    padding: 82px 0;
  }
  .section-title {
    font-size: clamp(3.3rem, 8vw, 5rem);
  }
  .site-header {
    height: var(--header-h);
  }
  .header-inner {
    width: calc(100% - 34px);
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .brand-logo {
    justify-self: start;
    font-size: 2.85rem;
  }
  .desktop-nav,
  .header-separator,
  .header-phone,
  .header-order {
    display: none;
  }
  .header-actions {
    grid-column: 3;
    justify-self: end;
  }
  .nav-toggle {
    display: flex;
    width: 48px;
    height: 48px;
  }
  .nav-toggle span {
    width: 31px;
  }
  .nav-toggle span:nth-child(2) {
    width: 40px;
  }
  .info-drawer {
    width: min(450px, 100%);
    padding: 64px 48px 38px;
  }
  .drawer-close {
    top: 28px;
    right: 30px;
  }
  .drawer-brand {
    font-size: 4.2rem;
    margin-bottom: 40px;
  }
  .drawer-info-block {
    padding-bottom: 26px;
    margin-bottom: 25px;
  }
  .hero {
    min-height: 770px;
    padding:
      calc(var(--header-h) + 28px)
      0
      38px;
  }
  .hero-layout {
    width: calc(100% - 30px);
    height: 650px;
    margin-inline: auto;
    display: block;
  }
  .hero-main {
    height: 100%;
    border-radius: 18px;
  }
  .hero-rail{
    display: none;
  }
  .hero-slide {
    padding: 50px 38px 86px;
    border-radius: 18px;
  }
  .hero-copy {
    width: min(750px, 96%);
  }
  .hero-kicker {
    font-size: clamp(2.25rem, 5vw, 3rem);
  }
  .hero-title {
    font-size: clamp(4.15rem, 10vw, 6.2rem);
  }
  .hero-subtitle {
    max-width: 620px;
  }
  .hero-prev {
    left: 22px;
    top: auto;
    bottom: 22px;
    transform: none;
  }
  .ticker-set {
    gap: 25px;
    padding-block: 15px;
  }
  .ticker-set span::after {
    margin-left: 25px;
  }
  .experience {
    padding-top: 82px;
  }
  .experience-card {
    min-height: 610px;
  }
  .experience-video-copy {
    align-items: start;
    padding-top: 105px;
  }
  .menu-section {
    padding-bottom: 90px;
  }
  .cursor-dot, .cursor-ring{
    display: none;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .section {
    padding: 70px 0;
  }
  .eyebrow {
    font-size: 0.72rem;
  }
  .section-title {
    font-size: clamp(3rem, 12vw, 4.35rem);
  }
  .btn {
    min-height: 48px;
    padding-inline: 20px;
    font-size: 0.94rem;
  }
  .brand-logo {
    font-size: 2.65rem;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
  }
  .nav-toggle span {
    height: 2px;
  }
  .info-drawer {
    width: min(420px, 100%);
    padding: 62px 34px 34px;
  }
  .drawer-brand {
    font-size: 3.9rem;
    margin-bottom: 35px;
  }
  .drawer-info-block {
    gap: 20px;
  }
  .drawer-info-block h3 {
    font-size: 1.45rem;
  }
  .drawer-info-block a,
  .drawer-info-block p {
    font-size: 0.9rem;
  }
  .hero {
    min-height: 695px;
    padding-bottom: 28px;
  }
  .hero-layout {
    height: 590px;
    width: calc(100% - 22px);
  }
  .hero-main,
  .hero-slide {
    border-radius: 15px;
  }
  .hero-slide {
    align-items: flex-end;
    padding: 38px 22px 76px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero-kicker {
    margin-bottom: 10px;
    font-size: 2.15rem;
  }
  .hero-title {
    font-size: clamp(3.65rem, 15vw, 5rem);
    line-height: 0.88;
  }
  .hero-subtitle {
    max-width: 95%;
    margin-top: 18px;
    margin-bottom: 23px;
    font-size: 0.88rem;
    line-height: 1.55;
  }
  .hero-cta {
    min-width: 185px;
    min-height: 53px;
    font-size: 0.97rem;
  }
  .hero-prev {
    width: 43px;
    height: 43px;
    left: 16px;
    bottom: 17px;
  }
  .hero-next {
  width: 43px;
  height: 43px;
  right: 16px;
  bottom: 17px;
}
.hero-next {
  right: 22px;
  top: auto;
  bottom: 22px;
  transform: none;
}
  .food-ticker {
    transform: rotate(-0.7deg) scale(1.01);
  }
  .ticker-set {
    gap: 19px;
    padding: 13px 10px;
    font-size: 1.15rem;
  }
  .ticker-set span::after {
    margin-left: 19px;
  }
  .experience-card {
    min-height: 650px;
  }
  .experience-video-copy {
    padding-top: 92px;
  }
}
@media (max-width: 520px) {
  :root {
    --header-h: 72px;
  }
  .container {
    width: calc(100% - 24px);
  }
  .section {
    padding: 62px 0;
  }
  .section-title {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }
  .header-inner {
    width: calc(100% - 24px);
  }
  .brand-logo {
    font-size: 2.45rem;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
  }
  .nav-toggle span {
    width: 28px;
  }
  .nav-toggle span:nth-child(2) {
    width: 36px;
  }
  .info-drawer {
    width: 100%;
    padding: 58px 25px 30px;
  }
  .drawer-close {
    top: 23px;
    right: 23px;
  }
  .drawer-brand {
    font-size: 3.65rem;
    margin-bottom: 30px;
  }
  .drawer-info-block {
    padding-bottom: 21px;
    margin-bottom: 21px;
  }
  .drawer-info-block h3 {
    font-size: 1.34rem;
  }
  .hero {
    min-height: 645px;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 22px;
  }
  .hero-layout {
    width: calc(100% - 16px);
    height: 550px;
  }
  .hero-slide {
    padding: 30px 18px 72px;
  }
  .hero-kicker {
    font-size: 1.95rem;
  }
  .hero-title {
    font-size: clamp(3.2rem, 16vw, 4.45rem);
  }
  .hero-subtitle {
    font-size: 0.81rem;
  }
  .hero-cta {
    min-width: 170px;
    min-height: 49px;
    padding-inline: 17px;
    font-size: 0.9rem;
  }
  .hero-prev {
    width: 39px;
    height: 39px;
    left: 13px;
    bottom: 15px;
  }
  .experience-card {
    min-height: 670px;
  }
  .experience-video-copy {
    padding-top: 80px;
  }
  .back-top {
    right: 15px;
    bottom: 15px;
  }
}
@media (max-width: 380px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-cta {
    min-width: 158px;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring{
    display: none !important;
  }
}
    html {
      background: #e9e8e5;
    }
    body {
      position: relative;
      isolation: isolate;
      background: transparent;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background-image: url("site-texture.webp");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(circle at 12% 8%, rgba(255,255,255,.16), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(183,85,72,.07), transparent 34%);
    }
    .paper-texture {
      color: var(--ink);
      background:
        radial-gradient(circle at 20% 12%, rgba(255,255,255,.24), transparent 32%),
        radial-gradient(circle at 90% 82%, rgba(183,85,72,.055), transparent 30%),
        linear-gradient(120deg, rgba(249,247,243,.92), rgba(237,234,228,.88));
    }
    .site-header,
    .site-header.scrolled {
      background:
        linear-gradient(90deg, rgba(18,18,18,.97), rgba(28,23,22,.94), rgba(18,18,18,.97));
      backdrop-filter: blur(9px);
      -webkit-backdrop-filter: blur(9px);
    }
    .info-drawer {
      background:
        radial-gradient(circle at 90% 8%, rgba(183,85,72,.10), transparent 28%),
        linear-gradient(145deg, rgba(19,19,19,.98), rgba(31,27,26,.97));
    }
    .hero {
      background:
        radial-gradient(circle at 50% 15%, rgba(255,255,255,.045), transparent 36%),
        linear-gradient(118deg, rgba(12,12,12,.93), rgba(34,31,30,.82) 48%, rgba(12,12,12,.93));
    }
    .food-ticker {
      background: rgba(7,7,7,.94);
      backdrop-filter: blur(6px);
    }
.hero-layout {
  width: 100%;
  height: 710px;
  display: grid !important;
  grid-template-columns: 108px minmax(0, 1fr) 108px !important;
  gap: 8px;
  align-items: stretch;
}
.hero-main {
  position: relative;
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px !important;
  background: #080808;
}
.hero-rail {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: rgba(255, 255, 255, 0.66);
}
.hero-rail-content {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 27px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.66);
  font-family: "Roboto", sans-serif;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-rail-content a {
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.25s ease;
}
.hero-rail-content a:hover {
  color: var(--brand-2);
}
.hero-rail .rail-divider {
  display: block;
  flex: 0 0 auto;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.7);
}
.hero-arrow {
  position: absolute;
  z-index: 20;
  top: 67%;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.hero-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.hero-prev {
  left: 26px;
}
.hero-next {
  right: 26px;
}
@media (max-width: 1450px) {
  .hero-layout {
    grid-template-columns: 82px minmax(0, 1fr) 82px !important;
  }
  .hero-rail-content {
    font-size: 0.82rem;
    gap: 23px;
  }
}
@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 64px minmax(0, 1fr) 64px !important;
  }
  .hero-rail-content {
    font-size: 0.75rem;
    gap: 20px;
  }
}
@media (max-width: 980px) {
  .hero-layout {
    width: calc(100% - 30px);
    height: 650px;
    margin-inline: auto;
    display: block !important;
  }
  .hero-rail {
    display: none !important;
  }
  .hero-main {
    height: 100%;
    border-radius: 18px !important;
  }
  .hero-prev,
  .hero-next {
    top: auto;
    bottom: 22px;
    transform: none;
  }
  .hero-prev {
    left: 22px;
  }
  .hero-next {
    right: 22px;
  }
}
@media (max-width: 760px) {
  .hero-layout {
    width: calc(100% - 22px);
    height: 590px;
  }
  .hero-main {
    border-radius: 15px !important;
  }
  .hero-arrow {
    width: 43px;
    height: 43px;
    bottom: 17px;
  }
  .hero-prev {
    left: 16px;
  }
  .hero-next {
    right: 16px;
  }
}
:root {
  --header-h: 106px;
}
.site-header,
.site-header.scrolled {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  width: 100%;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.93),
      rgba(24, 24, 24, 0.9),
      rgba(17, 17, 17, 0.93)
    );
  box-shadow: none;
  backdrop-filter: blur(3px);
}
.header-inner {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0 52px;
  display: grid;
  grid-template-columns:
    300px
    minmax(540px, 1fr)
    auto;
  align-items: center;
  gap: 38px;
}
.brand-logo {
  justify-self: start;
  margin: 0;
  color: #ffffff;
  font-family: "Great Vibes", cursive;
  font-size: 3.45rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-1px);
  text-shadow: none;
}
.brand-logo:hover {
  color: #ffffff;
  transform: translateY(-1px);
}
.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  height: 100%;
}
.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transform: none;
  transition: color 0.25s ease;
}
.desktop-nav a:hover {
  color: #ffffff;
  transform: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.header-separator {
  display: block;
  width: 1px;
  height: 58px;
  margin: 0 0 0 2px;
  background: rgba(255, 255, 255, 0.26);
}
.header-phone {
  min-width: 190px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #ffffff;
  line-height: 1;
  text-align: left;
  transform: none;
}
.header-phone small {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.header-phone strong {
  flex: 0 0 auto;
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
.header-phone:hover,
.header-phone:hover small,
.header-phone:hover strong {
  color: inherit;
  transform: none;
}
.header-order {
  width: 190px;
  min-width: 190px;
  height: 62px;
  min-height: 62px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  box-shadow: none;
  transform: none !important;
}
.header-order:hover {
  transform: none !important;
}
.header-order::before {
  border-radius: inherit;
}
.nav-toggle {
  flex: 0 0 54px;
  width: 54px;
  height: 62px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span:nth-child(1),
.nav-toggle span:nth-child(2),
.nav-toggle span:nth-child(3) {
  display: block;
  width: 38px;
  height: 3px;
  margin: 0;
  align-self: center;
  background: #ffffff;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.nav-toggle span:nth-child(2) {
  width: 46px;
}
.nav-toggle:hover span {
  background: var(--brand-2);
}
.nav-toggle:hover span:nth-child(1),
.nav-toggle:hover span:nth-child(3) {
  width: 46px;
}
@media (max-width: 1500px) {
  .header-inner {
    padding-inline: 38px;
    grid-template-columns:
      245px
      minmax(460px, 1fr)
      auto;
    gap: 25px;
  }
  .brand-logo {
    font-size: 3.1rem;
  }
  .desktop-nav {
    gap: 25px;
  }
  .desktop-nav a {
    font-size: 0.96rem;
  }
  .header-actions {
    gap: 18px;
  }
  .header-phone {
    min-width: 165px;
  }
  .header-phone small {
    font-size: 0.84rem;
  }
  .header-phone strong {
    font-size: 1.03rem;
  }
  .header-order {
    width: 165px;
    min-width: 165px;
    height: 58px;
    min-height: 58px;
    font-size: 1.04rem;
  }
}
@media (max-width: 1250px) {
  .header-inner {
    padding-inline: 28px;
    grid-template-columns:
      210px
      minmax(390px, 1fr)
      auto;
    gap: 18px;
  }
  .desktop-nav {
    gap: 19px;
  }
  .desktop-nav a {
    font-size: 0.9rem;
  }
  .header-phone {
    display: none;
  }
  .header-separator {
    display: none;
  }
  .header-order {
    width: 145px;
    min-width: 145px;
    height: 54px;
    min-height: 54px;
    padding-inline: 20px;
  }
}
@media (max-width: 980px) {
  :root {
    --header-h: 78px;
  }
  .site-header,
  .site-header.scrolled {
    height: var(--header-h);
  }
  .header-inner {
    width: 100%;
    height: 100%;
    padding-inline: 18px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .brand-logo {
    font-size: 2.75rem;
  }
  .desktop-nav,
  .header-phone,
  .header-separator,
  .header-order {
    display: none;
  }
  .header-actions {
    grid-column: 3;
    gap: 0;
  }
  .nav-toggle {
    width: 46px;
    height: 48px;
  }
  .nav-toggle span,
  .nav-toggle span:nth-child(1),
  .nav-toggle span:nth-child(2),
  .nav-toggle span:nth-child(3) {
    height: 2px;
  }
  .nav-toggle span:nth-child(1),
  .nav-toggle span:nth-child(3) {
    width: 30px;
  }
  .nav-toggle span:nth-child(2) {
    width: 39px;
  }
}
.hero-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.hero-copy {
  width: min(940px, 90%);
  margin: 0 auto !important;
  text-align: center;
  transform: none;
}
.hero-kicker {
  margin-top: 0;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-prev,
.hero-next {
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}
.hero-prev {
  left: 26px;
}
.hero-next {
  right: 26px;
}
@media (max-width: 980px) {
  .hero-slide {
    align-items: center !important;
    padding: 35px 34px !important;
  }
  .hero-prev,
  .hero-next {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
  .hero-prev {
    left: 20px;
  }
  .hero-next {
    right: 20px;
  }
}
@media (max-width: 760px) {
  .hero-slide {
    align-items: center !important;
    padding: 30px 22px !important;
  }
  .hero-copy {
    width: 88%;
  }
  .hero-prev,
  .hero-next {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }
  .hero-prev {
    left: 12px;
  }
  .hero-next {
    right: 12px;
  }
}
.hero-actions .btn,
.hero-cta {
  border-radius: 12px !important;
  overflow: hidden;
}
.hero-actions .btn::before,
.hero-cta::before {
  border-radius: inherit;
}
.desktop-nav a {
  height: auto !important;
  padding: 8px 0 !important;
  align-self: center;
}
.desktop-nav a::after {
  left: 50% !important;
  right: auto !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 2px !important;
  transform: translateX(-50%) scaleX(0) !important;
  transform-origin: center !important;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: translateX(-50%) scaleX(1) !important;
}
.info-drawer {
  padding-bottom: 44px;
}
.drawer-info-content {
  min-width: 0;
  flex: 1;
}
.drawer-info-block {
  align-items: center;
}
.drawer-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.drawer-social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 11px;
  width: fit-content !important;
  color: rgba(255, 255, 255, 0.67) !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.drawer-social-link:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}
.drawer-social-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #ffffff;
}
.drawer-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.drawer-social-link:hover .drawer-social-icon {
  color: var(--brand-2);
}
.drawer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}
.drawer-action-btn {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  margin: 0;
  padding: 0 14px;
  border-radius: 11px !important;
  font-size: 0.96rem;
  letter-spacing: 0.045em;
  white-space: nowrap;
  overflow: hidden;
}
.drawer-action-btn::before {
  border-radius: inherit;
}
.drawer-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
}
.drawer-actions .btn-outline:hover {
  border-color: var(--brand);
}
@media (max-width: 420px) {
  .drawer-actions {
    gap: 9px;
  }
  .drawer-action-btn {
    min-height: 50px;
    padding-inline: 9px;
    font-size: 0.87rem;
  }
}
.drawer-detail-link {
  display: inline-flex !important;
  align-items: center;
  gap: 11px;
  width: fit-content !important;
  color: rgba(255, 255, 255, 0.67) !important;
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.drawer-detail-link:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}
.drawer-detail-link .drawer-social-icon {
  flex: 0 0 25px;
  align-self: center;
}
.drawer-detail-link:hover .drawer-social-icon {
  color: var(--brand-2);
}
.drawer-actions .btn-outline::before {
  background: #ffffff !important;
}
.drawer-actions .btn-outline:hover,
.drawer-actions .btn-outline:hover span {
  color: #111111 !important;
}
.drawer-actions .btn-outline:hover {
  border-color: #ffffff !important;
  background: transparent;
}
.food-ticker {
  position: relative;
  z-index: 30;
  width: 102%;
  margin-left: -1%;
  margin-top: -8px;
  margin-bottom: -8px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #050505;
  transform: rotate(-1.1deg) !important;
  transform-origin: center;
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.22),
    0 -10px 30px rgba(0, 0, 0, 0.12);
}
.ticker-track {
  display: flex !important;
  align-items: center;
  width: max-content !important;
  min-width: max-content;
  animation: chazaTicker 30s linear infinite !important;
  will-change: transform;
}
.ticker-set {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center;
  gap: 0 !important;
  padding: 20px 0 !important;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(28px, 2.3vw, 48px);
  padding-right: clamp(28px, 2.3vw, 48px);
}
.ticker-label {
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.ticker-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-2);
  font-family: Arial, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  transform: skewX(-12deg) rotate(-8deg);
  transform-origin: center;
}
.ticker-set span::after {
  content: none !important;
  display: none !important;
}
@keyframes chazaTicker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.food-ticker:hover .ticker-track {
  animation-play-state: running;
}
@media (max-width: 980px) {
  .food-ticker {
    width: 104%;
    margin-left: -2%;
    transform: rotate(-0.8deg) !important;
  }
  .ticker-track {
    animation-duration: 25s !important;
  }
  .ticker-set {
    padding-block: 16px !important;
  }
  .ticker-label {
    font-size: clamp(1.65rem, 5vw, 2.5rem);
  }
  .ticker-star {
    font-size: clamp(1.4rem, 4vw, 2.1rem);
  }
}
@media (max-width: 600px) {
  .food-ticker {
    width: 106%;
    margin-left: -3%;
    margin-top: -5px;
    margin-bottom: -5px;
    transform: rotate(-0.65deg) !important;
  }
  .ticker-track {
    animation-duration: 21s !important;
  }
  .ticker-set {
    padding-block: 14px !important;
  }
  .ticker-item {
    gap: 23px;
    padding-right: 23px;
  }
  .ticker-label {
    font-size: 1.65rem;
  }
  .ticker-star {
    font-size: 1.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation-duration: 80s !important;
  }
}
@media (min-width: 981px) {
  .hero {
    padding-bottom: 93px !important;
  }
  .food-ticker {
    margin-top: -38px !important;
  }
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.food-ticker {
  --ticker-angle: -1.1deg;
  position: relative;
  left: 50%;
  width: calc(100vw + 80px) !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform:
    translateX(-50%)
    rotate(var(--ticker-angle)) !important;
  transform-origin: center;
}
@media (max-width: 980px) {
  .food-ticker {
    --ticker-angle: -0.8deg;
    width: calc(100vw + 60px) !important;
  }
}
@media (max-width: 600px) {
  .food-ticker {
    --ticker-angle: -0.65deg;
    width: calc(100vw + 40px) !important;
  }
}
.experience {
  padding: 94px 0 96px !important;
}
.experience > .container {
  width: min(1620px, calc(100% - 56px)) !important;
  max-width: none !important;
}
.experience-card {
  position: relative;
  min-height: 680px !important;
  width: 100%;
  overflow: hidden;
  border-radius: 25px !important;
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.15) 48%,
      rgba(0, 0, 0, 0.74) 100%
    ),
    url("video-coming-soon.webp") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  box-shadow:
    0 30px 85px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}
.experience-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.16) 32%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}
.experience-video-copy {
  position: absolute !important;
  z-index: 3;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
}
.experience-overlay-info {
  position: absolute;
  z-index: 4;
  left: 8%;
  right: 8%;
  bottom: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 9vw, 160px);
}
.experience-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: #ffffff;
}
a.experience-info-item:hover {
  color: #ffffff;
}
.experience-info-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #ffffff;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.experience-info-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
a.experience-info-item:hover .experience-info-icon {
  border-color: var(--brand-2);
  background: var(--brand);
}
.experience-info-text {
  display: block;
  min-width: 0;
}
.experience-info-text strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.experience-info-text > span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.45;
}
.experience-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 82px;
}
.experience-stat {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  text-align: center;
}
.experience-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24%;
  right: 0;
  width: 1px;
  height: 55%;
  border-right: 3px dotted rgba(17, 17, 17, 0.62);
}
.experience-stat:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  background: #111111;
  transform:
    translateY(-50%)
    rotate(45deg);
}
.experience-stat-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--brand);
}
.experience-stat-icon svg {
  width: 65px;
  height: 65px;
  fill: currentColor;
}
.experience-count {
  display: block;
  color: var(--brand);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 4.6vw, 5.25rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0.01em;
}
.experience-stat-label {
  margin-top: 14px;
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.experience-reveal {
  opacity: 0;
  transform: translateY(58px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: 0s;
}
.experience.is-visible .experience-reveal {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay, 0s);
}
@media (max-width: 980px) {
  .experience {
    padding: 76px 0 78px !important;
  }
  .experience > .container {
    width: calc(100% - 30px) !important;
  }
  .experience-card {
    min-height: 620px !important;
    border-radius: 19px !important;
  }
  .experience-overlay-info {
    left: 5%;
    right: 5%;
    bottom: 34px;
    gap: 25px;
  }
  .experience-info-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .experience-info-text strong {
    font-size: 1.15rem;
  }
  .experience-info-text > span {
    font-size: 0.84rem;
  }
  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
    margin-top: 60px;
  }
  .experience-stat:nth-child(2)::after,
  .experience-stat:nth-child(2)::before {
    display: none;
  }
  .experience-stat {
    min-height: 200px;
  }
}
@media (max-width: 620px) {
  .experience-card {
    min-height: 660px !important;
  }
  .experience-overlay-info {
    left: 24px;
    right: 24px;
    bottom: 28px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .experience-info-item {
    gap: 14px;
  }
  .experience-info-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .experience-info-icon svg {
    width: 21px;
    height: 21px;
  }
  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
  }
  .experience-stat {
    min-height: 175px;
    padding: 14px 10px;
  }
  .experience-stat-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }
  .experience-stat-icon svg {
    width: 49px;
    height: 49px;
  }
  .experience-count {
    font-size: 3.1rem;
  }
  .experience-stat-label {
    max-width: 110px;
    font-size: 0.88rem;
    line-height: 1.1;
  }
}
.experience-card {
  min-height: 544px !important;
}
.experience-video-copy {
  position: absolute !important;
  z-index: 3;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  pointer-events: none;
}
.experience-orbit-text {
  width: 158px;
  height: 158px;
  animation: experienceOrbitRotation 15s linear infinite;
  transform-origin: center;
}
.experience-orbit-text svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.experience-orbit-text text {
  fill: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}
.experience-orbit-text path {
  fill: none;
  stroke: none;
}
@keyframes experienceOrbitRotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.experience.experience-no-motion .experience-reveal {
  transition: none !important;
}
@media (max-width: 980px) {
  .experience-card {
    min-height: 496px !important;
  }
  .experience-orbit-text {
    width: 142px;
    height: 142px;
  }
}
@media (max-width: 620px) {
  .experience-card {
    min-height: 528px !important;
  }
  .experience-orbit-text {
    width: 126px;
    height: 126px;
  }
  .experience-orbit-text text {
    font-size: 14px;
    letter-spacing: 2.4px;
  }
}
.experience-card {
  height: 544px !important;
  min-height: 544px !important;
  max-height: 544px !important;
}
.experience-overlay-info .experience-reveal,
.experience-stats .experience-reveal {
  opacity: 0 !important;
  transform: translateY(55px) !important;
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1) !important;
  transition-delay: 0s !important;
}
.experience.image-info-visible
.experience-overlay-info
.experience-reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: var(--reveal-delay, 0s) !important;
}
.experience.stats-visible
.experience-stats
.experience-reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: var(--reveal-delay, 0s) !important;
}
.experience.experience-no-motion
.experience-reveal {
  transition: none !important;
}
@media (max-width: 980px) {
  .experience-card {
    height: 496px !important;
    min-height: 496px !important;
    max-height: 496px !important;
  }
}
@media (max-width: 620px) {
  .experience-card {
    height: 422px !important;
    min-height: 422px !important;
    max-height: 422px !important;
  }
  .experience-overlay-info {
    bottom: 22px !important;
    gap: 14px !important;
  }
}
.experience-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  margin-top: 82px !important;
}
.experience-stat {
  position: relative !important;
  min-height: 255px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 22px 34px !important;
}
.experience-stat-icon {
  width: 82px !important;
  height: 82px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 18px 0 !important;
  color: var(--brand) !important;
}
.experience-stat-icon svg {
  width: 68px !important;
  height: 68px !important;
  fill: currentColor !important;
}
.experience-count {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
  color: var(--brand) !important;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(4rem, 4.7vw, 5.25rem) !important;
  line-height: 0.92 !important;
  letter-spacing: 0.01em !important;
}
.experience-stat-label {
  display: block !important;
  width: 100% !important;
  max-width: 250px !important;
  margin-top: 14px !important;
  text-align: center !important;
  color: #111111 !important;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 1.38rem !important;
  line-height: 1.02 !important;
  letter-spacing: 0.015em !important;
  text-transform: uppercase !important;
}
.experience-stat:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  width: 0 !important;
  height: 162px !important;
  border-right: 4px dotted rgba(0, 0, 0, 0.88) !important;
}
.experience-stat:not(:last-child)::before {
  content: "" !important;
  position: absolute !important;
  z-index: 2 !important;
  top: 50% !important;
  right: -6px !important;
  transform: translateY(-50%) rotate(45deg) !important;
  width: 12px !important;
  height: 12px !important;
  background: #000000 !important;
  border-radius: 1px !important;
}
@media (max-width: 980px) {
  .experience-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 28px !important;
  }
  .experience-stat {
    min-height: 220px !important;
    padding: 18px 20px !important;
  }
  .experience-stat-icon {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 14px !important;
  }
  .experience-stat-icon svg {
    width: 60px !important;
    height: 60px !important;
  }
  .experience-count {
    font-size: 4rem !important;
  }
  .experience-stat-label {
    font-size: 1.2rem !important;
    max-width: 210px !important;
  }
  .experience-stat:not(:last-child)::after {
    height: 138px !important;
  }
  .experience-stat:nth-child(2)::after,
  .experience-stat:nth-child(2)::before {
    display: none !important;
  }
}
@media (max-width: 620px) {
  .experience-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 0 !important;
  }
  .experience-stat {
    min-height: 185px !important;
    padding: 14px 10px !important;
  }
  .experience-stat-icon {
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 10px !important;
  }
  .experience-stat-icon svg {
    width: 46px !important;
    height: 46px !important;
  }
  .experience-count {
    font-size: 3.1rem !important;
  }
  .experience-stat-label {
    max-width: 150px !important;
    font-size: 0.95rem !important;
    line-height: 1.05 !important;
  }
  .experience-stat:not(:last-child)::after {
    height: 115px !important;
    border-right-width: 3px !important;
  }
  .experience-stat:not(:last-child)::before {
    width: 10px !important;
    height: 10px !important;
    right: -5px !important;
  }
}
.experience > .container {
  width: 100% !important;
  max-width: none !important;
}
.experience-card {
  width: calc(100% - 232px) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 1450px) {
  .experience-card {
    width: calc(100% - 180px) !important;
  }
}
@media (max-width: 1180px) {
  .experience-card {
    width: calc(100% - 144px) !important;
  }
}
@media (max-width: 980px) {
  .experience-card {
    width: calc(100% - 30px) !important;
  }
}
@media (max-width: 760px) {
  .experience-card {
    width: calc(100% - 22px) !important;
  }
}
@media (max-width: 520px) {
  .experience-card {
    width: calc(100% - 16px) !important;
  }
}
.menu-section {
  position: relative;
  padding: 110px 0 120px;
}
.menu-section .container {
  width: min(1500px, calc(100% - 120px));
  margin: 0 auto;
}
@media (max-width: 1180px) {
  .menu-section .container {
    width: min(1500px, calc(100% - 60px));
  }
}
@media (max-width: 760px) {
  .menu-section {
    padding: 90px 0 100px;
  }
  .menu-section .container {
    width: calc(100% - 24px);
  }
}
.menu-section {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  background: transparent !important;
}
.menu-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 13, 13, 0.86) 0%,
      rgba(22, 18, 18, 0.80) 45%,
      rgba(12, 11, 11, 0.88) 100%
    );
  pointer-events: none;
}
.menu-section > .container {
  position: relative;
  z-index: 1;
}
.menu-section {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  padding: 105px 0 120px !important;
  background: transparent !important;
}
.menu-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(13, 12, 12, 0.94) 0%,
      rgba(25, 21, 21, 0.88) 48%,
      rgba(12, 11, 11, 0.95) 100%
    );
  pointer-events: none;
}
.chaza-menu-container {
  position: relative;
  z-index: 1;
  width: min(1580px, calc(100% - 80px)) !important;
  max-width: none !important;
}
.chaza-menu-heading {
  margin-bottom: 52px;
  text-align: center;
}
.chaza-menu-heading .section-title {
  margin: 0;
  color: #ffffff;
}
.chaza-menu-tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  width: 100%;
  margin-bottom: 56px;
}
.chaza-menu-tab-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 18px;
}
.chaza-menu-tab-row-second {
  min-height: 30px;
}
.chaza-menu-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 9px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.chaza-menu-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-2);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.chaza-menu-tab:hover,
.chaza-menu-tab.active {
  color: var(--brand-2);
}
.chaza-menu-tab.active::after {
  transform: translateX(-50%) scaleX(1);
}
.chaza-menu-divider {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-4px);
  user-select: none;
}
.chaza-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 36px;
  min-height: 620px;
}
.chaza-menu-card {
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  min-height: 280px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 28px;
  background: #050505;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.24);
  animation: chazaMenuCardAppear 0.48s var(--ease) both;
}
@keyframes chazaMenuCardAppear {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chaza-menu-card-image {
  width: 215px;
  height: 205px;
  overflow: hidden;
  border-radius: 17px;
  background: #161616;
}
.chaza-menu-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.chaza-menu-card:hover .chaza-menu-card-image img {
  transform: scale(1.045);
}
.chaza-menu-card-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.chaza-menu-card-title {
  margin: 0 0 11px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.chaza-menu-card-description {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-family: "Roboto", sans-serif;
  font-size: 0.96rem;
  line-height: 1.75;
}
.chaza-menu-card-price {
  margin-top: 22px;
  color: var(--brand-2);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
}
.chaza-menu-pagination {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 47px;
}
.chaza-menu-pagination[hidden] {
  display: none !important;
}
.chaza-menu-page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.chaza-menu-arrow,
.chaza-menu-page-button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  color: #ffffff;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.chaza-menu-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.chaza-menu-arrow:hover,
.chaza-menu-page-button:hover,
.chaza-menu-page-button.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}
.chaza-menu-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}
.chaza-menu-arrow:disabled:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.24);
}
@media (max-width: 1180px) {
  .chaza-menu-container {
    width: calc(100% - 48px) !important;
  }
  .chaza-menu-tab-row {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .chaza-menu-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .chaza-menu-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}
@media (max-width: 700px) {
  .menu-section {
    padding: 82px 0 90px !important;
  }
  .chaza-menu-container {
    width: calc(100% - 24px) !important;
  }
  .chaza-menu-heading {
    margin-bottom: 38px;
  }
  .chaza-menu-tabs {
    gap: 15px;
    margin-bottom: 37px;
  }
  .chaza-menu-tab-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .chaza-menu-tab {
    font-size: 1.05rem;
  }
  .chaza-menu-divider {
    font-size: 0.95rem;
  }
  .chaza-menu-grid {
    gap: 19px;
  }
  .chaza-menu-card {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 22px;
    border-radius: 20px;
  }
  .chaza-menu-card-image {
    width: 100%;
    height: 235px;
  }
  .chaza-menu-card-title {
    font-size: 2rem;
  }
  .chaza-menu-card-description {
    font-size: 0.88rem;
  }
  .chaza-menu-card-price {
    margin-top: 17px;
    font-size: 1.8rem;
  }
}
.chaza-menu-grid {
  width: min(1425px, 100%) !important;
  max-width: 1425px !important;
  min-height: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 38px 36px !important;
}
.chaza-menu-card {
  width: 100% !important;
  min-height: 250px !important;
  height: 250px !important;
  grid-template-columns: 214px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 36px !important;
  padding: 30px 35px !important;
  border-radius: 25px !important;
}
.chaza-menu-card-image {
  width: 214px !important;
  height: 190px !important;
  align-self: center !important;
  border-radius: 16px !important;
}
.chaza-menu-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}
.chaza-menu-card-content {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 0 !important;
}
.chaza-menu-card-title {
  margin: 0 0 12px !important;
  font-size: 2rem !important;
  line-height: 1 !important;
}
.chaza-menu-card-description {
  max-width: 460px !important;
  margin: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
}
.chaza-menu-card-price {
  margin-top: 20px !important;
  font-size: 2rem !important;
  line-height: 1 !important;
}
.chaza-menu-pagination {
  width: min(1425px, 100%) !important;
  margin: 42px auto 0 !important;
}
@media (max-width: 1180px) {
  .chaza-menu-grid {
    width: min(760px, 100%) !important;
    grid-template-columns: 1fr !important;
  }
  .chaza-menu-card {
    height: 250px !important;
  }
}
@media (max-width: 700px) {
  .chaza-menu-grid {
    width: 100% !important;
    gap: 20px !important;
  }
  .chaza-menu-card {
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: 125px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }
  .chaza-menu-card-image {
    width: 125px !important;
    height: 135px !important;
    border-radius: 12px !important;
  }
  .chaza-menu-card-title {
    font-size: 1.45rem !important;
  }
  .chaza-menu-card-description {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }
  .chaza-menu-card-price {
    margin-top: 12px !important;
    font-size: 1.45rem !important;
  }
}
.chaza-menu-grid {
  width: calc(100% - 80px) !important;
  max-width: 1425px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 690px)) !important;
  grid-auto-rows: 305px !important;
  justify-content: center !important;
  align-items: start !important;
  gap: 38px !important;
  min-height: 0 !important;
  height: auto !important;
}
.chaza-menu-card {
  width: 100% !important;
  max-width: 690px !important;
  height: 305px !important;
  min-height: 305px !important;
  max-height: 305px !important;
  display: grid !important;
  grid-template-columns: 215px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 36px !important;
  padding: 36px !important;
  border-radius: 27px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.chaza-menu-card-image {
  width: 215px !important;
  min-width: 215px !important;
  max-width: 215px !important;
  height: 215px !important;
  min-height: 215px !important;
  max-height: 215px !important;
  margin: 0 !important;
  align-self: center !important;
  border-radius: 17px !important;
  overflow: hidden !important;
}
.chaza-menu-card-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}
.chaza-menu-card-content {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
}
.chaza-menu-card-title {
  margin: 0 0 13px !important;
  font-size: 2rem !important;
  line-height: 1 !important;
}
.chaza-menu-card-description {
  width: 100% !important;
  max-width: 390px !important;
  margin: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
}
.chaza-menu-card-price {
  margin: 22px 0 0 !important;
  font-size: 2rem !important;
  line-height: 1 !important;
}
.chaza-menu-pagination {
  width: calc(100% - 80px) !important;
  max-width: 1425px !important;
  margin: 42px auto 0 !important;
}
@media (max-width: 1180px) {
  .chaza-menu-grid {
    width: calc(100% - 48px) !important;
    max-width: 690px !important;
    grid-template-columns: minmax(0, 690px) !important;
    grid-auto-rows: 305px !important;
    gap: 28px !important;
  }
  .chaza-menu-pagination {
    width: calc(100% - 48px) !important;
    max-width: 690px !important;
  }
}
@media (max-width: 700px) {
  .chaza-menu-grid {
    width: calc(100% - 24px) !important;
    max-width: 500px !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: 170px !important;
    gap: 18px !important;
  }
  .chaza-menu-card {
    max-width: none !important;
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
    grid-template-columns: 125px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }
  .chaza-menu-card-image {
    width: 125px !important;
    min-width: 125px !important;
    max-width: 125px !important;
    height: 134px !important;
    min-height: 134px !important;
    max-height: 134px !important;
    border-radius: 12px !important;
  }
  .chaza-menu-card-title {
    margin-bottom: 7px !important;
    font-size: 1.4rem !important;
  }
  .chaza-menu-card-description {
    max-width: 100% !important;
    font-size: 0.74rem !important;
    line-height: 1.4 !important;
    -webkit-line-clamp: 2;
  }
  .chaza-menu-card-price {
    margin-top: 10px !important;
    font-size: 1.4rem !important;
  }
  .chaza-menu-pagination {
    width: calc(100% - 24px) !important;
    max-width: 500px !important;
  }
}
.chaza-menu-grid {
  width: calc(100% - 80px) !important;
  max-width: 1140px !important;
  grid-template-columns:
    repeat(2, minmax(0, 552px)) !important;
  grid-auto-rows: 244px !important;
  gap: 30px !important;
  justify-content: center !important;
  min-height: 0 !important;
  height: auto !important;
  margin-inline: auto !important;
}
.chaza-menu-card {
  width: 100% !important;
  max-width: 552px !important;
  height: 244px !important;
  min-height: 244px !important;
  max-height: 244px !important;
  grid-template-columns:
    172px minmax(0, 1fr) !important;
  gap: 28px !important;
  padding: 28px !important;
  border-radius: 22px !important;
}
.chaza-menu-card-image {
  width: 172px !important;
  min-width: 172px !important;
  max-width: 172px !important;
  height: 172px !important;
  min-height: 172px !important;
  max-height: 172px !important;
  border-radius: 14px !important;
}
.chaza-menu-card-title {
  margin: 0 0 10px !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
}
.chaza-menu-card-description {
  max-width: 310px !important;
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: 3 !important;
}
.chaza-menu-card-price {
  margin-top: 17px !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
}
.chaza-menu-pagination {
  width: calc(100% - 80px) !important;
  max-width: 1140px !important;
  margin: 36px auto 0 !important;
}
@media (max-width: 1180px) {
  .chaza-menu-grid {
    width: calc(100% - 48px) !important;
    max-width: 552px !important;
    grid-template-columns: minmax(0, 552px) !important;
    grid-auto-rows: 244px !important;
    gap: 24px !important;
  }
  .chaza-menu-pagination {
    width: calc(100% - 48px) !important;
    max-width: 552px !important;
  }
}
@media (max-width: 700px) {
  .chaza-menu-grid {
    width: calc(100% - 24px) !important;
    max-width: 430px !important;
    grid-template-columns: 1fr !important;
    grid-auto-rows: 136px !important;
    gap: 15px !important;
  }
  .chaza-menu-card {
    width: 100% !important;
    max-width: none !important;
    height: 136px !important;
    min-height: 136px !important;
    max-height: 136px !important;
    grid-template-columns:
      100px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 14px !important;
    border-radius: 15px !important;
  }
  .chaza-menu-card-image {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    height: 108px !important;
    min-height: 108px !important;
    max-height: 108px !important;
    border-radius: 10px !important;
  }
  .chaza-menu-card-title {
    margin-bottom: 5px !important;
    font-size: 1.15rem !important;
  }
  .chaza-menu-card-description {
    max-width: 100% !important;
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 2 !important;
  }
  .chaza-menu-card-price {
    margin-top: 8px !important;
    font-size: 1.15rem !important;
  }
  .chaza-menu-pagination {
    width: calc(100% - 24px) !important;
    max-width: 430px !important;
    margin-top: 28px !important;
  }
}
.chaza-who-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0 105px;
  background: transparent;
}
.chaza-who-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 14, 14, 0.93) 0%,
      rgba(20, 18, 18, 0.89) 48%,
      rgba(12, 12, 12, 0.95) 100%
    );
  pointer-events: none;
}
.chaza-who-copy {
  width: min(1500px, calc(100% - 80px));
  min-height: 600px;
  margin: 0 auto;
  padding: 35px 20px 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.chaza-who-logo {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  text-shadow:
    0 8px 30px rgba(0, 0, 0, 0.35);
}
.chaza-who-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
.chaza-who-label span {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--brand-2);
}
.chaza-who-label em {
  color: var(--brand-2);
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-style: normal;
  line-height: 1;
}
.chaza-who-statement {
  max-width: 1420px;
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.7rem, 6.3vw, 7.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.chaza-moving-gallery {
  width: 100%;
  overflow: hidden;
}
.chaza-gallery-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
.chaza-gallery-row:last-child {
  margin-bottom: 0;
}
.chaza-gallery-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  animation:
    chazaGalleryLeft
    42s
    linear
    infinite;
  will-change: transform;
}
.chaza-gallery-row-reverse
.chaza-gallery-track {
  animation-direction: reverse;
  animation-duration: 46s;
}
.chaza-gallery-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}
.chaza-gallery-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(270px, 22vw, 420px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: #111111;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.3);
}
.chaza-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.chaza-gallery-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.06);
}
@keyframes chazaGalleryLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.chaza-gallery-row:hover
.chaza-gallery-track {
  animation-play-state: running;
}
@media (max-width: 980px) {
  .chaza-who-section {
    padding: 95px 0 85px;
  }
  .chaza-who-copy {
    width: calc(100% - 40px);
    min-height: 520px;
    padding-bottom: 80px;
  }
  .chaza-who-logo {
    font-size: clamp(4.5rem, 11vw, 6.5rem);
  }
  .chaza-who-statement {
    font-size: clamp(3.7rem, 9vw, 5.7rem);
  }
  .chaza-gallery-card {
    width: clamp(245px, 36vw, 340px);
  }
  .chaza-gallery-track {
    animation-duration: 34s;
  }
  .chaza-gallery-row-reverse
  .chaza-gallery-track {
    animation-duration: 38s;
  }
}
@media (max-width: 620px) {
  .chaza-who-section {
    padding: 75px 0 70px;
  }
  .chaza-who-copy {
    width: calc(100% - 24px);
    min-height: 470px;
    padding:
      20px
      6px
      65px;
  }
  .chaza-who-logo {
    margin-bottom: 10px;
    font-size: 4.4rem;
  }
  .chaza-who-label {
    gap: 11px;
    margin-bottom: 22px;
  }
  .chaza-who-label span {
    width: 38px;
  }
  .chaza-who-label em {
    font-size: 1.85rem;
  }
  .chaza-who-statement {
    font-size: clamp(3rem, 13vw, 4.15rem);
    line-height: 0.95;
  }
  .chaza-gallery-row {
    margin-bottom: 18px;
  }
  .chaza-gallery-set {
    gap: 17px;
    padding-right: 17px;
  }
  .chaza-gallery-card {
    width: 245px;
    border-width: 4px;
    border-radius: 18px;
  }
  .chaza-gallery-track {
    animation-duration: 28s;
  }
  .chaza-gallery-row-reverse
  .chaza-gallery-track {
    animation-duration: 31s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chaza-gallery-track,
  .chaza-gallery-row-reverse
  .chaza-gallery-track {
    animation-duration: 100s;
  }
}
.chaza-who-statement {
  width: min(1450px, 100%) !important;
  max-width: 1450px !important;
  margin: 0 auto !important;
  font-size: clamp(3.5rem, 4.7vw, 5.8rem) !important;
  line-height: 0.96 !important;
  letter-spacing: 0.003em !important;
  text-align: center !important;
  text-wrap: initial !important;
}
.chaza-who-statement > span {
  display: block;
  width: 100%;
}
.chaza-who-copy {
  min-height: 660px !important;
  padding-top: 35px !important;
  padding-bottom: 90px !important;
}
.chaza-gallery-card {
  width: clamp(270px, 22vw, 400px) !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
}
.chaza-gallery-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 980px) {
  .chaza-who-copy {
    min-height: 590px !important;
    padding-bottom: 75px !important;
  }
  .chaza-who-statement {
    max-width: 900px !important;
    font-size: clamp(2.9rem, 6.5vw, 4.4rem) !important;
  }
  .chaza-gallery-card {
    width: clamp(235px, 34vw, 320px) !important;
    aspect-ratio: 1 / 1 !important;
  }
}
@media (max-width: 620px) {
  .chaza-who-copy {
    min-height: 560px !important;
    padding-top: 20px !important;
    padding-bottom: 60px !important;
  }
  .chaza-who-statement {
    width: 100% !important;
    max-width: 500px !important;
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
    line-height: 0.98 !important;
  }
  .chaza-gallery-card {
    width: 235px !important;
    aspect-ratio: 1 / 1 !important;
  }
}
.chaza-who-emoji {
  display: inline-block;
  margin: 0 0.08em;
  font-family:
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Noto Color Emoji",
    sans-serif;
  font-size: 0.68em;
  font-style: normal;
  line-height: 1;
  vertical-align: 0.08em;
  transform: rotate(-5deg);
}
.chaza-who-statement > span:nth-child(3)
.chaza-who-emoji {
  transform: rotate(5deg);
}
.chaza-who-statement > span:nth-child(4)
.chaza-who-emoji {
  font-size: 0.7em;
  transform: rotate(-3deg);
}
@media (max-width: 620px) {
  .chaza-who-emoji {
    font-size: 0.62em;
  }
}
.reviews-section {
  position: relative;
  padding: 110px 20px 90px;
  text-align: center;
}
.reviews-heading {
  margin-bottom: 42px;
}
.reviews-kicker {
  display: inline-block;
  position: relative;
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  color: #c86653;
  line-height: 1;
  margin-bottom: 10px;
}
.reviews-kicker::before,
.reviews-kicker::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: rgba(200, 102, 83, 0.6);
  vertical-align: middle;
  margin: 0 14px;
}
.reviews-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.6rem, 5vw, 5.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}
.review-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 430px;
}
.review-box {
  position: relative;
  width: 100%;
  min-height: 430px;
  background: rgba(17, 17, 17, 0.96);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 54px;
  gap: 42px;
}
.review-photo-frame {
  flex: 0 0 38%;
  max-width: 460px;
  transform: rotate(-2.2deg);
  border: 6px solid rgba(255,255,255,0.32);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}
.review-photo-frame img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.review-content {
  position: relative;
  flex: 1;
  text-align: left;
  color: #fff;
  padding-right: 30px;
}
.review-stars {
  color: #f6a623;
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review-text {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 3.1rem);
  line-height: 1.28;
  font-weight: 400;
  color: #fff;
  max-width: 760px;
}
.review-author {
  margin-top: 28px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}
.review-source {
  margin-top: 6px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
}
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.14);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-arrow:hover {
  background: #fff;
  color: #111;
}
.review-arrow-left {
  left: 22px;
}
.review-arrow-right {
  right: 22px;
}
@media (max-width: 1100px) {
  .review-box {
    padding: 34px 36px;
    gap: 28px;
  }
  .review-photo-frame {
    flex-basis: 35%;
  }
  .review-photo-frame img {
    height: 270px;
  }
  .review-text {
    font-size: clamp(1.65rem, 2.3vw, 2.45rem);
  }
}
@media (max-width: 900px) {
  .review-box {
    flex-direction: column;
    text-align: center;
    padding: 34px 24px 40px;
  }
  .review-photo-frame {
    flex: unset;
    width: 100%;
    max-width: 520px;
    transform: rotate(-1.5deg);
  }
  .review-content {
    text-align: center;
    padding-right: 0;
  }
  .review-arrow-left {
    left: 10px;
  }
  .review-arrow-right {
    right: 10px;
  }
}
@media (max-width: 640px) {
  .reviews-section {
    padding: 80px 16px 70px;
  }
  .review-stage {
    min-height: auto;
  }
  .review-box {
    min-height: auto;
    border-radius: 18px;
  }
  .review-photo-frame img {
    height: 220px;
  }
  .review-text {
    font-size: 1.45rem;
    line-height: 1.35;
  }
  .review-author {
    font-size: 1.65rem;
  }
  .review-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
  }
}
.review-stage {
  width: min(1180px, 100%) !important;
  height: 420px !important;
  min-height: 420px !important;
  margin-inline: auto !important;
}
.review-box {
  width: 100% !important;
  height: 420px !important;
  min-height: 420px !important;
  max-height: 420px !important;
  display: grid !important;
  grid-template-columns: 42% minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 46px !important;
  padding: 38px 54px !important;
  border-radius: 24px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
.review-photo-frame {
  width: 100% !important;
  max-width: none !important;
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
  margin: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}
.review-photo-frame img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}
.review-content {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 20px 34px 20px 0 !important;
  text-align: left !important;
  box-sizing: border-box !important;
}
.review-text {
  width: 100% !important;
  max-width: 650px !important;
  max-height: 155px !important;
  margin: 0 !important;
  font-size: clamp(1.45rem, 1.8vw, 2rem) !important;
  line-height: 1.32 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden !important;
}
.review-author {
  margin-top: 22px !important;
  font-size: 1.55rem !important;
}
.review-source {
  margin-top: 5px !important;
  font-size: 0.92rem !important;
}
.review-arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.review-arrow-left {
  left: 22px !important;
}
.review-arrow-right {
  right: 22px !important;
}
@media (max-width: 900px) {
  .review-stage {
    height: 650px !important;
    min-height: 650px !important;
  }
  .review-box {
    height: 650px !important;
    min-height: 650px !important;
    max-height: 650px !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 280px minmax(0, 1fr) !important;
    gap: 24px !important;
    padding: 34px !important;
  }
  .review-photo-frame {
    width: min(500px, 88%) !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    margin-inline: auto !important;
  }
  .review-content {
    align-items: center !important;
    justify-content: center !important;
    padding: 0 28px !important;
    text-align: center !important;
  }
  .review-text {
    max-width: 650px !important;
    max-height: 130px !important;
    font-size: 1.35rem !important;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 640px) {
  .review-stage {
    height: 590px !important;
    min-height: 590px !important;
  }
  .review-box {
    height: 590px !important;
    min-height: 590px !important;
    max-height: 590px !important;
    grid-template-rows: 220px minmax(0, 1fr) !important;
    padding: 25px 22px 32px !important;
    border-radius: 18px !important;
  }
  .review-photo-frame {
    width: 88% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  .review-content {
    padding-inline: 20px !important;
  }
  .review-text {
    max-height: 115px !important;
    font-size: 1.12rem !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 5;
  }
  .review-author {
    margin-top: 16px !important;
    font-size: 1.35rem !important;
  }
  .review-arrow-left {
    left: 10px !important;
  }
  .review-arrow-right {
    right: 10px !important;
  }
}
.experience,
.experience.paper-texture {
  background: transparent !important;
  background-image: none !important;
}
.experience::before,
.experience::after,
.experience.paper-texture::before,
.experience.paper-texture::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
.experience > .container {
  position: relative;
  z-index: 1;
}
.review-box {
  overflow: hidden !important;
}
.review-photo-frame,
.review-content {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.38s ease,
    transform 0.52s cubic-bezier(0.22, 0.75, 0.25, 1);
}
.review-stage,
.review-box {
  transform: none !important;
}
.review-stage {
  position: relative !important;
  width: min(1180px, 100%) !important;
  height: 420px !important;
  min-height: 420px !important;
  margin-inline: auto !important;
}
.review-box {
  position: relative !important;
  width: 100% !important;
  height: 420px !important;
  min-height: 420px !important;
  max-height: 420px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  transform: none !important;
}
.review-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  padding: 38px 54px;
  box-sizing: border-box;
  transform: translateX(0);
  will-change: transform;
  transition:
  transform 1.4s
  cubic-bezier(0.25, 0.72, 0.25, 1);
}
.review-slide-standby {
  transform: translateX(-100%);
}
.review-slide-no-transition {
  transition: none !important;
}
.review-slide .review-photo-frame {
  width: 100% !important;
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
  margin: 0 !important;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  transform: rotate(-2deg);
}
.review-slide .review-photo-frame img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.review-slide .review-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 34px 18px 0 !important;
  box-sizing: border-box;
  text-align: left;
}
.review-slide .review-text {
  width: 100%;
  max-width: 650px;
  max-height: 145px;
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: clamp(1.35rem, 1.65vw, 1.85rem) !important;
  line-height: 1.34 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.review-slide .review-author {
  margin-top: 21px !important;
  font-size: 1.55rem !important;
}
.review-slide .review-source {
  margin-top: 5px !important;
  font-size: 0.92rem !important;
}
.review-arrow {
  position: absolute !important;
  z-index: 20;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.review-arrow-left {
  left: 22px !important;
}
.review-arrow-right {
  right: 22px !important;
}
@media (max-width: 900px) {
  .review-stage,
  .review-box {
    height: 650px !important;
    min-height: 650px !important;
    max-height: 650px !important;
  }
  .review-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 34px;
  }
  .review-slide .review-photo-frame {
    width: min(500px, 88%) !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    margin-inline: auto !important;
  }
  .review-slide .review-content {
    align-items: center;
    padding: 0 28px !important;
    text-align: center;
  }
  .review-slide .review-text {
    max-height: 130px;
    font-size: 1.3rem !important;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 640px) {
  .review-stage,
  .review-box {
    height: 590px !important;
    min-height: 590px !important;
    max-height: 590px !important;
  }
  .review-slide {
    grid-template-rows: 220px minmax(0, 1fr);
    padding: 25px 22px 32px;
  }
  .review-slide .review-photo-frame {
    width: 88% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  .review-slide .review-content {
    padding-inline: 20px !important;
  }
  .review-slide .review-text {
    max-height: 115px;
    font-size: 1.08rem !important;
    -webkit-line-clamp: 5;
  }
  .review-arrow-left {
    left: 10px !important;
  }
  .review-arrow-right {
    right: 10px !important;
  }
}
.review-stage {
  width: min(1298px, calc(100% - 40px)) !important;
  height: 462px !important;
  min-height: 462px !important;
  max-height: 462px !important;
  margin-inline: auto !important;
}
.review-box {
  width: 100% !important;
  height: 462px !important;
  min-height: 462px !important;
  max-height: 462px !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.review-viewport {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}
.review-slide {
  width: 100% !important;
  height: 100% !important;
  grid-template-columns:
    42% minmax(0, 1fr) !important;
  gap: 44px !important;
  padding:
    42px
    105px !important;
  box-sizing: border-box !important;
}
.review-slide .review-photo-frame {
  width: 100% !important;
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
}
.review-arrow {
  z-index: 30 !important;
  width: 56px !important;
  height: 56px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.review-arrow-left {
  left: 27px !important;
}
.review-arrow-right {
  right: 27px !important;
}
@media (max-width: 900px) {
  .review-stage,
  .review-box {
    height: 680px !important;
    min-height: 680px !important;
    max-height: 680px !important;
  }
  .review-slide {
    grid-template-columns: 1fr !important;
    grid-template-rows:
      280px minmax(0, 1fr) !important;
    gap: 24px !important;
    padding:
      36px
      72px !important;
  }
  .review-arrow {
    width: 50px !important;
    height: 50px !important;
  }
  .review-arrow-left {
    left: 14px !important;
  }
  .review-arrow-right {
    right: 14px !important;
  }
}
@media (max-width: 640px) {
  .review-stage {
    width: calc(100% - 24px) !important;
  }
  .review-stage,
  .review-box {
    height: 620px !important;
    min-height: 620px !important;
    max-height: 620px !important;
  }
  .review-slide {
    grid-template-rows:
      220px minmax(0, 1fr) !important;
    gap: 20px !important;
    padding:
      28px
      54px
      34px !important;
  }
  .review-arrow {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.15rem !important;
  }
  .review-arrow-left {
    left: 7px !important;
  }
  .review-arrow-right {
    right: 7px !important;
  }
}
.review-arrow {
  width: 42px !important;
  height: 42px !important;
  font-size: 1.15rem !important;
  line-height: 1 !important;
}
@media (max-width: 900px) {
  .review-arrow {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }
}
@media (max-width: 640px) {
  .review-arrow {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.9rem !important;
  }
}
@media (min-width: 901px) {
  :root {
    --header-h: 83px !important;
  }
  .site-header {
    height: 83px !important;
    min-height: 83px !important;
    max-height: 83px !important;
  }
  .header-inner {
    height: 83px !important;
    min-height: 83px !important;
    max-height: 83px !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .brand-logo,
  .desktop-nav,
  .header-actions,
  .header-phone {
    align-self: center !important;
  }
  .desktop-nav {
    height: 100% !important;
    align-items: center !important;
  }
  .desktop-nav a {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }
  .desktop-nav a::after {
    bottom: 0 !important;
  }
  .header-actions {
    height: 100% !important;
    align-items: center !important;
  }
  .header-separator {
    height: 42px !important;
  }
  .header-order {
    width: 102px !important;
    min-width: 102px !important;
    max-width: 102px !important;
    height: 37px !important;
    min-height: 37px !important;
    max-height: 37px !important;
    padding: 0 9px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }
  .header-order span {
    display: block !important;
    line-height: 1 !important;
  }
  .nav-toggle {
    width: 35px !important;
    min-width: 35px !important;
    max-width: 35px !important;
    height: 35px !important;
    min-height: 35px !important;
    max-height: 35px !important;
    padding: 0 !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }
  .nav-toggle span {
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    flex: 0 0 2px !important;
  }
  .nav-toggle span:nth-child(2) {
    width: 26px !important;
  }
}
@media (min-width: 901px) {
  .header-order {
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
    height: 41px !important;
    min-height: 41px !important;
    max-height: 41px !important;
    padding: 0 10px !important;
  }
  .brand-logo {
    transform: scale(0.9) !important;
    transform-origin: left center !important;
  }
}
@media (min-width: 901px) {
  .brand-logo {
    transform: scale(0.855) !important;
    transform-origin: left center !important;
  }
  .header-order {
    width: 123px !important;
    min-width: 123px !important;
    max-width: 123px !important;
    height: 45px !important;
    min-height: 45px !important;
    max-height: 45px !important;
    padding: 0 11px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    align-self: center !important;
  }
  .header-actions {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
  }
  .header-phone,
  .header-order,
  .nav-toggle {
    align-self: center !important;
  }
  .header-order {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }
  .nav-toggle {
    margin: 0 !important;
  }
}
@media (min-width: 901px) {
  .header-phone {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
    align-self: auto !important;
  }
  .header-actions {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
  }
  .header-order {
    width: 123px !important;
    min-width: 123px !important;
    max-width: 123px !important;
    height: 45px !important;
    min-height: 45px !important;
    max-height: 45px !important;
    margin: 0 !important;
    padding: 0 11px !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    transform: none !important;
  }
  .nav-toggle {
    margin: 0 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    align-self: center !important;
    transform: none !important;
  }
  .brand-logo {
    transform: scale(0.855) !important;
    transform-origin: left center !important;
  }
}
:root {
  --order-button-x: -12px;
  --order-button-y: 0px;
}
@media (min-width: 901px) {
  .header-order {
    position: relative !important;
    translate:
      var(--order-button-x)
      var(--order-button-y) !important;
  }
}
.header-phone-label {
  pointer-events: none !important;
  cursor: default !important;
}
.header-phone-number {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 901px) {
  .desktop-nav {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }
  .desktop-nav a {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 5px 0 7px !important;
    overflow: visible !important;
  }
  .desktop-nav a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    bottom: 1px !important;
    width: 100% !important;
    height: 2px !important;
    background: var(--brand-2, #cb6957) !important;
    transform: scaleX(0) !important;
    transform-origin: right center !important;
    transition:
      transform 0.35s
      cubic-bezier(0.22, 0.75, 0.25, 1) !important;
    pointer-events: none !important;
  }
  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after,
  .desktop-nav a.active::after {
    transform: scaleX(1) !important;
    transform-origin: left center !important;
  }
}
.header-phone-number {
  font-weight: 700 !important;
}
.site-header, .site-header.scrolled{
  background:
    linear-gradient(
      rgba(9, 9, 9, 0.72),
      rgba(9, 9, 9, 0.72)
    ),
    url("header-background.webp")
    center center / cover no-repeat !important;
  background-color: #111111 !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28) !important;
}
.site-header .header-inner {
  position: relative !important;
  z-index: 2 !important;
}
body:not(.scrolled) .site-header {
  background:
    linear-gradient(
      rgba(9, 9, 9, 0.30),
      rgba(9, 9, 9, 0.30)
    ),
    url("header-background.webp")
    center center / cover no-repeat !important;
}
.chaza-how-order {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 100px 40px 110px;
  background: transparent !important;
  overflow: hidden;
  box-sizing: border-box;
}
.chaza-how-order::before,
.chaza-how-order::after {
  content: none !important;
  display: none !important;
}
.chaza-how-order-heading {
  width: min(1400px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}
.chaza-how-order-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.chaza-how-order-kicker span {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--brand-2, #cb6957);
}
.chaza-how-order-kicker em {
  color: var(--brand-2, #cb6957);
  font-family: "Great Vibes", cursive;
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  font-style: normal;
  line-height: 1;
}
.chaza-how-order-heading h2 {
  margin: 0;
  color: #111111;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 5.5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.chaza-order-steps {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.chaza-order-step {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 17, 17, 0.99),
      rgba(31, 31, 31, 0.98)
    );
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  box-sizing: border-box;
  transform: none;
}
.chaza-order-step::before,
.chaza-order-step::after {
  content: none !important;
  display: none !important;
}
.chaza-order-step:hover {
  transform: none !important;
  border-color:
    rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2) !important;
}
.chaza-order-number {
  justify-self: start;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.6rem, 4.5vw, 5.2rem);
  line-height: 0.8;
}
.chaza-order-step:hover .chaza-order-number {
  color: rgba(255, 255, 255, 0.13) !important;
}
.chaza-order-icon {
  width: 100%;
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-2, #cb6957);
}
.chaza-order-icon svg {
  width: 92px;
  height: 92px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chaza-order-step-content {
  width: 100%;
  text-align: center;
}
.chaza-order-step-content h3 {
  max-width: none;
  margin: 0 0 13px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 1.8vw, 2.05rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}
.chaza-order-step-content p {
  max-width: 260px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}
.chaza-how-order.is-reveal-ready
.chaza-order-step {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.8s ease var(--reveal-delay),
    transform 0.9s
      cubic-bezier(0.22, 0.75, 0.25, 1)
      var(--reveal-delay);
}
.chaza-how-order.is-reveal-ready.is-visible
.chaza-order-step {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1050px) {
  .chaza-how-order {
    padding: 85px 28px 95px;
  }
  .chaza-order-steps {
    width: min(760px, 100%);
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .chaza-order-icon svg {
    width: 86px;
    height: 86px;
  }
}
@media (max-width: 600px) {
  .chaza-how-order {
    padding: 70px 15px 80px;
  }
  .chaza-how-order-heading {
    margin-bottom: 38px;
  }
  .chaza-how-order-kicker {
    gap: 11px;
  }
  .chaza-how-order-kicker span {
    width: 38px;
  }
  .chaza-how-order-kicker em {
    font-size: 1.9rem;
  }
  .chaza-how-order-heading h2 {
    font-size: 3.7rem;
  }
  .chaza-order-steps {
    width: min(390px, 100%);
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .chaza-order-step {
    aspect-ratio: auto;
    min-height: 330px;
    padding: 25px;
    border-radius: 17px;
  }
  .chaza-order-number {
    font-size: 4rem;
  }
  .chaza-order-icon {
    min-height: 120px;
  }
  .chaza-order-icon svg {
    width: 82px;
    height: 82px;
  }
  .chaza-order-step-content h3 {
    font-size: 1.9rem;
  }
  .chaza-order-step-content p {
    font-size: 0.88rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chaza-how-order.is-reveal-ready
  .chaza-order-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.chaza-order-icon,
.chaza-order-step-content {
  transform: translateY(-22px);
}
.chaza-order-number {
  transform: none !important;
}
.chaza-order-icon svg {
  width: 88px;
  height: 88px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chaza-order-step:hover,
.chaza-order-step:hover .chaza-order-icon,
.chaza-order-step:hover .chaza-order-step-content {
  transform: none !important;
}
.chaza-order-step:hover .chaza-order-icon,
.chaza-order-step:hover .chaza-order-step-content {
  transform: translateY(-22px) !important;
}
@media (max-width: 1050px) {
  .chaza-order-icon,
  .chaza-order-step-content,
  .chaza-order-step:hover .chaza-order-icon,
  .chaza-order-step:hover .chaza-order-step-content {
    transform: translateY(-17px) !important;
  }
}
@media (max-width: 600px) {
  .chaza-order-icon,
  .chaza-order-step-content,
  .chaza-order-step:hover .chaza-order-icon,
  .chaza-order-step:hover .chaza-order-step-content {
    transform: translateY(-12px) !important;
  }
}
.chaza-order-icon svg {
  width: 88px !important;
  height: 88px !important;
  display: block !important;
  overflow: visible !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke;
}
.chaza-order-icon {
  color: #d87463; 
}
.chaza-order-icon svg {
  width: 78px;
  height: 78px;
  display: block;
}
.chaza-order-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chaza-contact-order-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.chaza-contact-order-icon svg {
  width: 92px !important;
  height: 92px !important;
  display: block !important;
  overflow: visible !important;
}
.chaza-contact-order-icon .contact-bubble {
  fill: none !important;
  stroke: var(--brand-2, #d87463) !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.chaza-contact-order-icon .contact-handset {
  fill: var(--brand-2, #d87463) !important;
  stroke: none !important;
}
.chaza-contact-order-icon .contact-signal {
  fill: none !important;
  stroke: var(--brand-2, #d87463) !important;
  stroke-width: 2.4 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.chaza-contact-order-icon svg path {
  vector-effect: non-scaling-stroke;
}
:root {
  --call-symbol-x: -3px;
  --call-symbol-y: -4px;
  --call-symbol-scale: 0.72;
}
.chaza-contact-order-icon .contact-call-symbol {
  transform-box: fill-box !important;
  transform-origin: center center !important;
  transform:
    translate(
      var(--call-symbol-x),
      var(--call-symbol-y)
    )
    scale(var(--call-symbol-scale)) !important;
}
.experience-card {
  position: relative !important;
}
.experience-video-copy {
  position: absolute !important;
  z-index: 10 !important;
  top: 50% !important;
  left: 50% !important;
  width: 180px !important;
  height: 180px !important;
  display: block !important;
  transform: translate(-50%, -50%) !important;
  animation: none !important;
  overflow: visible !important;
  pointer-events: none !important;
}
.experience-orbit-text {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  transform-origin: 50% 50% !important;
  animation:
    experienceOrbitRotation
    12s
    linear
    infinite !important;
}
.experience-orbit-text svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
}
.experience-orbit-text text {
  fill: #ffffff !important;
  font-family: "Roboto", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}
@keyframes experienceOrbitRotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.experience-orbit-core {
  position: absolute !important;
  z-index: 4 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: none !important;
  animation: none !important;
}
.experience-orbit-circle {
  position: relative !important;
  width: 76px !important;
  height: 76px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.18) !important;
  box-sizing: border-box !important;
  transform: none !important;
  animation: none !important;
}
.experience-play-icon {
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  margin-left: 5px !important;
  border-top: 12px solid transparent !important;
  border-bottom: 12px solid transparent !important;
  border-left: 19px solid #ffffff !important;
  transform: none !important;
  animation: none !important;
}
@media (max-width: 650px) {
  .experience-video-copy {
    width: 145px !important;
    height: 145px !important;
  }
  .experience-orbit-circle {
    width: 62px !important;
    height: 62px !important;
  }
  .experience-play-icon {
    border-top-width: 10px !important;
    border-bottom-width: 10px !important;
    border-left-width: 16px !important;
  }
  .experience-orbit-text text {
    font-size: 10px !important;
  }
}
.experience-orbit-circle {
  width: 116px !important;
  height: 116px !important;
}
.experience-play-icon {
  margin-left: 6px !important;
  border-top-width: 14px !important;
  border-bottom-width: 14px !important;
  border-left-width: 22px !important;
}
@media (max-width: 650px) {
  .experience-orbit-circle {
    width: 92px !important;
    height: 92px !important;
  }
  .experience-play-icon {
    border-top-width: 11px !important;
    border-bottom-width: 11px !important;
    border-left-width: 18px !important;
  }
}
.chaza-footer {
  position: relative;
  padding:
    72px
    40px
    28px;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(14, 13, 13, 0.92),
      rgba(14, 13, 13, 0.96)
    );
  color: #ffffff;
}
.chaza-footer-main {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(280px, 1.35fr)
    minmax(135px, 0.62fr)
    minmax(135px, 0.62fr)
    minmax(230px, 0.9fr)
    minmax(220px, 0.8fr);
  align-items: start;
  gap: 55px;
}
.chaza-footer-brand {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.chaza-footer-logo {
  color: #ffffff;
  font-family: "Great Vibes", cursive;
  font-size: clamp(5rem, 6vw, 7.2rem);
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}
.chaza-footer-tagline {
  width: 100%;
  margin: 24px auto 0;
  color: var(--brand-2, #d87463);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.chaza-footer-column h3 {
  margin: 0 0 25px;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}
.chaza-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.chaza-footer-links a,
.chaza-footer-phone {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.25s ease;
}
.chaza-footer-links a:hover,
.chaza-footer-phone:hover {
  color: var(--brand-2, #d87463);
}
.chaza-footer-phone {
  display: inline-block;
  margin-bottom: 26px;
}
.chaza-payment-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.chaza-payment-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.chaza-payment-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-sizing: border-box;
}
.chaza-payment-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.chaza-payment-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--brand-2, #d87463);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chaza-payment-item span {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.chaza-footer-bottom {
  width: min(1480px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 66px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.chaza-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: "Roboto", sans-serif;
  font-size: 0.88rem;
}
@media (max-width: 1150px) {
  .chaza-footer-main {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 50px 70px;
  }
  .chaza-footer-brand {
    align-items: flex-start;
    text-align: left;
  }
  .chaza-footer-tagline {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .chaza-footer {
    padding:
      58px
      22px
      24px;
  }
  .chaza-footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .chaza-footer-brand {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .chaza-footer-logo {
    font-size: 5.5rem;
  }
  .chaza-footer-tagline {
    max-width: 330px;
    text-align: center;
  }
  .chaza-footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .chaza-footer-links {
    align-items: center;
  }
  .chaza-payment-list {
    width: min(220px, 100%);
  }
  .chaza-footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
    text-align: center;
  }
}
.chaza-footer {
  padding:
    68px
    0
    28px !important;
}
.chaza-footer-main {
  width: calc(100% - 80px) !important;
  max-width: 1480px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns:
    300px
    145px
    145px
    240px
    255px !important;
  align-items: start !important;
  justify-content: space-between !important;
  gap: 0 !important;
}
.chaza-footer-brand {
  width: 300px !important;
  max-width: 300px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}
.chaza-footer-logo {
  width: 100% !important;
  text-align: center !important;
}
.chaza-footer-tagline {
  width: 100% !important;
  max-width: 300px !important;
  margin:
    22px
    auto
    0 !important;
  text-align: center !important;
}
.chaza-footer-follow {
  width: 240px !important;
}
.chaza-footer-payment {
  width: 255px !important;
  justify-self: end !important;
}
.chaza-payment-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}
.chaza-payment-item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}
.chaza-payment-icon.chaza-payment-juice {
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}
.chaza-payment-icon.chaza-payment-juice img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
.chaza-footer-bottom {
  width: calc(100% - 80px) !important;
  max-width: 1480px !important;
  margin:
    65px
    auto
    0 !important;
  padding-top: 26px !important;
}
.chaza-footer-credit {
  color: rgba(255, 255, 255, 0.43) !important;
  font-family: "Roboto", sans-serif !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}
@media (max-width: 1150px) {
  .chaza-footer-main {
    width: calc(100% - 56px) !important;
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
    justify-content: initial !important;
    gap:
      50px
      70px !important;
  }
  .chaza-footer-brand,
  .chaza-footer-follow,
  .chaza-footer-payment {
    width: 100% !important;
    max-width: 320px !important;
    justify-self: start !important;
  }
  .chaza-footer-bottom {
    width: calc(100% - 56px) !important;
  }
}
@media (max-width: 650px) {
  .chaza-footer {
    padding:
      55px
      22px
      24px !important;
  }
  .chaza-footer-main {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }
  .chaza-footer-brand,
  .chaza-footer-follow,
  .chaza-footer-payment {
    width: 100% !important;
    max-width: 100% !important;
    justify-self: center !important;
  }
  .chaza-footer-brand {
    align-items: center !important;
  }
  .chaza-footer-bottom {
    width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }
}
@media (min-width: 1151px) {
  .chaza-footer-main {
    width: 1480px !important;
    max-width: calc(100% - 120px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    grid-template-columns:
      300px
      145px
      145px
      240px
      255px !important;
    column-gap: 98px !important;
    row-gap: 0 !important;
    align-items: start !important;
    justify-content: start !important;
    box-sizing: border-box !important;
  }
  .chaza-footer-brand,
  .chaza-footer-column,
  .chaza-footer-follow,
  .chaza-footer-payment {
    min-width: 0 !important;
    justify-self: start !important;
  }
  .chaza-footer-brand {
    width: 300px !important;
    max-width: 300px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .chaza-footer-logo {
    width: 100% !important;
    text-align: center !important;
  }
  .chaza-footer-tagline {
    width: 100% !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .chaza-footer-follow {
    width: 240px !important;
    max-width: 240px !important;
  }
  .chaza-footer-payment {
    width: 255px !important;
    max-width: 255px !important;
    justify-self: start !important;
  }
  .chaza-payment-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .chaza-payment-item {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .chaza-payment-icon.chaza-payment-juice {
    padding: 0 !important;
    overflow: hidden !important;
  }
  .chaza-payment-icon.chaza-payment-juice img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .chaza-footer-bottom {
    width: 1480px !important;
    max-width: calc(100% - 120px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 1151px) {
  :root {
    --footer-content-width: 1320px;
  }
  .chaza-footer-main {
    width: min(
      var(--footer-content-width),
      calc(100% - 120px)
    ) !important;
    max-width: none !important;
    margin-inline: auto !important;
    grid-template-columns:
      280px
      125px
      125px
      220px
      235px !important;
    column-gap: 82px !important;
    justify-content: center !important;
  }
  .chaza-footer-brand {
    width: 280px !important;
    max-width: 280px !important;
  }
  .chaza-footer-logo,
  .chaza-footer-tagline {
    width: 100% !important;
    text-align: center !important;
  }
  .chaza-footer-follow {
    width: 220px !important;
    max-width: 220px !important;
  }
  .chaza-footer-payment {
    width: 235px !important;
    max-width: 235px !important;
  }
  .chaza-footer-bottom {
    width: min(
      var(--footer-content-width),
      calc(100% - 120px)
    ) !important;
    max-width: none !important;
    margin-inline: auto !important;
  }
}
@media (min-width: 1181px) {
  .desktop-nav {
    gap: clamp(34px, 2.4vw, 52px) !important;
  }
}
.hero-rail-left .hero-rail-content {
  gap: 27px !important;
}
.chaza-footer-facebook {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}
.chaza-footer-facebook-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  pointer-events: none;
}
.chaza-footer-facebook-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}
.chaza-footer-facebook-handle {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}
.chaza-footer-facebook-handle:hover,
.chaza-footer-facebook-handle:focus-visible {
  color: var(--brand-2, #d87463);
}
.chaza-footer-credit {
  cursor: default;
}
.chaza-footer-phone {
  margin-bottom: 14px !important;
}
@media (max-width: 640px) {
  .reviews-section {
    padding:
      72px
      10px
      68px !important;
  }
  .reviews-heading {
    margin-bottom: 30px !important;
  }
  .reviews-kicker {
    margin-bottom: 7px !important;
    font-size: 1.7rem !important;
  }
  .reviews-kicker::before,
  .reviews-kicker::after {
    width: 30px !important;
    margin:
      0
      9px !important;
  }
  .reviews-title {
    font-size:
      clamp(
        2.5rem,
        11vw,
        3.15rem
      ) !important;
    line-height: 0.94 !important;
  }
  .review-stage {
    width:
      calc(100% - 18px) !important;
    max-width: 430px !important;
    height: 530px !important;
    min-height: 530px !important;
    max-height: 530px !important;
    margin-inline: auto !important;
  }
  .review-box {
    width: 100% !important;
    height: 530px !important;
    min-height: 530px !important;
    max-height: 530px !important;
    border-radius: 19px !important;
    overflow: hidden !important;
  }
  .review-slide {
    grid-template-columns:
      1fr !important;
    grid-template-rows:
      185px
      minmax(0, 1fr) !important;
    gap: 17px !important;
    padding:
      24px
      clamp(34px, 10vw, 44px)
      27px !important;
  }
  .review-slide .review-photo-frame {
    width:
      min(
        100%,
        290px
      ) !important;
    height: 185px !important;
    min-height: 185px !important;
    max-height: 185px !important;
    margin-inline: auto !important;
    border-width: 4px !important;
    border-radius: 16px !important;
    transform:
      rotate(-1.4deg) !important;
  }
  .review-slide .review-photo-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .review-slide .review-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding:
      3px
      0
      0 !important;
    text-align: center !important;
  }
  .review-stars {
    margin-bottom: 10px !important;
    font-size: 1.05rem !important;
    letter-spacing: 2px !important;
  }
  .review-slide .review-text {
    width: 100% !important;
    max-width: 300px !important;
    max-height: none !important;
    margin: 0 auto !important;
    font-size: 0.95rem !important;
    line-height: 1.42 !important;
    -webkit-line-clamp: 6 !important;
  }
  .review-slide .review-author {
    margin-top: 15px !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
  }
  .review-slide .review-source {
    margin-top: 4px !important;
    font-size: 0.72rem !important;
  }
  .review-arrow {
    width: 31px !important;
    height: 31px !important;
    top: 117px !important;
    font-size: 0.8rem !important;
    transform:
      translateY(-50%) !important;
  }
  .review-arrow-left {
    left: 8px !important;
  }
  .review-arrow-right {
    right: 8px !important;
  }
}
@media (max-width: 640px) {
  .chaza-who-section {
    padding:
      60px
      0
      58px !important;
  }
  .chaza-who-copy {
    width:
      calc(100% - 22px) !important;
    min-height: 0 !important;
    height: auto !important;
    padding:
      5px
      8px
      48px !important;
    margin-inline: auto !important;
  }
  .chaza-who-logo {
    margin-bottom: 8px !important;
    font-size: 3.9rem !important;
    line-height: 0.88 !important;
  }
  .chaza-who-label {
    gap: 10px !important;
    margin-bottom: 19px !important;
  }
  .chaza-who-label span {
    width: 34px !important;
  }
  .chaza-who-label em {
    font-size: 1.65rem !important;
  }
  .chaza-who-statement {
    width: 100% !important;
    max-width: 350px !important;
    margin-inline: auto !important;
    font-size:
      clamp(
        1.55rem,
        8vw,
        2.25rem
      ) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.004em !important;
    text-align: center !important;
  }
  .chaza-who-statement > span {
    display: block !important;
    width: 100% !important;
    margin-bottom: 3px !important;
  }
  .chaza-who-statement > span:last-child {
    margin-bottom: 0 !important;
  }
  .chaza-who-emoji {
    margin:
      0
      0.04em !important;
    font-size: 0.56em !important;
    vertical-align: 0.04em !important;
  }
}
@media (max-width: 360px) {
  .reviews-section {
    padding-inline: 7px !important;
  }
  .review-stage {
    width:
      calc(100% - 8px) !important;
    height: 510px !important;
    min-height: 510px !important;
    max-height: 510px !important;
  }
  .review-box {
    height: 510px !important;
    min-height: 510px !important;
    max-height: 510px !important;
  }
  .review-slide {
    grid-template-rows:
      170px
      minmax(0, 1fr) !important;
    gap: 14px !important;
    padding:
      22px
      32px
      24px !important;
  }
  .review-slide .review-photo-frame {
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
    border-width: 3px !important;
  }
  .review-slide .review-text {
    font-size: 0.86rem !important;
    line-height: 1.4 !important;
  }
  .review-slide .review-author {
    margin-top: 12px !important;
    font-size: 1.12rem !important;
  }
  .review-arrow {
    width: 29px !important;
    height: 29px !important;
    top: 107px !important;
  }
  .review-arrow-left {
    left: 5px !important;
  }
  .review-arrow-right {
    right: 5px !important;
  }
  .chaza-who-logo {
    font-size: 3.45rem !important;
  }
  .chaza-who-label em {
    font-size: 1.5rem !important;
  }
  .chaza-who-statement {
    max-width: 300px !important;
    font-size:
      clamp(
        1.45rem,
        8vw,
        1.8rem
      ) !important;
    line-height: 1.03 !important;
  }
  .chaza-menu-card {
    grid-template-columns:
      84px
      minmax(0, 1fr) !important;
    gap: 11px !important;
    padding: 11px !important;
  }
  .chaza-menu-card-image {
    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
  }
  .chaza-menu-card-title {
    font-size: 1.05rem !important;
  }
  .chaza-how-order-heading h2 {
    font-size:
      clamp(
        2.7rem,
        14vw,
        3.4rem
      ) !important;
  }
}
@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  img,
  svg {
    max-width: 100%;
  }
  .chaza-who-section,
  .reviews-section,
  .chaza-how-order,
  .menu-section,
  .experience {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .reviews-section {
    padding:
      68px
      8px
      66px !important;
  }
  .reviews-heading {
    margin-bottom: 28px !important;
  }
  .review-stage {
    position: relative !important;
    width: calc(100% - 18px) !important;
    max-width: 430px !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    margin-inline: auto !important;
  }
  .review-box {
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    padding: 0 !important;
    border-radius: 19px !important;
    overflow: hidden !important;
  }
  .review-viewport {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }
  .review-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    grid-template-columns:
      1fr !important;
    grid-template-rows:
      170px
      minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 15px !important;
    padding:
      23px
      27px
      62px !important;
    box-sizing: border-box !important;
  }
  .review-slide .review-photo-frame {
    width: min(100%, 300px) !important;
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
    margin:
      0
      auto !important;
    border-width: 4px !important;
    border-radius: 15px !important;
    transform:
      rotate(-1.4deg) !important;
    overflow: hidden !important;
  }
  .review-slide .review-photo-frame img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
  }
  .review-slide .review-content {
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    grid-template-rows:
      22px
      105px
      24px
      16px !important;
    row-gap: 5px !important;
    align-content: start !important;
    justify-items: center !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .review-quote-top,
  .review-quote-bottom {
    display: none !important;
  }
  .review-slide .review-stars {
    width: 100% !important;
    margin: 0 !important;
    align-self: center !important;
    font-size: 0.98rem !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
    text-align: center !important;
  }
  .review-slide .review-text {
    width: 100% !important;
    max-width: 310px !important;
    height: 105px !important;
    min-height: 105px !important;
    max-height: 105px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    color: #ffffff !important;
    font-size:
      clamp(
        0.78rem,
        3.4vw,
        0.88rem
      ) !important;
    line-height: 1.38 !important;
    text-align: center !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
  }
  .review-slide .review-author {
    width: 100% !important;
    margin: 0 !important;
    align-self: end !important;
    font-size: 1.18rem !important;
    line-height: 1 !important;
    text-align: center !important;
  }
  .review-slide .review-source {
    width: 100% !important;
    margin: 0 !important;
    align-self: start !important;
    font-size: 0.67rem !important;
    line-height: 1 !important;
    text-align: center !important;
  }
  .review-arrow {
    position: absolute !important;
    top: auto !important;
    bottom: 15px !important;
    right: auto !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border:
      1px solid
      rgba(255,255,255,0.72) !important;
    background:
      rgba(255,255,255,0.04) !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    transform: none !important;
    z-index: 50 !important;
  }
  .review-arrow-left {
    left:
      calc(50% - 35px) !important;
    right: auto !important;
  }
  .review-arrow-right {
    left:
      calc(50% + 5px) !important;
    right: auto !important;
  }
  .review-arrow:hover {
    background: #ffffff !important;
    color: #111111 !important;
  }
  .chaza-who-section {
    padding:
      58px
      0
      55px !important;
  }
  .chaza-who-copy {
    width:
      calc(100% - 12px) !important;
    min-height: 0 !important;
    height: auto !important;
    padding:
      5px
      5px
      45px !important;
    margin-inline: auto !important;
  }
  .chaza-who-logo {
    margin-bottom: 7px !important;
    font-size: 3.9rem !important;
  }
  .chaza-who-label {
    margin-bottom: 18px !important;
  }
  .chaza-who-statement {
    width: calc(100% - 8px) !important;
    max-width: 390px !important;
    margin-inline: auto !important;
    font-size:
      clamp(
        1.5rem,
        7.3vw,
        2.05rem
      ) !important;
    line-height: 1.02 !important;
    letter-spacing:
      0 !important;
    text-align: center !important;
    text-wrap: balance !important;
  }
  .chaza-who-statement > span {
    display: inline !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .chaza-who-statement > span::after {
    content: " ";
  }
  .chaza-who-statement > span:last-child::after {
    content: "";
  }
  .chaza-who-emoji {
    display: inline-block !important;
    margin:
      0
      0.06em !important;
    font-size: 0.57em !important;
    vertical-align: 0.04em !important;
  }
}
@media (max-width: 360px) {
  .review-stage,
  .review-box {
    height: 485px !important;
    min-height: 485px !important;
    max-height: 485px !important;
  }
  .review-slide {
    grid-template-rows:
      155px
      minmax(0, 1fr) !important;
    gap: 12px !important;
    padding:
      20px
      22px
      59px !important;
  }
  .review-slide .review-photo-frame {
    width: min(100%, 270px) !important;
    height: 155px !important;
    min-height: 155px !important;
    max-height: 155px !important;
  }
  .review-slide .review-content {
    grid-template-rows:
      20px
      104px
      22px
      14px !important;
    row-gap: 4px !important;
  }
  .review-slide .review-text {
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    font-size: 0.76rem !important;
  }
  .review-slide .review-author {
    font-size: 1.08rem !important;
  }
  .review-arrow {
    bottom: 14px !important;
    width: 29px !important;
    height: 29px !important;
  }
  .review-arrow-left {
    left:
      calc(50% - 34px) !important;
  }
  .review-arrow-right {
    left:
      calc(50% + 5px) !important;
  }
  .chaza-who-statement {
    width: 100% !important;
    max-width: 330px !important;
    font-size:
      clamp(
        1.42rem,
        7.2vw,
        1.72rem
      ) !important;
    line-height: 1.025 !important;
  }
}
@media (max-width: 640px) {
  .review-stage,
  .review-box {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
  }
  .review-slide {
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows:
      175px
      1fr
      43px !important;
    gap: 0 !important;
    padding:
      20px
      24px
      12px !important;
    align-items: start !important;
    box-sizing: border-box !important;
  }
  .review-slide .review-photo-frame {
    grid-row: 1 !important;
    width: min(100%, 295px) !important;
    height: 165px !important;
    min-height: 165px !important;
    max-height: 165px !important;
    margin:
      0
      auto !important;
    align-self: start !important;
    border-width: 4px !important;
    border-radius: 15px !important;
    transform:
      rotate(-1.2deg) !important;
  }
  .review-slide .review-content {
    grid-row: 2 !important;
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    grid-template-rows:
      22px
      88px
      22px
      15px !important;
    row-gap: 5px !important;
    align-content: center !important;
    justify-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .review-slide .review-stars {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
    font-size: 0.92rem !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
    text-align: center !important;
  }
  .review-slide .review-text {
    width: 100% !important;
    max-width: 300px !important;
    height: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
    margin: 0 auto !important;
    padding: 0 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    font-size:
      clamp(
        0.76rem,
        3.25vw,
        0.86rem
      ) !important;
    line-height: 1.38 !important;
    text-align: center !important;
    -webkit-line-clamp: unset !important;
  }
  .review-slide .review-author {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: end !important;
    font-size: 1.08rem !important;
    line-height: 1 !important;
    text-align: center !important;
  }
  .review-slide .review-source {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
    font-size: 0.63rem !important;
    line-height: 1 !important;
    text-align: center !important;
    opacity: 0.72 !important;
  }
  .review-quote-top,
  .review-quote-bottom {
    display: none !important;
  }
  .review-arrow {
    position: absolute !important;
    top: auto !important;
    bottom: 15px !important;
    width: 29px !important;
    height: 29px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border:
      1px solid
      rgba(255,255,255,.65) !important;
    border-radius: 50% !important;
    background:
      rgba(255,255,255,.03) !important;
    color: #ffffff !important;
    font-size: .72rem !important;
    line-height: 1 !important;
    transform: none !important;
    z-index: 50 !important;
  }
  .review-arrow-left {
    left:
      calc(50% - 34px) !important;
    right: auto !important;
  }
  .review-arrow-right {
    left:
      calc(50% + 5px) !important;
    right: auto !important;
  }
}
@media (max-width: 640px) {
  .review-slide {
    text-align: center !important;
    align-items: center !important;
    justify-items: center !important;
  }
  .review-slide .review-photo-frame {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .review-slide .review-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .review-slide .review-stars {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 10px 0 8px !important;
  }
  .review-slide .review-text {
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto 10px !important;
    text-align: center !important;
    line-height: 1.45 !important;
  }
  .review-slide .review-author {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto 4px !important;
  }
  .review-slide .review-source {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .review-slide .review-quote-top,
  .review-slide .review-quote-bottom {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (min-width: 641px) {
  .review-quote-top,
  .review-quote-bottom {
    display: block !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(
      3rem,
      3.6vw,
      4.4rem
    ) !important;
    font-weight: 700 !important;
    line-height: 0.8 !important;
  }
}
@media (max-width: 640px) {
  .review-quote-top,
  .review-quote-bottom {
    display: block !important;
    font-size: 1rem !important;
    line-height: 1 !important;
  }
}
.review-content{
  position: relative;
}
@media (min-width: 641px) {
  .review-quote-top,
  .review-quote-bottom {
    position: absolute !important;
    display: block !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-weight: 700 !important;
    line-height: 0.8 !important;
    color: #fff !important;
    z-index: 2;
    pointer-events: none;
  }
  .review-quote-top {
    top: 8px !important;
    left: 0 !important;
    font-size: clamp(3rem, 3.4vw, 4.2rem) !important;
  }
  .review-quote-bottom {
    right: 10px !important;
    bottom: 18px !important;
    left: auto !important;
    top: auto !important;
    font-size: clamp(3rem, 3.4vw, 4.2rem) !important;
  }
  .review-content{
    padding-top: 52px !important;
    padding-bottom: 56px !important;
  }
  .review-author{
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 640px) {
  .review-quote-top,
  .review-quote-bottom {
    position: static !important;
    display: block !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #fff !important;
    font-size: 1.35rem !important;
    z-index: 2;
    pointer-events: none;
  }
  .review-quote-top {
    margin: 0 0 8px 0 !important;
    text-align: center !important;
  }
  .review-quote-bottom {
    margin: 8px 0 10px 0 !important;
    text-align: center !important;
  }
  .review-content{
    text-align: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .review-stars {
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }
  .review-text, .review-content p{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .review-author, .review-source{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 640px) {
  .review-quote-top,
  .review-quote-bottom {
    display: none !important;
  }
  .review-slide .review-text {
    position: relative !important;
    box-sizing: border-box !important;
    padding:
      11px
      16px
      13px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .review-slide .review-text::before {
    content: "“";
    position: absolute;
    top: -2px;
    left: 2px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
  }
  .review-slide .review-text::after {
    content: "”";
    position: absolute;
    right: 2px;
    bottom: -3px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
  }
}


/* =========================================================
   STATIC PRESENTATION VARIABLES
   Moved from inline style attributes for stricter CSP.
========================================================= */
.hero-main > .hero-slide:nth-of-type(1) {
  --slide-image: url("hero-burger-2.webp");
}

.hero-main > .hero-slide:nth-of-type(2) {
  --slide-image: url("hero-burger-1.webp");
}

.hero-main > .hero-slide:nth-of-type(3) {
  --slide-image: url("menu-coming-soon.webp");
}

.experience-overlay-info .experience-info-item:nth-child(1) {
  --reveal-delay: .08s;
}

.experience-overlay-info .experience-info-item:nth-child(2) {
  --reveal-delay: .18s;
}

.experience-stats .experience-stat:nth-child(1) { --reveal-delay: .08s; }
.experience-stats .experience-stat:nth-child(2) { --reveal-delay: .16s; }
.experience-stats .experience-stat:nth-child(3) { --reveal-delay: .24s; }
.experience-stats .experience-stat:nth-child(4) { --reveal-delay: .32s; }

.chaza-order-steps > .chaza-order-step:nth-child(1) { --reveal-delay: 0ms; }
.chaza-order-steps > .chaza-order-step:nth-child(2) { --reveal-delay: 120ms; }
.chaza-order-steps > .chaza-order-step:nth-child(3) { --reveal-delay: 240ms; }
.chaza-order-steps > .chaza-order-step:nth-child(4) { --reveal-delay: 360ms; }
