:root {
  --champagne: #faf0dc;
  --cream: #f5e6c8;
  --gold-pale: #f3d4bc;
  --gold: #c98a5c;
  --gold-bright: #e1ad74;
  --gold-deep: #b76e4c;
  --gold-dark: #8f563c;
  --gold-text: #e1ad74;
  --font: "Outfit", "Segoe UI", sans-serif;
  --font-hero: "Tensentype MaiHeiJ", sans-serif;
  --space: clamp(1.1rem, 3.5vw, 2.75rem);
  --max: 80%;
  --radius-pill: 999px;
  --radius-image: 1.4rem;
  --ink: #1a120c;
  --page-fg: #f5f0ea;
  --page-muted: rgba(245, 240, 234, 0.76);
  --page-bg-color: #322e23;
  --page-bg-image: url("assets/background-texture.jpg?v=7");
  --page-bg-size: 500px auto;
  --page-bg-repeat: repeat;
  --page-bg-position: left top;
  --page-bg-blend: normal;
  --page-bg-attachment: scroll;
  --header-fg: #f5f0ea;
  --header-blur: 8px;
  --header-bg: rgba(28, 20, 12, 0.38);
  --header-scrolled-bg: rgba(22, 14, 8, 0.58);
  --header-scrolled-border: rgba(255, 255, 255, 0.1);
  --logo-color: #e1ad74;
  --nav-link: rgba(245, 240, 234, 0.72);
  --nav-link-active: #ffffff;
  --outline-border: rgba(255, 255, 255, 0.35);
  --outline-fg: #f5f0ea;
  --section-heading: #ffffff;
  --heading-size: clamp(2.2rem, 5vw, 3.5rem);
  --eyebrow-size: 0.92rem;
  --text-body: clamp(1.15rem, 1.75vw, 1.25rem);
  --text-label: var(--eyebrow-size);
  --text-meta: 0.78rem;
  --info-title-size: clamp(1.12rem, 1.8vw, 1.22rem);
  --info-body-size: clamp(1.05rem, 1.5vw, 1.12rem);
  --line-height-body: 1.62;
  --hero-lede: rgba(245, 240, 234, 0.85);
  --line-light: #f5f0ea;
  --footer-border: rgba(255, 255, 255, 0.1);
  --footer-brand: var(--gold-text);
  --card-bg: #4a4437;
  --card-text: #faf7f3;
  --card-muted: rgba(250, 247, 243, 0.88);
  --card-head-fg: #ffffff;
  --card-border: rgba(255, 255, 255, 0.14);
  --card-divider: rgba(255, 255, 255, 0.1);
  --card-price-label: rgba(250, 247, 243, 0.88);
  --card-price-value: #ebc49a;
  --card-section-label: #ebc49a;
  --section-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  --section-border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Tensentype MaiHeiJ";
  src: url("assets/font.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  min-height: 100%;
  overflow-x: clip;
  background-color: var(--page-bg-color);
  background-image: var(--page-bg-image);
  background-repeat: var(--page-bg-repeat, no-repeat);
  background-position: var(--page-bg-position, 0 0, center center, center center);
  background-size: var(--page-bg-size, cover);
  background-blend-mode: var(--page-bg-blend, normal);
  background-attachment: var(--page-bg-attachment, scroll);
  image-rendering: auto;
  transition: background-color 0.9s ease;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: var(--line-height-body);
  color: var(--page-fg);
  background: transparent;
  text-rendering: optimizeLegibility;
  transition: color 0.9s ease;
}

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

::selection {
  background: rgba(225, 173, 116, 0.35);
  color: #fff8ec;
}

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

:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem var(--space);
  color: var(--header-fg);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(var(--header-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--header-blur)) saturate(120%);
  animation: slide-down-bar 0.88s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    background 0.9s ease,
    border-color 0.9s ease,
    box-shadow 0.9s ease,
    color 0.9s ease;
}

.site-header.is-scrolled {
  background: var(--header-scrolled-bg);
  border-bottom-color: var(--header-scrolled-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.site-header .nav a,
.site-header .header-actions .btn-outline,
.site-header .logo-lockup {
  transition:
    color 0.9s ease,
    border-color 0.9s ease,
    background 0.9s ease,
    filter 0.9s ease;
}

.logo-lockup {
  filter: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-self: start;
  min-width: 0;
  color: var(--logo-color);
  text-decoration: none;
}

.logo-lockup {
  display: block;
  height: clamp(2.2rem, 5.2vw, 3.05rem);
  width: auto;
  max-width: min(42vw, 16.5rem);
  object-fit: contain;
  object-position: left center;
  transition:
    filter 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-lockup,
.logo:focus-visible .logo-lockup {
  transform: scale(1.04);
  filter: drop-shadow(0 0 10px rgba(198, 140, 82, 0.45));
}

.nav {
  position: relative;
  display: none;
  gap: 1.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  align-self: center;
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: var(--gold-bright);
  pointer-events: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
  opacity: 0;
}

.nav a {
  position: relative;
  color: var(--nav-link);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--nav-link-active);
}


.header-actions {
  display: flex;
  justify-self: end;
  align-self: center;
  align-items: center;
  gap: 0.65rem;
}

.btn-label-short {
  display: none;
}

@media (max-width: 879px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0.55rem 0.8rem;
  }

  .header-actions {
    gap: 0.4rem;
    min-width: 0;
    justify-content: flex-end;
  }

  .site-header .btn {
    min-height: 2.15rem;
    padding: 0.38rem 0.72rem;
    font-size: 0.88rem;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 1;
  }

  .btn-label-full {
    display: none;
  }

  .btn-label-short {
    display: inline;
  }
}

@media (max-width: 430px) {
  .header-link-directions {
    display: none;
  }

  .logo-lockup {
    height: 2.05rem;
    max-width: 9.5rem;
  }
}

@media (min-width: 880px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-sm {
  min-height: 2.35rem;
  padding: 0.45rem 1.05rem;
  font-size: 0.92rem;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-bright), var(--gold));
  color: #2a1810;
  box-shadow: 0 4px 20px rgba(180, 110, 70, 0.38);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-18deg) translateX(-180%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #2a1810;
  box-shadow: 0 6px 24px rgba(180, 110, 70, 0.48);
  transform: translateY(-2px);
}

.btn-gold:hover::after,
.btn-gold:focus-visible::after {
  transform: skewX(-18deg) translateX(320%);
}

.btn-outline {
  background: transparent;
  border-color: var(--outline-border);
  color: var(--outline-fg);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold-bright);
  background: rgba(196, 137, 92, 0.12);
  color: var(--champagne);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-bottom: clamp(4.5rem, 14vh, 8rem);
  display: grid;
  align-items: center;
  justify-items: start;
  overflow: hidden;
  color: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: min(42vh, 22rem);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, var(--page-bg-color) 18%, transparent) 38%,
    color-mix(in srgb, var(--page-bg-color) 55%, transparent) 72%,
    var(--page-bg-color) 100%
  );
}

.hero-media {
  position: absolute;
  inset: 0;
  will-change: transform;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 46%,
    rgba(0, 0, 0, 0.88) 60%,
    rgba(0, 0, 0, 0.58) 74%,
    rgba(0, 0, 0, 0.28) 86%,
    rgba(0, 0, 0, 0.08) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 46%,
    rgba(0, 0, 0, 0.88) 60%,
    rgba(0, 0, 0, 0.58) 74%,
    rgba(0, 0, 0, 0.28) 86%,
    rgba(0, 0, 0, 0.08) 94%,
    transparent 100%
  );
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 58%;
  transform: scale(1.08);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(8, 6, 4, 0.96) 0%,
      rgba(13, 10, 6, 0.85) 32%,
      rgba(13, 10, 6, 0.55) 55%,
      rgba(8, 6, 4, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 6, 4, 0.55) 0%,
      transparent 26%,
      rgba(8, 6, 4, 0.18) 62%,
      rgba(8, 6, 4, 0.1) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 44rem;
  padding: 8.5rem var(--space) clamp(6rem, 14vh, 10rem);
  padding-left: max(1.25rem, 8%);
  text-align: left;
  will-change: transform, opacity;
}

.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-sparks span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #f8e6d4 0%, var(--gold-bright) 45%, transparent 100%);
  box-shadow: 0 0 12px rgba(225, 173, 116, 0.8);
  opacity: 0;
  animation: spark-float 7s ease-in-out infinite;
}

.hero-sparks span:nth-child(1) {
  top: 22%;
  left: 68%;
  animation-delay: 0s;
}

.hero-sparks span:nth-child(2) {
  top: 34%;
  left: 82%;
  width: 3px;
  height: 3px;
  animation-delay: -1.4s;
  animation-duration: 9s;
}

.hero-sparks span:nth-child(3) {
  top: 48%;
  left: 74%;
  animation-delay: -2.8s;
  animation-duration: 8s;
}

.hero-sparks span:nth-child(4) {
  top: 28%;
  left: 56%;
  width: 5px;
  height: 5px;
  animation-delay: -4s;
}

.hero-sparks span:nth-child(5) {
  top: 40%;
  left: 90%;
  animation-delay: -5.2s;
  animation-duration: 10s;
}

.hero-sparks span:nth-child(6) {
  top: 18%;
  left: 78%;
  width: 3px;
  height: 3px;
  animation-delay: -3.2s;
  animation-duration: 6.5s;
}

.hero-content .eyebrow,
.hero-content h1 span,
.hero-content .lede,
.hero-content .cta-row {
  opacity: 0;
  animation: slide-down-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .eyebrow {
  animation: slide-down-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) both,
    hero-shimmer 4s ease-in-out 1.2s infinite alternate;
  animation-delay: 0.18s, 1.38s;
}

.hero-content h1 .line-white {
  animation-delay: 0.34s;
}

.hero-content h1 .line-gold {
  animation: slide-down-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) both,
    gold-glow 3.2s ease-in-out 1s infinite alternate;
  animation-delay: 0.48s, 1.48s;
}

.hero-content .lede {
  animation-delay: 0.62s;
}

.hero-content .cta-row {
  animation-delay: 0.76s;
}

.hero-content .hours-live {
  opacity: 0;
  animation: slide-down-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.9s;
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-size: var(--eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.section .eyebrow,
.contact-inner .eyebrow,
.hero-content .eyebrow {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-hero);
  font-weight: 800;
  width: 100%;
  max-width: none;
}

.hero h1 .line-white {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: clamp(3.5rem, 13vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero h1 .line-gold {
  display: block;
  white-space: nowrap;
  font-size: clamp(2.8rem, 7.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.line-white {
  color: var(--champagne);
}

.line-gold {
  color: var(--gold-text);
  text-shadow: 0 0 40px rgba(201, 147, 66, 0.35);
}

.hero-title-dot {
  padding: 0 0.14em;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1;
  opacity: 0.88;
}

.hero-zh {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lede {
  margin: 0 0 1.85rem;
  font-weight: 400;
  color: rgba(245, 230, 200, 0.85);
  max-width: 40ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hours-live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
  color: rgba(245, 230, 200, 0.82);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hours-live--card {
  display: flex;
  margin: 0 0 0.65rem;
  color: var(--card-text);
}

.hours-live.is-open .hours-live__dot {
  background: #7dce7a;
  box-shadow: 0 0 0 4px rgba(125, 206, 122, 0.18);
}

.hours-live.is-closing .hours-live__dot {
  background: var(--gold-text);
  box-shadow: 0 0 0 4px rgba(225, 173, 116, 0.2);
}

.hours-live.is-closed .hours-live__dot {
  background: #c97373;
  box-shadow: 0 0 0 4px rgba(201, 115, 115, 0.18);
}

.hours-live__dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--gold-text);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 230, 200, 0.72);
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 1.6rem;
  background: linear-gradient(to bottom, var(--gold-text), transparent);
  animation: scroll-nudge 1.8s ease-in-out infinite;
}

/* Sections */
.section {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7rem) var(--space);
  text-align: left;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: var(--heading-size);
  max-width: 16ch;
  color: var(--section-heading);
  transition: color 0.9s ease;
}

.section-copy p,
.section-intro p {
  margin: 0;
  color: var(--page-muted);
  max-width: 42ch;
  transition: color 0.9s ease;
}

.section-copy p + p {
  margin-top: 1rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.about-pills li {
  padding: 0.38rem 0.8rem;
  border: 1px solid rgba(225, 173, 116, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--page-fg);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(0.7rem) scale(0.92);
}

.section-copy.is-visible .about-pills li {
  animation: pill-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-copy.is-visible .about-pills li:nth-child(1) {
  animation-delay: 0.28s;
}

.section-copy.is-visible .about-pills li:nth-child(2) {
  animation-delay: 0.4s;
}

.section-copy.is-visible .about-pills li:nth-child(3) {
  animation-delay: 0.52s;
}

.section-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: var(--section-shadow), 0 0 0 1px var(--section-border);
  clip-path: inset(3% 2% 3% 2% round var(--radius-image));
  transition:
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-visual.is-visible {
  clip-path: inset(0 round var(--radius-image));
}

.section-visual.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--section-shadow), 0 0 0 1px rgba(196, 137, 92, 0.35),
    0 20px 40px rgba(0, 0, 0, 0.2);
}

.section-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.section-visual.is-visible:hover::after {
  transform: translateX(120%);
}

.section-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-visual.is-visible img {
  transform: scale(1);
}

.inside {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-top: clamp(1.25rem, 3vw, 2rem);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.inside .section-intro {
  max-width: none;
}

.inside .section-intro h2 {
  max-width: 22ch;
}

.inside .section-intro p {
  max-width: 52ch;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.7rem, 1.8vw, 1.35rem);
}

.inside-card {
  --img-x: 50%;
  --img-y: 50%;
  --img-scale: 1;
  --img-fit: cover;
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: var(--section-shadow), 0 0 0 1px var(--section-border);
  background: var(--card-bg);
}

.inside-card-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pinch-zoom;
}

.inside-card-track.is-dragging {
  cursor: grabbing;
}

.inside-card-track::-webkit-scrollbar {
  display: none;
}

.inside-card-track:focus {
  outline: none;
}

.inside-card-track:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: -2px;
}

.inside-card-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.inside-card-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--img-fit);
  object-position: var(--img-x) var(--img-y);
  transform: scale(var(--img-scale));
  transform-origin: var(--img-x) var(--img-y);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.inside-card-slide--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--card-bg) 88%, #000),
      var(--card-bg)
    );
  color: var(--card-section-label);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.inside-card-slide--placeholder span {
  padding: 0.45rem 0.75rem;
  border: 1px dashed color-mix(in srgb, var(--card-section-label) 45%, transparent);
  border-radius: 999px;
}

.inside-card--grill {
  --img-x: 50%;
  --img-y: 50%;
  --img-scale: 1;
}

.inside-card--hotpot {
  --img-x: 50%;
  --img-y: 50%;
  --img-scale: 1;
  --img-fit: cover;
}

.inside-card--space {
  --img-x: 50%;
  --img-y: 50%;
  --img-scale: 1;
}

.inside-card--space .inside-card-slide--interior img {
  object-position: 50% 60%;
}

.inside-card--space .inside-card-slide--storefront img {
  object-position: 50% 45%;
}

.inside-card--bar {
  --img-x: 50%;
  --img-y: 50%;
  --img-scale: 1;
  --img-fit: cover;
}

.inside-card.is-scrollable::before,
.inside-card.is-scrollable::after {
  display: none;
}

.inside-card-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  padding: 0.25rem 0.15rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.75rem, 7vw, 3.75rem);
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  text-shadow:
    0 1px 12px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(0, 0, 0, 0.45),
    0 0 8px rgba(255, 255, 255, 0.25);
  transition:
    opacity 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
}

.inside-card-arrow--prev {
  left: 0.35rem;
}

.inside-card-arrow--next {
  right: 0.35rem;
}

.inside-card.is-scrollable:hover .inside-card-arrow,
.inside-card.is-scrollable:focus-within .inside-card-arrow {
  opacity: 1;
  pointer-events: auto;
}

.inside-card.is-dragging .inside-card-arrow {
  opacity: 0;
  pointer-events: none;
}

.inside-card-arrow:hover,
.inside-card-arrow:focus-visible {
  color: var(--gold-pale);
  background: transparent;
  outline: none;
  opacity: 1;
  text-shadow:
    0 1px 14px rgba(0, 0, 0, 0.8),
    0 0 28px rgba(225, 173, 116, 0.45);
}

.inside-card-dots {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: flex;
  gap: 0.38rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(8, 6, 4, 0.45);
  pointer-events: none;
}

.inside-card-dots span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transition:
    background-color 0.22s ease,
    transform 0.22s ease;
}

.inside-card-dots span.is-active {
  background: var(--gold-bright);
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .inside-card figcaption {
    letter-spacing: 0.08em;
    padding: 1.6rem 0.7rem 0.55rem;
  }

  .inside-card-dots {
    top: 0.5rem;
    right: 0.5rem;
  }

  .inside-card-arrow {
    font-size: clamp(2.35rem, 9vw, 3rem);
  }
}

.inside-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.4rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.82), transparent);
  color: #faf8f4;
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.about {
  position: relative;
  z-index: 2;
  align-items: center;
  padding-top: clamp(5rem, 11vw, 8rem);
  padding-bottom: clamp(5rem, 11vw, 8rem);
  gap: clamp(2rem, 5vw, 3.5rem);
}

.about h2,
.about .about-headline {
  max-width: none;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.about .section-copy > p:not(.eyebrow) {
  max-width: 48ch;
}

.about .about-pills {
  margin-top: 1.65rem;
}

@media (min-width: 860px) {
  .about {
    grid-template-columns: 1fr 1.15fr;
  }
}

.section-intro {
  max-width: 44rem;
}

.menu .section-intro {
  max-width: none;
  width: 100%;
}

.menu {
  gap: clamp(1.25rem, 3vw, 2rem);
}

.menu-pdfs {
  width: 100%;
  display: grid;
  gap: 2rem;
}

.menu-pdfs .btn {
  justify-self: center;
}

@media (min-width: 800px) {
  .menu-pdfs {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }
}

.btn-outline-brown {
  background: transparent;
  border-color: var(--outline-border);
  color: var(--outline-fg);
}

.btn-outline-brown:hover,
.btn-outline-brown:focus-visible {
  border-color: var(--gold-bright);
  background: rgba(196, 137, 92, 0.15);
  color: var(--page-fg);
}

.price-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
  }
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 2.4vw, 2.15rem) clamp(1.45rem, 2.8vw, 2.4rem) clamp(1.6rem, 2.6vw, 2.25rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-image);
  box-shadow: var(--section-shadow);
  color: var(--card-text);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.9s ease,
    color 0.9s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-text), transparent);
}

.price-card.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--section-shadow), 0 16px 36px rgba(0, 0, 0, 0.18);
  border-color: rgba(196, 137, 92, 0.35);
}

.price-card-head {
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--card-divider);
}

.price-card-head h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.24rem, 2.1vw, 1.42rem);
  font-weight: 700;
  color: var(--card-head-fg);
}

.price-card-head p,
.price-card-time {
  margin: 0;
  font-size: clamp(1.14rem, 1.8vw, 1.24rem);
  color: var(--card-head-fg);
  font-weight: 600;
}

.price-card--featured {
  border-color: rgba(225, 173, 116, 0.32);
  box-shadow: var(--section-shadow), 0 0 0 1px rgba(225, 173, 116, 0.08);
}

.price-card--featured .price-card-head {
  padding-right: 7.5rem;
}

.price-card-badge {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-text));
  color: var(--ink);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-block + .price-block {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--card-divider);
}

.price-block h4 {
  margin: 0 0 0.65rem;
  font-size: var(--info-title-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-section-label);
}

.price-block dl {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.price-block dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.price-block dt {
  font-size: clamp(1.14rem, 1.8vw, 1.24rem);
  color: var(--card-price-label);
}

.price-block dd {
  margin: 0;
  font-size: clamp(1.14rem, 1.8vw, 1.24rem);
  font-weight: 700;
  color: var(--card-price-value);
  transition: transform 0.25s ease, color 0.25s ease;
}

.price-block dl > div:hover dd {
  transform: scale(1.06);
  color: var(--card-price-value);
}

/* Contact */
.contact {
  padding: 0 var(--space) clamp(4rem, 9vw, 6.5rem);
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.4rem, 4vw, 3rem);
  background: var(--card-bg);
  color: var(--card-text);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-image);
  box-shadow: var(--section-shadow);
  text-align: left;
  transition:
    background 0.9s ease,
    color 0.9s ease,
    border-color 0.9s ease,
    box-shadow 0.9s ease;
}

.contact h2 {
  margin: 0 0 0.85rem;
  font-size: var(--heading-size);
  max-width: 15ch;
  color: var(--section-heading);
}

.contact-details h3 {
  margin: 0 0 0.55rem;
  font-size: var(--info-title-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-section-label);
}

.contact-lede {
  margin: 0 0 2rem;
  color: var(--card-muted);
  max-width: 38ch;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .contact-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.contact-details p {
  margin: 0;
  font-size: var(--info-body-size);
  color: var(--card-muted);
  line-height: var(--line-height-body);
}

.contact-details .hours-live--card {
  font-size: var(--info-body-size);
  margin-bottom: 0.45rem;
}

.hours-regular {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--info-body-size);
  color: var(--card-muted);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--card-price-value);
}

.hours-note {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: var(--info-body-size);
  color: var(--card-muted);
}

.contact-cta .btn-outline {
  border-color: var(--outline-border);
  color: var(--outline-fg);
}

.contact-cta .btn-outline:hover,
.contact-cta .btn-outline:focus-visible {
  border-color: var(--gold-bright);
  background: rgba(196, 137, 92, 0.12);
  color: var(--page-fg);
}

.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem var(--space) 2.25rem;
  border-top: 1px solid var(--footer-border);
  color: var(--page-muted);
  transition:
    color 0.9s ease,
    border-color 0.9s ease;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--logo-color);
  text-decoration: none;
}

.footer-mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  width: 1.85rem;
  aspect-ratio: 1;
  background-color: var(--logo-color);
  -webkit-mask-image: url("assets/logo-mark-gold.png");
  mask-image: url("assets/logo-mark-gold.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  line-height: 1;
}

.footer-en {
  font-size: var(--text-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--logo-color);
}

.footer-zh {
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--logo-color);
}

.footer-copy {
  margin: 0;
}

/* Motion */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-pale));
  pointer-events: none;
}

.scroll-embers {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.scroll-embers span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5e0cc 0%, var(--gold-text) 46%, transparent 72%);
  opacity: 0.12;
  filter: blur(0.4px);
  transform: translate3d(0, calc(var(--scroll-p, 0) * -180px), 0);
}

.scroll-embers span:nth-child(1) {
  top: 22%;
  left: 8%;
  width: 4px;
  height: 4px;
}

.scroll-embers span:nth-child(2) {
  top: 48%;
  left: 92%;
  width: 6px;
  height: 6px;
  transform: translate3d(0, calc(var(--scroll-p, 0) * -260px), 0);
}

.scroll-embers span:nth-child(3) {
  top: 70%;
  left: 14%;
  transform: translate3d(0, calc(var(--scroll-p, 0) * -140px), 0);
}

.scroll-embers span:nth-child(4) {
  top: 34%;
  left: 78%;
  width: 3px;
  height: 3px;
  transform: translate3d(0, calc(var(--scroll-p, 0) * -320px), 0);
}

.scroll-embers span:nth-child(5) {
  top: 86%;
  left: 56%;
  transform: translate3d(0, calc(var(--scroll-p, 0) * -200px), 0);
}

.section-line {
  display: block;
  width: 0;
  height: 3px;
  margin: 0.85rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.section-line--light {
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-bright));
}

.section-intro.is-visible .section-line,
.contact-inner.is-visible .section-line,
.section-copy.is-visible .section-line {
  width: clamp(3rem, 12vw, 5.5rem);
}

.text-shimmer {
  background: linear-gradient(
    110deg,
    var(--section-heading) 0%,
    var(--section-heading) 42%,
    var(--gold-bright) 50%,
    var(--section-heading) 58%,
    var(--section-heading) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-shimmer .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
}

.reveal-left.is-visible .text-shimmer .word,
.reveal-up.is-visible .text-shimmer .word,
.contact-inner.is-visible .text-shimmer .word {
  animation: word-rise 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-left.is-visible .text-shimmer .word:nth-child(1),
.reveal-up.is-visible .text-shimmer .word:nth-child(1),
.contact-inner.is-visible .text-shimmer .word:nth-child(1) {
  animation-delay: 0.04s;
}

.reveal-left.is-visible .text-shimmer .word:nth-child(2),
.reveal-up.is-visible .text-shimmer .word:nth-child(2),
.contact-inner.is-visible .text-shimmer .word:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal-left.is-visible .text-shimmer .word:nth-child(3),
.reveal-up.is-visible .text-shimmer .word:nth-child(3),
.contact-inner.is-visible .text-shimmer .word:nth-child(3) {
  animation-delay: 0.12s;
}

.reveal-left.is-visible .text-shimmer .word:nth-child(4),
.reveal-up.is-visible .text-shimmer .word:nth-child(4),
.contact-inner.is-visible .text-shimmer .word:nth-child(4) {
  animation-delay: 0.16s;
}

.reveal-left.is-visible .text-shimmer .word:nth-child(5),
.reveal-up.is-visible .text-shimmer .word:nth-child(5),
.contact-inner.is-visible .text-shimmer .word:nth-child(5) {
  animation-delay: 0.2s;
}

.reveal-left.is-visible .text-shimmer .word:nth-child(6),
.reveal-up.is-visible .text-shimmer .word:nth-child(6),
.contact-inner.is-visible .text-shimmer .word:nth-child(6) {
  animation-delay: 0.24s;
}

.reveal-left.is-visible .text-shimmer,
.reveal-up.is-visible .text-shimmer,
.contact-inner.is-visible .text-shimmer {
  animation: text-shimmer 4.5s ease-in-out 0.35s infinite;
}

.contact-inner .text-shimmer {
  background: linear-gradient(
    110deg,
    var(--section-heading) 0%,
    var(--section-heading) 42%,
    var(--gold-pale) 50%,
    var(--section-heading) 58%,
    var(--section-heading) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card.is-visible .price-block dl > div {
  opacity: 0;
  transform: translateX(-0.75rem);
  animation: price-row-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.price-card.is-visible > .price-block:nth-child(2) dl > div:nth-child(1) {
  animation-delay: 0.15s;
}

.price-card.is-visible > .price-block:nth-child(2) dl > div:nth-child(2) {
  animation-delay: 0.22s;
}

.price-card.is-visible > .price-block:nth-child(2) dl > div:nth-child(3) {
  animation-delay: 0.29s;
}

.price-card.is-visible > .price-block:nth-child(3) dl > div:nth-child(1) {
  animation-delay: 0.38s;
}

.price-card.is-visible > .price-block:nth-child(3) dl > div:nth-child(2) {
  animation-delay: 0.45s;
}

.price-card.is-visible > .price-block:nth-child(3) dl > div:nth-child(3) {
  animation-delay: 0.52s;
}

.contact-inner.is-visible {
  animation: contact-glow 4s ease-in-out infinite alternate;
}

.contact-block.is-visible {
  position: relative;
  padding-left: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-block.is-visible::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 3px;
  height: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--gold-pale), var(--gold));
  transform: scaleY(0);
  transform-origin: top center;
  animation: bar-grow 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-block.is-visible:nth-child(2)::before {
  animation-delay: 0.08s;
}

.contact-block.is-visible:nth-child(3)::before {
  animation-delay: 0.16s;
}

.site-footer.is-visible .footer-mark-wrap {
  animation: footer-mark-float 3.5s ease-in-out infinite alternate;
}

.contact-block.is-visible:hover {
  transform: translateY(-2px);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal {
  transform: translateY(-0.7rem);
}

.reveal-left {
  transform: translateX(-1.25rem);
}

.reveal-right {
  transform: translateX(1.25rem);
}

.reveal-up {
  transform: translateY(1rem);
}

.reveal-scale {
  transform: scale(0.97) translateY(0.6rem);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-up.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal:not(.is-visible),
.reveal-left:not(.is-visible),
.reveal-right:not(.is-visible),
.reveal-up:not(.is-visible),
.reveal-scale:not(.is-visible) {
  transition-delay: 0s;
}

.about .section-copy.reveal-left {
  --reveal-delay: 0s;
}

.about .section-visual.reveal-right {
  --reveal-delay: 0.12s;
}

.menu .section-intro.reveal-up {
  --reveal-delay: 0s;
}

.menu .menu-pdfs.reveal-scale {
  --reveal-delay: 0.1s;
}

.price-grid .reveal-left {
  --reveal-delay: 0.05s;
}

.price-grid .reveal-right {
  --reveal-delay: 0.18s;
}

.menu-pdfs.reveal-scale,
.menu .menu-pdfs {
  --reveal-delay: 0.08s;
}

[data-reveal-stagger] .reveal-up:nth-child(1) {
  --reveal-delay: 0s;
}

[data-reveal-stagger] .reveal-up:nth-child(2) {
  --reveal-delay: 0.1s;
}

[data-reveal-stagger] .reveal-up:nth-child(3) {
  --reveal-delay: 0.2s;
}

@keyframes slide-down-bar {
  from {
    opacity: 0;
    transform: translateY(-110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down-in {
  from {
    opacity: 0;
    transform: translateY(-1.65rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, 0.6%, 0);
  }
}

@keyframes hero-shimmer {
  from {
    letter-spacing: 0.16em;
  }
  to {
    letter-spacing: 0.19em;
  }
}

@keyframes gold-glow {
  from {
    text-shadow: 0 0 28px rgba(225, 173, 116, 0.25);
  }
  to {
    text-shadow: 0 0 48px rgba(225, 173, 116, 0.55), 0 0 72px rgba(225, 173, 116, 0.18);
  }
}

@keyframes spark-float {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.6);
  }
  12% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.35;
    transform: translate3d(-12px, -28px, 0) scale(1);
  }
  88% {
    opacity: 0;
  }
}

@keyframes text-shimmer {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
}

@keyframes word-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pill-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes price-row-in {
  from {
    opacity: 0;
    transform: translateX(-0.75rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-glow {
  from {
    box-shadow: var(--section-shadow);
  }
  to {
    box-shadow: var(--section-shadow), 0 0 0 1px rgba(196, 137, 92, 0.22),
      0 0 36px rgba(196, 137, 92, 0.12);
  }
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.86);
    opacity: 0.7;
  }
}

@keyframes scroll-nudge {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.85;
  }
  50% {
    transform: scaleY(0.55);
    opacity: 0.35;
  }
}

@keyframes footer-mark-float {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-4px) rotate(3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  :root {
    --theme-transition: 0.01ms;
  }

  html,
  body,
  html::before,
  html::after {
    transition: none !important;
  }

  .site-header,
  .hero-media img,
  .hero-sparks,
  .hero-content .eyebrow,
  .hero-content h1 span,
  .hero-content .lede,
  .hero-content .cta-row,
  .hero-content .hours-live,
  .hero-scroll,
  .hours-live__dot,
  .scroll-progress,
  .scroll-embers span,
  .text-shimmer,
  .text-shimmer .word,
  .about-pills li,
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-scale,
  .section-visual,
  .section-visual img,
  .section-visual::after,
  .inside-card,
  .inside-card-track,
  .inside-card-slide img,
  .price-card,
  .price-card.is-visible .price-block dl > div,
  .contact-inner,
  .contact-block,
  .contact-block::before,
  .footer-mark-wrap,
  .btn-gold::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .text-shimmer,
  .text-shimmer .word {
    color: var(--section-heading);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none !important;
  }

  .section-visual {
    clip-path: none;
  }

  .scroll-embers {
    display: none;
  }

  .price-block dl > div {
    opacity: 1 !important;
  }

  .contact-block.is-visible {
    padding-left: 0.85rem;
  }

  .section-line {
    width: 4rem;
  }
}
