:root {
  color-scheme: light;
  --ink: #14140f;
  --ink-2: #211f18;
  --olive: #647246;
  --olive-deep: #404b2f;
  --moss: #aab482;
  --champagne: #f6f0e2;
  --paper: #fffaf0;
  --sand: #e7deca;
  --stone: #8a8274;
  --line: rgba(20, 20, 15, 0.13);
  --line-dark: rgba(246, 240, 226, 0.15);
  --shadow: 0 28px 80px rgba(20, 20, 15, 0.14);
  --radius: 8px;
  font-family: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(20, 20, 15, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--champagne);
  color: var(--ink);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--olive);
  color: var(--paper);
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--paper);
  transition: padding 240ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 240, 226, 0.91);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Onest", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand.small {
  font-size: 0.95rem;
  color: var(--paper);
  text-transform: none;
}

.brand-mark {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-emblem {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
}

.brand-emblem img {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
  animation: none;
}

.brand .brand-emblem img {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
  animation: none;
}

.brand.small .brand-emblem {
  width: 28px;
  height: 28px;
}

.brand.small .brand-emblem img {
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.site-header:not(.is-scrolled) .brand-emblem img,
.section-dark .brand-emblem img {
  filter:
    brightness(1.22)
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 10px rgba(246, 240, 226, 0.12));
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 38px);
  color: currentColor;
  font-size: 0.91rem;
  font-weight: 600;
  opacity: 0.76;
}

.nav-links a,
.button,
.header-action,
.restaurant-card,
.chip,
.table-button,
.catalog-grid article,
.scenario-card {
  transition:
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-action:hover,
.header-action:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: var(--olive);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: end;
  min-height: 100svh;
  padding: clamp(124px, 12vw, 164px) clamp(18px, 4vw, 56px) clamp(28px, 5vw, 70px);
  overflow: hidden;
}

.hero::before,
.business::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 240, 226, 0.06) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(0deg, rgba(246, 240, 226, 0.04) 1px, transparent 1px) 0 0 / 86px 86px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.hero-copy,
.section-heading,
.business-copy,
.vision > div:first-child {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.micro,
.field-label {
  margin: 0;
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .micro {
  color: #a9a18f;
}

h1,
h2,
h3 {
  font-family: "Onest", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 24px 0;
  max-width: 10.4ch;
  font-size: 6.85rem;
  line-height: 0.9;
}

h2 {
  margin: 12px 0 0;
  font-size: 4.25rem;
  line-height: 0.98;
}

h3 {
  margin: 0;
}

.lede,
.section-heading p,
.business-copy p,
.vision p,
.final-cta p {
  color: #4a453b;
  font-size: 1.15rem;
  line-height: 1.58;
}

.section-dark .lede,
.section-dark .business-copy p,
.section-dark.final-cta p {
  color: #c7beaa;
}

.hero-actions,
.chip-row,
.legend,
.business-tags,
.vision-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-ghost-dark {
  border-color: rgba(246, 240, 226, 0.3);
  background: rgba(246, 240, 226, 0.04);
  color: var(--paper);
}

.button-small {
  min-height: 42px;
  width: 100%;
  font-size: 0.88rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 4vw, 52px);
}

.hero-proof span,
.business-tags span,
.vision-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(246, 240, 226, 0.18);
  border-radius: 999px;
  color: #cfc7b5;
  font-size: 0.83rem;
  font-weight: 600;
}

.hero-stage {
  position: relative;
  min-width: 0;
}

.hero-visual {
  position: relative;
  min-height: clamp(440px, 55vw, 730px);
  overflow: hidden;
  border: 1px solid rgba(246, 240, 226, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 255, 255, 0.86), transparent 42%),
    linear-gradient(140deg, #f7f0e2, #e5dccb);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(20, 20, 15, 0.08));
}

.hero-visual img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(1280px, 130%);
  max-width: none;
  transform: translate(-52%, -49%);
  filter: drop-shadow(0 34px 44px rgba(70, 64, 48, 0.16));
  animation: roomDrift 9s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  left: clamp(16px, 4vw, 42px);
  bottom: clamp(16px, 3.4vw, 42px);
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(330px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid rgba(20, 20, 15, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25);
}

.hero-card strong {
  font-family: "Onest", sans-serif;
  font-size: 2.35rem;
  letter-spacing: 0;
}

.hero-card span:last-of-type {
  color: var(--stone);
}

.live-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(246, 240, 226, 0.18);
  border-radius: 999px;
  background: rgba(20, 20, 15, 0.64);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 6px rgba(170, 180, 130, 0.14);
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.98fr);
  gap: clamp(32px, 5vw, 92px);
  align-items: start;
  padding: clamp(46px, 5vw, 82px) clamp(18px, 4vw, 56px) clamp(64px, 7vw, 108px);
  border-bottom: 1px solid var(--line);
}

.promise .number {
  display: block;
  color: rgba(20, 20, 15, 0.18);
  font-family: "Onest", sans-serif;
  font-size: 7.4rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.78;
}

.promise p {
  margin: 0;
  color: #4a453b;
  font-size: 1.34rem;
  line-height: 1.42;
}

.booking-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(20, 20, 15, 0.12);
  box-shadow: 0 28px 88px rgba(20, 20, 15, 0.1);
}

.compare-column {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 2vw, 26px);
  background: rgba(255, 250, 240, 0.72);
}

.compare-column h3 {
  margin: 2px 0 0;
  font-size: 1.42rem;
  line-height: 1.04;
}

.compare-note {
  max-width: 39ch;
  color: #6d6558;
  font-size: 0.95rem;
  line-height: 1.45;
}

.booking-compare ul {
  display: grid;
  gap: 1px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(20, 20, 15, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(20, 20, 15, 0.07);
}

.booking-compare li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  background: rgba(255, 250, 240, 0.68);
  color: #4a453b;
  font-size: 0.92rem;
  line-height: 1.2;
}

.compare-muted b {
  color: #7e7769;
}

.compare-plate {
  background:
    radial-gradient(circle at 92% 9%, rgba(170, 180, 130, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(244, 240, 224, 0.92));
}

.compare-plate .micro,
.compare-plate h3 {
  color: var(--olive-deep);
}

.compare-plate li {
  background: rgba(255, 250, 240, 0.82);
}

.booking-compare span {
  min-width: 0;
}

.booking-compare b {
  color: var(--olive-deep);
  font-weight: 900;
}

.compare-muted b {
  color: #7e7769;
}

.booking-shell,
.journey,
.scenarios,
.catalog,
.business,
.vision,
.final-cta {
  position: relative;
  padding: clamp(42px, 5vw, 76px) clamp(18px, 4vw, 56px) clamp(64px, 8vw, 120px);
}

.section-heading {
  margin: 0 auto clamp(30px, 5vw, 64px);
  text-align: center;
}

.section-heading.compact {
  margin-inline: 0;
  text-align: left;
}

.booking-app {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: clamp(18px, 2.3vw, 32px);
  max-width: 1420px;
  margin: 0 auto;
}

.booking-panel,
.floor-shell,
.journey-grid article,
.scenario-card,
.catalog-grid article,
.ai-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.booking-panel {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(18px, 2.3vw, 28px);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.panel-head strong {
  color: var(--olive-deep);
  font-family: "Onest", sans-serif;
  font-size: 1.05rem;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.restaurant-list {
  display: grid;
  gap: 8px;
}

.restaurant-card,
.chip,
.stepper button,
.table-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f2e6;
  color: var(--ink);
  cursor: pointer;
}

.restaurant-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  padding: 14px;
  text-align: left;
}

.restaurant-card:hover,
.restaurant-card:focus-visible,
.chip:hover,
.chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(100, 114, 70, 0.45);
}

.restaurant-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.restaurant-card span {
  color: var(--stone);
  font-size: 0.86rem;
}

.restaurant-card.is-active,
.chip.is-active {
  border-color: rgba(100, 114, 70, 0.66);
  background: #eef0df;
  box-shadow: inset 0 0 0 1px rgba(100, 114, 70, 0.16);
}

.chip {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.88rem;
  font-weight: 800;
}

.stepper {
  display: grid;
  grid-template-columns: 38px 44px 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f2e6;
}

.stepper button {
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 1.15rem;
}

.stepper strong {
  text-align: center;
}

.booking-summary {
  display: grid;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.booking-summary h3 {
  font-size: 2.8rem;
  line-height: 0.9;
}

.booking-summary dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.booking-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.booking-summary dt {
  color: var(--stone);
}

.booking-summary dd {
  margin: 0;
  font-weight: 800;
}

.success-note {
  margin: 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #e8ecd5;
  color: var(--olive-deep);
  font-weight: 700;
  line-height: 1.35;
}

.floor-shell {
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 34px 100px rgba(20, 20, 15, 0.16);
}

.floor-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--line-dark);
}

.floor-toolbar h3 {
  margin-top: 6px;
  font-size: 2.45rem;
  line-height: 0.95;
}

.legend {
  justify-content: flex-end;
  color: #c3baa8;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.legend-dot.available {
  background: var(--paper);
}

.legend-dot.busy {
  background: #827b6f;
}

.legend-dot.selected {
  background: var(--olive);
}

.floor-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #060605;
}

.floor-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 20, 15, 0), rgba(20, 20, 15, 0.32));
}

.floor-map img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(1200px, 152%);
  max-width: none;
  opacity: 0.92;
  transform: translate(-50%, -50%);
  transition: opacity 250ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.table-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.table-button {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(34px, 4vw, 48px);
  height: clamp(34px, 4vw, 48px);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.table-button:hover,
.table-button:focus-visible {
  transform: translate(-50%, -54%);
}

.table-button.is-busy {
  background: #81796b;
  color: #eee8da;
  cursor: not-allowed;
}

.table-button.is-selected {
  background: var(--olive);
  color: var(--paper);
  outline: 8px solid rgba(100, 114, 70, 0.22);
}

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

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1420px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.journey-grid article {
  display: grid;
  gap: 18px;
  min-height: 270px;
  padding: clamp(22px, 2.5vw, 34px);
  border: 0;
}

.journey-grid span {
  color: rgba(20, 20, 15, 0.2);
  font-family: "Onest", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.78;
}

.journey-grid h3 {
  margin-top: auto;
  font-size: 1.7rem;
  line-height: 1.05;
}

.journey-grid p {
  margin: 0;
  color: var(--stone);
  line-height: 1.55;
}

.scenarios,
.catalog,
.vision {
  border-top: 1px solid var(--line);
}

.scenario-strip,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  max-width: 1420px;
  margin: 0 auto;
}

.scenario-card,
.catalog-grid article {
  overflow: hidden;
}

.scenario-card:hover,
.catalog-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.scenario-card img,
.catalog-grid img {
  width: 100%;
  height: clamp(230px, 27vw, 390px);
  object-fit: cover;
}

.scenario-card div,
.catalog-grid article div {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2vw, 24px);
}

.scenario-card h3,
.catalog-grid h3 {
  font-size: 1.75rem;
  line-height: 1.02;
}

.scenario-card p,
.catalog-grid p {
  margin: 0;
  color: var(--stone);
  line-height: 1.5;
}

.catalog {
  background: var(--sand);
}

.catalog-grid a {
  width: max-content;
  margin-top: 8px;
  color: var(--olive-deep);
  font-weight: 800;
}

.business {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
  overflow: hidden;
}

.business-tags {
  margin-top: 28px;
}

.operator-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(15px, 2vw, 24px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #201e17;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.operator-top,
.operator-list div,
.analytics-head,
.zone-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.operator-top {
  color: #a9a18f;
  font-size: 0.76rem;
  font-weight: 700;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.operator-insight,
.operator-metric,
.operator-chart,
.operator-heatmap {
  background:
    linear-gradient(180deg, rgba(246, 240, 226, 0.055), rgba(246, 240, 226, 0.025)),
    #181711;
}

.operator-insight {
  position: relative;
  display: grid;
  gap: 7px;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(170, 180, 130, 0.2);
  border-radius: var(--radius);
}

.operator-insight::after {
  content: "";
  position: absolute;
  inset: -35% -12% auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 180, 130, 0.24), transparent 64%);
}

.operator-insight strong,
.analytics-head strong {
  position: relative;
  z-index: 1;
  color: var(--paper);
  font-family: "Onest", sans-serif;
  letter-spacing: 0;
}

.operator-insight strong {
  font-size: 1rem;
  line-height: 1.1;
}

.operator-insight p {
  position: relative;
  z-index: 1;
  max-width: 58ch;
  margin: 0;
  color: #bdb4a1;
  font-size: 0.82rem;
  line-height: 1.36;
}

.operator-metric {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 120px;
  padding: clamp(13px, 1.6vw, 19px);
  transition: background 220ms ease, transform 220ms ease;
}

.operator-metric:hover {
  background:
    radial-gradient(circle at 84% 16%, rgba(170, 180, 130, 0.16), transparent 42%),
    #1d1b14;
  transform: translateY(-2px);
}

.operator-metric small {
  color: #958d7e;
  font-size: 0.72rem;
  line-height: 1.3;
}

.operator-grid strong {
  font-family: "Onest", sans-serif;
  font-size: 2.24rem;
  letter-spacing: 0;
  line-height: 0.84;
}

.operator-grid span,
.operator-list span {
  color: #bdb4a1;
}

.operator-analytics {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 10px;
}

.operator-chart,
.operator-heatmap {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.slot-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 120px;
  padding-top: 8px;
}

.slot-bars span {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  min-height: 120px;
  color: #a9a18f;
  font-size: 0.7rem;
  font-weight: 800;
}

.slot-bars span::before {
  content: "";
  position: absolute;
  inset: auto 11% 22px;
  height: var(--value);
  min-height: 14px;
  border: 1px solid rgba(246, 240, 226, 0.08);
  border-radius: 8px 8px 3px 3px;
  background:
    linear-gradient(180deg, rgba(201, 214, 161, 0.92), rgba(100, 114, 70, 0.95));
  box-shadow: 0 14px 34px rgba(100, 114, 70, 0.18);
  transform-origin: bottom;
  animation: barGrow 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  transition: filter 220ms ease, transform 220ms ease;
}

.slot-bars span:nth-child(2)::before { animation-delay: 70ms; }
.slot-bars span:nth-child(3)::before { animation-delay: 140ms; }
.slot-bars span:nth-child(4)::before { animation-delay: 210ms; }
.slot-bars span:nth-child(5)::before { animation-delay: 280ms; }

.slot-bars b {
  position: relative;
  z-index: 1;
  color: #bdb4a1;
  font-size: inherit;
}

.slot-bars span:hover::before {
  filter: brightness(1.12);
  transform: scaleY(1.04);
}

.zone-row {
  min-height: 29px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(246, 240, 226, 0.1);
  color: #bdb4a1;
  font-size: 0.8rem;
}

.zone-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.zone-row b {
  display: inline-flex;
  min-width: 46px;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(170, 180, 130, 0.2);
  border-radius: 999px;
  background: rgba(170, 180, 130, 0.1);
  color: #d8e3ac;
  font-size: 0.74rem;
}

.operator-list {
  display: grid;
  gap: 8px;
}

.operator-list div {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(246, 240, 226, 0.04);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.operator-list div:hover {
  border-color: rgba(170, 180, 130, 0.28);
  background: rgba(246, 240, 226, 0.07);
  transform: translateX(4px);
}

.operator-list strong {
  color: var(--paper);
  font-size: 0.82rem;
}

@keyframes barGrow {
  from {
    opacity: 0;
    transform: scaleY(0.28);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.integration-strip {
  display: flex;
  gap: clamp(12px, 1.8vw, 22px);
  overflow: hidden;
  padding: 18px clamp(18px, 4vw, 56px);
  border-block: 1px solid var(--line);
  background: rgba(246, 240, 226, 0.58);
  color: rgba(54, 73, 42, 0.82);
  font-family: "Onest", sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.integration-strip span {
  flex: none;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(78, 94, 54, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.46);
  box-shadow: 0 14px 40px rgba(36, 34, 25, 0.06);
  animation: marquee 24s linear infinite;
}

.vision {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #ece5d6;
}

.vision-chips span {
  border-color: rgba(20, 20, 15, 0.14);
  color: #4a453b;
}

.ai-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: var(--shadow);
}

.ai-card p {
  margin: 0;
  color: var(--ink);
  font-family: "Onest", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0;
  line-height: 1.18;
}

.ai-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preorder-card {
  position: relative;
  overflow: hidden;
  gap: 18px;
  padding: clamp(24px, 2.8vw, 36px);
  border: 2px solid rgba(20, 20, 15, 0.82);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(20, 20, 15, 0.055) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(180deg, #fffdf5, #f2ead9);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 42%,
    96.4% 50%,
    100% 58%,
    100% 100%,
    0 100%,
    0 58%,
    3.6% 50%,
    0 42%
  );
  filter: drop-shadow(0 28px 70px rgba(20, 20, 15, 0.13));
  isolation: isolate;
}

.preorder-card::before,
.preorder-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(20, 20, 15, 0.42);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 40%,
    96% 50%,
    100% 60%,
    100% 100%,
    0 100%,
    0 60%,
    4% 50%,
    0 40%
  );
}

.preorder-card p {
  padding: 22px 0;
  border-block: 1px solid rgba(20, 20, 15, 0.12);
  font-size: 1.55rem;
  line-height: 1.42;
}

.ticket-head,
.ticket-main,
.ticket-total,
.ticket-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ticket-head {
  padding: 0 10px 14px;
  border-bottom: 2px solid rgba(20, 20, 15, 0.74);
  color: #6d6558;
}

.ticket-head strong,
.ticket-main,
.ticket-total strong {
  font-family: "Onest", sans-serif;
  letter-spacing: 0;
}

.ticket-main {
  position: relative;
  display: grid;
  justify-content: center;
  justify-items: center;
  min-height: 134px;
  margin: 2px 20px 0;
  padding: 24px 26px 30px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.82), rgba(237, 228, 210, 0.72));
  clip-path: polygon(
    0 0,
    100% 0,
    100% 38%,
    97.2% 50%,
    100% 62%,
    100% 100%,
    0 100%,
    0 62%,
    2.8% 50%,
    0 38%
  );
  color: var(--ink);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  box-shadow:
    0 0 0 6px rgba(255, 250, 240, 0.82),
    0 0 0 8px rgba(20, 20, 15, 0.74),
    0 20px 36px rgba(20, 20, 15, 0.08);
}

.ticket-main::before,
.ticket-main::after {
  content: none;
}

.ticket-main span {
  display: block;
  font-size: 3.6rem;
}

.ticket-main span::after {
  content: "";
  display: block;
  width: min(250px, 70%);
  height: 12px;
  margin: 18px auto 0;
  background-image: radial-gradient(circle, rgba(20, 20, 15, 0.8) 0 2px, transparent 2px);
  background-size: 16px 12px;
  background-repeat: repeat-x;
}

.ticket-main b {
  color: var(--olive-deep);
  font-size: 1.45rem;
}

.ticket-hole {
  display: none;
}

.hole-top-left {
  left: 34px;
  top: 30px;
}

.hole-top-right {
  right: 34px;
  top: 30px;
}

.hole-bottom-left {
  left: 42px;
  bottom: 34px;
}

.hole-bottom-right {
  right: 42px;
  bottom: 34px;
}

.ticket-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20, 20, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(20, 20, 15, 0.08);
}

.ticket-meta div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 13px;
  background: rgba(255, 250, 240, 0.58);
}

.ticket-meta dt,
.ticket-order span,
.ticket-total span {
  color: #8a8274;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.ticket-perforation {
  position: relative;
  height: 1px;
  margin: 4px -2px;
  background-image: linear-gradient(90deg, rgba(20, 20, 15, 0.22) 0 7px, transparent 7px 16px);
  background-size: 16px 1px;
}

.ticket-order {
  display: grid;
  gap: 10px;
}

.ticket-order div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(20, 20, 15, 0.09);
}

.ticket-order div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ticket-order b {
  color: #4a453b;
  text-align: right;
}

.ticket-total {
  padding: 16px 0 0;
  border-top: 1px solid rgba(20, 20, 15, 0.12);
}

.ticket-total strong {
  color: var(--olive-deep);
  font-size: 1.75rem;
}

.ticket-actions {
  justify-content: flex-start;
  padding-top: 2px;
}

.partner-modal {
  width: min(720px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.partner-modal::backdrop {
  background: rgba(10, 10, 7, 0.64);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 240ms ease;
}

.partner-modal.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.partner-modal.is-open::backdrop {
  opacity: 1;
}

.partner-modal.is-closing {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
}

.partner-modal.is-closing::backdrop {
  opacity: 0;
}

.partner-modal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(246, 240, 226, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(170, 180, 130, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(235, 226, 207, 0.96));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
}

.partner-modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 20, 15, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(20, 20, 15, 0.035) 1px, transparent 1px) 0 0 / 54px 54px;
  opacity: 0.65;
}

.partner-modal-copy,
.partner-form {
  position: relative;
  z-index: 1;
}

.partner-modal-copy {
  max-width: 620px;
  margin-bottom: 18px;
}

.partner-modal-copy h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 0.96;
}

.partner-modal-copy p:last-child {
  max-width: 56ch;
  color: #5f574a;
  font-size: 0.96rem;
  line-height: 1.45;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 20, 15, 0.15);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.partner-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.partner-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #5f574a;
  font-size: 0.82rem;
  font-weight: 800;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 15, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.partner-form input {
  min-height: 44px;
  padding: 0 14px;
}

.partner-form textarea {
  min-height: 72px;
  resize: vertical;
  padding: 11px 14px;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: rgba(100, 114, 70, 0.62);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 0 0 4px rgba(100, 114, 70, 0.12);
}

.partner-form-wide {
  grid-column: 1 / -1;
}

.partner-success {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(100, 114, 70, 0.22);
  border-radius: var(--radius);
  background: rgba(238, 240, 223, 0.78);
  color: var(--olive-deep);
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .partner-modal {
    width: min(100vw - 20px, 560px);
  }

  .partner-modal-card {
    padding: 20px 16px 18px;
  }

  .partner-modal-copy {
    margin-bottom: 16px;
    padding-right: 32px;
  }

  .partner-modal-copy h2 {
    max-width: 11ch;
  }

  .partner-form {
    grid-template-columns: 1fr;
  }
}

.final-cta {
  display: grid;
  justify-items: center;
  overflow: hidden;
  text-align: center;
}

.final-cta h2 {
  max-width: 940px;
}

.final-cta p {
  max-width: 680px;
}

.centered {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line-dark);
  color: #a9a18f;
}

.footer strong {
  color: var(--paper);
  font-family: "Onest", sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-transform: lowercase;
}

.footer-brand .brand-emblem {
  width: 38px;
  height: 38px;
}

.footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

section:target [data-reveal] {
  opacity: 1;
  transform: none;
}

.booking-app[data-reveal],
.hero-stage[data-reveal] {
  transition-duration: 520ms;
}

@keyframes roomDrift {
  0%,
  100% {
    transform: translate(-52%, -49%) scale(1);
  }
  50% {
    transform: translate(-51%, -50%) scale(1.018);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-240px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .promise,
  .booking-app,
  .business,
  .vision {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 11ch;
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .promise .number {
    font-size: 5.8rem;
  }

  .operator-grid strong {
    font-size: 2.55rem;
  }

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

  .journey-grid,
  .scenario-strip,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    color: var(--ink);
    background: rgba(246, 240, 226, 0.91);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .nav-links {
    display: none;
  }

  .header-action {
    margin-left: auto;
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .promise p {
    font-size: 1.15rem;
  }

  .journey-grid span {
    font-size: 3.2rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual img {
    width: 910px;
  }

  .field-grid,
  .journey-grid,
  .scenario-strip,
  .catalog-grid,
  .booking-compare,
  .operator-grid,
  .operator-analytics,
  .footer {
    grid-template-columns: 1fr;
  }

  .operator-top,
  .operator-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticket-main {
    min-height: 116px;
    margin-inline: 20px;
    padding: 22px 20px 28px;
  }

  .ticket-main span {
    font-size: 2.85rem;
  }

  .ticket-head {
    padding-inline: 34px;
  }

  .ticket-meta {
    grid-template-columns: 1fr;
  }

  .slot-bars {
    min-height: 128px;
  }

  .slot-bars span {
    min-height: 128px;
  }

  .floor-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .floor-map {
    min-height: 440px;
  }

  .floor-map img {
    width: 860px;
  }

  .footer,
  .footer nav {
    justify-items: start;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .ai-card p {
    font-size: 1.45rem;
  }

  .preorder-card {
    padding: 22px 18px;
  }

  .preorder-card::before,
  .preorder-card::after {
    width: 34px;
    height: 34px;
  }

  .preorder-card::before {
    left: -20px;
  }

  .preorder-card::after {
    right: -20px;
  }

  .ticket-head {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 28px;
  }

  .ticket-main {
    margin-inline: 12px;
    padding-inline: 16px;
  }

  .ticket-main span {
    font-size: 2.3rem;
  }

  .ticket-main b {
    font-size: 1.15rem;
  }

  .ticket-hole {
    width: 17px;
    height: 17px;
    border-width: 2px;
  }

  .hole-top-left {
    left: 24px;
    top: 28px;
  }

  .hole-top-right {
    right: 24px;
    top: 28px;
  }

  .hole-bottom-left {
    left: 28px;
    bottom: 30px;
  }

  .hole-bottom-right {
    right: 28px;
    bottom: 30px;
  }

  .ticket-order div,
  .ticket-total,
  .ticket-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .promise,
  .booking-shell,
  .journey,
  .scenarios,
  .catalog,
  .business,
  .vision,
  .final-cta {
    padding-inline: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 230px 12px 12px;
  }

  .live-badge {
    top: 14px;
    right: 14px;
  }
}

/* Premium v2 refinements */
.booking-shell {
  background:
    radial-gradient(circle at 78% 20%, rgba(100, 114, 70, 0.1), transparent 26%),
    linear-gradient(180deg, var(--champagne), #eee6d6);
}

.booking-app {
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.68fr);
  align-items: stretch;
}

.booking-panel {
  order: 2;
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(16px);
}

.floor-shell {
  order: 1;
  background: #f7f0e1;
  color: var(--ink);
  box-shadow: 0 42px 110px rgba(20, 20, 15, 0.12);
}

.floor-toolbar {
  border-bottom-color: rgba(20, 20, 15, 0.1);
}

.floor-shell .micro,
.floor-shell .legend {
  color: #81796b;
}

.floor-map {
  min-height: 640px;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 252, 242, 0.92), transparent 42%),
    radial-gradient(circle at 58% 46%, rgba(100, 114, 70, 0.12), transparent 35%),
    linear-gradient(138deg, #f8f2e7 0%, #e6decf 100%);
}

.floor-map::after {
  content: none;
}

.floor-map img {
  width: min(1280px, 116%);
  opacity: 0.96;
  filter: drop-shadow(0 34px 42px rgba(70, 64, 48, 0.18));
  transform: translate(-50%, -51%);
}

.floor-caption {
  position: absolute;
  left: clamp(18px, 3vw, 40px);
  bottom: clamp(18px, 3vw, 40px);
  z-index: 3;
  display: grid;
  gap: 10px;
  width: min(310px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(20, 20, 15, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 24px 60px rgba(20, 20, 15, 0.16);
}

.floor-caption strong {
  font-family: "Onest", sans-serif;
  font-size: 2.2rem;
  line-height: 0.95;
}

.floor-caption > span:last-child {
  color: var(--stone);
}

.table-button {
  width: 30px;
  height: 30px;
  border: 0;
  background: rgba(255, 250, 240, 0.92);
  color: #5f584b;
  font-size: 0.76rem;
  box-shadow: 0 8px 22px rgba(60, 53, 38, 0.2);
}

.table-button.is-busy {
  background: rgba(96, 88, 74, 0.5);
  color: rgba(255, 250, 240, 0.86);
}

.table-button.is-selected {
  background: var(--olive-deep);
  color: var(--paper);
  outline: 2px solid rgba(64, 75, 47, 0.34);
  box-shadow:
    0 10px 28px rgba(64, 75, 47, 0.36),
    0 0 0 16px rgba(100, 114, 70, 0.13);
}

.table-button.is-selected::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(64, 75, 47, 0.42);
  border-radius: 50%;
  animation: pulseRing 2.2s ease-out infinite;
}

.journey {
  background:
    linear-gradient(90deg, rgba(20, 20, 15, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    #f3eddf;
}

.journey-premium {
  gap: clamp(14px, 2vw, 22px);
  border: 0;
  background: transparent;
}

.journey-premium .step-card {
  position: relative;
  overflow: hidden;
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  min-height: 360px;
  border: 1px solid rgba(20, 20, 15, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(248, 242, 230, 0.94)),
    var(--paper);
  box-shadow: 0 20px 60px rgba(20, 20, 15, 0.06);
  transform-style: preserve-3d;
  transition:
    opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.journey-premium .step-card > * {
  position: relative;
  z-index: 1;
}

.journey-premium .step-card[data-reveal] {
  transform: translateY(24px);
}

.journey-premium .step-card[data-reveal].is-visible {
  transform:
    perspective(960px)
    rotateX(var(--rx))
    rotateY(var(--ry))
    translateY(var(--lift));
}

.journey-premium .step-card:hover {
  --lift: -7px;
  border-color: rgba(100, 114, 70, 0.32);
  box-shadow:
    0 28px 76px rgba(20, 20, 15, 0.11),
    0 0 0 1px rgba(100, 114, 70, 0.08) inset;
}

.journey-premium .step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(255, 250, 240, 0.7), transparent 32%),
    linear-gradient(180deg, rgba(100, 114, 70, 0.07), transparent 44%);
  transition: opacity 240ms ease;
}

.journey-premium .step-card:hover::after {
  opacity: 1;
}

.journey-premium .step-card.featured {
  background:
    radial-gradient(circle at 74% 18%, rgba(100, 114, 70, 0.22), transparent 34%),
    #fffaf0;
}

.step-visual {
  position: relative;
  height: 128px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 15, 0.08);
  border-radius: var(--radius);
  background: #ece4d4;
  transform: translateZ(26px);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.journey-premium .step-card:hover .step-visual {
  border-color: rgba(100, 114, 70, 0.28);
  background: #f0e7d6;
  box-shadow: 0 18px 40px rgba(20, 20, 15, 0.08);
}

.step-visual span {
  position: absolute;
  display: block;
  --float-base: translate3d(0, 0, 0);
  transform: var(--float-base);
  will-change: transform;
}

.journey-premium .step-card.is-visible .step-visual span {
  animation: floatShape 5.8s ease-in-out infinite;
}

.journey-premium .step-card.is-visible .step-visual span:nth-child(2) {
  animation-delay: -1.4s;
  animation-duration: 6.6s;
}

.journey-premium .step-card.is-visible .step-visual span:nth-child(3) {
  animation-delay: -2.2s;
  animation-duration: 7.1s;
}

.journey-premium .step-card.is-visible .step-visual span:nth-child(4) {
  animation-delay: -3.1s;
  animation-duration: 6.2s;
}

.journey-premium .step-card:hover .step-visual span {
  animation-play-state: paused;
}

.step-search span:nth-child(1) {
  inset: 18px auto auto 18px;
  width: 58%;
  height: 18px;
  border-radius: 999px;
  background: rgba(20, 20, 15, 0.12);
}

.step-search span:nth-child(2) {
  left: 18px;
  bottom: 20px;
  width: 42%;
  height: 50px;
  border-radius: var(--radius);
  background: var(--olive);
}

.step-search span:nth-child(3) {
  right: 18px;
  bottom: 20px;
  width: 34%;
  height: 50px;
  border-radius: var(--radius);
  background: #d7c9ad;
}

.step-room {
  background-image:
    linear-gradient(90deg, rgba(100, 114, 70, 0.22) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(100, 114, 70, 0.16) 0 1px, transparent 1px);
  background-size: 34px 34px;
}

.step-room span {
  width: 38px;
  height: 24px;
  border-radius: 999px;
  background: #fffaf0;
  box-shadow: 0 10px 22px rgba(20, 20, 15, 0.12);
}

.step-room span:nth-child(1) { left: 18%; top: 28%; }
.step-room span:nth-child(2) { left: 52%; top: 22%; background: var(--olive); }
.step-room span:nth-child(3) { left: 35%; top: 62%; }
.step-room span:nth-child(4) { left: 70%; top: 58%; background: #b59366; }

.step-table span:nth-child(1) {
  left: 50%;
  top: 50%;
  width: 82px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive-deep);
  --float-base: translate(-50%, -50%);
  box-shadow: 0 16px 30px rgba(64, 75, 47, 0.28);
}

.step-table span:nth-child(2),
.step-table span:nth-child(3) {
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 35%;
  background: #d7c9ad;
  --float-base: translateY(-50%);
}

.step-table span:nth-child(2) { left: 18%; }
.step-table span:nth-child(3) { right: 18%; }

.step-confirm span:nth-child(1),
.step-confirm span:nth-child(2),
.step-confirm span:nth-child(3) {
  left: 18px;
  right: 18px;
  height: 24px;
  border-radius: 999px;
  background: rgba(20, 20, 15, 0.12);
}

.step-confirm span:nth-child(1) { top: 22px; }
.step-confirm span:nth-child(2) { top: 56px; right: 44px; }
.step-confirm span:nth-child(3) {
  top: 90px;
  right: 82px;
  background: var(--olive);
}

@keyframes floatShape {
  0%,
  100% {
    transform: var(--float-base) translate3d(0, 0, 0) scale(1);
  }

  45% {
    transform: var(--float-base) translate3d(5px, -7px, 0) scale(1.02);
  }

  72% {
    transform: var(--float-base) translate3d(-4px, 4px, 0) scale(0.99);
  }
}

.scenarios {
  background: #171611;
  color: var(--paper);
}

.scenarios .section-heading h2,
.scenarios .section-heading p {
  color: var(--paper);
}

.scenario-strip {
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
}

.scenario-card {
  position: relative;
  min-height: 520px;
  border-color: rgba(246, 240, 226, 0.12);
  background: #0f0f0b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.scenario-card:first-child {
  min-height: 620px;
}

.scenario-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.scenario-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 15, 0.02), rgba(20, 20, 15, 0.78));
}

.scenario-card:hover img {
  transform: scale(1.045);
}

.scenario-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(22px, 3vw, 36px);
}

.scenario-card .micro {
  color: #d8cfbb;
}

.scenario-card h3 {
  color: var(--paper);
  font-size: 2rem;
}

.scenario-card p {
  color: #d8cfbb;
  max-width: 27rem;
}

.catalog-grid article {
  background: #fffaf0;
  box-shadow: 0 18px 56px rgba(20, 20, 15, 0.08);
}

.catalog-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.86), transparent 44%),
    linear-gradient(140deg, #fbf6ea, #e8dfce);
}

.catalog-visual img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 118%;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -52%);
  filter: drop-shadow(0 24px 28px rgba(80, 72, 52, 0.12));
}

@keyframes pulseRing {
  from {
    opacity: 0.72;
    transform: scale(0.82);
  }
  to {
    opacity: 0;
    transform: scale(1.24);
  }
}

@media (max-width: 1080px) {
  .booking-app {
    grid-template-columns: 1fr;
  }

  .booking-panel,
  .floor-shell {
    order: initial;
  }

  .scenario-strip {
    grid-template-columns: 1fr 1fr;
  }

  .scenario-card,
  .scenario-card:first-child {
    min-height: 460px;
  }

  .scenario-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .floor-map {
    min-height: 520px;
  }

  .floor-map img {
    width: 980px;
  }

  .floor-caption {
    padding: 18px;
  }

  .journey-premium .step-card {
    min-height: 300px;
  }

  .scenario-card,
  .scenario-card:first-child {
    min-height: 430px;
  }

  .scenario-card:first-child {
    grid-column: auto;
  }

  .scenario-strip {
    grid-template-columns: 1fr;
  }
}

.catalog {
  padding-top: 42px;
}

.catalog .section-heading {
  margin-bottom: 26px;
}

.catalog .section-heading h2 {
  max-width: 780px;
  font-size: 3.65rem;
}

.floor-shell {
  order: 1;
}

.booking-panel {
  order: 2;
}

#plan {
  scroll-margin-top: 68px;
}

.booking-shell {
  padding-top: 28px;
}

.booking-shell .section-heading {
  margin-bottom: 20px;
}

.booking-shell .section-heading h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: 3.1rem;
  line-height: 1;
}

.booking-shell .section-heading p:last-child {
  margin-top: 10px;
}

.hero-visual {
  min-height: 0;
  aspect-ratio: 2606 / 1344;
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(140deg, #f8f1e3, #e6ddcb);
}

.hero-visual::after {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(20, 20, 15, 0.08));
}

.hero-visual img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: contrast(1.12) saturate(1.04);
}

.floor-map {
  min-height: 0;
  aspect-ratio: 2606 / 1344;
}

.floor-map img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: contrast(1.16) saturate(1.04);
}

.table-button {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: transparent;
  box-shadow: none;
}

.table-button:hover,
.table-button:focus-visible {
  background: rgba(255, 250, 240, 0.94);
  color: #5f584b;
  box-shadow: 0 8px 22px rgba(60, 53, 38, 0.18);
}

.table-button.is-busy {
  background: transparent;
  color: transparent;
}

.table-button.is-selected {
  background: var(--olive-deep);
  color: var(--paper);
  outline: 2px solid rgba(64, 75, 47, 0.34);
  box-shadow:
    0 10px 28px rgba(64, 75, 47, 0.36),
    0 0 0 16px rgba(100, 114, 70, 0.13);
}

@keyframes roomDrift {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.012);
  }
}

@media (max-width: 760px) {
  .booking-shell {
    padding-top: 26px;
  }

  .booking-shell .section-heading h2 {
    font-size: 2.35rem;
  }
}

/* Interactive booking map */
.floor-shell {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(238, 230, 214, 0.96)),
    #f4ecdd;
  color: var(--ink);
  box-shadow:
    0 42px 110px rgba(20, 20, 15, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.floor-map {
  min-height: 650px;
  aspect-ratio: auto;
  perspective: 1100px;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 248, 0.98), transparent 42%),
    linear-gradient(135deg, #f9f4e8 0%, #e4dac7 100%);
  isolation: isolate;
}

.floor-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 20, 15, 0.045) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(20, 20, 15, 0.035) 1px, transparent 1px) 0 0 / 58px 58px;
  opacity: 0.58;
}

.room-scene,
.table-layer {
  position: absolute;
  left: 4%;
  top: 3%;
  width: 92%;
  height: 82%;
  transform: rotateX(58deg) rotateZ(-18deg);
  transform-origin: 50% 58%;
  transform-style: preserve-3d;
}

.room-scene {
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 42px 38px rgba(82, 74, 54, 0.24));
}

.table-layer {
  z-index: 3;
}

.room-floor {
  position: absolute;
  inset: 11% 7% 3%;
  border: 1px solid rgba(110, 100, 75, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 44px),
    repeating-linear-gradient(0deg, rgba(114, 99, 66, 0.1) 0 2px, transparent 2px 21px),
    linear-gradient(135deg, #f5eddd, #dfd3bb);
  box-shadow:
    inset 0 0 0 16px rgba(255, 250, 240, 0.34),
    inset 0 0 80px rgba(94, 84, 59, 0.16),
    0 18px 0 #b5aa91;
}

.room-wall {
  position: absolute;
  border: 1px solid rgba(92, 83, 61, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, #ded3bd, #b9ac90);
}

.wall-back {
  left: 13%;
  right: 8%;
  top: 3%;
  height: 13%;
  box-shadow: inset 0 -14px 24px rgba(50, 45, 33, 0.1);
}

.wall-left {
  left: 4%;
  top: 14%;
  bottom: 8%;
  width: 8%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, #e5dbc8, #baae93);
}

.window-line {
  position: absolute;
  left: 15%;
  top: 12%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 34%;
  height: 7%;
}

.window-line span {
  border: 1px solid rgba(80, 101, 103, 0.22);
  background:
    linear-gradient(180deg, rgba(215, 235, 232, 0.68), rgba(255, 250, 240, 0.36));
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.58);
}

.marble-bar,
.private-rug,
.terrace-deck,
.service-island {
  position: absolute;
  border: 1px solid rgba(52, 47, 36, 0.16);
  box-shadow: 0 14px 24px rgba(52, 47, 36, 0.14);
}

.marble-bar {
  right: 15%;
  top: 8%;
  width: 31%;
  height: 17%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 32%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 15px),
    #6b604a;
}

.marble-bar span {
  position: absolute;
  bottom: -13px;
  width: 44%;
  height: 10px;
  background: rgba(100, 114, 70, 0.28);
}

.marble-bar span:first-child {
  left: 8%;
}

.marble-bar span:last-child {
  right: 8%;
}

.private-rug {
  left: 34%;
  top: 39%;
  width: 30%;
  height: 25%;
  background:
    repeating-linear-gradient(90deg, rgba(88, 76, 50, 0.1) 0 6px, transparent 6px 14px),
    linear-gradient(135deg, #d7ccb3, #c1b595);
}

.terrace-deck {
  right: 5%;
  bottom: 2%;
  width: 34%;
  height: 30%;
  background:
    repeating-linear-gradient(0deg, rgba(89, 80, 55, 0.12) 0 2px, transparent 2px 14px),
    #e7ddc9;
}

.service-island {
  left: 17%;
  top: 20%;
  width: 24%;
  height: 7%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 250, 240, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 50%, rgba(255, 250, 240, 0.9) 0 4px, transparent 5px),
    #b8ad93;
}

.plant,
.lamp {
  position: absolute;
  border-radius: 50%;
}

.plant {
  width: 34px;
  height: 22px;
  background: radial-gradient(circle at 40% 35%, #7d8a50, #404b2f);
  box-shadow: 0 8px 14px rgba(42, 47, 31, 0.22);
}

.plant-a {
  left: 18%;
  bottom: 17%;
}

.plant-b {
  right: 14%;
  top: 37%;
}

.lamp {
  width: 17px;
  height: 17px;
  background: #f5e4ad;
  box-shadow: 0 0 26px rgba(245, 228, 173, 0.9);
}

.lamp-a {
  left: 31%;
  top: 26%;
}

.lamp-b {
  right: 29%;
  bottom: 22%;
}

.table-button {
  position: absolute;
  width: 84px;
  height: 58px;
  border: 0;
  background: transparent;
  color: var(--ink);
  transform: translate(-50%, -50%) rotate(var(--table-rotation));
  transform-style: preserve-3d;
}

.table-button::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 18px;
}

.table-button:hover,
.table-button:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -58%) rotate(var(--table-rotation));
}

.table-button.is-muted {
  opacity: 0.22;
}

.table-button.is-busy {
  background: transparent;
  color: var(--paper);
}

.table-button.table-round,
.table-button.table-oval {
  width: 72px;
  height: 72px;
}

.table-button.table-oval {
  width: 92px;
  height: 66px;
}

.table-shadow,
.table-top,
.table-id,
.table-chair,
.table-tooltip {
  position: absolute;
  pointer-events: none;
}

.table-shadow {
  inset: auto 8px 0;
  height: 16px;
  border-radius: 50%;
  background: rgba(54, 47, 32, 0.22);
  filter: blur(7px);
}

.table-top {
  inset: 12px 8px 12px;
  border: 1px solid rgba(70, 58, 38, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #b58b55, #8f6a3f);
  box-shadow:
    0 7px 0 #6d5233,
    0 18px 22px rgba(44, 38, 27, 0.2);
}

.table-round .table-top,
.table-oval .table-top {
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 34%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(180deg, #fffaf0, #d8cfba);
  box-shadow:
    0 7px 0 #a89d84,
    0 18px 22px rgba(44, 38, 27, 0.18);
}

.table-button.is-selected .table-top {
  border-color: rgba(255, 250, 240, 0.48);
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #647246, #404b2f);
  box-shadow:
    0 8px 0 #2f3923,
    0 20px 28px rgba(64, 75, 47, 0.28),
    0 0 0 12px rgba(100, 114, 70, 0.12);
}

.table-button.is-busy .table-top {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #7f7768, #5f584b);
  box-shadow:
    0 7px 0 #4d463a,
    0 16px 18px rgba(44, 38, 27, 0.16);
}

.table-id {
  left: 50%;
  top: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  border: 1px solid rgba(20, 20, 15, 0.08);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  color: #5f584b;
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateX(-50%) rotate(calc(var(--table-rotation) * -1));
  box-shadow: 0 8px 16px rgba(35, 31, 23, 0.14);
}

.table-button.is-selected .table-id {
  background: var(--olive-deep);
  color: var(--paper);
}

.table-chair {
  z-index: 1;
  width: 22px;
  height: 18px;
  border-radius: 7px;
  background: #cab993;
  box-shadow: 0 5px 0 #a89773;
}

.chair-a {
  left: 0;
  top: 19px;
}

.chair-b {
  right: 0;
  top: 19px;
}

.chair-c {
  left: 31px;
  top: 0;
}

.chair-d {
  left: 31px;
  bottom: 3px;
}

.table-round .chair-c,
.table-round .chair-d {
  left: 25px;
}

.table-button.is-selected .table-chair {
  background: #75825a;
  box-shadow: 0 5px 0 #4a5737;
}

.table-button.is-busy .table-chair {
  background: #aaa08b;
  box-shadow: 0 5px 0 #827969;
}

.table-tooltip {
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 5;
  width: max-content;
  max-width: 150px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(20, 20, 15, 0.92);
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 8px) rotate(calc(var(--table-rotation) * -1));
  transition: opacity 180ms ease, transform 180ms ease;
}

.table-button:hover .table-tooltip,
.table-button:focus-visible .table-tooltip {
  opacity: 1;
  transform: translate(-50%, 0) rotate(calc(var(--table-rotation) * -1));
}

.catalog {
  background:
    linear-gradient(180deg, #ded5c0 0%, #d3c8ae 100%);
}

.catalog-grid article {
  background: #11100c;
  color: var(--paper);
  box-shadow: 0 28px 86px rgba(20, 20, 15, 0.18);
}

.catalog-grid article div:last-child {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.06), rgba(255, 250, 240, 0.02)),
    #15140f;
}

.catalog-grid h3 {
  color: var(--paper);
}

.catalog-grid p {
  color: #cbc1ac;
}

.catalog-grid a {
  color: #c9d6a1;
}

.catalog-visual {
  min-height: 420px;
  background: #14120e;
}

.catalog-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(17, 16, 12, 0.42)),
    radial-gradient(circle at 70% 20%, rgba(201, 214, 161, 0.16), transparent 32%);
}

.catalog-visual img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.catalog-grid article:hover .catalog-visual img {
  transform: scale(1.035);
}

@media (max-width: 1080px) {
  .room-scene,
  .table-layer {
    left: -2%;
    width: 104%;
  }
}

@media (max-width: 760px) {
  .floor-map {
    min-height: 560px;
  }

  .room-scene,
  .table-layer {
    left: -17%;
    top: 5%;
    width: 134%;
    height: 78%;
  }

  .floor-caption {
    bottom: 14px;
    left: 14px;
    width: min(280px, calc(100% - 28px));
  }

  .catalog-visual {
    min-height: 340px;
  }
}

/* Hero balance pass */
.hero {
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: 100svh;
  padding-top: clamp(104px, 9vw, 132px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.hero-copy {
  align-self: center;
  max-width: 690px;
}

.hero .eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0 20px;
  font-size: 4.85rem;
  line-height: 0.96;
}

.hero .lede {
  max-width: 610px;
  font-size: 1.06rem;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 28px;
}

.hero-proof {
  max-width: 560px;
  margin-top: 24px;
}

.hero-stage {
  align-self: center;
}

.hero-stage.is-visible {
  animation: heroLevitate 3.6s ease-in-out 450ms infinite;
  will-change: transform;
}

.hero-visual {
  width: 100%;
  height: clamp(430px, 38vw, 610px);
  aspect-ratio: auto;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(246, 240, 226, 0.08) inset;
}

.hero-visual img {
  object-position: center;
}

.hero-card {
  left: 28px;
  bottom: 26px;
  width: min(300px, calc(100% - 56px));
  padding: 20px;
}

.hero-card strong {
  font-size: 1.9rem;
  line-height: 1;
}

.live-badge {
  top: 22px;
  right: 22px;
}

@media (min-width: 1560px) {
  .hero {
    grid-template-columns: minmax(420px, 0.78fr) minmax(640px, 1.22fr);
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 5.15rem;
  }

  .hero-visual {
    height: 630px;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 104px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 4.15rem;
  }

  .hero .lede {
    max-width: 680px;
  }

  .hero-stage {
    width: 100%;
  }

  .hero-visual {
    height: auto;
    aspect-ratio: 2606 / 1344;
  }
}

@media (max-width: 760px) {
  .hero {
    gap: 24px;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .hero h1 {
    max-width: 12ch;
    margin: 14px 0 16px;
    font-size: 3rem;
    line-height: 1;
  }

  .hero .lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 0;
    aspect-ratio: 1.15 / 1;
  }

  .hero-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
  }

  .hero-card strong {
    font-size: 1.5rem;
  }

  .live-badge {
    top: 12px;
    right: 12px;
    min-height: 34px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-card {
    position: absolute;
    margin: 0;
  }
}

/* Hero product preview */
.hero-product {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 24px;
  border-color: rgba(246, 240, 226, 0.16);
  background:
    linear-gradient(90deg, rgba(246, 240, 226, 0.04) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(246, 240, 226, 0.035) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(145deg, #28251d, #15140f 62%);
  color: var(--paper);
  transform-style: preserve-3d;
}

.hero-product::after {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.05), transparent 35%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
}

.hero-product-top,
.hero-product-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #c7beaa;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 0;
}

.hero-side-panel,
.hero-booking-card,
.hero-map-preview {
  border: 1px solid rgba(246, 240, 226, 0.12);
  border-radius: var(--radius);
}

.hero-side-panel {
  display: grid;
  grid-row: 1 / span 2;
  align-content: start;
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(246, 240, 226, 0.06), rgba(246, 240, 226, 0.025)),
    rgba(20, 20, 15, 0.62);
}

.hero-side-panel strong {
  font-family: "Onest", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-choice-list button,
.hero-product-bottom span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(246, 240, 226, 0.14);
  border-radius: 999px;
  color: #cfc7b5;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-choice-list button {
  background: rgba(246, 240, 226, 0.03);
  font-family: inherit;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-choice-list button:hover,
.hero-choice-list button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(170, 180, 130, 0.28);
}

.hero-choice-list .is-active {
  border-color: rgba(170, 180, 130, 0.38);
  background: rgba(170, 180, 130, 0.12);
  color: #d8e3ac;
}

.hero-side-note {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 240, 226, 0.12);
}

.hero-side-note b {
  color: #d8e3ac;
}

.hero-side-note span {
  color: #a9a18f;
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-map-preview {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(100, 114, 70, 0.16) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(100, 114, 70, 0.11) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(145deg, #fffaf0, #e9dfcb);
  box-shadow: inset 0 0 0 1px rgba(20, 20, 15, 0.04);
}

.hero-map-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(20, 20, 15, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(100, 114, 70, 0.08) 54% 55%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent);
}

.hero-scan-line {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 30%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(170, 180, 130, 0.18), transparent);
  opacity: 0.72;
  animation: scanMap 5.4s ease-in-out infinite;
}

.hero-zone {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 20, 15, 0.08);
  border-radius: var(--radius);
  color: rgba(20, 20, 15, 0.46);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.zone-window {
  left: 6%;
  top: 10%;
  width: 30%;
  height: 20%;
  background: rgba(255, 255, 255, 0.38);
}

.zone-main {
  left: 32%;
  top: 24%;
  width: 34%;
  height: 46%;
  background: rgba(218, 205, 176, 0.38);
}

.zone-bar {
  right: 7%;
  top: 12%;
  width: 25%;
  height: 24%;
  background: rgba(64, 75, 47, 0.16);
}

.zone-terrace {
  right: 7%;
  bottom: 10%;
  width: 34%;
  height: 22%;
  background: rgba(181, 139, 85, 0.14);
}

.hero-product[data-scenario="date"] .zone-window,
.hero-product[data-scenario="business"] .zone-main,
.hero-product[data-scenario="friends"] .zone-terrace {
  border-color: rgba(64, 75, 47, 0.24);
  background:
    radial-gradient(circle at 50% 50%, rgba(170, 180, 130, 0.24), transparent 60%),
    rgba(255, 250, 240, 0.36);
  color: rgba(20, 20, 15, 0.72);
}

.hero-seat {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 32px;
  border: 1px solid rgba(20, 20, 15, 0.12);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--ink);
  cursor: pointer;
  font-family: "Onest", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow:
    0 8px 0 rgba(137, 126, 101, 0.35),
    0 22px 32px rgba(20, 20, 15, 0.16);
  transition:
    background 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.hero-seat:hover,
.hero-seat:focus-visible {
  transform: translate(-50%, -56%);
}

.hero-seat.is-selected {
  background: var(--olive-deep);
  color: var(--paper);
  box-shadow:
    0 8px 0 #2f3923,
    0 24px 38px rgba(64, 75, 47, 0.3),
    0 0 0 14px rgba(100, 114, 70, 0.16);
}

.hero-seat.is-muted {
  background: #b8ad98;
  color: rgba(20, 20, 15, 0.54);
}

.hero-booking-card {
  display: grid;
  grid-column: 2;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.hero-booking-card strong {
  font-family: "Onest", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-booking-card span:last-of-type {
  color: var(--stone);
}

.hero-booking-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-booking-flow span {
  display: grid;
  place-items: center;
  min-height: 28px;
  border: 1px solid rgba(20, 20, 15, 0.12);
  border-radius: 999px;
  color: #6d6558;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-booking-flow .is-done {
  border-color: rgba(100, 114, 70, 0.25);
  background: rgba(100, 114, 70, 0.11);
  color: var(--olive-deep);
}

.hero-map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: min(300px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(20, 20, 15, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.88);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(20, 20, 15, 0.14);
  backdrop-filter: blur(10px);
}

.hero-map-caption span {
  color: var(--olive-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-map-caption strong {
  font-family: "Onest", sans-serif;
  font-size: 1.1rem;
  line-height: 1.05;
}

.hero-map-caption p {
  margin: 0;
  color: #6d6558;
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-product-bottom {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-product .live-badge {
  top: 74px;
  right: 24px;
  background: rgba(20, 20, 15, 0.72);
}

@keyframes scanMap {
  0%,
  100% {
    transform: translateX(-40%);
  }

  50% {
    transform: translateX(265%);
  }
}

@keyframes heroLevitate {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage.is-visible {
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .hero-product {
    height: auto;
    min-height: 560px;
  }

  .hero-product-grid {
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .hero-product {
    min-height: 0;
    padding: 16px;
  }

  .hero-product-top {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 132px;
  }

  .hero-product-grid {
    grid-template-columns: 1fr;
  }

  .hero-side-panel {
    order: 2;
  }

  .hero-map-preview {
    min-height: 300px;
  }

  .hero-booking-card {
    order: 3;
  }

  .hero-product .live-badge {
    top: 16px;
    right: 16px;
  }

  .hero-product-bottom {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-product-top {
    padding-right: 0;
  }

  .hero-product .live-badge {
    position: static;
    width: max-content;
    margin-top: -6px;
  }

  .hero-map-preview {
    min-height: 260px;
  }

  .hero-zone {
    font-size: 0.68rem;
  }

  .hero-seat {
    width: 40px;
    height: 30px;
  }

  .hero-booking-card strong {
    font-size: 1.65rem;
  }
}

/* Screen fit pass */
@media (min-width: 1181px) {
  .booking-shell,
  .scenarios,
  .catalog,
  .business {
    min-height: 100svh;
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .booking-shell {
    display: grid;
    align-content: center;
  }

  .scenarios,
  .catalog {
    display: grid;
    align-content: start;
  }

  .scenarios .section-heading,
  .catalog .section-heading,
  .booking-shell .section-heading {
    margin-bottom: 24px;
  }

  .scenarios .section-heading h2,
  .catalog .section-heading h2 {
    max-width: 760px;
    font-size: 3.25rem;
    line-height: 1.02;
  }

  .scenario-strip {
    align-items: end;
  }

  .scenario-card,
  .scenario-card:first-child {
    min-height: 386px;
  }

  .scenario-card div {
    padding: 24px;
  }

  .scenario-card h3 {
    font-size: 1.75rem;
  }

  .scenario-card p {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .catalog .section-heading h2 {
    font-size: 3.15rem;
  }

  .catalog .section-heading p {
    max-width: 650px;
  }

  .catalog-visual {
    min-height: 0;
    height: 315px;
  }

  .catalog-grid article div:last-child {
    padding: 18px 20px 20px;
  }

  .catalog-grid h3 {
    font-size: 1.55rem;
  }

  .catalog-grid p {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .booking-shell .section-heading h2 {
    max-width: 720px;
    font-size: 2.7rem;
  }

  .booking-app {
    align-items: stretch;
    gap: 26px;
  }

  .booking-panel {
    gap: 14px;
    padding: 18px;
  }

  .restaurant-list {
    gap: 7px;
  }

  .restaurant-card {
    padding: 11px 12px;
  }

  .restaurant-card strong {
    margin-bottom: 2px;
  }

  .chip {
    min-height: 34px;
    padding: 0 11px;
  }

  .stepper {
    grid-template-columns: 34px 40px 34px;
  }

  .stepper button {
    height: 34px;
  }

  .booking-summary {
    gap: 10px;
    padding-top: 6px;
  }

  .booking-summary h3 {
    font-size: 2.15rem;
  }

  .booking-summary dl {
    gap: 6px;
  }

  .floor-toolbar {
    padding: 16px 18px;
  }

  .floor-toolbar h3 {
    font-size: 2rem;
  }

  .floor-map {
    min-height: 500px;
  }

  .room-scene,
  .table-layer {
    left: 1%;
    top: 0;
    width: 98%;
    height: 83%;
  }

  .floor-caption {
    padding: 18px;
  }

  .floor-caption strong {
    font-size: 1.75rem;
  }

  .business {
    grid-template-columns: minmax(330px, 0.78fr) minmax(640px, 1.22fr);
    gap: 48px;
    align-content: start;
    overflow: visible;
  }

  .business-copy h2 {
    font-size: 3.55rem;
    line-height: 1.02;
  }

  .business-copy p {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .business-tags {
    gap: 8px;
    margin-top: 20px;
  }

  .business-tags span {
    min-height: 30px;
    font-size: 0.78rem;
  }

  .operator-panel {
    gap: 12px;
    padding: 20px;
  }

  .operator-insight {
    gap: 7px;
    padding: 14px 16px;
  }

  .operator-insight strong {
    font-size: 1.05rem;
  }

  .operator-insight p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .operator-metric {
    min-height: 112px;
    padding: 16px;
  }

  .operator-grid strong {
    font-size: 2.18rem;
  }

  .operator-analytics {
    grid-template-columns: minmax(0, 1.25fr) minmax(210px, 0.75fr);
  }

  .operator-chart,
  .operator-heatmap {
    gap: 12px;
    padding: 15px 16px;
  }

  .slot-bars,
  .slot-bars span {
    min-height: 112px;
  }

  .slot-bars span::before {
    inset-inline: 14%;
    bottom: 24px;
  }

  .zone-row {
    min-height: 31px;
    padding-bottom: 8px;
    font-size: 0.84rem;
  }

  .zone-row b {
    min-height: 25px;
    font-size: 0.78rem;
  }

  .operator-list {
    gap: 8px;
  }

  .operator-list div {
    min-height: 46px;
  }
}

@media (min-width: 1181px) and (max-height: 850px) {
  .booking-shell,
  .scenarios,
  .catalog,
  .business {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  .scenarios .section-heading h2,
  .catalog .section-heading h2 {
    font-size: 2.85rem;
  }

  .scenario-card,
  .scenario-card:first-child {
    min-height: 330px;
  }

  .catalog-visual {
    height: 260px;
  }

  .floor-map {
    min-height: 450px;
  }

  .business-copy h2 {
    font-size: 3.05rem;
  }

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

  .operator-metric {
    min-height: 98px;
  }

  .operator-chart,
  .operator-heatmap {
    padding: 13px 14px;
  }

  .slot-bars,
  .slot-bars span {
    min-height: 96px;
  }

  .operator-list div {
    min-height: 42px;
  }
}

.slot-bars span::before {
  opacity: 0;
  transform: scaleY(0.04);
  animation: none;
}

.operator-panel.is-visible .slot-bars span::before {
  animation:
    barGrowBounce 980ms cubic-bezier(0.2, 0.7, 0.2, 1) 2s both,
    barGlow 2.6s ease-in-out 3.2s infinite;
}

.operator-panel.is-visible .slot-bars span:nth-child(2)::before {
  animation-delay: 2.09s, 3.32s;
}

.operator-panel.is-visible .slot-bars span:nth-child(3)::before {
  animation-delay: 2.18s, 3.44s;
}

.operator-panel.is-visible .slot-bars span:nth-child(4)::before {
  animation-delay: 2.27s, 3.56s;
}

.operator-panel.is-visible .slot-bars span:nth-child(5)::before {
  animation-delay: 2.36s, 3.68s;
}

@keyframes barGrowBounce {
  0% {
    opacity: 0;
    transform: scaleY(0.04);
  }

  68% {
    opacity: 1;
    transform: scaleY(1.08);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes barGlow {
  0%,
  100% {
    filter: brightness(1);
  }

  45% {
    filter: brightness(1.13);
  }
}

/* Scenario cards recovery after screen-fit compression */
@media (min-width: 1181px) {
.scenarios {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

  .scenario-strip {
    width: min(1420px, 100%);
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    align-items: stretch;
  }

  .scenario-card,
  .scenario-card:first-child {
    min-height: 455px;
    max-height: 520px;
  }

  .scenario-card img {
    min-width: 100%;
  }

  .booking-shell .section-heading h2 {
    max-width: 820px;
  }
}

@media (min-width: 1181px) and (max-height: 850px) {
  .scenario-card,
  .scenario-card:first-child {
    min-height: 400px;
  }
}

/* Final ticket silhouette */
.ticket-card {
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 41%,
    96.2% 50%,
    100% 59%,
    100% 100%,
    0 100%,
    0 59%,
    3.8% 50%,
    0 41%
  );
}

.ticket-card::before,
.ticket-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  left: 12px;
  right: 12px;
  top: 12px;
  bottom: 12px;
  z-index: -1;
  width: auto;
  height: auto;
  border: 1px solid rgba(20, 20, 15, 0.42);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 40%,
    96% 50%,
    100% 60%,
    100% 100%,
    0 100%,
    0 60%,
    4% 50%,
    0 40%
  );
}

.ticket-card::after {
  inset: 22px;
  opacity: 0.45;
}

.ticket-hole,
.ticket-main::before,
.ticket-main::after {
  display: none;
  content: none;
}

.ticket-main {
  border-radius: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 38%,
    97.3% 50%,
    100% 62%,
    100% 100%,
    0 100%,
    0 62%,
    2.7% 50%,
    0 38%
  );
}

/* Vintage ticket direction */
.ticket-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 0;
  min-height: 360px;
  padding: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(64, 75, 47, 0.055) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(64, 75, 47, 0.04) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(180deg, #fffdf3, #eee4cf);
  clip-path: polygon(
    2.2% 0,
    78% 0,
    79.7% 5.6%,
    81.4% 0,
    97.8% 0,
    100% 4.8%,
    100% 95.2%,
    97.8% 100%,
    81.4% 100%,
    79.7% 94.4%,
    78% 100%,
    2.2% 100%,
    0 95.2%,
    0 4.8%
  );
  color: var(--olive-deep);
}

.ticket-card::before {
  inset: 14px;
  z-index: 0;
  border: 2px solid rgba(64, 75, 47, 0.72);
  clip-path: inherit;
}

.ticket-card::after {
  inset: 0;
  z-index: 0;
  border: 0;
  background:
    linear-gradient(105deg, transparent 0 24%, rgba(20, 20, 15, 0.035) 24% 25%, transparent 25% 57%, rgba(20, 20, 15, 0.03) 57% 58%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 44%);
  opacity: 1;
  clip-path: inherit;
}

.ticket-card .ticket-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: stretch;
  min-width: 0;
  padding: 30px 28px 28px 34px;
}

.ticket-card .ticket-head {
  align-items: flex-start;
  padding: 0 0 12px;
  border-bottom: 2px solid rgba(64, 75, 47, 0.72);
  color: var(--olive-deep);
}

.ticket-card .ticket-head .micro {
  color: var(--olive-deep);
}

.ticket-card .ticket-head strong {
  font-size: 1.02rem;
}

.ticket-card .ticket-main {
  display: flex;
  min-height: 118px;
  margin: 0;
  padding: 20px 22px;
  border: 2px solid rgba(64, 75, 47, 0.86);
  background: rgba(255, 250, 240, 0.4);
  box-shadow:
    inset 0 0 0 6px rgba(255, 250, 240, 0.42),
    inset 0 0 0 8px rgba(64, 75, 47, 0.58);
  clip-path: none;
}

.ticket-card .ticket-main span {
  font-size: 3.25rem;
  line-height: 0.9;
}

.ticket-card .ticket-main span::after {
  height: 10px;
  margin-top: 14px;
  background-image: linear-gradient(90deg, rgba(64, 75, 47, 0.7) 0 7px, transparent 7px 18px);
  background-size: 18px 2px;
  background-position: center;
}

.ticket-card .ticket-main b {
  color: var(--olive-deep);
  font-size: 1.35rem;
}

.ticket-card .ticket-meta {
  border-color: rgba(64, 75, 47, 0.16);
  border-radius: 0;
  background: rgba(64, 75, 47, 0.09);
}

.ticket-card .ticket-meta div {
  padding: 11px 13px;
  background: rgba(255, 250, 240, 0.42);
}

.ticket-card .ticket-perforation {
  margin: 0;
  background-image: linear-gradient(90deg, rgba(64, 75, 47, 0.32) 0 8px, transparent 8px 18px);
}

.ticket-card .ticket-order {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ticket-card .ticket-order div {
  display: grid;
  gap: 4px;
  padding-bottom: 0;
  border-bottom: 0;
}

.ticket-card .ticket-order span,
.ticket-card .ticket-total span {
  color: rgba(64, 75, 47, 0.72);
}

.ticket-card .ticket-order b {
  color: var(--olive-deep);
  text-align: left;
}

.ticket-card .ticket-total {
  margin-top: 2px;
  padding-top: 12px;
  border-top-color: rgba(64, 75, 47, 0.18);
}

.ticket-card .ticket-total strong {
  color: var(--olive-deep);
  font-size: 2rem;
}

.ticket-card .ticket-actions {
  padding-top: 0;
}

.ticket-stub {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-width: 0;
  padding: 28px 18px;
  border-left: 2px dashed rgba(64, 75, 47, 0.72);
  color: var(--olive-deep);
  text-align: center;
}

.ticket-stub span,
.ticket-stub small {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ticket-stub span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-stub strong {
  writing-mode: vertical-rl;
  color: var(--olive-deep);
  font-family: "Onest", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(180deg);
}

.ticket-stub small {
  color: rgba(64, 75, 47, 0.7);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .ticket-card {
    grid-template-columns: 1fr;
    clip-path: polygon(
      4% 0,
      96% 0,
      100% 5%,
      100% 95%,
      96% 100%,
      4% 100%,
      0 95%,
      0 5%
    );
  }

  .ticket-card .ticket-body {
    padding: 26px 20px 20px;
  }

  .ticket-card .ticket-main {
    align-items: flex-start;
    flex-direction: column;
    min-height: 110px;
  }

  .ticket-card .ticket-main span {
    font-size: 2.35rem;
  }

  .ticket-card .ticket-order {
    grid-template-columns: 1fr;
  }

  .ticket-stub {
    grid-template-columns: repeat(3, auto);
    min-height: 74px;
    border-top: 2px dashed rgba(64, 75, 47, 0.72);
    border-left: 0;
  }

  .ticket-stub span,
  .ticket-stub strong,
  .ticket-stub small {
    writing-mode: initial;
    transform: none;
  }
}

/* Wider guest catalog cards */
@media (min-width: 1181px) {
  .catalog-grid {
    width: min(1760px, 100%);
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.2vw, 34px);
  }

  .catalog-visual {
    height: 350px;
  }

  .catalog-grid article div:last-child {
    min-height: 176px;
    padding: 22px 28px 24px;
  }
}

@media (min-width: 1560px) {
  .catalog-grid {
    width: min(1880px, 100%);
  }

  .catalog-visual {
    height: 380px;
  }
}

/* Standard viewport fit QA */
@media (min-width: 1181px) and (min-height: 851px) {
  .hero {
    grid-template-columns: minmax(380px, 0.78fr) minmax(620px, 1.22fr);
    gap: 50px;
    align-items: center;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 4.75rem;
  }

  .hero .lede {
    max-width: 600px;
  }

  .hero-visual {
    height: min(640px, calc(100svh - 164px));
  }

  .hero-product {
    gap: 18px;
    padding: 26px;
  }

  .hero-product-grid {
    gap: 16px;
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  }

  .hero-side-panel {
    gap: 15px;
    padding: 20px;
  }

  .hero-map-preview {
    min-height: 382px;
  }

  .hero-booking-card {
    padding: 20px;
  }

  .hero-product-bottom {
    display: flex;
  }
}

@media (min-width: 1181px) and (max-height: 850px) {
  .hero {
    gap: 34px;
    padding-top: 86px;
    padding-bottom: 26px;
  }

  .hero-copy {
    max-width: 610px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    max-width: 660px;
    margin: 10px 0 14px;
    font-size: 4.05rem;
    line-height: 0.98;
  }

  .hero .lede {
    max-width: 560px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-proof {
    margin-top: 14px;
  }

  .hero-proof span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-product {
    gap: 12px;
    padding: 18px;
  }

  .hero-product-grid {
    grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
    gap: 11px;
  }

  .hero-side-panel {
    gap: 10px;
    padding: 14px;
  }

  .hero-side-panel strong {
    font-size: 1.28rem;
  }

  .hero-map-preview {
    min-height: 286px;
  }

  .hero-map-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: min(270px, calc(100% - 24px));
    padding: 12px;
  }

  .hero-booking-card {
    gap: 8px;
    padding: 14px;
  }

  .hero-booking-card strong {
    font-size: 1.55rem;
  }

  .hero-product-bottom {
    display: none;
  }

  .promise {
    min-height: 100svh;
    padding-top: 38px;
    padding-bottom: 36px;
    grid-template-columns: minmax(360px, 0.74fr) minmax(580px, 1.26fr);
    gap: 34px;
  }

  .promise .number {
    font-size: 4.7rem;
  }

  .promise h2 {
    font-size: 3.05rem;
    line-height: 1;
  }

  .compare-column {
    gap: 9px;
    padding: 16px;
  }

  .compare-column h3 {
    font-size: 1.25rem;
  }

  .compare-note {
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .booking-compare li {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .booking-shell,
  .journey,
  .scenarios,
  .catalog,
  .business,
  .vision {
    min-height: 100svh;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .booking-shell .section-heading,
  .journey .section-heading,
  .scenarios .section-heading,
  .catalog .section-heading {
    margin-bottom: 16px;
  }

  .booking-shell .section-heading h2,
  .journey .section-heading h2,
  .scenarios .section-heading h2,
  .catalog .section-heading h2 {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .section-heading p {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .booking-app {
    width: min(1420px, 100%);
    gap: 18px;
    grid-template-columns: minmax(0, 1.62fr) minmax(270px, 0.6fr);
  }

  .booking-panel {
    gap: 9px;
    padding: 14px;
  }

  .panel-head {
    gap: 10px;
  }

  .field-group {
    gap: 7px;
  }

  .field-grid {
    gap: 10px;
  }

  .restaurant-list {
    gap: 6px;
  }

  .restaurant-card {
    padding: 8px 10px;
  }

  .restaurant-card strong {
    font-size: 0.9rem;
  }

  .restaurant-card span {
    font-size: 0.76rem;
  }

  .chip {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.76rem;
  }

  .stepper {
    grid-template-columns: 30px 34px 30px;
  }

  .stepper button {
    height: 30px;
  }

  .booking-summary {
    gap: 7px;
    padding-top: 6px;
  }

  .booking-summary h3 {
    font-size: 1.72rem;
  }

  .booking-summary dl {
    gap: 4px;
    font-size: 0.84rem;
  }

  .booking-summary .button {
    min-height: 38px;
  }

  .success-note {
    padding: 9px;
    font-size: 0.84rem;
  }

  .floor-toolbar {
    padding: 12px 14px;
  }

  .floor-toolbar h3 {
    margin-top: 2px;
    font-size: 1.62rem;
  }

  .legend {
    gap: 9px;
    font-size: 0.74rem;
  }

  .floor-map {
    min-height: 405px;
  }

  .room-scene,
  .table-layer {
    left: 1%;
    top: -5%;
    width: 98%;
    height: 82%;
  }

  .table-button {
    width: 68px;
    height: 48px;
  }

  .table-button.table-round,
  .table-button.table-oval {
    width: 58px;
    height: 58px;
  }

  .table-button.table-oval {
    width: 72px;
    height: 52px;
  }

  .table-chair {
    width: 18px;
    height: 14px;
  }

  .chair-c,
  .chair-d {
    left: 25px;
  }

  .table-round .chair-c,
  .table-round .chair-d {
    left: 20px;
  }

  .floor-caption {
    gap: 7px;
    width: 258px;
    padding: 13px;
  }

  .floor-caption strong {
    font-size: 1.45rem;
  }

  .journey {
    display: grid;
    align-content: start;
  }

  .journey .section-heading {
    max-width: 700px;
  }

  .journey-premium {
    gap: 12px;
  }

  .journey-premium .step-card {
    min-height: 300px;
    gap: 10px;
    padding: 18px;
  }

  .step-visual {
    height: 86px;
    margin-bottom: 2px;
  }

  .journey-grid span {
    font-size: 2.8rem;
  }

  .journey-grid h3 {
    font-size: 1.25rem;
    line-height: 1.08;
  }

  .journey-grid p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .scenarios .section-heading {
    max-width: 740px;
  }

  .scenario-card,
  .scenario-card:first-child {
    min-height: 350px;
    max-height: 380px;
  }

  .scenario-card div {
    padding: 18px;
  }

  .scenario-card h3 {
    font-size: 1.45rem;
  }

  .scenario-card p {
    font-size: 0.86rem;
    line-height: 1.34;
  }

  .catalog-grid {
    width: min(1600px, 100%);
  }

  .catalog-visual {
    height: 270px;
  }

  .catalog-grid article div:last-child {
    min-height: 138px;
    padding: 15px 20px 16px;
  }

  .catalog-grid h3 {
    font-size: 1.34rem;
  }

  .catalog-grid p {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .catalog-grid a {
    margin-top: 2px;
  }

  .business {
    grid-template-columns: minmax(330px, 0.72fr) minmax(630px, 1.28fr);
    gap: 34px;
    align-content: start;
  }

  .business-copy h2 {
    font-size: 2.82rem;
    line-height: 1.02;
  }

  .business-copy p {
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .business-tags {
    gap: 7px;
    margin-top: 16px;
  }

  .business-tags span {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }

  .operator-panel {
    gap: 9px;
    padding: 15px;
  }

  .operator-top {
    font-size: 0.76rem;
  }

  .operator-insight {
    gap: 6px;
    padding: 11px 13px;
  }

  .operator-insight strong {
    font-size: 0.96rem;
  }

  .operator-insight p {
    font-size: 0.78rem;
    line-height: 1.26;
  }

  .operator-metric {
    min-height: 82px;
    gap: 8px;
    padding: 12px 13px;
  }

  .operator-grid strong {
    font-size: 1.82rem;
  }

  .operator-grid span,
  .operator-list span {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .operator-analytics {
    gap: 9px;
  }

  .operator-chart,
  .operator-heatmap {
    gap: 9px;
    padding: 11px 13px;
  }

  .slot-bars,
  .slot-bars span {
    min-height: 76px;
  }

  .slot-bars span::before {
    bottom: 20px;
  }

  .zone-row {
    min-height: 26px;
    padding-bottom: 6px;
    font-size: 0.78rem;
  }

  .zone-row b {
    min-width: 46px;
    min-height: 22px;
    font-size: 0.72rem;
  }

  .operator-list {
    gap: 6px;
  }

  .operator-list div {
    min-height: 36px;
    padding-inline: 11px;
  }

  .operator-list strong {
    font-size: 0.82rem;
  }

  .vision {
    grid-template-columns: minmax(360px, 0.84fr) minmax(530px, 1fr);
    gap: 34px;
  }

  .vision h2 {
    font-size: 2.8rem;
    line-height: 1.02;
  }

  .vision p {
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .vision-chips {
    gap: 7px;
  }

  .vision-chips span {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }

  .ticket-card {
    grid-template-columns: minmax(0, 1fr) 92px;
    min-height: 315px;
  }

  .ticket-card .ticket-body {
    gap: 9px;
    padding: 22px 20px 20px 24px;
  }

  .ticket-card .ticket-head {
    padding-bottom: 8px;
  }

  .ticket-card .ticket-main {
    min-height: 86px;
    padding: 14px 16px;
  }

  .ticket-card .ticket-main span {
    font-size: 2.38rem;
  }

  .ticket-card .ticket-main span::after {
    margin-top: 9px;
  }

  .ticket-card .ticket-main b {
    font-size: 1.05rem;
  }

  .ticket-card .ticket-meta div {
    gap: 4px;
    padding: 8px 10px;
  }

  .ticket-meta dt,
  .ticket-order span,
  .ticket-total span {
    font-size: 0.7rem;
  }

  .ticket-card .ticket-order {
    gap: 7px;
  }

  .ticket-card .ticket-order b,
  .ticket-card .ticket-meta dd {
    font-size: 0.82rem;
  }

  .ticket-card .ticket-total {
    padding-top: 7px;
  }

  .ticket-card .ticket-total strong {
    font-size: 1.55rem;
  }

  .ticket-card .ticket-actions .button {
    min-height: 38px;
    padding-inline: 15px;
    font-size: 0.82rem;
  }

  .ticket-stub {
    gap: 12px;
    padding: 20px 12px;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero {
    grid-template-columns: minmax(330px, 0.74fr) minmax(560px, 1.26fr);
    padding-top: 76px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-visual {
    height: 455px;
  }

  .hero-map-preview {
    min-height: 250px;
  }

  .hero-side-note {
    display: none;
  }

  .promise {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .promise .number {
    font-size: 4rem;
  }

  .promise h2 {
    font-size: 2.7rem;
  }

  .compare-note {
    display: none;
  }

  .booking-shell,
  .journey,
  .scenarios,
  .catalog,
  .business,
  .vision {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .booking-shell .section-heading h2,
  .journey .section-heading h2,
  .scenarios .section-heading h2,
  .catalog .section-heading h2 {
    font-size: 2.12rem;
  }

  .floor-map {
    min-height: 360px;
  }

  .floor-caption {
    width: 236px;
    padding: 11px;
  }

  .floor-caption strong {
    font-size: 1.3rem;
  }

  .booking-panel {
    gap: 6px;
    padding: 12px;
  }

  .booking-panel .restaurant-card {
    padding: 6px 8px;
  }

  .booking-panel .chip-row {
    gap: 6px;
  }

  .booking-summary h3 {
    font-size: 1.46rem;
  }

  .booking-summary dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 15, 0.08);
    border-radius: var(--radius);
    background: rgba(20, 20, 15, 0.06);
  }

  .booking-summary dl div {
    display: grid;
    gap: 2px;
    justify-content: start;
    padding: 6px;
    background: rgba(255, 250, 240, 0.72);
  }

  .booking-summary dt,
  .booking-summary dd {
    font-size: 0.72rem;
  }

  .journey-premium .step-card {
    min-height: 270px;
    padding: 15px;
  }

  .step-visual {
    height: 72px;
  }

  .journey-grid span {
    font-size: 2.45rem;
  }

  .journey-grid h3 {
    font-size: 1.12rem;
  }

  .journey-grid p {
    font-size: 0.8rem;
  }

  .scenario-card,
  .scenario-card:first-child {
    min-height: 310px;
  }

  .catalog-visual {
    height: 238px;
  }

  .catalog-grid article div:last-child {
    min-height: 124px;
    padding: 13px 17px 14px;
  }

  .business-copy h2 {
    font-size: 2.55rem;
  }

  .business-copy p {
    font-size: 0.9rem;
  }

  .operator-panel {
    padding: 13px;
  }

  .operator-metric {
    min-height: 72px;
    padding: 10px 11px;
  }

  .operator-grid strong {
    font-size: 1.58rem;
  }

  .slot-bars,
  .slot-bars span {
    min-height: 64px;
  }

  .operator-list div {
    min-height: 32px;
  }

  .vision h2 {
    font-size: 2.48rem;
  }

  .ticket-card {
    min-height: 288px;
  }

  .ticket-card .ticket-body {
    gap: 7px;
    padding: 18px 18px 18px 22px;
  }

  .ticket-card .ticket-main {
    min-height: 74px;
    padding: 12px 14px;
  }

  .ticket-card .ticket-main span {
    font-size: 2.04rem;
  }

  .ticket-card .ticket-order {
    gap: 5px;
  }
}

@media (min-width: 1181px) and (min-height: 941px) and (max-height: 1100px) {
  .booking-shell {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .booking-shell .section-heading {
    margin-bottom: 16px;
  }

  .booking-shell .section-heading h2 {
    font-size: 2.55rem;
  }

  .booking-shell .section-heading p:last-child {
    margin-top: 6px;
  }

  .booking-app {
    width: min(1420px, 100%);
  }

  .booking-panel {
    gap: 12px;
    padding: 16px;
  }

  .restaurant-card {
    padding: 10px 12px;
  }

  .chip {
    min-height: 32px;
    padding-inline: 10px;
  }

  .booking-summary {
    gap: 9px;
  }

  .booking-summary h3 {
    font-size: 1.95rem;
  }

  .booking-summary dl {
    gap: 5px;
  }

  .floor-toolbar {
    padding: 14px 16px;
  }

  .floor-toolbar h3 {
    font-size: 1.9rem;
  }

  .floor-map {
    min-height: 460px;
  }
}

/* Pinned guest gallery */
@media (min-width: 1024px) and (min-height: 720px) {
  .catalog-pin {
    --gallery-progress: 0;
    min-height: 315svh;
    padding: 0;
    overflow: clip;
    background:
      radial-gradient(circle at 76% 18%, rgba(170, 180, 130, 0.2), transparent 34%),
      linear-gradient(180deg, #ded5c0 0%, #d1c5aa 100%);
  }

  .catalog-pin-inner {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(32px, 5vw, 78px);
    align-items: center;
    min-height: 100svh;
    padding: clamp(84px, 10svh, 116px) clamp(18px, 4vw, 56px) clamp(34px, 5svh, 58px);
  }

  .catalog-pin .section-heading {
    margin: 0;
  }

  .catalog-pin .section-heading h2 {
    max-width: 640px;
    font-size: clamp(3rem, 5.2vw, 5.5rem);
    line-height: 0.95;
  }

  .catalog-pin .section-heading p:last-of-type {
    max-width: 520px;
    margin-top: 18px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
  }

  .catalog-pin-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: clamp(26px, 4vw, 46px);
    color: var(--olive-deep);
  }

  .catalog-pin-note span,
  .catalog-pin-note b {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(64, 75, 47, 0.18);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.34);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .catalog-stage {
    position: relative;
    height: min(690px, calc(100svh - 164px));
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 15, 0.12);
    border-radius: var(--radius);
    background:
      linear-gradient(90deg, rgba(20, 20, 15, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
      linear-gradient(0deg, rgba(20, 20, 15, 0.03) 1px, transparent 1px) 0 0 / 64px 64px,
      radial-gradient(circle at 64% 24%, rgba(255, 250, 240, 0.34), transparent 38%),
      rgba(238, 229, 209, 0.55);
    box-shadow: 0 36px 110px rgba(20, 20, 15, 0.17);
  }

  .catalog-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(20, 20, 15, 0.36), transparent 18%, transparent 82%, rgba(20, 20, 15, 0.2)),
      linear-gradient(180deg, rgba(255, 250, 240, 0.12), transparent 42%);
    opacity: 0.28;
  }

  .catalog-pin .catalog-grid {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
  }

  .catalog-pin .catalog-grid article {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    width: min(620px, 76%);
    height: min(620px, calc(100% - 58px));
    min-height: 0;
    overflow: hidden;
    opacity: var(--card-opacity, 0);
    pointer-events: none;
    transform:
      translate(-50%, -50%)
      translate3d(var(--card-x, -120%), var(--card-y, 18px), 0)
      rotate(var(--card-rotate, -4deg))
      scale(var(--card-scale, 0.9));
    transform-origin: 50% 58%;
    transition:
      opacity 180ms linear,
      transform 120ms linear,
      filter 180ms linear;
    z-index: var(--card-z, 1);
    filter: saturate(var(--card-saturate, 0.85)) brightness(var(--card-brightness, 0.74));
    will-change: transform, opacity;
  }

  .catalog-pin .catalog-grid article.is-active {
    pointer-events: auto;
  }

  .catalog-pin .catalog-grid article:hover {
    transform:
      translate(-50%, -50%)
      translate3d(var(--card-x, -120%), var(--card-y, 18px), 0)
      rotate(var(--card-rotate, -4deg))
      scale(calc(var(--card-scale, 0.9) + 0.018));
  }

  .catalog-pin .catalog-visual {
    min-height: 0;
    height: auto;
  }

  .catalog-pin .catalog-grid article div:last-child {
    min-height: 150px;
  }

  .catalog-scroll-progress {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 10;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(20, 20, 15, 0.12);
  }

  .catalog-scroll-progress span {
    display: block;
    width: calc(var(--gallery-progress) * 100%);
    height: 100%;
    border-radius: inherit;
    background: var(--olive-deep);
  }
}

@media (max-width: 1023px), (max-height: 719px), (prefers-reduced-motion: reduce) {
  .catalog-pin {
    min-height: auto;
    padding: clamp(42px, 5vw, 76px) clamp(18px, 4vw, 56px) clamp(64px, 8vw, 120px);
  }

  .catalog-pin-inner {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .catalog-pin-note,
  .catalog-scroll-progress {
    display: none;
  }

  .catalog-stage {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-pin .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
    max-width: 1420px;
    margin: 0 auto;
  }

  .catalog-pin .catalog-grid article {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
  }
}

@media (max-width: 760px) {
  .catalog-pin .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* Compact PLATE pass */
.ticket-card {
  --ticket-line: rgba(64, 75, 47, 0.38);
  --ticket-line-strong: rgba(64, 75, 47, 0.72);
  --ticket-paper: #fffaf0;
  --ticket-paper-deep: #efe6d3;
  position: relative;
  grid-template-columns: minmax(0, 1fr) clamp(92px, 12vw, 118px);
  width: min(100%, 710px);
  min-height: 268px;
  justify-self: center;
  overflow: visible;
  padding: 0;
  border: 1px solid rgba(64, 75, 47, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 9% 18%, rgba(170, 180, 130, 0.2), transparent 16%),
    radial-gradient(circle at 78% 72%, rgba(202, 121, 78, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(64, 75, 47, 0.048) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, var(--ticket-paper), var(--ticket-paper-deep));
  clip-path: polygon(
    2.2% 0,
    78.5% 0,
    80.1% 4.6%,
    81.7% 0,
    97.8% 0,
    100% 6%,
    100% 40.5%,
    97.5% 50%,
    100% 59.5%,
    100% 94%,
    97.8% 100%,
    81.7% 100%,
    80.1% 95.4%,
    78.5% 100%,
    2.2% 100%,
    0 94%,
    0 59.5%,
    2.5% 50%,
    0 40.5%,
    0 6%
  );
  color: var(--olive-deep);
  filter: drop-shadow(0 24px 56px rgba(20, 20, 15, 0.16));
  transform: translateZ(0);
  transition:
    filter 360ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ticket-card::before,
.ticket-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ticket-card::before {
  inset: 12px;
  z-index: 0;
  border: 1px solid var(--ticket-line);
  border-radius: 20px;
  clip-path: inherit;
}

.ticket-card::after {
  inset: 0;
  z-index: 0;
  border: 0;
  background:
    linear-gradient(105deg, transparent 0 17%, rgba(255, 255, 255, 0.52) 17% 18%, transparent 18% 54%, rgba(64, 75, 47, 0.055) 54% 55%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 48%);
  opacity: 0.92;
  clip-path: inherit;
}

.ticket-card:hover,
.ticket-card:focus-within {
  filter: drop-shadow(0 31px 68px rgba(20, 20, 15, 0.2));
  transform: translateY(-3px);
}

.ticket-card .ticket-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  align-content: stretch;
  min-width: 0;
  padding: clamp(19px, 2.2vw, 25px) clamp(20px, 2.4vw, 28px) clamp(18px, 2.2vw, 24px);
}

.ticket-card .ticket-head {
  align-items: center;
  min-height: 28px;
  padding: 0 0 9px;
  border-bottom: 1px solid var(--ticket-line);
  color: rgba(64, 75, 47, 0.72);
}

.ticket-card .ticket-head .micro {
  color: rgba(64, 75, 47, 0.72);
  font-size: 0.68rem;
}

.ticket-card .ticket-head strong {
  color: var(--olive-deep);
  font-size: 0.9rem;
}

.ticket-card .ticket-main {
  position: relative;
  display: flex;
  min-height: 82px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid var(--ticket-line-strong);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.5);
  box-shadow:
    inset 0 0 0 5px rgba(255, 250, 240, 0.44),
    inset 0 0 0 6px rgba(64, 75, 47, 0.18);
  clip-path: none;
}

.ticket-card .ticket-main::before,
.ticket-card .ticket-main::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 14px;
  height: 28px;
  border: 1px solid var(--ticket-line-strong);
  background: var(--ticket-paper);
  transform: translateY(-50%);
}

.ticket-card .ticket-main::before {
  left: -1px;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.ticket-card .ticket-main::after {
  right: -1px;
  border-right: 0;
  border-radius: 999px 0 0 999px;
}

.ticket-card .ticket-main span {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 0.92;
}

.ticket-card .ticket-main span::after {
  width: min(210px, 74%);
  height: 8px;
  margin-top: 9px;
  background-image: radial-gradient(circle, rgba(64, 75, 47, 0.82) 0 1.7px, transparent 1.8px);
  background-size: 14px 8px;
  background-repeat: repeat-x;
  background-position: center;
}

.ticket-card .ticket-main b {
  color: var(--olive-deep);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.ticket-card .ticket-meta {
  border-color: rgba(64, 75, 47, 0.13);
  border-radius: 14px;
  background: rgba(64, 75, 47, 0.08);
}

.ticket-card .ticket-meta div {
  gap: 4px;
  padding: 9px 11px;
  background: rgba(255, 250, 240, 0.48);
}

.ticket-card .ticket-meta dt,
.ticket-card .ticket-order span,
.ticket-card .ticket-total span {
  color: rgba(64, 75, 47, 0.72);
  font-size: 0.68rem;
}

.ticket-card .ticket-meta dd,
.ticket-card .ticket-order b {
  color: var(--olive-deep);
  font-size: 0.86rem;
}

.ticket-card .ticket-perforation {
  height: 1px;
  margin: 1px 0;
  background-image: linear-gradient(90deg, rgba(64, 75, 47, 0.3) 0 7px, transparent 7px 16px);
  background-size: 16px 1px;
}

.ticket-card .ticket-order {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ticket-card .ticket-order div {
  display: grid;
  gap: 3px;
  padding-bottom: 0;
  border-bottom: 0;
}

.ticket-card .ticket-total {
  min-height: 34px;
  margin-top: 0;
  padding-top: 8px;
  border-top-color: rgba(64, 75, 47, 0.16);
}

.ticket-card .ticket-total strong {
  color: var(--olive-deep);
  font-size: clamp(1.35rem, 2.1vw, 1.72rem);
}

.ticket-card .ticket-actions {
  gap: 10px;
  padding-top: 0;
}

.ticket-card .ticket-actions .button {
  min-height: 37px;
  padding-inline: 14px;
  font-size: 0.78rem;
}

.ticket-stub {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding: 22px 15px;
  border-left: 1px dashed rgba(64, 75, 47, 0.5);
  color: var(--olive-deep);
  text-align: center;
  transform-origin: left center;
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 520ms ease,
    border-color 520ms ease;
}

.ticket-stub::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: -5px;
  width: 9px;
  background-image: radial-gradient(circle, rgba(64, 75, 47, 0.44) 0 2px, transparent 2.2px);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 9px 16px;
  opacity: 0.76;
  transition: opacity 420ms ease, transform 520ms ease;
}

.ticket-stub::after {
  content: "";
  width: 44px;
  height: 96px;
  margin-top: 2px;
  border-radius: 2px;
  background:
    linear-gradient(90deg,
      var(--olive-deep) 0 3px,
      transparent 3px 6px,
      var(--olive-deep) 6px 8px,
      transparent 8px 12px,
      var(--olive-deep) 12px 17px,
      transparent 17px 20px,
      var(--olive-deep) 20px 22px,
      transparent 22px 26px,
      var(--olive-deep) 26px 31px,
      transparent 31px 35px,
      var(--olive-deep) 35px 38px,
      transparent 38px 41px,
      var(--olive-deep) 41px 44px);
  opacity: 0.68;
  transition: opacity 360ms ease, transform 520ms ease;
}

.ticket-stub span,
.ticket-stub small {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ticket-stub span {
  color: rgba(64, 75, 47, 0.68);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-stub strong {
  color: var(--olive-deep);
  font-family: "Onest", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-stub small {
  color: rgba(64, 75, 47, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.3;
}

.ticket-card:hover .ticket-stub,
.ticket-card:focus-within .ticket-stub {
  border-left-color: rgba(64, 75, 47, 0.86);
  filter: drop-shadow(-8px 12px 18px rgba(64, 75, 47, 0.16));
  transform: translateX(12px) rotate(1.4deg);
}

.ticket-card:hover .ticket-stub::before,
.ticket-card:focus-within .ticket-stub::before {
  opacity: 1;
  transform: translateX(-2px);
}

.ticket-card:hover .ticket-stub::after,
.ticket-card:focus-within .ticket-stub::after {
  opacity: 0.9;
  transform: translateX(2px);
}

@media (max-width: 760px) {
  .ticket-card {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    border-radius: 24px;
    clip-path: polygon(
      5% 0,
      95% 0,
      100% 7%,
      100% 93%,
      95% 100%,
      5% 100%,
      0 93%,
      0 7%
    );
  }

  .ticket-card .ticket-body {
    padding: 22px 18px 18px;
  }

  .ticket-card .ticket-main {
    align-items: flex-start;
    flex-direction: column;
    min-height: 94px;
  }

  .ticket-card .ticket-order {
    grid-template-columns: 1fr;
  }

  .ticket-stub {
    grid-template-columns: repeat(3, auto);
    min-height: 64px;
    padding: 14px 18px;
    border-top: 1px dashed rgba(64, 75, 47, 0.5);
    border-left: 0;
  }

  .ticket-stub::before {
    inset: -5px 18px auto;
    width: auto;
    height: 9px;
    background-repeat: repeat-x;
    background-size: 16px 9px;
  }

  .ticket-stub::after {
    width: 92px;
    height: 26px;
    margin-top: 0;
    background:
      linear-gradient(0deg,
        var(--olive-deep) 0 3px,
        transparent 3px 6px,
        var(--olive-deep) 6px 8px,
        transparent 8px 12px,
        var(--olive-deep) 12px 17px,
        transparent 17px 20px,
        var(--olive-deep) 20px 22px,
        transparent 22px 26px);
  }

  .ticket-stub span,
  .ticket-stub small {
    writing-mode: initial;
    transform: none;
  }

  .ticket-card:hover .ticket-stub,
  .ticket-card:focus-within .ticket-stub {
    transform: translateY(8px) rotate(0.8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticket-card,
  .ticket-stub,
  .ticket-stub::before,
  .ticket-stub::after {
    transform: none !important;
  }
}
