/* Motion homepage intro — video first screen that fits index4 */

html:has(body.page-motion) {
  overflow-x: visible;
}

.page-motion {
  --m-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --m-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --intro-h: 100vh;
}

body.page-motion {
  overflow-x: visible;
}

.page-motion .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
}

.page-motion main {
  padding-top: 0;
  overflow-x: clip;
}

.intro {
  position: relative;
  color: #fff;
  background: #0d0d0f;
}

.intro-ph {
  height: var(--intro-h);
  pointer-events: none;
}

.intro-pin {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--intro-h);
  overflow: hidden;
  z-index: 4;
}

.intro-spacer {
  height: 180vh;
}

.intro-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(0);
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  transform: translateZ(0);
}

.intro-frames {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transform: translateZ(0);
}

.intro.is-video .intro-video {
  display: block;
}

.intro.is-video .intro-frames {
  display: none;
}

.intro-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 13, 15, 0.55) 0%, rgba(13, 13, 15, 0.18) 38%, rgba(13, 13, 15, 0.78) 100%),
    radial-gradient(ellipse 70% 50% at 50% 42%, transparent 0%, rgba(0, 0, 0, 0.28) 100%);
}

.intro-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  transform: translateZ(0);
}

.intro-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad, 1.25rem) max(5.2rem, calc(env(safe-area-inset-bottom) + 4.2rem));
  max-width: 42rem;
  pointer-events: none;
}

.intro-copy > * {
  pointer-events: auto;
}

.intro-kicker {
  color: var(--gold, #f5c518);
}

.intro-title {
  margin: 0;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: clamp(2.15rem, 5.4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.intro-title em {
  color: var(--red-hot, #e11d3a);
  font-style: normal;
}

.intro-lead {
  margin: 0.85rem 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.intro-actions {
  display: grid;
  grid-template-columns: minmax(0, 16.5rem) minmax(0, 16.5rem);
  gap: 0.7rem;
  margin-top: 1.35rem;
  width: min(100%, 34rem);
}

.intro-go {
  display: grid;
  gap: 0.12rem;
  padding: 0.85rem 1.05rem 0.9rem;
  border-radius: 1.05rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .intro-go {
    transition: transform 0.35s var(--m-snap), border-color 0.25s ease, background 0.25s ease;
  }

  .intro-go:hover {
    transform: translateY(-2px);
  }
}

.intro-go-k {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.intro-go strong {
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

.intro-go em {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.8;
}

.intro-go--bowl {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border-color: transparent;
}

.intro-go--bowl:hover {
  background: #fff;
}

.intro-go--pool {
  background: rgba(200, 16, 46, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
}

.intro-go--pool:hover {
  background: var(--red-hot, #e11d3a);
}

.intro-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.intro-rail > i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-deep, #8f0b20), var(--red-hot, #e11d3a));
}

.intro-hint {
  position: absolute;
  right: var(--pad, 1.25rem);
  bottom: max(1.1rem, calc(env(safe-area-inset-bottom) + 0.9rem));
  z-index: 3;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: opacity 0.35s ease;
}

.intro-hint.is-off {
  opacity: 0;
}

.page-motion.is-in-intro .header {
  background: rgba(13, 13, 15, 0.42);
}

@media (max-width: 720px) {
  .page-motion {
    --intro-h: 100svh;
  }

  @supports (height: 100dvh) {
    .page-motion {
      --intro-h: 100dvh;
    }
  }

  .intro-ph,
  .intro-pin {
    height: var(--intro-h);
    min-height: 100svh;
  }

  .intro-spacer {
    height: 160vh;
  }

  .intro-copy {
    max-width: none;
    padding: 0 0.85rem max(5.5rem, calc(env(safe-area-inset-bottom) + 4.2rem));
  }

  .intro-lead,
  .intro-hint {
    display: none;
  }

  .intro-title {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .intro-actions {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0.55rem;
    margin-top: 0.95rem;
  }

  .intro-go {
    padding: 0.68rem 0.7rem 0.7rem;
    border-radius: 0.85rem;
    gap: 0.1rem;
    text-align: left;
    place-items: start;
  }

  .intro-go-k {
    display: none;
  }

  .intro-go em {
    display: block;
    font-size: 0.72rem;
  }

  .intro-go strong {
    font-size: 1.28rem;
    letter-spacing: 0.03em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-ph {
    display: none;
  }

  .intro-spacer {
    height: 0;
  }

  .intro-pin,
  .intro-pin.is-locked,
  .intro-pin.is-released {
    position: relative;
    height: min(92vh, 860px);
    transform: none !important;
  }

  .intro-video {
    transform: none;
  }
}

/* ----- Mobile dishes: 2 in a row ----- */
@media (max-width: 640px) {
  .page-motion .menu-preview {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .page-motion .menu-preview-body {
    padding: 0.7rem 0.7rem 0.8rem;
    gap: 0.28rem;
  }

  .page-motion .menu-preview-body p {
    display: none;
  }

  .page-motion .menu-preview-body h3 {
    font-size: 0.92rem;
  }

  .page-motion .menu-preview-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .page-motion .menu-preview-row a {
    min-height: 1.9rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
  }
}

/* ----- PDF covers as large link cards ----- */
.page-motion .menu-pdfs {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.page-motion .menu-pdf {
  position: relative;
  display: grid;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #1a1612;
  color: #fff;
  isolation: isolate;
  min-height: 14rem;
  box-shadow: 0 14px 32px rgba(20, 12, 8, 0.12);
  transition: transform 0.35s var(--m-snap), box-shadow 0.35s ease;
}

.page-motion .menu-pdf img {
  width: 100%;
  height: 100%;
  min-height: 16.5rem;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1.03);
  transition: transform 0.6s var(--m-snap);
}

.page-motion .menu-pdf::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 8, 10, 0.88) 100%);
  z-index: 1;
}

.page-motion .menu-pdf-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 0.95rem 1rem;
}

.page-motion .menu-pdf-meta strong {
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

.page-motion .menu-pdf-meta span {
  font-size: 0.78rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.72);
}

.page-motion .menu-pdf:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 12, 8, 0.18);
}

.page-motion .menu-pdf:hover img {
  transform: scale(1.08);
}

@media (max-width: 980px) {
  .page-motion .menu-pdfs {
    grid-template-columns: 1fr 1fr;
  }

  .page-motion .menu-pdf:last-child {
    grid-column: 1 / -1;
    max-width: 18rem;
    justify-self: center;
    width: 100%;
  }
}

/* ----- Advantages ----- */
.page-motion .advantages {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(200, 16, 46, 0.08), transparent 55%),
    #f3f3f5;
}

.page-motion .adv-item {
  position: relative;
  overflow: hidden;
  padding: 1.55rem 1.3rem 1.65rem;
  background: #fff;
  border: 1px solid rgba(13, 13, 15, 0.06);
  box-shadow: 0 10px 28px rgba(13, 13, 15, 0.04);
}

.page-motion .adv-num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: rgba(200, 16, 46, 0.14);
  line-height: 1;
}

.page-motion .adv-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #c8102e, #8f0b20);
  color: #fff;
}

.page-motion .adv-item h3 {
  font-size: 1.85rem;
}

/* ----- FAQ ----- */
.page-motion .faq {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(200, 16, 46, 0.18), transparent 50%),
    var(--ink, #0d0d0f);
}

.page-motion .faq-item {
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-motion .faq-item[open] {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(225, 29, 58, 0.35);
}

.page-motion .faq-n {
  display: block;
  width: 2.35rem;
  margin: 0;
  flex: none;
  color: var(--red-hot, #e11d3a);
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.page-motion .faq-item summary {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr) auto;
  align-items: center;
  justify-content: start;
  gap: 0.55rem 0.7rem;
  padding: 1.15rem 1.25rem;
}

/* ----- Footer: open blocks, no bottom legal strip ----- */
.page-motion .footer {
  padding-bottom: 1.75rem;
}

.page-motion .footer-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-top: 0.35rem;
}

.page-motion .footer-block {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.page-motion .footer-block strong {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-motion .footer-block a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.page-motion .footer-block a:hover {
  color: #ff6b84;
}

.page-motion .footer-copy {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-motion .footer-legal {
  display: none;
}

.page-motion .footer-meta {
  gap: 0.75rem;
  justify-items: end;
}

.page-motion .footer-phones {
  display: grid;
  gap: 0.45rem;
  width: min(100%, 17rem);
}

.page-motion .footer-phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: #fff;
}

.page-motion .footer-phone:hover {
  border-color: rgba(225, 29, 58, 0.45);
  background: rgba(225, 29, 58, 0.1);
}

.page-motion .footer-phone em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.page-motion .footer-phone strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.page-motion .footer-hours-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  width: min(100%, 17rem);
  padding: 0.7rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.page-motion .footer-hours-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-motion .footer-hours-card span:not(.footer-ico) {
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.page-motion .footer-ico {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: rgba(200, 16, 46, 0.9);
  color: #fff;
  flex: none;
}

.page-motion .footer-ico svg {
  width: 1rem;
  height: 1rem;
}

.page-motion .footer-socials {
  margin-top: 0.1rem;
}

@media (max-width: 980px) {
  .page-motion .footer-meta {
    justify-items: start;
    width: 100%;
  }

  .page-motion .footer-phones,
  .page-motion .footer-hours-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-motion .footer-blocks {
    grid-template-columns: 1fr;
  }
}


