/* =========================================================
   ROUGE & VERT — Design System
   Mobile-first, deep crimson + emerald, warm cream surface
   ========================================================= */

:root {
  /* Brand */
  --crimson: #a8201a;
  --crimson-deep: #7a1612;
  --crimson-soft: #d65750;
  --emerald: #0f5132;
  --emerald-deep: #073924;
  --emerald-soft: #2d8f5f;
  --gold: #c9a04a;
  --gold-soft: #e6c87a;

  /* Surfaces */
  --cream: #fbf6ec;
  --cream-warm: #f5ecd9;
  --paper: #ffffff;
  --ink: #1a1410;
  --ink-soft: #4a3f37;
  --ink-muted: #8a7d70;
  --line: rgba(26, 20, 16, 0.08);
  --white: #ffffff;

  /* Type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing & radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 8px 28px rgba(26, 20, 16, 0.10);
  --shadow-lg: 0 24px 60px rgba(26, 20, 16, 0.18);

  /* Layout */
  --nav-h: 64px;
  --maxw: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

/* Type scale ------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 500;
}

.eyebrow--green {
  color: var(--emerald);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-style: italic;
  font-weight: 300;
}

h2 {
  font-size: clamp(1.9rem, 5.5vw, 3.6rem) !important;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

h4 {
  font-size: 1.1rem;
  letter-spacing: 0;
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* Container -------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .wrap {
    padding: 0 32px;
  }
}

/* Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--crimson);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--crimson-deep);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--green {
  background: var(--emerald);
  color: var(--cream);
}

.btn--green:hover {
  background: var(--emerald-deep);
}

.btn--cream {
  background: var(--cream);
  color: var(--ink);
}

.btn--small {
  padding: 9px 16px;
  font-size: 0.85rem;
}

.btn .arrow {
  transition: transform .25s;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* =========================================================
   NAVIGATION — sticky top, off-canvas mobile drawer
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s ease;
}

.nav.is-scrolled {
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(26, 20, 16, 0.06);
  height: 60px;
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: -0.01em;
  transition: opacity .2s;
}

.nav__brand:hover {
  opacity: 0.85;
}

.nav__brand strong {
  color: var(--crimson);
  font-weight: 500;
}

.nav__brand em {
  color: var(--emerald);
  font-style: italic;
  font-weight: 500;
}

.nav__brand .amp {
  color: var(--ink-muted);
  font-style: normal;
  font-size: 0.85em;
}

.nav__brand img {
  transition: filter .3s ease;
}

.nav__links {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 8px 2px;
  transition: color .2s;
}

.nav__links a:hover {
  color: var(--gold-soft);
}

.nav__links a.is-active {
  color: var(--gold-soft);
}

.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
}

.nav.is-scrolled .nav__links a {
  color: var(--ink);
}

.nav.is-scrolled .nav__links a:hover,
.nav.is-scrolled .nav__links a.is-active {
  color: var(--crimson);
}

.nav.is-scrolled .nav__links a.is-active::after {
  background: var(--crimson);
}

.nav__cta {
  display: none;
}

.nav.is-scrolled .nav__brand img {
  /* filter: brightness(0) saturate(100%) invert(13%) sepia(7%) saturate(1480%) hue-rotate(346deg) brightness(94%) contrast(91%); */
}

.nav__burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  transition: background .2s;
}

.nav__burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav.is-scrolled .nav__burger:hover {
  background: rgba(26, 20, 16, 0.06);
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .25s, background .3s;
}

.nav.is-scrolled .nav__burger span {
  background: var(--ink);
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 960px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__burger {
    display: none;
  }
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--cream);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.7, .0, .2, 1);
  padding: calc(var(--nav-h) + 32px) 28px 40px;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__list {
  list-style: none;
}

.drawer__list li {
  border-bottom: 1px solid rgba(251, 246, 236, 0.12);
}

.drawer__list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}

.drawer__list a span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold-soft);
  font-style: normal;
}

.drawer__foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(251, 246, 236, 0.65);
}

.drawer__foot strong {
  color: var(--gold-soft);
  font-weight: 500;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 24px);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.15) 0%, rgba(26, 20, 16, 0.55) 60%, rgba(26, 20, 16, 0.85) 100%);
}

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px 56px;
  color: var(--cream);
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.02;
}

.hero h1 strong {
  font-style: normal;
  color: var(--gold-soft);
  font-weight: 300;
}

.hero__sub {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  max-width: 56ch;
  line-height: 1.55;
  color: rgba(251, 246, 236, 0.88);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Marquee strip */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(251, 246, 236, 0.08);
  border-bottom: 1px solid rgba(251, 246, 236, 0.08);
  padding: 14px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.7);
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}

.marquee__track .dot {
  width: 5px;
  height: 5px;
  background: var(--crimson-soft);
  border-radius: 50%;
  display: inline-block;
}

.marquee__track em {
  color: var(--gold-soft);
  font-style: normal;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section--cream {
  background: var(--cream-warm);
}

.section--ink {
  background: var(--ink);
  color: var(--cream);
}

.section--ink h2,
.section--ink h3 {
  color: var(--cream);
}

.section--ink .lede {
  color: rgba(251, 246, 236, 0.7);
}

.section--green {
  background: var(--emerald-deep);
  color: var(--cream);
}

.section--green h2,
.section--green h3 {
  color: var(--cream);
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.section__head .eyebrow {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .section__head {
    margin-bottom: 56px;
  }

  .section__head--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }

  .section__head--row>div:first-child {
    max-width: 60ch;
  }
}

/* =========================================================
   PILLARS — four cards (Dine, Cinema, Play, Stay)
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}

.pillar:hover .pillar__img {
  transform: scale(1.06);
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 20, 16, 0.85) 100%);
}

.pillar__inner {
  padding: 22px;
  width: 100%;
}

.pillar__num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 8px;
  display: block;
}

.pillar h3 {
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

.pillar .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(251, 246, 236, 0.4);
  padding-bottom: 4px;
  transition: gap .25s, border-color .25s;
}

.pillar:hover .arrow-link {
  gap: 14px;
  border-color: var(--cream);
}

.pillar--dine .pillar__img {
  background-image: url('../images/four-destinations/dining.jpeg');
}

.pillar--cinema .pillar__img {
  background-image: url('https://images.unsplash.com/photo-1594908900066-3f47337549d8?q=80&w=1400&auto=format&fit=crop');
}

.pillar--play .pillar__img {
  background-image: url('../images/four-destinations/play.png');
}

.pillar--stay .pillar__img {
  background-image: url('../images/four-destinations/hotel.jpg');
}

/* =========================================================
   FEATURE STRIP — alternating image + text rows
   ========================================================= */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.feature+.feature {
  margin-top: 80px;
}

@media (min-width: 900px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .feature--reverse .feature__media {
    order: 2;
  }
}

.feature__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
}

.feature__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(26, 20, 16, 0.06);
}

.feature h2 {
  margin: 8px 0 16px;
}

.feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.feature__meta div strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
}

/* =========================================================
   CARDS — generic horizontal scroll on mobile, grid on desktop
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--line);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}

.card__body {
  padding: 18px 20px 22px;
}

.card__tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
  display: block;
}

.card__tag--green {
  color: var(--emerald);
}

.card h4 {
  margin-bottom: 6px;
}

.card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.card__price {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  color: var(--cream);
  padding: 88px 0 28px;
  background-color: #14100d;
  background-image:
    radial-gradient(900px 460px at 8% 0%, rgba(168, 32, 26, 0.22), transparent 60%),
    radial-gradient(720px 380px at 100% 100%, rgba(15, 81, 50, 0.22), transparent 60%),
    linear-gradient(180deg, #1a1410 0%, #110d0a 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Top accent bar — brand palette */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--crimson) 0%,
      var(--crimson-soft) 28%,
      var(--gold) 50%,
      var(--emerald-soft) 72%,
      var(--emerald) 100%);
  opacity: 0.85;
}

/* Soft noise/texture using a subtle dot pattern via gradients */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(251, 246, 236, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: -1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 56px;
  position: relative;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
  }
}

.footer__brand {
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1;
}

.footer__brand strong {
  color: var(--crimson-soft);
  font-weight: 400;
}

.footer__brand em {
  color: var(--emerald-soft);
}

.footer p,
.footer a {
  color: rgba(251, 246, 236, 0.72);
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer__grid>div:first-child p {
  max-width: 32ch;
}

.footer h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  position: relative;
  display: inline-block;
  transition: color .25s ease, transform .25s cubic-bezier(.2, .7, .3, 1), padding-left .25s cubic-bezier(.2, .7, .3, 1);
}

.footer ul a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-soft);
  transform: translateY(-50%);
  transition: width .25s cubic-bezier(.2, .7, .3, 1);
}

.footer ul a:hover {
  color: var(--cream);
  padding-left: 16px;
}

.footer ul a:hover::before {
  width: 10px;
}

.footer a:hover {
  color: var(--cream);
}

.footer__bot {
  position: relative;
  border-top: 1px solid rgba(251, 246, 236, 0.10);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(251, 246, 236, 0.55);
}

.footer__bot span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

@media (min-width: 640px) {
  .footer__bot {
    flex-direction: row;
    align-items: center;
  }
}

/* =========================================================
   PAGE HEADER (for inner pages)
   ========================================================= */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.4), rgba(26, 20, 16, 0.85));
}

.page-header>* {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--cream);
  margin-bottom: 14px;
}

.page-header h1 em {
  color: var(--gold-soft);
  font-style: italic;
}

.page-header .lede {
  color: rgba(251, 246, 236, 0.8);
}

.crumb {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.crumb a {
  color: rgba(251, 246, 236, 0.55);
}

.crumb a:hover {
  color: var(--cream);
}

/* =========================================================
   CINEMA BOOKING MODAL
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 20, 16, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.modal.is-open {
  display: flex;
}

.modal__dialog {
  background: var(--cream);
  width: 100%;
  max-width: 560px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  max-height: 92vh;
  overflow-y: auto;
  animation: slideUp .4s cubic-bezier(.2, .7, .3, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .modal {
    align-items: center;
    padding: 24px;
  }

  .modal__dialog {
    border-radius: var(--r-xl);
  }
}

.modal__head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.modal__head h3 {
  font-style: italic;
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.modal__body {
  padding: 24px;
}

.modal__steps {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.modal__steps div {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transition: background .3s;
}

.modal__steps div.is-active {
  background: var(--crimson);
}

.movie-pick {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .movie-pick {
    grid-template-columns: 1fr 1fr;
  }
}

.movie-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  transition: border-color .2s, background .2s;
}

.movie-card.is-selected {
  border-color: var(--crimson);
  background: rgba(168, 32, 26, 0.04);
}

.movie-card__img {
  width: 56px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.movie-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.movie-card p {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.movie-card .badge {
  display: inline-block;
  padding: 2px 6px;
  margin-top: 6px;
  background: var(--emerald);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  border-radius: 3px;
}

.times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-chip {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .2s;
}

.time-chip small {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.time-chip:hover {
  border-color: var(--ink);
}

.time-chip.is-selected {
  background: var(--crimson);
  color: var(--cream);
  border-color: var(--crimson);
}

.time-chip.is-selected small {
  color: rgba(255, 255, 255, 0.7);
}

/* Seats */
.screen {
  height: 8px;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 100%);
  border-radius: 50% / 100%;
  margin: 0 auto 8px;
  width: 80%;
}

.screen-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.seats {
  display: grid;
  gap: 6px;
  grid-template-columns: 24px repeat(8, 1fr);
  max-width: 360px;
  margin: 0 auto;
}

.seat-row-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat {
  aspect-ratio: 1;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 4px 4px 8px 8px;
  cursor: pointer;
  transition: all .15s;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
}

.seat:hover:not(.is-taken):not(.is-aisle) {
  background: var(--gold-soft);
  border-color: var(--gold);
}

.seat.is-selected {
  background: var(--crimson) !important;
  border-color: var(--crimson) !important;
  color: var(--cream);
}

.seat.is-taken {
  background: var(--ink);
  border-color: var(--ink);
  cursor: not-allowed;
  opacity: 0.4;
}

.seat.is-aisle {
  background: transparent;
  border: none;
  cursor: default;
}

.legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend i {
  width: 14px;
  height: 14px;
  border-radius: 3px 3px 5px 5px;
  display: inline-block;
}

.summary {
  background: var(--ink);
  color: var(--cream);
  padding: 20px;
  border-radius: var(--r-md);
  margin-top: 24px;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(251, 246, 236, 0.1);
}

.summary__row:last-of-type {
  border-bottom: none;
}

.summary__row strong {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  font-weight: 400;
}

.summary__row span:first-child {
  color: rgba(251, 246, 236, 0.65);
}

.modal__foot {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.modal__foot .btn {
  flex: 1;
  justify-content: center;
}

/* Hide steps */
.step {
  display: none;
}

.step.is-active {
  display: block;
  animation: fade .3s;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   ROOM / RESTAURANT TABS
   ========================================================= */
.tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  padding-bottom: 1px;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 12px 18px;
  font-size: 0.92rem;
  white-space: nowrap;
  color: var(--ink-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}

.tab.is-active {
  color: var(--crimson);
  border-bottom-color: var(--crimson);
}

/* =========================================================
   MENU LIST (restaurant)
   ========================================================= */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-item {
  display: flex;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.menu-item__img {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: var(--r-md);
  background: var(--cream-warm);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .menu-item__img {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }
}

.menu-item__body {
  flex: 1;
  min-width: 0;
}

.menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}

.menu-item h4 {
  font-style: italic;
  font-weight: 400;
}

.menu-item__price {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--crimson);
}

.menu-item p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.menu-item__tags {
  margin-top: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.menu-item__tags span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  padding: 2px 8px;
  border: 1px solid var(--emerald);
  border-radius: 999px;
}

/* =========================================================
   STATS / NUMBERS BAND
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 18px;
  width: 100%;
}

@media (min-width: 600px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* On larger screens fit ALL stats in a single full-width row.
   Uses an auto-derived column count so 7 (or any other count) flows naturally. */
@media (min-width: 900px) {
  .stats {
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    grid-template-columns: none;
    gap: 24px;
  }
}

.stat {
  text-align: center;
  min-width: 0; /* allow numbers to shrink without overflow in narrow cells */
}

.stat__num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: var(--crimson-soft);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__num.is-green {
  color: var(--emerald-soft);
}

.stat__lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.6);
  line-height: 1.35;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: initial;
  }

  .hide-desktop {
    display: none;
  }
}

.spacer-sm {
  height: 32px;
}

.spacer-md {
  height: 64px;
}

.divider {
  width: 32px;
  height: 2px;
  background: var(--crimson);
  margin: 16px 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s, transform .8s;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   APP DOWNLOAD SECTION (cinema app)
   ========================================================= */
.app-section {
  padding: 80px 0 0;
  background: var(--cream-warm);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .app-section {
    padding: 120px 0 0;
  }
}

/* decorative blobs */
.app-section::before,
.app-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
}

.app-section::before {
  width: 320px;
  height: 320px;
  background: var(--crimson);
  top: -80px;
  left: -80px;
}

.app-section::after {
  width: 380px;
  height: 380px;
  background: var(--emerald);
  bottom: -100px;
  right: -100px;
}

.app-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .app-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}

.app-content h2 {
  margin: 12px 0 18px;
}

.app-content h2 em {
  color: var(--crimson);
  font-style: italic;
}

.app-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.app-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--emerald);
}

.app-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.app-badge svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.app-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.app-badge__text small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}

.app-badge__text strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
}

/* ===== App preview image (replaces phone mockup) ===== */
.app-view {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.app-view img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow:
    0 50px 80px -20px rgba(26, 20, 16, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(-2deg);
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

.app-view:hover img {
  transform: rotate(0deg) translateY(-4px);
}

@media (min-width: 900px) {
  .app-view img {
    max-width: 300px;
  }
}

/* ===== Phone mockup ===== */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  perspective: 1200px;
  padding-top: 20px;
}

.phone {
  position: relative;
  width: 270px;
  height: 540px;
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 50px 80px -20px rgba(26, 20, 16, 0.35),
    0 0 0 2px rgba(0, 0, 0, 0.6) inset,
    0 0 0 6px rgba(255, 255, 255, 0.05);
  transform: rotate(-3deg) rotateY(-8deg) rotateX(4deg);
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

@media (min-width: 900px) {
  .phone {
    width: 290px;
    height: 580px;
  }
}

.phone:hover {
  transform: rotate(-1deg) rotateY(-2deg) rotateX(2deg) translateY(-6px);
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 5;
}

.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink);
}

.phone__status .icons {
  display: flex;
  gap: 4px;
}

.phone__status .icons i {
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
  display: block;
}

.phone__app {
  flex: 1;
  padding: 18px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.phone__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone__logo {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
}

.phone__logo strong {
  color: var(--crimson);
  font-weight: 500;
}

.phone__logo em {
  color: var(--emerald);
}

.phone__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
}

.phone__hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 150px;
  background-image: url('https://images.unsplash.com/photo-1518930259200-3e5b1f1d3a07?q=80&w=600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.phone__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 20, 16, 0.85) 100%);
}

.phone__hero-text {
  position: relative;
  z-index: 1;
  padding: 12px;
  color: var(--cream);
}

.phone__hero-text small {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
}

.phone__hero-text h5 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  margin-top: 2px;
  color: var(--cream);
}

.phone__row {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.phone__times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.phone__time {
  padding: 8px 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  font-size: 0.7rem;
}

.phone__time.is-active {
  background: var(--crimson);
  color: var(--cream);
  border-color: var(--crimson);
}

.phone__time.is-active small {
  color: rgba(255, 255, 255, 0.7);
}

.phone__time small {
  display: block;
  font-size: 0.55rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.phone__cta {
  margin-top: auto;
  padding: 12px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.78rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone__cta strong {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-soft);
  font-weight: 400;
}

.phone__nav {
  display: flex;
  justify-content: space-around;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  margin: 14px -18px 0;
}

.phone__nav i {
  width: 4px;
  height: 4px;
  background: var(--ink-muted);
  border-radius: 50%;
  display: block;
}

.phone__nav i.is-active {
  background: var(--crimson);
  width: 18px;
  border-radius: 2px;
}

/* =========================================================
   APP PREVIEW — live phone mockup (SAS Plaza Cinema app)
   Dark mode design with hero card + Now Showing / Coming Soon grids
   ========================================================= */
.phone--dark .phone__screen.app-screen {
  background: #0a0a0a;
  color: #fff;
}

/* Status bar */
.app-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 6px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: #fff;
}

.app-statusbar__icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.app-stat-signal {
  width: 12px;
  height: 8px;
  background: linear-gradient(135deg, #fff 50%, rgba(255,255,255,0.4) 50%);
  border-radius: 1px;
}

.app-stat-battery {
  display: inline-block;
  width: 14px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 2px;
  position: relative;
}

.app-stat-battery::before {
  content: '';
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  width: 7px;
  background: #fff;
  border-radius: 1px;
}

/* Title bar */
.app-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 12px;
}

.app-titlebar h6 {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.app-icon-btn {
  color: #fff;
  padding: 4px;
  background: transparent;
}

.app-icon-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Scrollable area — scrollbar hidden but content still scrolls on touch/wheel */
.app-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 14px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE / legacy Edge */
}

.app-scroll::-webkit-scrollbar {  /* Chrome / Safari / new Edge */
  display: none;
}

/* Featured hero */
.app-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 16px;
}

.app-hero__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.app-hero__poster.skel {
  background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
}

.app-hero__overlay {
  position: absolute;
  inset: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}

.app-hero__title {
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.app-hero__title.skel { height: 14px; border-radius: 4px; }

.app-hero__lang {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 4px;
  background: #f4c01a;
  color: #1a1410;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.app-hero__lang.skel { background: rgba(244,192,26,0.3); color: transparent; }

.app-hero__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s;
}

.app-btn:hover { transform: translateY(-1px); }

.app-btn--primary {
  background: #e23838;
  color: #fff;
}

.app-btn--ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.app-btn svg { width: 12px; height: 12px; }

/* Section header (Now Showing / Coming Soon) */
.app-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 12px 0 10px;
}

.app-section-head h6 {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.app-see-all {
  font-size: 0.7rem;
  font-weight: 500;
  color: #e23838;
}

/* Poster grid */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.app-card {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform .2s;
}

.app-card:hover { transform: translateY(-2px); }

.app-card.skel {
  background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
}

.app-card__rating {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.app-card__rating::before {
  content: '★';
  color: #f4c01a;
  font-size: 0.7rem;
  line-height: 1;
}

.app-grid--empty {
  grid-column: 1 / -1;
  padding: 18px 8px;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

/* QR code (decorative, CSS-built) */
.app-qr {
  display: none;
  margin-top: 20px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}

@media (min-width: 1024px) {
  .app-qr {
    display: inline-flex;
  }
}

.app-qr__code {
  width: 64px;
  height: 64px;
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(-45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--ink) 75%),
    linear-gradient(-45deg, transparent 75%, var(--ink) 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0;
  border: 4px solid var(--ink);
  border-radius: 6px;
  flex-shrink: 0;
}

.app-qr__text {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.app-qr__text strong {
  color: var(--ink);
  display: block;
}

/* =========================================================
   PAGE LOAD ENTRANCE — staggered hero animation
   ========================================================= */
.hero__eyebrow,
.hero h1,
.hero__sub,
.hero__actions {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s cubic-bezier(.2, .7, .3, 1) forwards;
}

.hero__eyebrow {
  animation-delay: 0.15s;
}

.hero h1 {
  animation-delay: 0.30s;
}

.hero__sub {
  animation-delay: 0.55s;
}

.hero__actions {
  animation-delay: 0.75s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* page-header entrance */
.page-header h1,
.page-header .lede,
.page-header .crumb {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn .9s cubic-bezier(.2, .7, .3, 1) forwards;
}

.page-header .crumb {
  animation-delay: 0.1s;
}

.page-header h1 {
  animation-delay: 0.25s;
}

.page-header .lede {
  animation-delay: 0.45s;
}

/* =========================================================
   3D CARD TILT (desktop only, applied via JS)
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  .tilt {
    transform-style: preserve-3d;
    transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s;
    will-change: transform;
  }

  .tilt:hover {
    box-shadow: 0 30px 60px -20px rgba(26, 20, 16, 0.25);
  }
}

/* =========================================================
   FLOATING DECORATIVE DOTS in hero
   ========================================================= */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__deco span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.55;
  animation: float 10s ease-in-out infinite;
}

.hero__deco span:nth-child(1) {
  background: var(--crimson-soft);
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero__deco span:nth-child(2) {
  background: var(--gold-soft);
  top: 35%;
  right: 22%;
  animation-delay: 1.2s;
  width: 4px;
  height: 4px;
}

.hero__deco span:nth-child(3) {
  background: var(--emerald-soft);
  bottom: 32%;
  left: 8%;
  animation-delay: 2.4s;
  width: 8px;
  height: 8px;
}

.hero__deco span:nth-child(4) {
  background: var(--gold);
  top: 55%;
  right: 12%;
  animation-delay: 3.6s;
}

.hero__deco span:nth-child(5) {
  background: var(--crimson-soft);
  bottom: 18%;
  right: 35%;
  animation-delay: 4.8s;
  width: 4px;
  height: 4px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-26px) translateX(12px);
    opacity: 0.85;
  }
}

/* =========================================================
   STAT NUMBER count-up — start state
   ========================================================= */
.stat__num[data-target] {
  display: inline-block;
}

/* =========================================================
   PARALLAX (handled via CSS variable updated by JS)
   ========================================================= */
.hero__bg {
  transform: translateY(var(--parallax, 0px));
  will-change: transform;
}

/* =========================================================
   LINK underline draw effect
   ========================================================= */
.nav__links a {
  background-image: linear-gradient(var(--crimson), var(--crimson));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .35s cubic-bezier(.2, .7, .3, 1), color .2s;
  padding-bottom: 2px;
}

.nav__links a:hover {
  background-size: 100% 1px;
}

.nav__links a.is-active {
  background-size: 100% 2px;
}

.nav__links a.is-active::after {
  display: none;
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__deco {
    display: none;
  }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info__intro h2 {
  margin-bottom: 14px;
}

.contact-info__intro p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

@media (min-width: 540px) {
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s, border-color .25s;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(168, 32, 26, 0.18);
}

.info-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(168, 32, 26, 0.08);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card--green .info-card__icon {
  background: rgba(15, 81, 50, 0.08);
  color: var(--emerald);
}

.info-card__icon svg {
  width: 20px;
  height: 20px;
}

.info-card__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.info-card__value {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.35;
}

.info-card a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

.info-card a:hover {
  border-bottom-color: var(--crimson);
}

.contact-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.contact-socials a:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.contact-socials svg {
  width: 18px;
  height: 18px;
}

/* Form */
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 40px;
  }
}

.contact-form__head {
  margin-bottom: 24px;
}

.contact-form__head h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 6px;
}

.contact-form__head p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (min-width: 600px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--crimson);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(168, 32, 26, 0.10);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-actions p {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.form-success {
  display: none;
  background: rgba(15, 81, 50, 0.08);
  color: var(--emerald-deep);
  border: 1px solid rgba(15, 81, 50, 0.18);
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  margin-top: 16px;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  display: none;
  background: rgba(168, 32, 26, 0.08);
  color: var(--crimson-deep);
  border: 1px solid rgba(168, 32, 26, 0.20);
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  margin-top: 16px;
  line-height: 1.55;
}

.form-error a {
  color: var(--crimson-deep);
  font-weight: 500;
  border-bottom: 1px solid rgba(122, 22, 18, 0.4);
}

.form-error.is-visible {
  display: block;
}

/* Submit button "Sending…" loading state */
.contact-form [data-submit][disabled] {
  pointer-events: none;
}

/* Map */
.contact-map {
  position: relative;
  height: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(0.95);
}

/* Hours strip */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 600px) {
  .hours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hours-cell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
}

.hours-cell strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 6px;
  font-weight: 500;
}

.hours-cell span {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
}

/* =========================================================
   CINEMA — dynamic movie cards (loading + showtimes + msg)
   ========================================================= */
.movies-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-muted);
  padding: 40px 16px;
  font-size: 0.95rem;
}

.movie-times {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 14px;
}

.movie-time-chip {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(168, 32, 26, 0.08);
  color: var(--crimson);
  border: 1px solid rgba(168, 32, 26, 0.15);
}

.movie-from {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--emerald);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Loading skeletons */
.movies-skeleton .card__img {
  background: linear-gradient(90deg, #efe7d6 0%, #f7f0e0 50%, #efe7d6 100%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
}

.skel {
  display: block;
  background: linear-gradient(90deg, #efe7d6 0%, #f7f0e0 50%, #efe7d6 100%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
  color: transparent !important;
  border: 0;
}

.skel.skel--pill {
  width: 90px;
  height: 18px;
  border-radius: 999px;
}

.skel.skel--line {
  height: 14px;
  margin-top: 10px;
}

.skel.skel--short {
  width: 60%;
}

@keyframes skel-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}