.variant-one .v-header {
  border-bottom-color: rgba(255, 42, 168, 0.24);
}

.v1-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  isolation: isolate;
  background: #020204;
}

.v1-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 2, 4, 0.96) 0%, rgba(2, 2, 4, 0.84) 37%, rgba(2, 2, 4, 0.15) 67%, rgba(2, 2, 4, 0.28)),
    linear-gradient(0deg, rgba(2, 2, 4, 0.94), transparent 32%);
}

.v1-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.v1-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(720px, 55%);
  min-height: calc(100vh - 78px);
  padding: 48px clamp(24px, 5vw, 80px) 156px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 clamp(54px, 9vh, 96px);
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
}

.hero-dots i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}

.v1-hero h1 {
  display: grid;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.6rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.74;
  text-transform: uppercase;
}

.v1-hero h1 span {
  color: #f5f4f6;
}

.v1-hero h1 em {
  position: relative;
  width: fit-content;
  margin: 22px 0 0 8px;
  color: var(--pink);
  font-family: var(--accent);
  font-size: 0.64em;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8;
  text-shadow: 0 0 18px rgba(255, 42, 168, 0.42);
  transform: rotate(-4deg);
}

.v1-hero h1 em::after {
  position: absolute;
  right: -8%;
  bottom: -13px;
  left: -5%;
  height: 5px;
  content: "";
  background: var(--pink);
  transform: rotate(-2deg) skewX(-22deg);
}

.hero-lead {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(610px, 100%);
  margin-top: 34px;
}

.hero-actions .button {
  min-height: 66px;
}

.v1-next-stop {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  display: grid;
  width: min(440px, 38vw);
  gap: 5px;
  padding: 21px 24px;
  background: rgba(12, 9, 22, 0.76);
  border: 1px solid rgba(255, 42, 168, 0.42);
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.v1-next-stop > span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.v1-next-stop strong {
  font-size: 1.2rem;
}

.v1-next-stop small {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.v1-next-stop b {
  color: var(--pink);
}

.v1-catering,
.v1-locations {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(48px, 8vw, 130px);
  padding: clamp(84px, 10vw, 150px) clamp(22px, 6vw, 96px);
}

.v1-catering {
  background:
    linear-gradient(165deg, transparent 0 67%, rgba(123, 45, 255, 0.12) 67% 68%, transparent 68%),
    #0d0c14;
}

.v1-catering .section-heading {
  align-self: start;
  padding-left: 24px;
  border-left: 4px solid var(--pink);
}

.v1-catering .section-heading::after {
  display: none;
}

.catering-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.catering-points span {
  padding: 8px 12px;
  color: var(--cyan);
  border: 1px solid rgba(49, 215, 232, 0.28);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.v1-catering .quote-form {
  position: relative;
  align-self: start;
  padding: 30px;
  background: rgba(18, 17, 29, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.v1-locations {
  align-items: start;
  background: #080810;
}

.v1-schedule {
  border-top: 1px solid var(--line);
}

.v1-stop {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 132px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}

.v1-stop.featured {
  border-bottom-color: rgba(49, 215, 232, 0.42);
}

.v1-stop-date {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 10px 5px;
  color: var(--white);
  background: var(--panel-2);
  border-left: 3px solid var(--pink);
  text-align: center;
}

.v1-stop-date span,
.v1-stop-date small {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.v1-stop-date strong {
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.5vw, 1.9rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.v1-stop div > span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
}

.v1-stop h3 {
  margin: 5px 0 3px;
  font-size: 1.12rem;
}

.v1-stop p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.v1-stop > a {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.v1-menu {
  background: #0d0c14;
}

.v1-menu-intro {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.v1-menu-intro::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 9, 0.96) 0%, rgba(5, 5, 9, 0.76) 42%, rgba(5, 5, 9, 0.16) 72%),
    linear-gradient(0deg, #0d0c14 0%, transparent 36%);
}

.v1-menu-intro img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 52%;
  filter: saturate(1.04) contrast(1.03);
}

.v1-menu-intro-copy {
  align-self: end;
  width: min(760px, 68%);
  padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 96px);
}

.v1-menu-intro-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.v1-menu-intro-copy > p:last-child {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.v1-menu-content {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 6vw, 96px) clamp(86px, 10vw, 150px);
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.menu-filter {
  min-height: 42px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.68);
  background: #12111b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-filter:hover,
.menu-filter:focus-visible {
  color: var(--white);
  border-color: var(--cyan);
}

.menu-filter.is-active {
  color: var(--black);
  background: var(--cyan);
  border-color: var(--cyan);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.menu-item {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: 30px;
  background: #11101a;
  transition: background 180ms ease, transform 180ms ease;
}

.menu-item:hover {
  z-index: 1;
  background: #171522;
  transform: translateY(-2px);
}

.menu-item[hidden] {
  display: none;
}

.menu-item.is-best-seller {
  background:
    linear-gradient(145deg, rgba(255, 42, 168, 0.14), transparent 48%),
    #15121f;
  box-shadow: inset 0 3px 0 var(--pink);
}

.menu-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-item-meta > span {
  padding: 5px 8px;
  color: var(--black);
  background: var(--pink);
  border-radius: 2px;
  font-size: 0.61rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-item-category {
  margin: 0;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-item[data-menu-category="parmys"] .menu-item-category {
  color: var(--pink);
}

.menu-item[data-menu-category="loaded-fries"] .menu-item-category {
  color: #ff78cf;
}

.menu-item h3 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.menu-item-meta + h3 {
  margin-top: 24px;
}

.menu-item > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu-extras ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.menu-extras li {
  padding: 7px 9px;
  color: var(--cyan);
  border: 1px solid rgba(49, 215, 232, 0.28);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .v1-catering,
  .v1-locations {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 800px) {
  .v1-hero {
    min-height: 920px;
  }

  .v1-hero::after {
    background:
      linear-gradient(0deg, #020204 0%, rgba(2, 2, 4, 0.9) 48%, rgba(2, 2, 4, 0.18) 78%, rgba(2, 2, 4, 0.58)),
      linear-gradient(90deg, rgba(2, 2, 4, 0.84), transparent 74%);
  }

  .v1-hero-image {
    height: 58%;
    object-fit: cover;
    object-position: 68% 38%;
  }

  .v1-hero-copy {
    align-content: end;
    width: 100%;
    min-height: 760px;
    padding: 150px 24px 30px;
  }

  .hero-dots {
    margin-bottom: 28px;
  }

  .v1-hero h1 {
    font-size: clamp(5.2rem, 23vw, 7.8rem);
  }

  .v1-next-stop {
    right: 20px;
    bottom: 24px;
    left: 20px;
    width: auto;
  }

  .v1-catering,
  .v1-locations {
    padding: 86px 20px;
  }

  .v1-catering {
    gap: 34px;
  }

  .v1-catering .section-heading::after {
    content: "\2193";
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 28px 0 0;
    color: var(--white);
    background: rgba(49, 215, 232, 0.1);
    border: 1px solid rgba(49, 215, 232, 0.62);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(49, 215, 232, 0.16);
    font-family: var(--body);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
  }

  .v1-catering .quote-form {
    background:
      linear-gradient(145deg, rgba(49, 215, 232, 0.08), transparent 28%),
      rgba(18, 17, 29, 0.98);
    border-color: rgba(49, 215, 232, 0.48);
    border-top: 3px solid var(--cyan);
    box-shadow:
      0 0 0 1px rgba(255, 42, 168, 0.12),
      0 26px 60px rgba(0, 0, 0, 0.42),
      0 0 34px rgba(49, 215, 232, 0.08);
  }

  .v1-menu-intro {
    min-height: 620px;
  }

  .v1-menu-intro::after {
    background:
      linear-gradient(0deg, #0d0c14 0%, rgba(5, 5, 9, 0.86) 54%, rgba(5, 5, 9, 0.12) 88%),
      linear-gradient(90deg, rgba(5, 5, 9, 0.7), transparent 80%);
  }

  .v1-menu-intro img {
    object-position: 58% center;
  }

  .v1-menu-intro-copy {
    width: 100%;
    padding: 220px 20px 72px;
  }

  .v1-menu-content {
    padding: 64px 20px 92px;
  }
}

@media (max-width: 540px) {
  .v1-hero {
    min-height: 930px;
  }

  .v1-hero-image {
    top: 42px;
    height: 48%;
    transform: scale(1.08);
  }

  .v1-hero-copy {
    min-height: 740px;
    padding: 270px 18px 24px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 62px;
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  .hero-actions .button svg {
    width: 19px;
  }

  .v1-next-stop {
    right: 18px;
    left: 18px;
  }

  .v1-catering .quote-form {
    padding: 24px 18px;
  }

  .v1-stop {
    grid-template-columns: 66px 1fr;
    gap: 14px;
  }

  .v1-stop > a {
    display: none;
  }

  .menu-toolbar {
    flex-wrap: nowrap;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .menu-toolbar::-webkit-scrollbar {
    display: none;
  }

  .menu-filter {
    flex: 0 0 auto;
  }

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

  .menu-item {
    min-height: 220px;
    padding: 26px 22px;
  }
}
