:root {
  color-scheme: light;
  --pink: #ec5b97;
  --pink-deep: #d94785;
  --pink-hot: #ff5fa8;
  --pink-soft: #ffd2df;
  --cream: #fff1f6;
  --black: #08080c;
  --black-2: #111116;
  --muted-black: rgba(19, 12, 18, 0.7);
  --white-muted: rgba(255, 245, 250, 0.68);
  --line-pink: rgba(255, 95, 168, 0.72);
  --radius: 8px;
  --motion-fast: 180ms;
  --motion-mid: 260ms;
  --motion-slow: 380ms;
  --ease-editorial: cubic-bezier(0.2, 0.78, 0.24, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  font-family: "Avenir Next", "SF Pro Display", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  width: 100%;
  min-width: 0;
  min-height: 1086px;
  margin: 0;
  background: var(--black);
  color: #160914;
}

html {
  /* Keep Safari/Chrome text autosizing from changing measured component
     geometry at narrow and split-view widths. Pinch zoom remains available. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  display: grid;
  place-items: start center;
  overflow: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-shell {
  position: relative;
  width: 1448px;
  height: 1190px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(222, 50, 124, 0.18), transparent 28%, rgba(255, 255, 255, 0.05) 56%, transparent 78%),
    var(--pink);
  isolation: isolate;
}

.home-shell::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 1448px;
  height: 1190px;
  clip-path: path("M1120 0 C1204 128 1274 320 1242 512 C1207 716 1058 890 814 1004 C730 1044 660 1072 604 1086 L604 1190 L1448 1190 L1448 0 Z");
  background:
    radial-gradient(circle at 82% 46%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 94% 20%, rgba(236, 91, 151, 0.12), transparent 22%),
    linear-gradient(140deg, #15151b, #07070a 70%);
  box-shadow: inset 24px 0 44px rgba(255, 255, 255, 0.03);
}

.home-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0.65px, transparent 0.75px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.045), transparent 44%);
  background-size: 6px 6px, auto;
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: 5;
  left: 68px;
  top: 23px;
  width: 1328px;
  height: 50px;
  display: grid;
  grid-template-columns: 300px 1fr 548px;
  align-items: center;
}

.brand-wordmark {
  color: var(--cream);
  font-size: 27px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 59px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.primary-nav a {
  padding: 10px 0;
}

.header-actions {
  display: grid;
  grid-template-columns: 278px 78px 154px;
  gap: 18px;
  align-items: center;
  justify-content: end;
}

.language-select {
  width: 78px;
  height: 50px;
  display: block;
  border: 1px solid rgba(255, 95, 168, 0.72);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  pointer-events: auto;
}

.language-select select {
  width: 100%;
  height: 100%;
  padding: 0 11px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: var(--cream);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.search-form {
  position: relative;
  width: 278px;
  height: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255, 95, 168, 0.76);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.search-results {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 8px);
  left: 0;
  width: min(420px, calc(100vw - 32px));
  max-height: 360px;
  overflow-y: auto;
  border: 1px solid rgba(255, 95, 168, 0.5);
  border-radius: 8px;
  background: rgba(10, 10, 14, 0.98);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  padding: 6px;
}

.search-result-item {
  width: 100%;
  min-height: 56px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 3px 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 245, 250, 0.1);
  background: transparent;
  color: var(--cream);
  padding: 10px;
  text-align: left;
}

.search-result-item:last-child {
  border-bottom: 0;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  background: rgba(255, 95, 168, 0.14);
}

.search-result-item > span {
  grid-row: 1 / 3;
  align-self: center;
  color: #ff8fc7;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result-item strong,
.search-result-item small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-item strong {
  font-size: 13px;
}

.search-result-item small,
.search-result-state {
  color: rgba(255, 245, 250, 0.62);
  font-size: 11px;
}

.search-result-state {
  margin: 0;
  padding: 14px;
}

.search-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-size: 14px;
}

.search-form input::placeholder {
  color: rgba(255, 207, 224, 0.78);
}

.search-form > button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
}

.search-form svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tip-button,
.dialog-submit {
  width: 154px;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff76b1, #ff5fa8);
  color: #2d0718;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(116, 0, 48, 0.22);
}

.hero-section {
  position: static;
}

.intro-copy {
  position: absolute;
  z-index: 3;
  left: 68px;
  top: 112px;
  width: 328px;
  display: grid;
  gap: 1px;
  color: #150711;
  font-size: 14px;
  line-height: 1.33;
  font-weight: 560;
}

.intro-copy p {
  margin: 0;
  white-space: pre-line;
}

.hero-title-row {
  position: absolute;
  z-index: 3;
  left: 64px;
  top: 216px;
  width: 992px;
  height: 140px;
  display: block;
}

.hero-title-row h1 {
  position: absolute;
  left: -7px;
  top: 0;
  margin: 0;
  color: rgba(255, 242, 247, 0.92);
  font-family: "Avenir Next", "SF Pro Display", "Helvetica Neue", Arial, "PingFang SC", sans-serif;
  font-size: 165px;
  line-height: 0.78;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-positioning {
  position: absolute;
  left: 786px;
  top: 8px;
  width: 310px;
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 28px;
  align-items: center;
}

.hero-positioning span {
  width: 2px;
  height: 128px;
  background: rgba(255, 242, 247, 0.58);
}

.hero-positioning p {
  margin: 0;
  color: rgba(255, 242, 247, 0.95);
  font-size: 20px;
  line-height: 1.32;
  font-weight: 520;
}

.hero-grid {
  position: static;
}

.map-card {
  position: absolute;
  z-index: 3;
  left: 64px;
  top: 372px;
  width: 1040px;
  height: 496px;
}

.map-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.52), transparent 35%),
    radial-gradient(circle at 76% 70%, rgba(236, 91, 151, 0.07), transparent 38%),
    linear-gradient(145deg, #ffe4ec, #ffd4e1 58%, #fac0d5);
  box-shadow:
    0 28px 70px rgba(75, 8, 38, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.map-card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.08;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.46) 0.65px, transparent 0.72px);
  background-size: 5px 5px;
  pointer-events: none;
}

.asia-map-preview {
  position: absolute;
  inset: 0;
}

.asia-base {
  position: absolute;
  left: 0;
  top: 0;
  width: 1040px;
  height: 496px;
  opacity: 1;
}

.city-nodes {
  position: absolute;
  inset: 0;
  z-index: 6;
}

.map-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  pointer-events: auto;
}

.map-node i {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--pink-hot);
  box-shadow: 0 0 0 1px rgba(236, 91, 151, 0.62);
}

.map-node b {
  position: absolute;
  z-index: 3;
  left: 11px;
  top: -8px;
  min-width: max-content;
  padding: 7px 12px;
  border-radius: 5px;
  background: rgba(8, 8, 12, 0.96);
  color: var(--cream);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 9px 18px rgba(8, 8, 12, 0.18);
  pointer-events: none;
}

.map-cta {
  position: absolute;
  z-index: 6;
  left: 27px;
  bottom: 32px;
  display: inline-grid;
  grid-template-columns: 44px 150px;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #672037;
  text-align: left;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 560;
}

.map-cta span:last-child {
  white-space: pre-line;
}

.map-cta > span:first-child {
  width: 44px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--pink-hot);
}

.map-cta svg {
  width: 42px;
  height: 48px;
  fill: currentColor;
}

.map-cta svg circle {
  fill: var(--cream);
}

.featured-cities {
  position: absolute;
  z-index: 6;
  left: 1142px;
  top: 379px;
  width: 252px;
  min-height: 564px;
  color: var(--cream);
}

.featured-cities h2 {
  margin: 0 0 10px;
  color: #150711;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(30, 5, 18, 0.24);
}

.map-node.is-secondary i {
  width: 10px;
  height: 10px;
  border-width: 2px;
  background: #ff8fbe;
  box-shadow:
    0 0 0 1px rgba(255, 247, 251, 0.42),
    0 4px 10px rgba(72, 9, 38, 0.2);
}

.map-node.is-secondary b {
  left: 9px;
  top: -6px;
  padding: 3px 5px;
  border-radius: 4px;
  background: rgba(8, 8, 12, 0.86);
  font-size: 7.5px;
  font-weight: 850;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 16px rgba(30, 5, 18, 0.18);
  transition: opacity 160ms var(--ease-editorial);
}

.map-node.is-secondary:hover b,
.map-node.is-secondary:focus b,
.map-node.is-secondary.is-active b {
  opacity: 1;
  visibility: visible;
}

.map-node.label-left b {
  right: 11px;
  left: auto;
}

.map-node.is-secondary.label-left b {
  right: 9px;
}

.map-node.label-bottom b {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.map-node.label-top b {
  top: auto;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.featured-city-list {
  display: grid;
}

.featured-city {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  min-height: 69px;
  padding: 9px 0 10px;
  border-bottom: 1px solid rgba(255, 95, 168, 0.76);
  color: var(--cream);
}

.city-number {
  color: #ff74b1;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 760;
}

.city-copy {
  display: grid;
  gap: 2px;
}

.city-copy strong {
  color: var(--cream);
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.city-copy em,
.city-copy small {
  color: rgba(255, 245, 250, 0.68);
  font-size: 12px;
  line-height: 1.22;
  font-style: normal;
}

.featured-city-next {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  border: 0;
  background: transparent;
  color: #ff74b1;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.country-city-section {
  position: absolute;
  z-index: 4;
  left: 68px;
  top: 894px;
  width: 1312px;
}

.country-city-directory {
  height: 190px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 10px;
}

.country-directory-panel,
.city-directory-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 95, 168, 0.52);
  border-radius: 8px;
  background: #0b0b10;
  color: var(--cream);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.country-directory-panel,
.city-directory-panel {
  display: grid;
  grid-template-rows: 38px minmax(0, 1fr);
}

.directory-panel-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 0 10px 0 14px;
  border-bottom: 1px solid rgba(255, 95, 168, 0.28);
  background: #111116;
}

.directory-panel-header > span:first-child {
  overflow: hidden;
  color: #ff8fc2;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-panel-header > strong {
  color: rgba(255, 245, 250, 0.78);
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.directory-scroll-controls {
  display: inline-flex;
  gap: 4px;
}

.directory-scroll-controls button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 95, 168, 0.46);
  border-radius: 5px;
  background: #0b0b10;
  color: #ff8fc2;
  font-size: 12px;
  line-height: 1;
}

.directory-scroll-controls button:disabled {
  cursor: default;
  opacity: 0.28;
}

.axis-mobile {
  display: none;
}

.country-directory-list,
.city-directory-track {
  min-width: 0;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 95, 168, 0.64) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.country-directory-list {
  overflow-x: hidden;
  overflow-y: auto;
}

.country-directory-item {
  width: 100%;
  min-height: 43px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 245, 250, 0.16);
  background: #0b0b10;
  color: var(--cream);
  text-align: left;
}

.country-directory-item.is-active {
  background: var(--pink-hot);
  color: #10060d;
}

.country-directory-number {
  color: #ff78b5;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.country-directory-item.is-active .country-directory-number {
  color: #10060d;
}

.country-directory-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.country-directory-copy > span {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
  overflow: hidden;
}

.country-directory-copy strong,
.country-directory-copy em {
  overflow: hidden;
  font-style: normal;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-directory-copy strong {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.country-directory-copy em,
.country-directory-copy small {
  font-size: 9px;
  opacity: 0.66;
}

.country-directory-copy small {
  white-space: nowrap;
}

.city-directory-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  touch-action: pan-x pan-y;
}

.city-directory-card {
  position: relative;
  flex: 0 0 286px;
  display: grid;
  grid-template-rows: auto 1px 1fr;
  gap: 11px;
  min-width: 0;
  padding: 16px 22px 14px;
  border: 0;
  border-right: 1px solid rgba(255, 245, 250, 0.22);
  background: #0b0b10;
  color: var(--cream);
  text-align: left;
  scroll-snap-align: start;
}

.city-directory-card.is-leading {
  background: var(--pink-hot);
  color: #10060d;
}

.city-directory-number {
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.city-directory-rule {
  width: 42px;
  background: currentColor;
  opacity: 0.45;
}

.city-directory-copy {
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 3px;
}

.city-directory-copy strong {
  overflow: hidden;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.city-directory-copy em,
.city-directory-copy small {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city-directory-copy em {
  font-size: 14px;
  line-height: 1.1;
}

.city-directory-copy small {
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.68;
}

.city-directory-arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 16px;
  line-height: 1;
  opacity: 0.72;
}

.directory-empty {
  align-self: center;
  margin: auto;
  padding: 14px;
  color: rgba(255, 245, 250, 0.68);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.home-shell.is-city-map .hero-section,
.home-shell.is-city-map .country-city-section,
.home-shell.is-city-map .trust-line,
.home-shell.is-city-map .site-footer {
  display: none;
}

.city-map-view {
  position: absolute;
  z-index: 4;
  inset: 0;
}

.city-map-view[hidden] {
  display: none;
}

.city-map-copy {
  position: absolute;
  z-index: 5;
  left: 68px;
  top: 96px;
  width: 920px;
}

.back-home-button {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 245, 250, 0.34);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.88);
  color: var(--cream);
  padding: 0 15px;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.city-map-eyebrow {
  margin: 26px 0 0;
  color: #160914;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.city-map-copy h1 {
  margin: 10px 0 0 -7px;
  color: rgba(255, 242, 247, 0.94);
  font-size: 94px;
  line-height: 0.84;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.city-map-copy > p:not(.city-map-eyebrow) {
  width: 520px;
  margin: 13px 0 0;
  color: #160914;
  font-size: 14px;
  line-height: 1.34;
  font-weight: 620;
}

.city-map-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.content-tier {
  border: 1px solid rgba(255, 95, 168, 0.42);
  border-radius: 999px;
  padding: 4px 8px;
  color: #7f1f49;
  font-weight: 900;
}

.city-map-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 245, 250, 0.3);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.82);
  padding: 0 12px;
}

.type-filter-bar {
  position: absolute;
  z-index: 6;
  left: 68px;
  top: 352px;
  width: 1312px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
  gap: 8px;
}

.type-filter {
  min-width: 0;
  height: 44px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 95, 168, 0.46);
  border-radius: 8px;
  background: rgba(8, 8, 12, 0.7);
  color: rgba(255, 245, 250, 0.72);
  padding: 0 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
}

.type-filter svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ff74b1;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.type-filter span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.type-filter small {
  min-width: 24px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 95, 168, 0.16);
  color: currentColor;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
}

.type-filter.is-active {
  background: #ff6dad;
  color: #2d0718;
  border-color: transparent;
}

.type-filter.is-active svg {
  stroke: currentColor;
}

.city-map-layout {
  position: absolute;
  z-index: 5;
  left: 64px;
  top: 402px;
  width: 1316px;
  display: grid;
  grid-template-columns: 892px 396px;
  gap: 28px;
  align-items: stretch;
}

.local-map-card {
  position: relative;
  height: 512px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 95, 168, 0.16), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(255, 245, 250, 0.08), transparent 42%),
    linear-gradient(145deg, #24242a, #101015 58%, #07070a);
  box-shadow:
    0 30px 80px rgba(75, 8, 38, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.local-map-heading {
  position: absolute;
  z-index: 6;
  left: 24px;
  top: 21px;
  max-width: 360px;
  color: rgba(255, 205, 224, 0.88);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 780;
}

.local-map-canvas {
  position: absolute;
  inset: 58px 24px 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 95, 168, 0.28);
  background: linear-gradient(145deg, rgba(22, 22, 27, 0.94), rgba(7, 7, 10, 0.98));
}

.local-map-canvas::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 95, 168, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.leaflet-map-host {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #111116;
  color: var(--cream);
  font-family: inherit;
}

.leaflet-map-host .leaflet-tile-pane {
  filter: grayscale(1) invert(0.96) contrast(1.18) brightness(0.68) saturate(0.12);
  opacity: 0.9;
}

.leaflet-map-host .leaflet-overlay-pane {
  background: rgba(236, 91, 151, 0.035);
}

.leaflet-map-host .leaflet-pane,
.leaflet-map-host .leaflet-control {
  font-family: inherit;
}

.kindred-poi-icon {
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center;
  border: 0;
  background: transparent;
}

.kindred-poi-marker {
  --marker-size: 32px;
  width: var(--marker-size);
  height: var(--marker-size);
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 245, 250, 0.92);
  border-radius: 50%;
  background: #ff6dad;
  color: #2d0718;
  box-shadow:
    0 0 0 2px rgba(8, 8, 12, 0.88),
    0 0 0 4px rgba(255, 95, 168, 0.16),
    0 8px 18px rgba(55, 4, 27, 0.36);
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.kindred-poi-marker b {
  font-size: 9px;
  line-height: 1;
  font-weight: 950;
}

.kindred-poi-marker.is-estimated {
  border-style: dashed;
  background: #17171d;
  color: #ff86bd;
}

.kindred-poi-marker.is-cluster {
  --marker-size: 36px;
  background: #ff8fc2;
  font-size: 12px;
}

.kindred-poi-marker.is-selected,
.kindred-poi-marker.is-list-hovered {
  transform: scale(1.12);
  background: var(--cream);
  color: #b31555;
  box-shadow:
    0 0 0 2px rgba(8, 8, 12, 0.9),
    0 0 0 6px rgba(255, 95, 168, 0.4),
    0 12px 24px rgba(55, 4, 27, 0.46);
}

.kindred-poi-tooltip {
  border: 1px solid rgba(255, 95, 168, 0.48);
  border-radius: 6px;
  background: rgba(8, 8, 12, 0.94);
  color: var(--cream);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  padding: 9px 11px;
}

.kindred-poi-tooltip::before {
  border-top-color: rgba(8, 8, 12, 0.94);
}

.kindred-tooltip-list {
  display: grid;
  gap: 3px;
}

.kindred-tooltip-list strong,
.kindred-tooltip-list small {
  display: block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kindred-tooltip-list strong {
  color: #ff9bc9;
  font-size: 11px;
  line-height: 1.2;
}

.kindred-tooltip-list small {
  color: rgba(255, 245, 250, 0.68);
  font-size: 10px;
}

.map-controls {
  position: absolute;
  z-index: 900;
  right: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(255, 95, 168, 0.28);
  border-radius: 8px;
  background: rgba(8, 8, 12, 0.88);
  box-shadow: 0 16px 34px rgba(58, 8, 31, 0.2);
}

.map-control-button,
.map-reset-button {
  height: 36px;
  border: 1px solid rgba(255, 95, 168, 0.36);
  border-radius: 8px;
  background: rgba(255, 245, 250, 0.08);
  color: #ff74b1;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.map-control-button {
  width: 36px;
}

.map-reset-button {
  padding: 0 10px;
  text-transform: uppercase;
}

.map-scale-indicator {
  min-width: 42px;
  color: rgba(255, 245, 250, 0.8);
  font-size: 11px;
  line-height: 1;
  font-weight: 920;
  text-align: center;
}

.local-map-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.local-map-stage.is-dragging {
  cursor: grabbing;
}

.local-map-viewport {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1180px;
  height: 660px;
  border-radius: 8px;
  overflow: hidden;
  transform-origin: center;
  transition: transform 160ms ease;
  will-change: transform;
}

.local-map-stage.is-dragging .local-map-viewport {
  transition: none;
}

.local-map-tile-layer,
.local-map-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.local-map-tile-layer {
  z-index: 0;
}

.local-map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  opacity: 0.82;
  filter: grayscale(1) invert(0.96) contrast(1.2) brightness(0.68) saturate(0.12);
  user-select: none;
  pointer-events: none;
}

.local-map-tile.is-base {
  opacity: 0.38;
}

.local-map-tile.is-hidpi {
  opacity: 0.9;
}

.local-map-tint {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 95, 168, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 95, 168, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, rgba(8, 8, 12, 0.26), rgba(236, 91, 151, 0.1));
  background-size: 88px 88px, 88px 88px, auto;
  mix-blend-mode: normal;
}

.local-map-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.1;
  background-image: radial-gradient(circle, #ff74b1 0.7px, transparent 0.8px);
  background-size: 12px 12px;
}

.local-map-area-labels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.local-map-area-label {
  position: absolute;
  transform: translate(11px, -19px) scale(var(--pin-scale, 1));
  transform-origin: left center;
  max-width: 124px;
  overflow: hidden;
  border: 1px solid rgba(255, 95, 168, 0.42);
  border-radius: 6px;
  background: rgba(8, 8, 12, 0.76);
  color: rgba(255, 245, 250, 0.82);
  padding: 3px 6px;
  font-size: 9px;
  line-height: 1;
  font-weight: 880;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 9px 20px rgba(86, 8, 42, 0.08);
}

.local-map-poi {
  position: absolute;
  z-index: 5;
  left: var(--x);
  top: var(--y);
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%) scale(var(--pin-scale, 1));
  transform-origin: center;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 95, 168, 0.64);
  border-radius: 7px;
  background: rgba(8, 8, 12, 0.92);
  color: #ff74b1;
  box-shadow: 0 10px 22px rgba(86, 8, 42, 0.16);
}

.local-map-poi.is-selected {
  width: 44px;
  height: 44px;
  background: #ff6dad;
  color: #2d0718;
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgba(255, 245, 250, 0.52), 0 14px 30px rgba(86, 8, 42, 0.24);
}

.local-map-poi:hover {
  border-color: rgba(255, 245, 250, 0.86);
}

.local-map-poi.is-compact {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.local-map-poi.is-compact::after {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 245, 250, 0.92);
  border-radius: 50%;
  background: #ff6dad;
  box-shadow:
    0 0 0 2px rgba(8, 8, 12, 0.9),
    0 0 0 4px rgba(255, 95, 168, 0.18),
    0 8px 18px rgba(86, 8, 42, 0.2);
}

.local-map-poi.is-compact.is-selected::after {
  width: 11px;
  height: 11px;
  background: #ff7bb8;
  box-shadow:
    0 0 0 2px rgba(8, 8, 12, 0.95),
    0 0 0 5px rgba(255, 245, 250, 0.42),
    0 0 0 8px rgba(255, 95, 168, 0.18),
    0 10px 22px rgba(86, 8, 42, 0.24);
}

.local-map-poi.is-compact svg,
.local-map-poi.is-compact .local-map-pin-number {
  display: none;
}

.local-map-poi.is-compact:hover,
.local-map-poi.is-compact:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 245, 250, 0.48),
    0 10px 22px rgba(86, 8, 42, 0.28);
}

.map-attribution {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 900;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.74);
  color: rgba(255, 245, 250, 0.74);
  padding: 5px 9px;
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
}

.local-map-poi svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.local-map-pin-number {
  position: absolute;
  left: 4px;
  top: 4px;
  color: currentColor;
  font-size: 8px;
  line-height: 1;
  font-weight: 950;
}

.empty-pois {
  position: absolute;
  left: 22px;
  bottom: 18px;
  margin: 0;
  color: #672037;
  font-weight: 800;
}

.poi-detail-card {
  height: 512px;
  min-height: 512px;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(255, 95, 168, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(19, 19, 25, 0.98), rgba(7, 7, 10, 0.98));
  color: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.poi-detail-kicker {
  margin: 0 0 14px;
  color: #ff74b1;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.poi-detail-title-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.poi-detail-title-row svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #ff74b1;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poi-detail-title-row h2 {
  margin: 0;
  color: var(--cream);
  font-size: 25px;
  line-height: 1.04;
  font-weight: 950;
}

.poi-photo-empty {
  min-height: 58px;
  display: grid;
  gap: 5px;
  align-content: center;
  margin: 13px 0;
  border: 1px dashed rgba(255, 95, 168, 0.5);
  border-radius: 8px;
  background: rgba(255, 95, 168, 0.08);
  padding: 14px;
}

.poi-photo-empty span {
  display: grid;
  gap: 5px;
  color: #ff9bc9;
  font-size: 13px;
  line-height: 1;
  font-weight: 920;
  text-transform: uppercase;
}

.poi-photo-empty strong {
  display: block;
}

.poi-photo-empty small {
  color: rgba(255, 245, 250, 0.66);
  font-size: 12px;
  line-height: 1.35;
}

.poi-photo-upload-button {
  width: fit-content;
  min-height: 34px;
  border: 1px solid rgba(255, 95, 168, 0.52);
  border-radius: 8px;
  background: rgba(255, 95, 168, 0.08);
  color: #ff9bc9;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 900;
}

.poi-photo {
  height: auto;
  overflow: hidden;
  margin: 13px 0;
  border-radius: 8px;
  background: #111116;
}

.poi-photo-cover {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: zoom-in;
}

.poi-photo img {
  width: 100%;
  height: 132px;
  display: block;
  object-fit: cover;
}

.poi-photo figcaption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 10px;
  align-items: center;
  padding: 8px 10px 10px;
  color: rgba(255, 245, 250, 0.78);
  font-size: 11px;
  line-height: 1.35;
}

.poi-photo-caption,
.poi-photo-attribution {
  min-width: 0;
}

.poi-photo-attribution {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 9px;
  color: rgba(255, 245, 250, 0.58);
  font-size: 10px;
}

.poi-photo-attribution strong {
  color: rgba(255, 245, 250, 0.72);
}

.poi-photo-attribution a {
  color: #ff9bc9;
  font-weight: 800;
}

.poi-photo figcaption .poi-photo-upload-button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.poi-photo-gallery {
  display: grid;
  gap: 8px;
  margin: -5px 0 13px;
}

.poi-photo-gallery header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 245, 250, 0.68);
  font-size: 10px;
}

.poi-photo-gallery header strong {
  color: rgba(255, 245, 250, 0.86);
  font-size: 11px;
}

.poi-photo-thumbnails {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 64px;
  gap: 7px;
  overflow-x: auto;
  padding: 1px 1px 5px;
  scrollbar-width: thin;
}

.poi-photo-thumbnail {
  width: 64px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 250, 0.18);
  border-radius: 4px;
  background: #0c0c11;
  padding: 0;
}

.poi-photo-thumbnail.is-active {
  border-color: #ff8fc7;
  box-shadow: 0 0 0 1px rgba(255, 143, 199, 0.28);
}

.poi-photo-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.poi-detail-description {
  margin: 0;
  color: rgba(255, 245, 250, 0.78);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.poi-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 13px 0;
}

.poi-detail-facts div {
  min-height: 54px;
  display: grid;
  gap: 5px;
  align-content: center;
  border: 1px solid rgba(255, 95, 168, 0.3);
  border-radius: 8px;
  padding: 10px;
}

.poi-detail-facts .is-wide {
  grid-column: 1 / -1;
}

.poi-detail-facts dt {
  color: rgba(255, 245, 250, 0.56);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.poi-detail-facts dd {
  margin: 0;
  color: var(--cream);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.poi-detail-facts dd a {
  color: #ff9bc9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.poi-detail-trust {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 95, 168, 0.28);
}

.poi-detail-trust > h3 {
  margin: 0;
  color: rgba(255, 155, 201, 0.86);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.poi-detail-facts.is-secondary {
  gap: 0 12px;
  margin: 8px 0 0;
}

.poi-detail-facts.is-secondary div {
  min-height: 44px;
  border: 0;
  border-top: 1px solid rgba(255, 245, 250, 0.1);
  border-radius: 0;
  padding: 9px 2px;
}

.poi-detail-facts.is-secondary dt {
  color: rgba(255, 245, 250, 0.46);
}

.poi-detail-facts.is-secondary dd {
  color: rgba(255, 245, 250, 0.78);
  font-weight: 720;
}

.poi-detail-section {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}

.poi-detail-section h3 {
  margin: 0;
  color: #ff74b1;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.poi-detail-section p {
  margin: 0;
  color: rgba(255, 245, 250, 0.72);
  font-size: 12px;
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.poi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.poi-tags span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 95, 168, 0.32);
  border-radius: 999px;
  color: rgba(255, 245, 250, 0.72);
  padding: 0 9px;
  font-size: 10px;
  line-height: 1;
  font-weight: 820;
  text-transform: uppercase;
}

.poi-save-button {
  width: 100%;
  height: 40px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff76b1, #ff5fa8);
  color: #2d0718;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.poi-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.poi-detail-actions > :only-child {
  grid-column: 1 / -1;
}

.poi-visit-actions > :first-child {
  grid-column: 1 / -1;
}

.poi-community-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.poi-community-actions > * {
  min-width: 0;
}

.poi-evidence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.poi-evidence-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 95, 168, 0.25);
  border-radius: 4px;
  color: #ff9bc9;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .poi-detail-actions {
    position: relative;
    bottom: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    background: transparent;
  }
}

@media (min-width: 641px) and (max-width: 1447px) {
  .poi-detail-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.poi-detail-actions .poi-save-button {
  margin-top: 0;
}

.poi-navigation-button,
.poi-secondary-button {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 95, 168, 0.52);
  border-radius: 8px;
  background: rgba(255, 95, 168, 0.08);
  color: #ff9bc9;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.poi-secondary-button {
  width: 100%;
}

.poi-strip {
  position: absolute;
  z-index: 5;
  left: 68px;
  top: 940px;
  width: 1312px;
}

.poi-strip h2 {
  margin: 0 0 10px;
  color: #150711;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.poi-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.poi-row {
  min-width: 214px;
  height: 84px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-content: center;
  border: 1px solid rgba(255, 95, 168, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(8, 8, 12, 0.9);
  color: var(--cream);
  padding: 10px;
  text-align: left;
}

.poi-row.is-selected {
  border-color: rgba(255, 245, 250, 0.82);
  background: #ff6dad;
  color: #2d0718;
}

.poi-row span {
  grid-row: 1 / 3;
  color: currentColor;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.poi-row strong {
  overflow: hidden;
  color: currentColor;
  font-size: 12px;
  line-height: 1.18;
  font-weight: 950;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.poi-row em {
  overflow: hidden;
  color: currentColor;
  opacity: 0.68;
  font-size: 10px;
  line-height: 1.25;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-line {
  position: absolute;
  z-index: 5;
  left: 485px;
  top: 1102px;
  height: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

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

.trust-line svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-line i {
  color: rgba(255, 245, 250, 0.6);
  font-style: normal;
}

.site-footer {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 58px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 245, 250, 0.36);
  color: rgba(255, 245, 250, 0.72);
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 72px;
}

.site-footer a {
  color: rgba(255, 245, 250, 0.88);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 95, 168, 0.48);
  border-radius: 8px;
  background: rgba(8, 8, 12, 0.92);
  color: var(--cream);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.service-status {
  position: fixed;
  z-index: 31;
  left: 50%;
  bottom: 22px;
  width: min(680px, calc(100vw - 32px));
  transform: translateX(-50%);
  padding: 12px 16px;
  border: 1px solid rgba(255, 95, 168, 0.72);
  border-radius: 8px;
  background: rgba(8, 8, 12, 0.96);
  color: var(--cream);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.45;
  pointer-events: none;
}

.tip-dialog {
  width: min(520px, calc(100vw - 32px));
  border: 1px solid rgba(255, 95, 168, 0.54);
  border-radius: 8px;
  background: #111116;
  color: var(--cream);
  padding: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.tip-dialog::backdrop {
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(8px);
}

.tip-dialog.is-photo-lightbox {
  width: min(960px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
}

.poi-photo-lightbox {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  max-height: calc(100vh - 34px);
  padding: 18px;
}

.poi-photo-lightbox > header {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 48px;
  padding-right: 30px;
}

.poi-photo-lightbox > header strong {
  flex: 0 0 auto;
  color: rgba(255, 245, 250, 0.62);
  font-size: 11px;
}

.poi-photo-lightbox-stage {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050508;
}

.poi-photo-lightbox-stage > img {
  width: 100%;
  height: min(70vh, 720px);
  display: block;
  object-fit: contain;
}

.poi-photo-lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 40px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(5, 5, 8, 0.78);
  color: var(--cream);
  transform: translateY(-50%);
}

.poi-photo-lightbox-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.poi-photo-lightbox-nav.is-previous {
  left: 12px;
}

.poi-photo-lightbox-nav.is-next {
  right: 12px;
}

.poi-photo-lightbox-nav.is-next svg {
  transform: rotate(180deg);
}

.poi-photo-lightbox > footer {
  display: grid;
  gap: 5px;
  color: rgba(255, 245, 250, 0.78);
  font-size: 11px;
  line-height: 1.4;
}

.tip-dialog form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
}

.dialog-kicker {
  margin: 0;
  color: #ff9bc9;
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.tip-dialog h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
}

.tip-dialog p {
  margin: 0;
  color: rgba(255, 247, 251, 0.72);
  line-height: 1.5;
}

.tip-dialog textarea {
  width: 100%;
  min-height: 124px;
  resize: vertical;
  border: 1px solid rgba(255, 95, 168, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  padding: 12px;
}

.tip-city-field {
  display: grid;
  gap: 8px;
  color: rgba(255, 245, 250, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.tip-city-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 95, 168, 0.35);
  border-radius: 8px;
  background: #1a171d;
  color: var(--cream);
  padding: 0 12px;
}

.poi-action-form fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.poi-action-form legend,
.poi-action-field > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 245, 250, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.rating-options,
.signal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rating-options label,
.signal-options label,
.poi-action-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 12px;
}

.rating-options input,
.signal-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-options span,
.signal-options span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 95, 168, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0 11px;
}

.rating-options span {
  width: 40px;
  padding: 0;
}

.rating-options input:checked + span,
.signal-options input:checked + span {
  border-color: #ff8fc7;
  background: #ff6dad;
  color: #2d0718;
}

.poi-action-field input[type="file"],
.poi-action-field input[type="datetime-local"],
.poi-action-field input[type="number"],
.poi-action-field input[type="text"],
.poi-action-field input:not([type]),
.poi-action-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 95, 168, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  padding: 10px;
}

.poi-action-field textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid rgba(255, 95, 168, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  padding: 10px;
}

.poi-action-check {
  align-items: flex-start;
  line-height: 1.4;
}

.poi-action-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #ff6dad;
}

.poi-action-error {
  margin: 0;
  color: #ff9bc9 !important;
  font-size: 12px;
  font-weight: 800;
}

.dialog-submit {
  width: 100%;
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    linear-gradient(135deg, rgba(236, 91, 151, 0.9), rgba(236, 91, 151, 0.78) 48%, rgba(8, 8, 12, 0.95) 49%),
    var(--pink);
}

.panel.legal {
  width: min(760px, 100%);
  border: 1px solid rgba(255, 95, 168, 0.28);
  border-radius: 8px;
  background: rgba(255, 241, 246, 0.96);
  color: #160914;
  padding: 38px;
  box-shadow: 0 28px 80px rgba(44, 4, 22, 0.28);
}

.panel.legal h1 {
  margin: 0 0 18px;
  color: #160914;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.panel.legal p {
  margin: 0 0 14px;
  color: rgba(22, 9, 20, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.panel.legal a {
  color: #c73375;
  font-weight: 900;
}

@keyframes kindredFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes kindredRiseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes kindredPanelIn {
  from {
    opacity: 0;
    transform: scale(0.982);
  }

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

@keyframes kindredDetailIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

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

@keyframes kindredPinPop {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1);
  }
}

@keyframes kindredPinPopSelected {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1.12);
  }
}

.home-shell.is-motion-ready:not(.is-booted) .site-header,
.home-shell.is-motion-ready:not(.is-booted) .hero-title-row h1,
.home-shell.is-motion-ready:not(.is-booted) .map-card,
.home-shell.is-motion-ready:not(.is-booted) .featured-city,
.home-shell.is-motion-ready:not(.is-booted) .country-directory-item,
.home-shell.is-motion-ready:not(.is-booted) .city-directory-card {
  opacity: 0;
}

.home-shell.is-booted .site-header {
  animation: kindredFadeIn var(--motion-slow) var(--ease-editorial) both;
}

.home-shell.is-booted .hero-title-row h1 {
  animation: kindredRiseIn 400ms var(--ease-editorial) 60ms both;
  will-change: opacity, transform;
}

.home-shell.is-booted .map-card {
  animation: kindredPanelIn 420ms var(--ease-editorial) 110ms both;
  will-change: opacity, transform;
}

.home-shell.is-booted .featured-city {
  animation: kindredFadeIn 300ms var(--ease-editorial) both;
  animation-delay: calc(140ms + var(--item-delay, 0ms));
}

.home-shell.is-booted .country-directory-item,
.home-shell.is-booted .city-directory-card {
  animation: kindredRiseIn 300ms var(--ease-editorial) both;
  animation-delay: calc(180ms + var(--item-delay, 0ms));
}

.home-shell.is-city-map .city-map-copy h1 {
  animation: kindredRiseIn 320ms var(--ease-editorial) 40ms both;
  will-change: opacity, transform;
}

.home-shell.is-city-map .city-map-copy .back-home-button,
.home-shell.is-city-map .city-map-copy .city-map-eyebrow,
.home-shell.is-city-map .city-map-copy > p:not(.city-map-eyebrow),
.home-shell.is-city-map .city-map-meta {
  animation: kindredRiseIn 260ms var(--ease-editorial) both;
}

.home-shell.is-city-map .city-map-copy .back-home-button {
  animation-delay: 0ms;
}

.home-shell.is-city-map .city-map-copy .city-map-eyebrow {
  animation-delay: 45ms;
}

.home-shell.is-city-map .city-map-copy > p:not(.city-map-eyebrow) {
  animation-delay: 90ms;
}

.home-shell.is-city-map .city-map-meta {
  animation-delay: 120ms;
}

.home-shell.is-city-map .type-filter {
  animation: kindredRiseIn 240ms var(--ease-editorial) both;
  animation-delay: calc(80ms + var(--item-delay, 0ms));
}

.home-shell.is-city-map .local-map-card {
  animation: kindredPanelIn 340ms var(--ease-editorial) 80ms both;
  will-change: opacity, transform;
}

.poi-detail-card.is-detail-active {
  animation: kindredDetailIn var(--motion-mid) var(--ease-editorial) both;
  will-change: opacity, transform;
}

.poi-detail-card.is-detail-active .poi-detail-kicker,
.poi-detail-card.is-detail-active .poi-detail-title-row,
.poi-detail-card.is-detail-active .poi-readiness,
.poi-detail-card.is-detail-active .poi-photo-empty,
.poi-detail-card.is-detail-active .poi-detail-description,
.poi-detail-card.is-detail-active .poi-detail-facts div,
.poi-detail-card.is-detail-active .poi-detail-actions,
.poi-detail-card.is-detail-active .poi-detail-trust,
.poi-detail-card.is-detail-active .poi-detail-section,
.poi-detail-card.is-detail-active .poi-tags,
.poi-detail-card.is-detail-active .poi-tags span,
.poi-detail-card.is-detail-active .poi-save-button {
  animation: kindredRiseIn 220ms var(--ease-editorial) both;
  animation-delay: calc(40ms + var(--item-delay, 0ms));
}

.poi-row {
  animation: kindredRiseIn 240ms var(--ease-editorial) both;
  animation-delay: calc(70ms + var(--item-delay, 0ms));
}

.primary-nav a,
.language-select,
.search-form,
.search-form button,
.tip-button,
.dialog-submit,
.map-cta,
.map-node,
.featured-city,
.featured-city-next,
.country-directory-item,
.city-directory-card,
.directory-scroll-controls button,
.back-home-button,
.type-filter,
.map-control-button,
.map-reset-button,
.local-map-card,
.poi-detail-card,
.poi-detail-facts div,
.poi-detail-section,
.poi-tags span,
.poi-save-button,
.poi-row {
  transition:
    transform var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    filter var(--motion-fast) var(--ease-standard);
}

.search-form:focus-within,
.language-select:focus-within {
  border-color: rgba(255, 245, 250, 0.92);
  box-shadow:
    0 0 0 3px rgba(255, 95, 168, 0.2),
    0 16px 34px rgba(116, 0, 48, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.language-select:focus-within {
  outline: 2px solid rgba(255, 245, 250, 0.72);
  outline-offset: 3px;
}

.type-filter.is-active {
  box-shadow: 0 14px 30px rgba(112, 8, 48, 0.18);
}

.local-map-dim {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  background: rgba(8, 8, 12, 0.16);
  pointer-events: none;
  transition: opacity var(--motion-mid) var(--ease-standard);
}

.local-map-canvas.has-selected-poi .local-map-dim {
  opacity: 0.34;
}

.local-map-poi {
  transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1);
  transition:
    transform var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    filter var(--motion-fast) var(--ease-standard);
  animation: kindredPinPop 260ms var(--ease-editorial) both;
  animation-delay: var(--pin-delay, 0ms);
  will-change: opacity, transform;
}

.local-map-poi:not(.is-compact).is-selected {
  width: 38px;
  height: 38px;
}

.local-map-poi.is-selected {
  transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1.12);
  animation-name: kindredPinPopSelected;
  filter: brightness(1.05);
  box-shadow:
    0 0 0 3px rgba(255, 245, 250, 0.52),
    0 0 22px rgba(255, 95, 168, 0.44),
    0 14px 30px rgba(86, 8, 42, 0.24);
}

.local-map-poi.is-list-hovered {
  transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1.08);
  border-color: rgba(255, 245, 250, 0.9);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 3px rgba(255, 245, 250, 0.34),
    0 0 18px rgba(255, 95, 168, 0.38),
    0 12px 26px rgba(86, 8, 42, 0.24);
}

.local-map-poi.is-selected.is-list-hovered {
  transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1.12);
}

.local-map-poi.is-compact.is-list-hovered::after {
  box-shadow:
    0 0 0 2px rgba(8, 8, 12, 0.95),
    0 0 0 6px rgba(255, 245, 250, 0.36),
    0 0 0 9px rgba(255, 95, 168, 0.16),
    0 10px 22px rgba(86, 8, 42, 0.24);
}

.poi-row.is-selected {
  box-shadow: 0 14px 32px rgba(112, 8, 48, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .primary-nav a:hover,
  .featured-city-next:hover {
    color: #ffd9e8;
    transform: translateY(-2px);
  }

  .tip-button:hover,
  .dialog-submit:hover,
  .poi-save-button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(116, 0, 48, 0.28);
  }

  .search-form:hover,
  .language-select:hover {
    border-color: rgba(255, 245, 250, 0.78);
  }

  .map-cta:hover,
  .featured-city:hover,
  .country-directory-item:hover,
  .city-directory-card:hover,
  .directory-scroll-controls button:hover,
  .back-home-button:hover,
  .type-filter:hover,
  .map-control-button:hover,
  .map-reset-button:hover,
  .poi-row:hover {
    transform: translateY(-2px);
  }

  .featured-city:hover,
  .country-directory-item:hover,
  .city-directory-card:hover,
  .type-filter:hover,
  .poi-row:hover,
  .poi-detail-facts div:hover {
    border-color: rgba(255, 245, 250, 0.72);
    box-shadow: 0 18px 40px rgba(56, 5, 26, 0.22);
  }

  .local-map-card:hover,
  .poi-detail-card:hover {
    border-color: rgba(255, 95, 168, 0.62);
    box-shadow:
      0 34px 92px rgba(75, 8, 38, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }

  .map-node:hover {
    transform: translate(-50%, -50%) translateY(-2px);
  }

  .local-map-poi:hover,
  .local-map-poi:focus-visible {
    transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1.08);
    border-color: rgba(255, 245, 250, 0.9);
    filter: brightness(1.08);
  }

  .local-map-poi.is-selected:hover,
  .local-map-poi.is-selected:focus-visible {
    transform: translate(-50%, -50%) scale(var(--pin-scale, 1)) scale(1.12);
  }
}

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

  .home-shell.is-motion-ready:not(.is-booted) .site-header,
  .home-shell.is-motion-ready:not(.is-booted) .hero-title-row h1,
  .home-shell.is-motion-ready:not(.is-booted) .map-card,
  .home-shell.is-motion-ready:not(.is-booted) .featured-city,
  .home-shell.is-motion-ready:not(.is-booted) .country-directory-item,
  .home-shell.is-motion-ready:not(.is-booted) .city-directory-card {
    opacity: 1;
  }

  .home-shell.is-booted .hero-title-row h1,
  .home-shell.is-booted .map-card,
  .home-shell.is-booted .featured-city,
  .home-shell.is-booted .country-directory-item,
  .home-shell.is-booted .city-directory-card,
  .home-shell.is-city-map .city-map-copy h1,
  .home-shell.is-city-map .city-map-copy .back-home-button,
  .home-shell.is-city-map .city-map-copy .city-map-eyebrow,
  .home-shell.is-city-map .city-map-copy > p:not(.city-map-eyebrow),
  .home-shell.is-city-map .city-map-meta,
  .home-shell.is-city-map .type-filter,
  .home-shell.is-city-map .local-map-card,
  .poi-detail-card.is-detail-active,
  .poi-detail-card.is-detail-active .poi-detail-kicker,
  .poi-detail-card.is-detail-active .poi-detail-title-row,
  .poi-detail-card.is-detail-active .poi-photo-empty,
  .poi-detail-card.is-detail-active .poi-detail-description,
  .poi-detail-card.is-detail-active .poi-detail-facts div,
  .poi-detail-card.is-detail-active .poi-detail-section,
  .poi-detail-card.is-detail-active .poi-tags,
  .poi-detail-card.is-detail-active .poi-tags span,
  .poi-detail-card.is-detail-active .poi-save-button,
  .poi-row {
    transform: none !important;
  }

  .map-node:hover {
    transform: translate(-50%, -50%);
  }

  .local-map-poi,
  .local-map-poi:hover,
  .local-map-poi:focus-visible,
  .local-map-poi.is-selected,
  .local-map-poi.is-list-hovered,
  .local-map-poi.is-selected.is-list-hovered {
    animation: none !important;
    transform: translate(-50%, -50%) scale(var(--pin-scale, 1));
  }

  .tip-button:hover,
  .dialog-submit:hover,
  .poi-save-button:hover,
  .map-cta:hover,
  .featured-city:hover,
  .country-directory-item:hover,
  .city-directory-card:hover,
  .directory-scroll-controls button:hover,
  .back-home-button:hover,
  .type-filter:hover,
  .map-control-button:hover,
  .map-reset-button:hover,
  .poi-row:hover {
    transform: none;
  }
}


@media (max-width: 1447px) {
  html,
  body {
    min-width: 0;
    min-height: 100%;
  }

  body {
    display: block;
    overflow-x: hidden;
    background: var(--pink);
  }

  .home-shell {
    width: 100%;
    min-height: 100svh;
    height: auto;
    overflow: hidden;
    padding: 24px 28px 30px;
  }

  .home-shell::before {
    width: 72%;
    height: 100%;
    left: auto;
    right: 0;
    clip-path: ellipse(76% 76% at 100% 42%);
  }

  .site-header {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand-wordmark {
    min-width: 0;
    font-size: 24px;
    line-height: 1.1;
    white-space: normal;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 14px;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 82px auto;
    gap: 12px;
  }

  .search-form {
    width: 100%;
  }

  .language-select {
    width: 82px;
  }

  .tip-button {
    width: auto;
    padding: 0 18px;
  }

  .hero-section {
    position: relative;
    z-index: 2;
    display: block;
    padding-top: 38px;
  }

  .intro-copy,
  .hero-title-row,
  .hero-grid,
  .country-city-section,
  .trust-line,
  .site-footer {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .intro-copy {
    max-width: 540px;
    background: var(--pink);
    color: #150711;
    box-shadow: 0 0 0 12px var(--pink);
  }

  .hero-title-row {
    height: auto;
    margin-top: 28px;
    display: grid;
    gap: 16px;
  }

  .hero-title-row h1 {
    position: relative;
    left: auto;
    top: auto;
    font-size: 104px;
    line-height: 0.86;
  }

  .hero-positioning {
    position: relative;
    left: auto;
    top: auto;
    width: min(520px, 100%);
    grid-template-columns: 2px minmax(0, 1fr);
    gap: 18px;
  }

  .hero-positioning span {
    height: 86px;
  }

  .hero-positioning p {
    font-size: 18px;
  }

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

  .map-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1040 / 496;
  }

  .map-card-inner,
  .asia-map-preview {
    position: absolute;
    inset: 0;
  }

  .asia-base {
    width: 100%;
    height: 100%;
  }

  .featured-cities {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 0;
    border: 1px solid rgba(255, 95, 168, 0.34);
    border-radius: 8px;
    background: rgba(8, 8, 12, 0.72);
    padding: 16px;
  }

  .featured-cities h2 {
    color: var(--cream);
    box-shadow: none;
  }

  .featured-city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .country-city-section {
    margin-top: 24px;
  }

  .country-city-directory {
    width: 100%;
    height: 240px;
    grid-template-columns: minmax(240px, 32%) minmax(0, 1fr);
  }

  .city-directory-card {
    flex-basis: 270px;
  }

  .trust-line {
    height: auto;
    margin-top: 22px;
    flex-wrap: wrap;
    color: var(--cream);
    white-space: normal;
  }

  .site-footer {
    height: auto;
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 30px;
  }

  .home-shell.is-city-map {
    min-height: 100svh;
    height: auto;
    overflow: visible;
  }

  .city-map-view {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    min-width: 0;
    margin-top: 34px;
  }

  .city-map-copy,
  .type-filter-bar,
  .city-map-layout,
  .poi-strip {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .city-map-copy {
    z-index: 5;
  }

  .city-map-copy h1 {
    margin-left: 0;
    font-size: 72px;
    line-height: 0.88;
    overflow-wrap: anywhere;
  }

  .city-map-copy > p:not(.city-map-eyebrow) {
    width: min(620px, 100%);
    position: relative;
    z-index: 1;
    background: var(--pink);
    box-shadow: 0 0 0 8px var(--pink);
  }

  .city-map-meta {
    flex-wrap: wrap;
    line-height: 1.2;
  }

  .type-filter-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 36px 4px 0;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 34px), transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 34px), transparent 100%);
  }

  .type-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .type-filter {
    min-width: 152px;
  }

  .directory-scroll-controls button,
  .map-control-button {
    width: 40px;
    height: 40px;
  }

  .map-reset-button {
    height: 40px;
  }

  .kindred-poi-marker {
    --marker-size: 30px;
  }

  .kindred-poi-marker.is-cluster {
    --marker-size: 34px;
  }

  .city-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .local-map-card {
    width: 100%;
    min-width: 0;
    height: 520px;
  }

  .poi-detail-card {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .poi-strip {
    margin-top: 0;
  }

  .poi-list {
    max-width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .poi-row {
    min-width: 228px;
  }
}

@media (max-width: 640px) {
  .tip-dialog.is-photo-lightbox {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }

  .poi-photo-lightbox {
    max-height: calc(100dvh - 18px);
    padding: 12px;
  }

  .poi-photo-lightbox-stage {
    min-height: 220px;
  }

  .poi-photo-lightbox-stage > img {
    height: min(68dvh, 620px);
  }

  .poi-photo-lightbox-nav {
    width: 36px;
    height: 44px;
  }

  .home-shell {
    padding: 18px 14px 24px;
  }

  .home-shell::before {
    width: 86%;
    opacity: 0.78;
    clip-path: ellipse(82% 62% at 112% 28%);
  }

  .site-header,
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-actions {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .brand-wordmark {
    font-size: 20px;
  }

  .primary-nav {
    gap: 22px;
    font-size: 13px;
  }

  .tip-button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-title-row {
    margin-top: 20px;
  }

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

  .hero-title-row h1 {
    font-size: 58px;
    line-height: 0.9;
  }

  .hero-positioning p {
    font-size: 15px;
  }

  .map-card {
    aspect-ratio: 4 / 3;
  }

  .map-node.is-secondary {
    display: none;
  }

  .map-node b {
    padding: 5px 8px;
    font-size: 10px;
  }

  .map-cta {
    width: 126px;
    left: 12px;
    top: 12px;
    bottom: auto;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    font-size: 12px;
  }

  .map-cta-copy {
    min-width: 0;
  }

  .map-cta-copy small {
    display: none;
  }

  .map-cta > span:first-child {
    width: 28px;
    height: 36px;
  }

  .map-cta svg {
    width: 27px;
    height: 33px;
  }

  .featured-city-list {
    grid-template-columns: 1fr;
  }

  .featured-city:nth-child(n + 4) {
    display: none;
  }

  .directory-scroll-controls button {
    width: 44px;
    height: 44px;
  }

  .country-city-directory {
    height: auto;
    grid-template-columns: 1fr;
  }

  .country-directory-panel {
    height: 160px;
  }

  .city-directory-panel {
    height: 210px;
  }

  .country-directory-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    touch-action: pan-x pan-y;
  }

  .country-directory-item {
    flex: 0 0 220px;
    width: 220px;
    min-height: 0;
    border-right: 1px solid rgba(255, 245, 250, 0.16);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .country-directory-copy {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .country-directory-copy small {
    justify-self: start;
  }

  .axis-desktop {
    display: none;
  }

  .axis-mobile {
    display: inline;
  }

  .city-directory-card {
    flex-basis: 236px;
    padding: 14px 18px 12px;
  }

  .city-directory-copy strong {
    font-size: 19px;
  }

  .trust-line {
    font-size: 13px;
  }

  .city-map-view {
    margin-top: 28px;
  }

  .back-home-button {
    max-width: 100%;
  }

  .city-map-copy h1 {
    font-size: 54px;
  }

  .city-map-copy > p:not(.city-map-eyebrow) {
    font-size: 13px;
  }

  .city-map-meta {
    font-size: 11px;
  }

  .type-filter {
    min-width: 136px;
    height: 44px;
  }

  .local-map-card {
    height: 430px;
  }

  .local-map-heading {
    left: 14px;
    top: 14px;
    right: 14px;
    max-width: none;
    font-size: 11px;
  }

  .local-map-canvas {
    inset: 76px 12px 16px;
  }

  .map-controls {
    top: 9px;
    right: 9px;
    bottom: auto;
    gap: 5px;
    padding: 6px;
  }

  .map-control-button,
  .map-reset-button {
    height: 44px;
  }

  .map-control-button {
    width: 44px;
  }

  .map-reset-button {
    padding: 0 8px;
  }

  .map-attribution {
    right: auto;
    left: 10px;
    bottom: 10px;
  }

  .poi-detail-card {
    padding: 16px;
  }

  .poi-detail-title-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
  }

  .poi-detail-title-row svg {
    width: 34px;
    height: 34px;
  }

  .poi-detail-title-row h2 {
    font-size: 22px;
  }

  .poi-detail-facts {
    grid-template-columns: 1fr 1fr;
  }

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

  .kindred-poi-marker {
    --marker-size: 28px;
  }

  .kindred-poi-marker.is-cluster {
    --marker-size: 32px;
  }

  .poi-row {
    width: 100%;
    min-width: 0;
  }

  .poi-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 4px;
  }

  .poi-detail-actions {
    position: sticky;
    z-index: 5;
    bottom: 6px;
    padding: 12px 0 4px;
    background: linear-gradient(180deg, rgba(11, 11, 15, 0), rgba(11, 11, 15, 0.98) 28%);
  }

  .panel.legal {
    padding: 26px 20px;
  }

  .panel.legal h1 {
    font-size: 32px;
  }
}

/* OPTION A EDITORIAL CLUB REFRESH */

:root {
  --club-black: #07070a;
  --club-panel: #0d0d12;
  --club-pink: #f23883;
  --club-pink-hot: #ff5fa8;
  --club-pink-soft: #ffd4e4;
  --club-white: #fff4f8;
  --club-line: rgba(255, 95, 168, 0.42);
}

.home-shell:not(.is-city-map) {
  background:
    linear-gradient(110deg, rgba(149, 0, 58, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 34%),
    var(--club-pink);
}

.home-shell:not(.is-city-map)::before {
  z-index: 1;
  background:
    radial-gradient(circle at 74% 34%, rgba(255, 95, 168, 0.13), transparent 27%),
    linear-gradient(145deg, #111117, var(--club-black) 72%);
}

.home-shell:not(.is-city-map)::after {
  z-index: 2;
  opacity: 0.27;
  background-image:
    radial-gradient(circle, rgba(255, 244, 248, 0.22) 0.62px, transparent 0.72px),
    linear-gradient(108deg, rgba(255, 255, 255, 0.055), transparent 42%);
  background-size: 7px 7px, auto;
  mix-blend-mode: soft-light;
}

.hero-title-slices {
  position: relative;
  height: 190px;
  isolation: isolate;
}

.hero-title-slices > span,
.hero-title-slices::before,
.hero-title-slices::after {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--club-white);
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.hero-title-slices::before,
.hero-title-slices::after {
  content: attr(data-title);
  pointer-events: none;
}

.hero-title-slices::before {
  clip-path: inset(0 0 69% 0);
  transform: translate3d(-8px, -3px, 0);
}

.hero-title-slices > span {
  clip-path: inset(34% 0 36% 0);
  transform: translate3d(8px, 0, 0);
}

.hero-title-slices::after {
  clip-path: inset(68% 0 0 0);
  transform: translate3d(-4px, 4px, 0);
}

.map-node,
.featured-city {
  cursor: pointer;
}

.map-node i {
  transition:
    transform var(--motion-fast) var(--ease-editorial),
    box-shadow var(--motion-fast) var(--ease-editorial),
    background-color var(--motion-fast) var(--ease-editorial);
}

.map-node.is-active i {
  transform: scale(1.22);
  background: var(--club-white);
  box-shadow:
    0 0 0 3px rgba(255, 95, 168, 0.72),
    0 0 24px rgba(255, 95, 168, 0.58);
}

.map-node.is-active b {
  background: var(--club-pink-hot);
  color: #190710;
  box-shadow: 0 10px 26px rgba(61, 0, 26, 0.32);
}

.featured-city-stage {
  position: relative;
  color: var(--club-white);
  isolation: isolate;
}

.featured-city-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -28px;
  opacity: 0.34;
  background-image: radial-gradient(circle, rgba(255, 244, 248, 0.36) 0.7px, transparent 0.8px);
  background-size: 14px 14px;
  pointer-events: none;
}

.featured-stage-kicker {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
  color: var(--club-pink-hot);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-stage-heading {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.featured-stage-number {
  color: var(--club-pink-hot);
  font-size: 112px;
  line-height: 0.78;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.featured-stage-place {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.featured-stage-place strong {
  overflow-wrap: anywhere;
  color: var(--club-white);
  font-size: 30px;
  line-height: 0.94;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-stage-place strong:not(:lang(zh)) {
  word-break: normal;
}

.featured-stage-place em {
  color: rgba(255, 244, 248, 0.7);
  font-size: 13px;
  line-height: 1.25;
  font-style: normal;
}

.featured-stage-metric {
  display: grid;
  width: 92px;
  gap: 2px;
  margin-top: 34px;
  border-top: 2px solid var(--club-pink-hot);
  padding-top: 18px;
}

.featured-stage-metric strong {
  color: var(--club-pink-hot);
  font-size: 50px;
  line-height: 0.9;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.featured-stage-metric span {
  color: rgba(255, 244, 248, 0.72);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.featured-stage-tags {
  max-width: 270px;
  margin: 28px 0 0;
  border-top: 1px solid rgba(255, 244, 248, 0.17);
  border-bottom: 1px solid rgba(255, 244, 248, 0.17);
  color: rgba(255, 244, 248, 0.76);
  padding: 13px 0;
  font-size: 12px;
  line-height: 1.45;
}

.featured-stage-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--club-pink-hot);
  padding: 0;
  font-size: 13px;
  font-weight: 900;
}

.featured-stage-action,
.featured-stage-heading,
.featured-stage-metric,
.featured-stage-tags {
  transition:
    opacity 220ms var(--ease-editorial),
    transform 220ms var(--ease-editorial);
}

.featured-city-stage.is-switching .featured-stage-heading,
.featured-city-stage.is-switching .featured-stage-metric,
.featured-city-stage.is-switching .featured-stage-tags,
.featured-city-stage.is-switching .featured-stage-action {
  animation: kindredStageSwitch 260ms var(--ease-editorial) both;
}

.featured-city-stage.is-switching .featured-stage-metric {
  animation-delay: 30ms;
}

.featured-city-stage.is-switching .featured-stage-tags,
.featured-city-stage.is-switching .featured-stage-action {
  animation-delay: 55ms;
}

.featured-city-rail {
  background: rgba(7, 7, 10, 0.97);
  color: var(--club-white);
  box-shadow: 0 -18px 50px rgba(53, 0, 23, 0.2);
}

.featured-rail-label {
  display: grid;
  place-items: center;
  color: var(--club-pink-hot);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-city.is-active {
  border-color: var(--club-pink-hot);
  background: linear-gradient(180deg, rgba(255, 95, 168, 0.12), transparent);
  box-shadow: inset 0 2px 0 var(--club-pink-hot);
}

.featured-city.is-active .city-number,
.featured-city.is-active .city-copy strong {
  color: var(--club-pink-hot);
}

.country-directory-panel,
.city-directory-panel {
  border-radius: 4px;
  background: var(--club-panel);
  box-shadow: 0 22px 58px rgba(38, 0, 16, 0.28);
}

.city-directory-card,
.country-directory-item {
  background: var(--club-panel);
}

.city-directory-card.is-leading,
.country-directory-item.is-active {
  background: var(--club-pink-hot);
}

@media (min-width: 1200px) {
  html,
  body {
    min-height: 1320px;
  }

  .home-shell:not(.is-city-map) {
    width: 100%;
    max-width: 1536px;
    height: 1320px;
  }

  .home-shell:not(.is-city-map)::before {
    inset: 0 0 0 auto;
    width: 47%;
    height: 1020px;
    clip-path: ellipse(70% 95% at 105% 42%);
  }

  .home-shell:not(.is-city-map) .site-header {
    left: 52px;
    top: 24px;
    width: calc(100% - 104px);
    grid-template-columns: 310px minmax(260px, 1fr) 570px;
  }

  .home-shell:not(.is-city-map) .brand-wordmark {
    font-size: 25px;
  }

  .home-shell:not(.is-city-map) .hero-title-row {
    left: 52px;
    top: 105px;
    width: min(980px, calc(100% - 470px));
    height: 310px;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    left: 0;
    width: 100%;
    height: 190px;
    color: transparent;
    font-size: 176px;
    line-height: 0.82;
  }

  .home-shell:not(.is-city-map) .hero-positioning {
    left: 0;
    top: 232px;
    width: 340px;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-shell:not(.is-city-map) .hero-positioning span {
    display: none;
  }

  .home-shell:not(.is-city-map) .hero-positioning p {
    color: var(--club-white);
    font-size: 18px;
    line-height: 1.18;
    font-weight: 760;
  }

  .home-shell:not(.is-city-map) .intro-copy {
    left: 408px;
    top: 346px;
    width: 330px;
    border-left: 2px solid rgba(255, 244, 248, 0.64);
    color: rgba(255, 244, 248, 0.8);
    padding-left: 24px;
    font-size: 12px;
  }

  .home-shell:not(.is-city-map) .map-card {
    z-index: 3;
    left: 0;
    top: 438px;
    width: calc(100% - 176px);
    height: 472px;
  }

  .home-shell:not(.is-city-map) .map-card-inner {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-shell:not(.is-city-map) .map-card-inner::after {
    inset: 0;
    opacity: 0.16;
    background-image:
      linear-gradient(180deg, transparent 49%, rgba(255, 255, 255, 0.2) 50%, transparent 51%),
      radial-gradient(circle, rgba(255, 255, 255, 0.45) 0.6px, transparent 0.72px);
    background-size: 100% 34px, 7px 7px;
    mix-blend-mode: soft-light;
  }

  .home-shell:not(.is-city-map) .asia-map-preview::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    clip-path: polygon(0 0, 79% 15%, 100% 100%, 0 100%);
    background:
      radial-gradient(circle at 26% 30%, rgba(255, 255, 255, 0.72), transparent 35%),
      linear-gradient(145deg, #ffdce8, #f8b8d0 64%, #ef8db7);
  }

  .home-shell:not(.is-city-map) .asia-base {
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: fill;
    clip-path: polygon(0 0, 79% 15%, 100% 100%, 0 100%);
    opacity: 0.82;
    filter: saturate(0.72) contrast(1.04);
  }

  .home-shell:not(.is-city-map) .map-cta {
    left: 52px;
    bottom: 28px;
    color: #6f183a;
  }

  .home-shell:not(.is-city-map) .featured-cities {
    position: absolute;
    z-index: 7;
    inset: 0;
    width: 100%;
    min-height: 0;
    color: var(--club-white);
    pointer-events: none;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    position: absolute;
    top: 160px;
    right: 48px;
    width: 300px;
    pointer-events: auto;
  }

  .home-shell:not(.is-city-map) .featured-city-rail {
    position: absolute;
    left: 0;
    top: 910px;
    width: 100%;
    height: 104px;
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr) 68px;
    pointer-events: auto;
  }

  .home-shell:not(.is-city-map) .featured-city-list {
    min-width: 0;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-shell:not(.is-city-map) .featured-city-list::-webkit-scrollbar {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-city {
    flex: 1 0 148px;
    min-width: 148px;
    min-height: 104px;
    align-content: center;
    border-right: 1px solid rgba(255, 244, 248, 0.12);
    border-bottom: 0;
    padding: 14px 12px;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy small {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy strong {
    font-size: 14px;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy em {
    font-size: 10px;
  }

  .home-shell:not(.is-city-map) .featured-city-next {
    width: 68px;
    min-height: 44px;
    display: grid;
    place-items: center;
    align-self: stretch;
    margin: 0;
    border-left: 1px solid rgba(255, 244, 248, 0.12);
    font-size: 22px;
  }

  .home-shell:not(.is-city-map) .country-city-section {
    left: 52px;
    top: 1038px;
    width: calc(100% - 104px);
  }

  .home-shell:not(.is-city-map) .country-city-directory {
    height: 178px;
  }

  .home-shell:not(.is-city-map) .trust-line {
    left: 50%;
    top: 1234px;
    transform: translateX(-50%);
  }

  .home-shell:not(.is-city-map) .site-footer {
    bottom: 0;
    height: 62px;
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .home-shell:not(.is-city-map) .site-header {
    grid-template-columns: 270px minmax(210px, 1fr) 520px;
  }

  .home-shell:not(.is-city-map) .header-actions {
    grid-template-columns: 250px 78px 150px;
    gap: 12px;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    font-size: 150px;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    right: 24px;
    width: 270px;
  }

  .featured-stage-number {
    font-size: 94px;
  }

  .featured-stage-place strong {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  html,
  body {
    min-height: 100%;
  }

  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
  }

  .home-shell:not(.is-city-map) {
    width: 100%;
    height: auto;
    min-height: 100svh;
    padding: 24px 28px 30px;
  }

  .home-shell:not(.is-city-map)::before {
    width: 72%;
    height: 900px;
    clip-path: ellipse(75% 76% at 112% 34%);
  }

  .home-shell:not(.is-city-map) .hero-section {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
  }

  .home-shell:not(.is-city-map) .hero-title-row {
    order: 1;
    display: grid;
    margin-top: 0;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    position: relative;
    width: 100%;
    height: 122px;
    color: transparent;
    font-size: 108px;
    line-height: 0.82;
  }

  .home-shell:not(.is-city-map) .hero-positioning {
    width: min(420px, 100%);
    margin-top: 12px;
  }

  .home-shell:not(.is-city-map) .hero-positioning p {
    color: var(--club-white);
    font-weight: 720;
  }

  .home-shell:not(.is-city-map) .intro-copy {
    order: 2;
    max-width: 510px;
    margin-top: 24px;
    border-left: 2px solid rgba(255, 244, 248, 0.58);
    background: transparent;
    color: rgba(255, 244, 248, 0.78);
    box-shadow: none;
    padding-left: 18px;
  }

  .home-shell:not(.is-city-map) .hero-grid {
    order: 3;
    margin-top: 28px;
  }

  .home-shell:not(.is-city-map) .map-card {
    aspect-ratio: 16 / 9;
  }

  .home-shell:not(.is-city-map) .map-card-inner {
    border-radius: 4px;
  }

  .home-shell:not(.is-city-map) .featured-cities {
    display: grid;
    gap: 20px;
    overflow: hidden;
    border: 1px solid var(--club-line);
    border-radius: 4px;
    background: rgba(7, 7, 10, 0.92);
    padding: 24px 0 0;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    width: min(620px, 100%);
    padding: 0 24px;
  }

  .home-shell:not(.is-city-map) .featured-stage-heading {
    width: min(520px, 100%);
  }

  .home-shell:not(.is-city-map) .featured-city-rail {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 60px;
    min-height: 104px;
  }

  .home-shell:not(.is-city-map) .featured-city-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .home-shell:not(.is-city-map) .featured-city-list::-webkit-scrollbar {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-city {
    flex: 0 0 190px;
    min-height: 104px;
    align-content: center;
    border-right: 1px solid rgba(255, 244, 248, 0.12);
    border-bottom: 0;
    padding: 12px 14px;
    scroll-snap-align: start;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy small {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-city-next {
    min-height: 104px;
    display: grid;
    place-items: center;
    margin: 0;
    border-left: 1px solid rgba(255, 244, 248, 0.12);
    font-size: 20px;
  }

  .home-shell:not(.is-city-map) .country-city-section {
    margin-top: 24px;
  }

  .home-shell:not(.is-city-map) .trust-line,
  .home-shell:not(.is-city-map) .site-footer {
    position: relative;
  }
}

@media (max-width: 640px) {
  .home-shell:not(.is-city-map) {
    padding: 16px 14px 24px;
  }

  .home-shell:not(.is-city-map)::before {
    width: 90%;
    height: 720px;
    opacity: 0.88;
    clip-path: ellipse(82% 68% at 116% 24%);
  }

  .home-shell:not(.is-city-map) .hero-section {
    padding-top: 24px;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    height: 72px;
    font-size: 58px;
  }

  .hero-title-slices::before {
    transform: translate3d(-4px, -2px, 0);
  }

  .hero-title-slices > span {
    transform: translate3d(4px, 0, 0);
  }

  .hero-title-slices::after {
    transform: translate3d(-2px, 2px, 0);
  }

  .home-shell:not(.is-city-map) .hero-positioning {
    margin-top: 8px;
  }

  .home-shell:not(.is-city-map) .hero-positioning p {
    font-size: 15px;
  }

  .home-shell:not(.is-city-map) .intro-copy {
    margin-top: 18px;
    color: rgba(255, 244, 248, 0.78);
    font-size: 12px;
  }

  .home-shell:not(.is-city-map) .hero-grid {
    gap: 14px;
    margin-top: 20px;
  }

  .home-shell:not(.is-city-map) .map-card {
    aspect-ratio: 4 / 3;
  }

  .home-shell:not(.is-city-map) .featured-cities {
    gap: 18px;
    padding-top: 20px;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    padding: 0 18px;
  }

  .featured-stage-heading {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .featured-stage-number {
    font-size: 76px;
  }

  .featured-stage-place strong {
    font-size: 25px;
  }

  .featured-stage-metric {
    margin-top: 24px;
  }

  .featured-stage-metric strong {
    font-size: 42px;
  }

  .featured-stage-tags {
    margin-top: 18px;
  }

  .home-shell:not(.is-city-map) .featured-city-rail {
    grid-template-columns: minmax(0, 1fr) 54px;
  }

  .home-shell:not(.is-city-map) .featured-rail-label {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-city {
    flex-basis: 158px;
  }

  .home-shell:not(.is-city-map) .featured-city:nth-child(n + 4) {
    display: grid;
  }

  .home-shell:not(.is-city-map) .country-city-section {
    margin-top: 16px;
  }
}

@keyframes kindredTitleSliceIn {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes kindredStageSwitch {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.home-shell.is-booted:not(.is-city-map) .hero-title-slices::before,
.home-shell.is-booted:not(.is-city-map) .hero-title-slices > span,
.home-shell.is-booted:not(.is-city-map) .hero-title-slices::after {
  animation: kindredTitleSliceIn 380ms var(--ease-editorial) both;
}

.home-shell.is-booted:not(.is-city-map) .hero-title-slices > span {
  animation-delay: 50ms;
}

.home-shell.is-booted:not(.is-city-map) .hero-title-slices::after {
  animation-delay: 90ms;
}

@media (hover: hover) and (pointer: fine) {
  .featured-stage-action:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-slices,
  .hero-title-slices::before,
  .hero-title-slices::after,
  .hero-title-slices > span,
  .featured-city-stage,
  .featured-city-stage *,
  .featured-city-stage.is-switching .featured-stage-heading,
  .featured-city-stage.is-switching .featured-stage-metric,
  .featured-city-stage.is-switching .featured-stage-tags,
  .featured-city-stage.is-switching .featured-stage-action {
    animation: none !important;
    transition: none !important;
  }
}
/* OPTION A REFERENCE MATCH V7 */

.featured-stage-place small {
  display: block;
  color: rgba(255, 244, 248, 0.68);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.featured-stage-categories {
  margin-top: 30px;
}

.featured-stage-categories > p {
  margin: 0 0 10px;
  color: var(--club-pink-hot);
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-stage-categories > div {
  display: grid;
}

.featured-stage-category {
  width: 100%;
  min-height: 36px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 28px;
  gap: 9px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 244, 248, 0.16);
  background: transparent;
  color: rgba(255, 244, 248, 0.72);
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms var(--ease-editorial),
    transform 180ms var(--ease-editorial);
}

.featured-stage-category:disabled {
  opacity: 0.42;
  cursor: default;
}

.featured-stage-category svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--club-pink-hot);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-stage-category strong,
.featured-stage-category em {
  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 680;
}

.featured-stage-category em {
  color: rgba(255, 244, 248, 0.62);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

@media (min-width: 1200px) {
  html,
  body {
    min-height: 100%;
  }

  body {
    overflow-x: hidden;
    scrollbar-width: none;
  }

  body::-webkit-scrollbar {
    display: none;
  }

  .home-shell:not(.is-city-map) {
    --option-a-stage-height: clamp(770px, 57.26vw, 907px);
    --option-a-rail-height: 0px;
    width: 100%;
    max-width: 1584px;
    height: auto;
    min-height: calc(var(--option-a-stage-height) + var(--option-a-rail-height) + 330px);
    overflow: hidden;
    background:
      radial-gradient(circle at 28% 15%, rgba(255, 255, 255, 0.08), transparent 26%),
      linear-gradient(108deg, rgba(119, 0, 44, 0.24), transparent 24%),
      linear-gradient(180deg, #f43e88 0%, #f23883 72%, #ee347d 100%);
  }

  .home-shell:not(.is-city-map)::before {
    z-index: 4;
    inset: 0 0 auto 0;
    width: 100%;
    height: var(--option-a-stage-height);
    clip-path: ellipse(34% 82% at 100% 23%);
    background:
      radial-gradient(circle at 72% 28%, rgba(255, 95, 168, 0.12), transparent 29%),
      linear-gradient(145deg, #111116 0%, #07070a 72%);
    box-shadow: inset 22px 0 42px rgba(255, 255, 255, 0.025);
  }

  .home-shell:not(.is-city-map)::after {
    z-index: 5;
    inset: 0 0 auto 0;
    width: 100%;
    height: var(--option-a-stage-height);
    opacity: 0.28;
    background-image:
      radial-gradient(circle, rgba(255, 244, 248, 0.31) 0.62px, transparent 0.72px),
      linear-gradient(176deg, transparent 0 49.9%, rgba(255, 255, 255, 0.06) 50%, transparent 50.1%),
      linear-gradient(104deg, rgba(255, 255, 255, 0.055), transparent 38%);
    background-size: 8px 8px, 100% 36px, auto;
    mix-blend-mode: soft-light;
    pointer-events: none;
  }

  .home-shell:not(.is-city-map) .site-header {
    z-index: 12;
    left: 55px;
    right: 42px;
    top: 22px;
    width: auto;
    height: 48px;
    grid-template-columns: 360px minmax(260px, 1fr) 604px;
  }

  .home-shell:not(.is-city-map) .brand-wordmark {
    font-size: 24px;
    font-weight: 820;
  }

  .home-shell:not(.is-city-map) .primary-nav {
    justify-content: center;
    gap: 54px;
    font-size: 15px;
  }

  .home-shell:not(.is-city-map) .header-actions {
    grid-template-columns: minmax(260px, 338px) 80px 150px;
    gap: 18px;
  }

  .home-shell:not(.is-city-map) .search-form {
    width: 100%;
    height: 48px;
    border-color: rgba(255, 95, 168, 0.58);
    background: rgba(7, 7, 10, 0.94);
  }

  .home-shell:not(.is-city-map) .language-select {
    width: 80px;
    height: 48px;
  }

  .home-shell:not(.is-city-map) .tip-button {
    width: 150px;
    min-height: 48px;
    border-radius: 7px;
  }

  .home-shell:not(.is-city-map) .hero-section {
    position: relative;
    z-index: auto;
    height: calc(var(--option-a-stage-height) + var(--option-a-rail-height));
    padding: 0;
  }

  .home-shell:not(.is-city-map) .hero-title-row {
    z-index: 7;
    left: 55px;
    top: clamp(92px, 6.63vw, 105px);
    width: min(970px, calc(100% - 570px));
    height: clamp(285px, 21.47vw, 340px);
  }

  .home-shell:not(.is-city-map) .hero-title-row::before,
  .home-shell:not(.is-city-map) .hero-title-row::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: -55px;
    width: calc(100% + 120px);
    height: 1px;
    background: rgba(255, 244, 248, 0.16);
    pointer-events: none;
  }

  .home-shell:not(.is-city-map) .hero-title-row::before {
    top: clamp(38px, 3.1vw, 49px);
  }

  .home-shell:not(.is-city-map) .hero-title-row::after {
    top: clamp(146px, 10.5vw, 166px);
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    left: 0;
    top: 0;
    width: 100%;
    height: clamp(170px, 14.2vw, 225px);
    color: transparent;
    font-size: clamp(154px, 12.82vw, 203px);
    line-height: 0.83;
    letter-spacing: 0;
  }

  .hero-title-slices::before {
    clip-path: inset(0 0 77% 0);
    transform: translate3d(-7px, -3px, 0);
  }

  .hero-title-slices > span {
    clip-path: inset(24% 0 24% 0);
    transform: translate3d(10px, 0, 0);
  }

  .hero-title-slices::after {
    clip-path: inset(77% 0 0 0);
    transform: translate3d(-4px, 4px, 0);
  }

  .home-shell:not(.is-city-map) .hero-positioning {
    left: 0;
    top: clamp(205px, 15.15vw, 240px);
    width: 332px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .home-shell:not(.is-city-map) .hero-positioning span {
    display: none;
  }

  .home-shell:not(.is-city-map) .hero-positioning p {
    color: var(--club-white);
    font-size: 19px;
    line-height: 1.17;
    font-weight: 760;
  }

  .home-shell:not(.is-city-map) .intro-copy {
    z-index: 7;
    left: 444px;
    top: clamp(300px, 22.1vw, 350px);
    width: 315px;
    min-height: 90px;
    border-left: 2px solid rgba(255, 244, 248, 0.62);
    color: rgba(255, 244, 248, 0.78);
    padding: 4px 0 4px 24px;
    font-size: 12px;
    line-height: 1.34;
  }

  .home-shell:not(.is-city-map) .map-card {
    z-index: 3;
    left: 0;
    top: clamp(310px, 22.73vw, 360px);
    width: calc(100% - 176px);
    height: calc(var(--option-a-stage-height) - clamp(310px, 22.73vw, 360px));
  }

  .home-shell:not(.is-city-map) .map-card-inner {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-shell:not(.is-city-map) .map-card-inner::after {
    inset: 0;
    z-index: 4;
    opacity: 0.2;
    background-image:
      linear-gradient(180deg, transparent 49%, rgba(255, 255, 255, 0.19) 50%, transparent 51%),
      radial-gradient(circle, rgba(255, 255, 255, 0.48) 0.58px, transparent 0.7px);
    background-size: 100% 34px, 8px 8px;
    mix-blend-mode: soft-light;
  }

  .home-shell:not(.is-city-map) .asia-map-preview::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    clip-path: polygon(0 16%, 78% 48%, 100% 100%, 0 100%);
    background:
      radial-gradient(circle at 27% 30%, rgba(255, 255, 255, 0.73), transparent 35%),
      linear-gradient(145deg, #ffe3ec 0%, #f8bdd2 63%, #ee94b9 100%);
  }

  .home-shell:not(.is-city-map) .asia-base {
    z-index: 1;
    left: 0;
    top: 0;
    width: 84%;
    height: 100%;
    object-fit: fill;
    clip-path: polygon(0 16%, 93% 48%, 100% 100%, 0 100%);
    opacity: 0.86;
    filter: saturate(0.7) contrast(1.03);
  }

  .home-shell:not(.is-city-map) .city-nodes {
    width: 82.5%;
    right: auto;
  }

  .home-shell:not(.is-city-map) .map-cta {
    left: 56px;
    bottom: 27px;
    color: #6d1739;
  }

  .home-shell:not(.is-city-map) .map-node.is-active::before,
  .home-shell:not(.is-city-map) .map-node.is-active::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(255, 244, 248, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .home-shell:not(.is-city-map) .map-node.is-active::before {
    width: 92px;
    height: 92px;
    box-shadow: 0 0 0 18px rgba(255, 244, 248, 0.05);
  }

  .home-shell:not(.is-city-map) .map-node.is-active::after {
    width: 56px;
    height: 56px;
  }

  .home-shell:not(.is-city-map) .featured-cities {
    z-index: 9;
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    color: var(--club-white);
    pointer-events: none;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    position: absolute;
    top: clamp(145px, 10.42vw, 165px);
    right: 48px;
    width: 426px;
    padding-left: 10px;
    pointer-events: auto;
  }

  .home-shell:not(.is-city-map) .featured-city-stage::before {
    inset: -26px -12px -24px -14px;
    opacity: 0.28;
    background-size: 12px 12px;
  }

  .home-shell:not(.is-city-map) .featured-stage-kicker {
    width: 100%;
    margin-bottom: 20px;
    font-size: 10px;
  }

  .home-shell:not(.is-city-map) .featured-stage-heading {
    position: relative;
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 22px;
  }

  .home-shell:not(.is-city-map) .featured-stage-number {
    position: relative;
    z-index: 1;
    color: var(--club-pink-hot);
    font-size: 118px;
    line-height: 0.77;
    isolation: isolate;
  }

  .home-shell:not(.is-city-map) .featured-stage-number::before,
  .home-shell:not(.is-city-map) .featured-stage-number::after {
    position: absolute;
    z-index: -1;
    left: 10px;
    color: rgba(255, 244, 248, 0.085);
    font: inherit;
    line-height: 0.78;
    pointer-events: none;
  }

  .home-shell:not(.is-city-map) .featured-stage-number::before {
    content: attr(data-next);
    top: 76px;
  }

  .home-shell:not(.is-city-map) .featured-stage-number::after {
    content: attr(data-next-after);
    top: 146px;
  }

  .home-shell:not(.is-city-map) .featured-stage-place {
    align-self: center;
    gap: 7px;
  }

  .home-shell:not(.is-city-map) .featured-stage-place strong {
    color: var(--club-white);
    font-size: 42px;
    line-height: 0.94;
  }

  .home-shell:not(.is-city-map) .featured-stage-place em {
    font-size: 13px;
  }

  .home-shell:not(.is-city-map) .featured-stage-place small {
    font-size: 11px;
  }

  .home-shell:not(.is-city-map) .featured-stage-metric {
    width: 250px;
    gap: 3px;
    margin: 84px 0 0 174px;
    border-top: 2px solid var(--club-pink-hot);
    padding-top: 18px;
  }

  .home-shell:not(.is-city-map) .featured-stage-metric strong {
    font-size: 52px;
  }

  .home-shell:not(.is-city-map) .featured-stage-tags {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-stage-categories {
    width: 250px;
    margin: 28px 0 0 174px;
  }

  .home-shell:not(.is-city-map) .featured-stage-action {
    margin: 16px 0 0 174px;
    font-size: 13px;
  }

  .home-shell:not(.is-city-map) .featured-city-rail {
    position: absolute;
    left: 0;
    top: var(--option-a-stage-height);
    width: 100%;
    height: var(--option-a-rail-height);
    display: grid;
    grid-template-columns: 146px minmax(0, 1fr) 72px;
    border-top: 1px solid rgba(255, 244, 248, 0.08);
    background: rgba(7, 7, 10, 0.985);
    box-shadow: 0 -20px 48px rgba(38, 0, 16, 0.18);
    pointer-events: auto;
  }

  .home-shell:not(.is-city-map) .featured-rail-label {
    border-right: 1px solid rgba(255, 244, 248, 0.1);
    font-size: 12px;
  }

  .home-shell:not(.is-city-map) .featured-rail-label::after {
    content: "";
    width: 56px;
    height: 2px;
    margin-top: 8px;
    background: var(--club-pink-hot);
  }

  .home-shell:not(.is-city-map) .featured-city-list {
    min-width: 0;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-shell:not(.is-city-map) .featured-city-list::-webkit-scrollbar {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-city {
    flex: 1 0 150px;
    min-width: 150px;
    min-height: var(--option-a-rail-height);
    align-content: center;
    border-right: 1px solid rgba(255, 244, 248, 0.1);
    border-bottom: 0;
    padding: 12px 14px;
  }

  .home-shell:not(.is-city-map) .featured-city.is-active {
    border: 1px solid rgba(255, 95, 168, 0.35);
    border-top: 2px solid var(--club-pink-hot);
    background: linear-gradient(180deg, rgba(255, 95, 168, 0.1), transparent 76%);
    box-shadow: none;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy small {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy strong {
    font-size: 13px;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy em {
    font-size: 10px;
  }

  .home-shell:not(.is-city-map) .featured-city-next {
    width: 72px;
    min-height: var(--option-a-rail-height);
    display: grid;
    place-items: center;
    align-self: stretch;
    margin: 0;
    border-left: 1px solid rgba(255, 244, 248, 0.1);
    font-size: 24px;
  }

  .home-shell:not(.is-city-map) .country-city-section {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 104px);
    margin: 38px auto 0;
  }

  .home-shell:not(.is-city-map) .country-city-directory {
    height: 248px;
  }

  .home-shell:not(.is-city-map) .trust-line {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: max-content;
    margin: 24px auto 22px;
  }

  .home-shell:not(.is-city-map) .site-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 48px);
    height: 62px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .home-shell:not(.is-city-map) .site-header {
    left: 40px;
    right: 28px;
    grid-template-columns: 285px minmax(190px, 1fr) 520px;
  }

  .home-shell:not(.is-city-map) .header-actions {
    grid-template-columns: minmax(220px, 270px) 76px 148px;
    gap: 12px;
  }

  .home-shell:not(.is-city-map) .hero-title-row {
    left: 42px;
    width: calc(100% - 500px);
  }

  .home-shell:not(.is-city-map) .intro-copy {
    left: 375px;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    right: 24px;
    width: 370px;
  }

  .home-shell:not(.is-city-map) .featured-stage-heading {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 15px;
  }

  .home-shell:not(.is-city-map) .featured-stage-number {
    font-size: 98px;
  }

  .home-shell:not(.is-city-map) .featured-stage-place strong {
    font-size: 34px;
  }

  .home-shell:not(.is-city-map) .featured-stage-metric,
  .home-shell:not(.is-city-map) .featured-stage-categories,
  .home-shell:not(.is-city-map) .featured-stage-action {
    margin-left: 139px;
  }

  .home-shell:not(.is-city-map) .featured-stage-number::before {
    top: 64px;
  }

  .home-shell:not(.is-city-map) .featured-stage-number::after {
    top: 124px;
  }
}

@media (max-width: 1199px) {
  .home-shell:not(.is-city-map) .featured-stage-tags {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-stage-categories {
    width: min(560px, 100%);
    margin-top: 22px;
  }

  .home-shell:not(.is-city-map) .featured-stage-categories > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .home-shell:not(.is-city-map) .featured-stage-category {
    min-height: 40px;
  }

  .home-shell:not(.is-city-map) .featured-stage-place small {
    white-space: normal;
  }
}

@media (min-width: 641px) and (max-width: 1199px) {
  .home-shell:not(.is-city-map)::before {
    width: 52%;
    height: 340px;
    clip-path: ellipse(92% 112% at 100% 0%);
  }
}

/* Canonical desktop composition: the stacked tablet rules above also match
   1200-1447px, so these properties explicitly restore the editorial stage. */
@media (min-width: 1200px) and (max-width: 1447px) {
  .home-shell:not(.is-city-map) {
    --option-a-stage-height: clamp(770px, 57.26vw, 828px);
    padding: 0;
  }

  .home-shell:not(.is-city-map) .site-header {
    position: absolute;
    left: 40px;
    right: 28px;
    top: 22px;
    width: auto;
    height: 48px;
    grid-template-columns: 285px minmax(150px, 1fr) minmax(430px, 520px);
  }

  .home-shell:not(.is-city-map) .primary-nav {
    grid-column: auto;
    justify-content: center;
  }

  .home-shell:not(.is-city-map) .header-actions {
    grid-column: auto;
    grid-template-columns: minmax(190px, 1fr) 76px 138px;
  }

  .home-shell:not(.is-city-map) .hero-section {
    position: relative;
    height: calc(var(--option-a-stage-height) + var(--option-a-rail-height));
    padding: 0;
  }

  .home-shell:not(.is-city-map) .hero-grid {
    position: static;
    width: auto;
    display: block;
    margin: 0;
  }

  .home-shell:not(.is-city-map) .hero-title-row {
    position: absolute;
    left: 42px;
    top: 96px;
    width: calc(100% - 470px);
    height: 280px;
    display: block;
    margin: 0;
    overflow: visible;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    position: absolute;
    left: -8px;
    top: 0;
    width: 1020px;
    height: 218px;
    font-size: clamp(188px, 16.15vw, 220px);
  }

  .home-shell:not(.is-city-map) .hero-positioning {
    position: absolute;
    left: 0;
    top: 196px;
    width: 300px;
  }

  .home-shell:not(.is-city-map) .intro-copy {
    position: absolute;
    left: clamp(350px, 29vw, 396px);
    top: 300px;
    width: 285px;
    margin: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-shell:not(.is-city-map) .map-card {
    position: absolute;
    left: 0;
    top: 344px;
    width: calc(100% - 160px);
    height: calc(var(--option-a-stage-height) - 344px);
    aspect-ratio: auto;
  }

  .home-shell:not(.is-city-map) .featured-cities {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    top: 142px;
    right: 24px;
    width: 370px;
  }

  .home-shell:not(.is-city-map) .featured-stage-metric {
    margin-top: 60px;
  }

  .home-shell:not(.is-city-map) .country-city-section,
  .home-shell:not(.is-city-map) .trust-line,
  .home-shell:not(.is-city-map) .site-footer {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }
}

/* CJK glyphs do not survive the Latin title's three narrow clipping bands at
   the full desktop canvas. Keep one bold, stable text layer for those locales. */
@media (min-width: 1448px) {
  .home-shell.is-booted:not(.is-city-map) .hero-title-slices:lang(zh) {
    animation: none !important;
    opacity: 1;
    transform: scaleX(0.84);
  }

  .home-shell:not(.is-city-map) .hero-title-slices:lang(zh)::before,
  .home-shell:not(.is-city-map) .hero-title-slices:lang(zh)::after {
    display: none;
  }

  .home-shell:not(.is-city-map) .hero-title-slices:lang(zh) > span {
    clip-path: none;
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* CANONICAL EDITORIAL POLISH
   Final presentation layer for the selected Option A direction. */
:root {
  --editorial-line: rgba(255, 95, 168, 0.48);
  --editorial-line-soft: rgba(255, 244, 248, 0.13);
  --editorial-panel: rgba(8, 8, 12, 0.96);
  --editorial-glow: rgba(255, 95, 168, 0.2);
}

.search-form {
  transition:
    border-color 180ms var(--ease-editorial),
    box-shadow 180ms var(--ease-editorial),
    background-color 180ms var(--ease-editorial),
    transform 180ms var(--ease-editorial);
}

.search-form:focus-within {
  border-color: #ff8fc2;
  background: rgba(8, 8, 12, 0.99);
  box-shadow:
    0 0 0 3px rgba(255, 95, 168, 0.13),
    0 18px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.search-results {
  overflow: hidden auto;
  border-color: rgba(255, 95, 168, 0.66);
  border-radius: 4px;
  background:
    linear-gradient(110deg, rgba(255, 95, 168, 0.07), transparent 34%),
    rgba(7, 7, 10, 0.985);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 244, 248, 0.025) inset;
  padding: 5px;
  backdrop-filter: blur(18px) saturate(1.1);
}

.search-result-item {
  position: relative;
  min-height: 58px;
  border-radius: 2px;
  transition:
    color 160ms var(--ease-editorial),
    background-color 160ms var(--ease-editorial),
    transform 160ms var(--ease-editorial);
}

.search-result-item::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 2px;
  background: #ff5fa8;
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 160ms var(--ease-editorial),
    transform 160ms var(--ease-editorial);
}

.search-result-item:hover,
.search-result-item:focus-visible {
  background: rgba(255, 95, 168, 0.11);
  transform: translateX(2px);
}

.search-result-item:hover::before,
.search-result-item:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.search-result-item strong {
  color: rgba(255, 244, 248, 0.96);
}

.country-directory-panel,
.city-directory-panel {
  border-color: rgba(255, 95, 168, 0.58);
  border-radius: 4px;
  background: #09090d;
  box-shadow:
    0 24px 58px rgba(21, 0, 9, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.directory-panel-header {
  background:
    radial-gradient(circle, rgba(255, 95, 168, 0.13) 0.6px, transparent 0.7px),
    #0d0d12;
  background-size: 8px 8px;
}

.country-directory-item,
.city-directory-card {
  transition:
    color 180ms var(--ease-editorial),
    background-color 180ms var(--ease-editorial),
    box-shadow 180ms var(--ease-editorial),
    transform 180ms var(--ease-editorial);
}

.country-directory-item.is-active,
.city-directory-card.is-leading {
  box-shadow:
    inset 3px 0 0 rgba(255, 244, 248, 0.88),
    inset 0 -1px 0 rgba(21, 0, 9, 0.18);
}

.tip-dialog {
  border-color: rgba(255, 95, 168, 0.68);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 95, 168, 0.055), transparent 38%),
    #0a0a0f;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 244, 248, 0.025) inset;
}

.tip-dialog::backdrop {
  background: rgba(5, 3, 6, 0.72);
  backdrop-filter: blur(12px) saturate(0.72);
}

.dialog-close,
.tip-dialog textarea,
.tip-city-field select,
.rating-options span,
.signal-options span,
.poi-action-field input,
.poi-action-field select,
.poi-action-field textarea {
  border-radius: 4px;
}

.dialog-submit {
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(255, 95, 168, 0.18);
}

@media (hover: hover) and (pointer: fine) {
  .country-directory-item:not(.is-active):hover,
  .city-directory-card:not(.is-leading):hover {
    background: #121219;
    box-shadow: inset 2px 0 0 rgba(255, 95, 168, 0.72);
    transform: translateY(-2px);
  }

  .directory-scroll-controls button:not(:disabled):hover {
    border-color: #ff8fc2;
    background: rgba(255, 95, 168, 0.12);
    color: #fff4f8;
    transform: translateY(-2px);
  }
}

@media (min-width: 1200px) {
  .home-shell:not(.is-city-map) .hero-title-row h1 {
    text-shadow: 0 22px 56px rgba(78, 0, 29, 0.12);
  }

  .home-shell:not(.is-city-map) .featured-stage-number {
    text-shadow: 0 18px 42px rgba(255, 95, 168, 0.16);
  }

  .home-shell:not(.is-city-map) .featured-stage-action {
    position: relative;
    padding-bottom: 7px;
  }

  .home-shell:not(.is-city-map) .featured-stage-action::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transform-origin: left center;
    transform: scaleX(0.26);
    transition: transform 200ms var(--ease-editorial);
  }

  .home-shell:not(.is-city-map) .featured-stage-action:hover::after,
  .home-shell:not(.is-city-map) .featured-stage-action:focus-visible::after {
    transform: scaleX(1);
  }

  .home-shell:not(.is-city-map) .map-node b {
    border: 1px solid rgba(255, 95, 168, 0.24);
    box-shadow: 0 7px 20px rgba(7, 7, 10, 0.24);
  }
}

@media (max-width: 640px) {
  .search-results {
    width: calc(100vw - 28px);
    max-height: min(360px, 48vh);
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    text-shadow: 0 14px 34px rgba(68, 0, 27, 0.12);
  }

  .country-directory-panel,
  .city-directory-panel {
    box-shadow: 0 18px 42px rgba(28, 0, 12, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-form,
  .search-result-item,
  .search-result-item::before,
  .country-directory-item,
  .city-directory-card,
  .featured-stage-action::after {
    transition-duration: 1ms !important;
  }

  .search-result-item:hover,
  .search-result-item:focus-visible,
  .country-directory-item:hover,
  .city-directory-card:hover {
    transform: none;
  }
}

/* Standalone legal pages share the editorial club surface. */
.app-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  padding: 56px 20px;
  background: #f23883;
}

.app-shell::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -18vh;
  right: -15vw;
  width: min(68vw, 980px);
  height: 136vh;
  border-radius: 52% 0 0 52%;
  background: #08080c;
  transform: rotate(5deg);
}

.app-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background-image: radial-gradient(rgba(255, 244, 248, 0.22) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  mask-image: linear-gradient(90deg, transparent 44%, #000 82%);
  pointer-events: none;
}

.panel.legal {
  position: relative;
  width: min(840px, 100%);
  border: 1px solid rgba(255, 95, 168, 0.54);
  border-radius: 4px;
  background: rgba(9, 9, 13, 0.97);
  color: #fff4f8;
  padding: 42px 46px;
  box-shadow: 0 32px 90px rgba(41, 0, 18, 0.42);
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 95, 168, 0.28);
  padding-bottom: 16px;
}

.legal-topbar .brand-mark {
  color: #fff4f8;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff78b5;
  font-size: 11px;
  font-weight: 900;
}

.language-switch select {
  min-height: 38px;
  border: 1px solid rgba(255, 95, 168, 0.54);
  border-radius: 4px;
  background: #111116;
  color: #fff4f8;
  padding: 0 30px 0 10px;
  font: inherit;
}

.panel.legal h1 {
  margin: 0 0 22px;
  color: #fff4f8;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.panel.legal p {
  max-width: 70ch;
  margin: 0 0 16px;
  color: rgba(255, 244, 248, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.panel.legal a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 95, 168, 0.5);
  border-radius: 4px;
  color: #ff78b5;
  padding: 0 14px;
  font-weight: 900;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.panel.legal a:hover {
  border-color: #ff78b5;
  background: rgba(255, 95, 168, 0.1);
  color: #fff4f8;
  transform: translateY(-2px);
}

.panel.legal a:focus-visible,
.language-switch select:focus-visible {
  outline: 2px solid #fff4f8;
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .app-shell {
    place-items: start center;
    padding: 18px 14px;
  }

  .app-shell::before {
    top: 42%;
    right: -48vw;
    width: 112vw;
    height: 76vh;
    transform: rotate(-8deg);
  }

  .panel.legal {
    padding: 26px 20px;
  }

  .legal-topbar {
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .legal-topbar .brand-mark {
    max-width: 150px;
    font-size: 16px;
  }

  .language-switch {
    align-items: flex-end;
    flex-direction: column;
  }

  .panel.legal h1 {
    font-size: 36px;
  }

  .panel.legal p {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel.legal a {
    transition-duration: 1ms;
  }

  .panel.legal a:hover {
    transform: none;
  }
}

@media (min-width: 1200px) {
  html,
  body {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 95, 168, 0.64) rgba(8, 8, 12, 0.2);
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    display: block;
  }

  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(255, 95, 168, 0.64);
  }
}

@media (max-width: 640px) {
  .home-shell:not(.is-city-map) .featured-stage-tags,
  .home-shell:not(.is-city-map) .featured-stage-categories {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-shell:not(.is-city-map) .featured-stage-categories {
    margin-top: 18px;
  }

  .home-shell:not(.is-city-map) .featured-stage-categories > div {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .home-shell:not(.is-city-map) .featured-stage-category {
    min-height: 36px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .featured-stage-category:hover {
    color: var(--club-white);
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-stage-category,
  .home-shell:not(.is-city-map) .map-node.is-active::before,
  .home-shell:not(.is-city-map) .map-node.is-active::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }
}

@keyframes kindredTitleReferenceRise {
  from {
    opacity: 0;
    transform: translateY(20px) scaleX(0.897);
  }

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

@media (min-width: 1200px) {
  html,
  body {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    left: -10px;
    width: 1100px;
    height: 235px;
    font-family: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", sans-serif;
    font-size: clamp(212px, 17.68vw, 280px);
    line-height: 0.82;
    transform: scaleX(0.897);
    transform-origin: left top;
  }

  .home-shell.is-booted:not(.is-city-map) .hero-title-row h1 {
    animation: kindredTitleReferenceRise 400ms var(--ease-editorial) 60ms both;
  }

  .home-shell:not(.is-city-map) .featured-stage-action {
    margin-top: 35px;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {
  .home-shell:not(.is-city-map) .hero-title-row h1 {
    animation: none !important;
    opacity: 1;
    transform: scaleX(0.897) !important;
  }
}

/* OPTION A PIXEL REFINEMENT V8 */

@keyframes kindredTitleReferenceRiseV8 {
  from {
    opacity: 0;
    transform: translateY(20px) scaleX(0.84);
  }

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

@media (min-width: 1200px) {
  .home-shell:not(.is-city-map) {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 31%),
      linear-gradient(108deg, rgba(106, 0, 41, 0.3), transparent 27%),
      linear-gradient(180deg, #f43e88 0%, #f23883 72%, #ee347d 100%);
  }

  .home-shell:not(.is-city-map)::before {
    clip-path: polygon(
      70.4% 0,
      68.3% 6%,
      67% 12%,
      66.4% 18%,
      66.3% 24%,
      66.7% 30%,
      67.5% 37%,
      68.8% 44%,
      70.5% 51%,
      72.7% 59%,
      75.5% 67%,
      78.8% 75%,
      82.5% 83%,
      85.5% 89%,
      87.2% 94%,
      88.4% 98%,
      88.9% 100%,
      100% 100%,
      100% 0
    );
    background:
      radial-gradient(circle at 79% 27%, rgba(255, 95, 168, 0.105), transparent 27%),
      linear-gradient(145deg, #111116 0%, #07070a 72%);
  }

  .home-shell:not(.is-city-map) .site-header {
    grid-template-columns: 360px minmax(260px, 1fr) 604px;
  }

  .home-shell:not(.is-city-map) .brand-wordmark {
    font-weight: 760;
  }

  .home-shell:not(.is-city-map) .primary-nav {
    font-weight: 650;
  }

  .home-shell:not(.is-city-map) .language-select select,
  .home-shell:not(.is-city-map) .tip-button {
    font-weight: 760;
  }

  .home-shell:not(.is-city-map) .hero-title-row {
    top: clamp(97px, 6.95vw, 110px);
  }

  .home-shell:not(.is-city-map) .hero-title-row::before {
    top: clamp(43px, 3.47vw, 55px);
  }

  .home-shell:not(.is-city-map) .hero-title-row::after {
    top: clamp(158px, 11.49vw, 182px);
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    left: -10px;
    width: 1168px;
    height: 250px;
    font-size: clamp(226px, 18.88vw, 299px);
    line-height: 0.82;
    transform: scaleX(0.84);
  }

  .home-shell.is-booted:not(.is-city-map) .hero-title-row h1 {
    animation: kindredTitleReferenceRiseV8 400ms var(--ease-editorial) 60ms both;
  }

  .home-shell:not(.is-city-map) .hero-title-slices::before {
    clip-path: inset(0 0 75% 0);
    transform: translate3d(-8px, -3px, 0);
  }

  .home-shell:not(.is-city-map) .hero-title-slices > span {
    clip-path: inset(25% 0 28% 0);
    transform: translate3d(10px, 0, 0);
  }

  .home-shell:not(.is-city-map) .hero-title-slices::after {
    clip-path: inset(72% 0 0 0);
    transform: translate3d(-5px, 4px, 0);
  }

  .home-shell:not(.is-city-map) .hero-positioning p {
    font-weight: 700;
  }

  .home-shell:not(.is-city-map) .intro-copy {
    font-weight: 500;
  }

  .home-shell:not(.is-city-map) .map-card-inner::after {
    opacity: 0.14;
  }

  .home-shell:not(.is-city-map) .asia-map-preview::before {
    background:
      linear-gradient(0deg, rgba(105, 5, 46, 0.12), transparent 48%),
      radial-gradient(circle at 27% 30%, rgba(255, 255, 255, 0.61), transparent 36%),
      linear-gradient(145deg, #ffdae7 0%, #f5b3cc 63%, #e98ab2 100%);
  }

  .home-shell:not(.is-city-map) .asia-base {
    opacity: 0.95;
    filter: saturate(0.66) contrast(1.12) brightness(0.97);
  }

  .home-shell:not(.is-city-map) .map-node i {
    width: 13px;
    height: 13px;
    border-width: 2px;
  }

  .home-shell:not(.is-city-map) .map-node b {
    left: 9px;
    top: -6px;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 760;
    box-shadow: 0 7px 16px rgba(8, 8, 12, 0.2);
  }

  .home-shell:not(.is-city-map) .map-node.is-secondary i {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }

  .home-shell:not(.is-city-map) .map-node.is-secondary b {
    left: 7px;
    top: -5px;
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 720;
  }

  .home-shell:not(.is-city-map) .map-node.label-left b {
    right: 9px;
    left: auto;
  }

  .home-shell:not(.is-city-map) .map-node.is-secondary.label-left b {
    right: 7px;
  }

  .home-shell:not(.is-city-map) .map-node.is-active::before {
    width: 80px;
    height: 80px;
    box-shadow: 0 0 0 15px rgba(255, 244, 248, 0.045);
  }

  .home-shell:not(.is-city-map) .map-node.is-active::after {
    width: 48px;
    height: 48px;
  }

  .home-shell:not(.is-city-map) .map-cta {
    grid-template-columns: 36px 150px;
    gap: 10px;
    font-size: 14px;
  }

  .home-shell:not(.is-city-map) .map-cta > span:first-child {
    width: 36px;
    height: 43px;
  }

  .home-shell:not(.is-city-map) .map-cta svg {
    width: 31px;
    height: 37px;
  }

  .home-shell:not(.is-city-map) .featured-stage-kicker {
    margin-bottom: 30px;
    font-weight: 780;
  }

  .home-shell:not(.is-city-map) .featured-stage-place strong {
    font-weight: 780;
  }

  .home-shell:not(.is-city-map) .featured-stage-metric {
    margin-top: 74px;
  }

  .home-shell:not(.is-city-map) .featured-stage-categories > p,
  .home-shell:not(.is-city-map) .featured-stage-action {
    font-weight: 780;
  }

  .home-shell:not(.is-city-map) .featured-stage-category strong,
  .home-shell:not(.is-city-map) .featured-stage-category em {
    font-weight: 570;
  }

  .home-shell:not(.is-city-map) .featured-city .city-copy strong,
  .home-shell:not(.is-city-map) .featured-rail-label {
    font-weight: 760;
  }
}

.home-shell.is-city-map .brand-wordmark,
.home-shell.is-city-map .back-home-button,
.home-shell.is-city-map .city-map-meta,
.home-shell.is-city-map .type-filter,
.home-shell.is-city-map .poi-row,
.home-shell.is-city-map .poi-detail-card {
  font-weight: 700;
}

.home-shell.is-city-map .city-map-copy h1,
.home-shell.is-city-map .poi-detail-title-row h2 {
  font-weight: 820;
}

.home-shell.is-city-map .type-filter {
  letter-spacing: 0;
}

.home-shell.is-city-map .poi-detail-facts strong,
.home-shell.is-city-map .poi-readiness strong,
.home-shell.is-city-map .poi-detail-trust > summary,
.home-shell.is-city-map .poi-visit-notes > summary {
  font-weight: 720;
}

@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {
  .home-shell:not(.is-city-map) .hero-title-row h1 {
    animation: none !important;
    opacity: 1;
    transform: scaleX(0.84) !important;
  }
}

@media (min-width: 641px) and (max-width: 1199px) {
  .home-shell:not(.is-city-map)::before {
    left: auto;
    right: 0;
    width: 44%;
    height: 250px;
    clip-path: ellipse(72% 116% at 100% 0%);
  }
}

@media (min-width: 1200px) and (max-width: 1447px) {
  .home-shell:not(.is-city-map) .site-header {
    grid-template-columns: 285px minmax(150px, 1fr) minmax(430px, 520px);
  }

  .home-shell:not(.is-city-map) .hero-title-row {
    top: 96px;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    width: 1020px;
    height: 218px;
    color: var(--club-white);
    font-size: clamp(188px, 16.15vw, 220px);
    animation: none;
    opacity: 1;
    transform: scaleX(0.84);
    transform-origin: left top;
  }

  .home-shell:not(.is-city-map) .hero-title-slices::before,
  .home-shell:not(.is-city-map) .hero-title-slices::after {
    display: none;
  }

  .home-shell:not(.is-city-map) .hero-title-slices > span {
    clip-path: none;
    color: inherit;
    opacity: 1;
    transform: none;
  }

  .home-shell:not(.is-city-map) .featured-stage-metric {
    margin-top: 60px;
  }
}

/* OPTION A REFERENCE RECONSTRUCTION V9 */

@keyframes kindredTitleReferenceRiseV9 {
  from {
    opacity: 0;
    transform: translateY(20px) scaleX(0.84);
  }

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

@keyframes kindredTitleTopSliceV9 {
  from {
    opacity: 0;
    transform: translate3d(-5px, 17px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(-5px, -3px, 0);
  }
}

@keyframes kindredTitleMiddleSliceV9 {
  from {
    opacity: 0;
    transform: translate3d(10px, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes kindredTitleBottomSliceV9 {
  from {
    opacity: 0;
    transform: translate3d(-2px, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(-2px, 0, 0);
  }
}

.map-cta-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.map-cta-copy strong,
.map-cta-copy small {
  display: block;
  font: inherit;
}

.map-cta-copy strong {
  font-weight: 720;
}

.map-cta-copy small {
  opacity: 0.84;
  font-size: 12px;
  line-height: 1.34;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .home-shell:not(.is-city-map) {
    background:
      radial-gradient(ellipse 22% 7% at 0 0, rgba(9, 0, 3, 0.42) 0%, transparent 100%),
      linear-gradient(180deg, rgba(8, 0, 3, 0.24) 0%, transparent 84px),
      radial-gradient(ellipse 68% 14% at 18% 0, rgba(16, 1, 6, 0.62) 0%, rgba(22, 1, 8, 0.4) 45%, transparent 100%),
      radial-gradient(ellipse 60% 54% at 66% 45%, rgba(255, 92, 150, 0.22), transparent 68%),
      linear-gradient(101deg, #b51a49 0%, #d51f59 48%, #ec286d 100%);
  }

  .home-shell:not(.is-city-map)::before {
    clip-path: polygon(
      70.4% 0,
      68.55% 8.8%,
      67.17% 17.6%,
      66.73% 26.5%,
      66.8% 35.3%,
      67.87% 44.1%,
      69.35% 52.9%,
      71.65% 61.7%,
      74.46% 70.6%,
      77.93% 79.4%,
      82.03% 88.2%,
      87.12% 97%,
      88.9% 100%,
      100% 100%,
      100% 0
    );
    background:
      radial-gradient(circle at 80% 28%, rgba(255, 95, 168, 0.08), transparent 27%),
      linear-gradient(145deg, #111116 0%, #07070a 72%);
  }

  .home-shell:not(.is-city-map)::after {
    opacity: 0.31;
    background-image:
      radial-gradient(circle, rgba(255, 244, 248, 0.27) 0.52px, transparent 0.66px),
      linear-gradient(180deg, transparent 0 49.6%, rgba(255, 255, 255, 0.055) 50%, transparent 50.4%),
      linear-gradient(105deg, rgba(255, 255, 255, 0.045), transparent 40%);
    background-size: 7px 7px, 100% 36px, auto;
  }

  .home-shell:not(.is-city-map) .hero-title-row::before {
    top: 50px;
  }

  .home-shell:not(.is-city-map) .hero-title-row::after {
    top: 166px;
  }

  .home-shell:not(.is-city-map) .hero-title-slices::before {
    clip-path: inset(0 0 80% 0);
    transform: translate3d(-5px, -3px, 0);
  }

  .home-shell:not(.is-city-map) .hero-title-slices > span {
    clip-path: inset(20% 0 34% 0);
    transform: translate3d(10px, 0, 0);
  }

  .home-shell:not(.is-city-map) .hero-title-slices::after {
    clip-path: inset(66% 0 0 0);
    transform: translate3d(-2px, 0, 0);
  }

  .home-shell.is-booted:not(.is-city-map) .hero-title-row h1 {
    animation: kindredTitleReferenceRiseV9 400ms var(--ease-editorial) 60ms both;
  }

  .home-shell.is-booted:not(.is-city-map) .hero-title-slices::before {
    animation: kindredTitleTopSliceV9 380ms var(--ease-editorial) both;
  }

  .home-shell.is-booted:not(.is-city-map) .hero-title-slices > span {
    animation: kindredTitleMiddleSliceV9 380ms var(--ease-editorial) 50ms both;
  }

  .home-shell.is-booted:not(.is-city-map) .hero-title-slices::after {
    animation: kindredTitleBottomSliceV9 380ms var(--ease-editorial) 90ms both;
  }

  .home-shell:not(.is-city-map) .hero-positioning {
    top: clamp(204px, 14.96vw, 237px);
  }

  .home-shell:not(.is-city-map) .intro-copy {
    left: clamp(330px, 26.52vw, 420px);
  }

  .home-shell:not(.is-city-map) .primary-nav {
    transform: translateX(12px);
  }

  .home-shell:not(.is-city-map) .asia-map-preview::before {
    clip-path: none;
    background:
      radial-gradient(ellipse 52% 78% at 53% 42%, rgba(255, 218, 229, 0.34), transparent 72%),
      linear-gradient(180deg, rgba(112, 53, 72, 0.3) 0%, rgba(219, 132, 160, 0.18) 100%);
  }

  .home-shell:not(.is-city-map) .asia-base {
    left: 7%;
    width: 75.7%;
    clip-path: none;
    opacity: 0.98;
    filter: saturate(0.62) contrast(1.32) brightness(0.9);
  }

  .home-shell:not(.is-city-map) .city-nodes {
    left: 7%;
    right: auto;
    width: 75.7%;
  }

  .home-shell:not(.is-city-map) .map-card-inner::after {
    opacity: 0.2;
  }

  .home-shell:not(.is-city-map) .map-node i {
    width: 15px;
    height: 15px;
    border-width: 2px;
  }

  .home-shell:not(.is-city-map) .map-node.is-active i {
    transform: scale(1.18);
    background: var(--club-pink-hot);
    box-shadow:
      0 0 0 3px rgba(255, 244, 248, 0.76),
      0 0 22px rgba(255, 95, 168, 0.56);
  }

  .home-shell:not(.is-city-map) .map-node.is-secondary i {
    width: 9px;
    height: 9px;
    border-width: 1.5px;
  }

  .home-shell:not(.is-city-map) .map-cta {
    min-height: 58px;
    grid-template-columns: 36px 180px;
    left: 40px;
    bottom: 36px;
  }

  .home-shell:not(.is-city-map) .map-cta-copy {
    gap: 4px;
  }

  .home-shell:not(.is-city-map) .map-cta-copy strong {
    color: rgba(255, 244, 248, 0.96);
    font-size: 14px;
  }

  .home-shell:not(.is-city-map) .map-cta-copy small {
    max-width: 165px;
    color: rgba(255, 244, 248, 0.88);
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    padding-left: 1px;
  }

  .home-shell:not(.is-city-map) #featuredStagePosition {
    display: none;
  }

  .home-shell:not(.is-city-map) .featured-stage-kicker {
    margin-bottom: 30px;
  }

  .home-shell:not(.is-city-map) .featured-stage-heading {
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 22px;
  }

  .home-shell:not(.is-city-map) .featured-stage-number {
    font-size: 112px;
  }

  .home-shell:not(.is-city-map) .featured-stage-place {
    transform: translateY(22px);
  }

  .home-shell:not(.is-city-map) .featured-stage-metric {
    margin: 56px 0 0 174px;
    padding-top: 30px;
  }

  .home-shell:not(.is-city-map) .featured-stage-categories {
    margin: 36px 0 0 174px;
  }

  .home-shell:not(.is-city-map) .featured-stage-category strong,
  .home-shell:not(.is-city-map) .featured-stage-category em {
    font-size: 13px;
  }

  .home-shell:not(.is-city-map) .featured-stage-action {
    margin: 25px 0 0 224px;
  }

  .home-shell:not(.is-city-map) .featured-city,
  .home-shell:not(.is-city-map) .featured-rail-label {
    font-weight: 680;
  }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1200px) {
  .home-shell:not(.is-city-map) .hero-title-row h1 {
    animation: none !important;
    opacity: 1;
    transform: scaleX(0.84) !important;
  }

  .home-shell:not(.is-city-map) .hero-title-slices::before,
  .home-shell:not(.is-city-map) .hero-title-slices > span,
  .home-shell:not(.is-city-map) .hero-title-slices::after {
    animation: none !important;
    opacity: 1;
  }
}

/* The 1200-1447 stage uses one stable text layer. The sliced treatment remains
   available on the full reference canvas where all three slices have room. */
@media (min-width: 1200px) and (max-width: 1447px) {
  .home-shell:not(.is-city-map) .hero-title-row h1 {
    width: 1020px;
    height: 218px;
    isolation: auto;
    font-size: clamp(188px, 16.15vw, 220px);
  }

  .home-shell.is-booted:not(.is-city-map) .hero-title-row h1 {
    color: var(--club-white);
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .home-shell:not(.is-city-map) .hero-title-slices::before,
  .home-shell:not(.is-city-map) .hero-title-slices::after {
    display: none;
  }

  .home-shell:not(.is-city-map) .hero-title-slices > span {
    clip-path: none;
    color: inherit;
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* MOBILE HOME DISCOVERY
   Mobile-only editorial compression. The v8 title, arc, Asia map, active-city
   stage, and independent directory tracks remain the visual and behavior base. */
@media (max-width: 767px),
  (max-width: 932px) and (max-height: 500px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .home-shell:not(.is-city-map) {
    --home-touch-target: 44px;
    padding:
      calc(12px + env(safe-area-inset-top))
      14px
      calc(24px + env(safe-area-inset-bottom));
  }

  .home-shell:not(.is-city-map) .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand"
      "nav tip"
      "search language";
    gap: 8px 10px;
    align-items: center;
  }

  .home-shell:not(.is-city-map) .brand-wordmark {
    grid-area: brand;
    min-width: var(--home-touch-target);
    min-height: var(--home-touch-target);
    display: inline-flex;
    align-items: center;
    justify-self: start;
    font-size: 20px;
    line-height: 1.08;
  }

  .home-shell:not(.is-city-map) .primary-nav {
    grid-area: nav;
    grid-column: auto;
    min-width: 0;
    min-height: var(--home-touch-target);
    gap: 8px;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
  }

  .home-shell:not(.is-city-map) .primary-nav a {
    min-width: var(--home-touch-target);
    min-height: var(--home-touch-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 4px;
    line-height: 1.15;
  }

  .home-shell:not(.is-city-map) .header-actions {
    display: contents;
  }

  .home-shell:not(.is-city-map) .search-form {
    grid-area: search;
    width: 100%;
    min-width: 0;
    height: 48px;
    grid-template-columns: minmax(0, 1fr) var(--home-touch-target);
    gap: 4px;
    padding: 0 2px 0 12px;
  }

  .home-shell:not(.is-city-map) .search-form input {
    width: 100%;
    height: 100%;
    min-height: var(--home-touch-target);
    font-size: 14px;
  }

  .home-shell:not(.is-city-map) .search-form > button {
    width: var(--home-touch-target);
    height: var(--home-touch-target);
  }

  .home-shell:not(.is-city-map) .language-select {
    grid-area: language;
    width: clamp(82px, 8ch, 112px);
    height: 48px;
  }

  .home-shell:not(.is-city-map) .language-select select {
    min-width: var(--home-touch-target);
    min-height: var(--home-touch-target);
    padding: 0 6px;
    font-size: 12px;
    text-align-last: center;
  }

  .home-shell:not(.is-city-map) .tip-button {
    grid-area: tip;
    width: clamp(82px, 12ch, 150px);
    min-width: var(--home-touch-target);
    min-height: var(--home-touch-target);
    border: 1px solid rgba(255, 143, 194, 0.86);
    border-radius: 4px;
    background: rgba(8, 8, 12, 0.9);
    color: #fff4f8;
    padding: 0 4px;
    font-size: 11px;
    line-height: 1.08;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    white-space: normal;
  }

  .home-shell:not(.is-city-map) .search-results {
    width: min(420px, calc(100vw - 28px));
    max-height: min(38dvh, 280px);
    overscroll-behavior: contain;
    scroll-padding-block: 6px;
  }

  .home-shell:not(.is-city-map) .search-result-item {
    min-height: 56px;
    padding: 9px 10px;
  }

  .home-shell:not(.is-city-map) .hero-section {
    padding-top: 10px;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    height: clamp(66px, 18vw, 78px);
    font-size: clamp(58px, 17vw, 72px);
  }

  .home-shell:not(.is-city-map) .hero-positioning {
    margin-top: 4px;
  }

  .home-shell:not(.is-city-map) .hero-positioning p {
    font-size: 14px;
    line-height: 1.28;
  }

  .home-shell:not(.is-city-map) .intro-copy {
    gap: 4px;
    margin-top: 12px;
    padding-left: 14px;
    font-size: 12px;
    line-height: 1.42;
  }

  .home-shell:not(.is-city-map) .hero-grid {
    gap: 14px;
    margin-top: 14px;
  }

  .home-shell:not(.is-city-map) .map-cta {
    width: clamp(154px, 9em, 190px);
    min-height: 48px;
    left: 10px;
    top: 10px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
    border: 1px solid rgba(109, 23, 57, 0.2);
    border-radius: 4px;
    background: rgba(255, 244, 248, 0.82);
    color: #52152d;
    padding: 3px 9px 3px 4px;
    box-shadow: 0 10px 24px rgba(62, 6, 30, 0.12);
    backdrop-filter: blur(8px);
  }

  .home-shell:not(.is-city-map) .map-cta > span:first-child {
    width: 30px;
    height: 40px;
  }

  .home-shell:not(.is-city-map) .map-cta svg {
    width: 29px;
    height: 35px;
  }

  .home-shell:not(.is-city-map) .map-cta-copy strong {
    font-size: 12px;
    line-height: 1.15;
  }

  .home-shell:not(.is-city-map) .map-node {
    --home-node-layout-offset-y: 0px;
    width: var(--home-touch-target);
    height: var(--home-touch-target);
    transform: translate(-50%, calc(-50% + var(--home-node-layout-offset-y)));
  }

  .home-shell:not(.is-city-map) .map-node:hover {
    transform: translate(-50%, calc(-50% + var(--home-node-layout-offset-y)));
  }

  .home-shell:not(.is-city-map) .map-node.is-primary {
    /* Keep the seven direct-discovery nodes above the denser contextual city dots. */
    z-index: 2;
  }

  .home-shell:not(.is-city-map) .map-node.is-secondary {
    z-index: 1;
  }

  .home-shell:not(.is-city-map) .map-node:is(
    [data-city-id="bangkok"],
    [data-city-id="taipei"]
  ) {
    /* Shift only the 44px button frame; marker, label, and active rings are
       counter-positioned below so their visible center stays at --x/--y. */
    --home-node-layout-offset-y: -7px;
  }

  .home-shell:not(.is-city-map) .map-node:is(
    [data-city-id="hongkong"],
    [data-city-id="kuala-lumpur"]
  ) {
    --home-node-layout-offset-y: 7px;
  }

  .home-shell:not(.is-city-map) .map-node i {
    position: absolute;
    left: 50%;
    top: calc(50% - var(--home-node-layout-offset-y));
    transform: translate(-50%, -50%);
    transform-origin: center;
  }

  .home-shell:not(.is-city-map) .map-node.is-active i {
    transform: translate(-50%, -50%) scale(1.22);
  }

  .home-shell:not(.is-city-map) .map-node b {
    left: calc(50% + 3px);
    top: calc(50% - 17px - var(--home-node-layout-offset-y));
  }

  .home-shell:not(.is-city-map) .map-node.label-left b {
    right: calc(50% + 3px);
    left: auto;
  }

  .home-shell:not(.is-city-map) .map-node.label-bottom b {
    left: 50%;
    top: calc(50% + 2px - var(--home-node-layout-offset-y));
  }

  .home-shell:not(.is-city-map) .map-node.label-top b {
    left: 50%;
    top: auto;
    bottom: calc(50% + 2px + var(--home-node-layout-offset-y));
  }

  .home-shell:not(.is-city-map) .map-node.is-active::before,
  .home-shell:not(.is-city-map) .map-node.is-active::after {
    left: 50%;
    top: calc(50% - var(--home-node-layout-offset-y));
  }

  .home-shell:not(.is-city-map) .featured-cities {
    padding-top: 18px;
  }

  .home-shell:not(.is-city-map) .featured-city-stage {
    min-width: 0;
    padding: 0 16px;
  }

  .home-shell:not(.is-city-map) .featured-stage-heading {
    min-width: 0;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  .home-shell:not(.is-city-map) .featured-stage-number {
    font-size: 72px;
  }

  .home-shell:not(.is-city-map) .featured-stage-place strong {
    max-width: 100%;
    font-size: clamp(23px, 7vw, 29px);
    line-height: 1;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .home-shell:not(.is-city-map) .featured-stage-place em,
  .home-shell:not(.is-city-map) .featured-stage-place small {
    overflow-wrap: anywhere;
  }

  .home-shell:not(.is-city-map) .featured-stage-action {
    min-width: var(--home-touch-target);
    min-height: var(--home-touch-target);
    margin-top: 14px;
    padding: 0 4px;
  }

  .home-shell:not(.is-city-map) .country-city-section {
    margin-top: 16px;
  }

  .home-shell:not(.is-city-map) .country-directory-panel {
    height: 168px;
  }

  .home-shell:not(.is-city-map) .city-directory-panel {
    height: 220px;
  }

  .home-shell:not(.is-city-map) .country-directory-panel,
  .home-shell:not(.is-city-map) .city-directory-panel {
    grid-template-rows: 52px minmax(0, 1fr);
  }

  .home-shell:not(.is-city-map) .directory-panel-header {
    min-height: 52px;
    gap: 8px;
    padding-right: 6px;
  }

  .home-shell:not(.is-city-map) .directory-scroll-controls button {
    flex: 0 0 var(--home-touch-target);
    width: var(--home-touch-target);
    height: var(--home-touch-target);
  }

  .home-shell:not(.is-city-map) .country-directory-list,
  .home-shell:not(.is-city-map) .city-directory-track {
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 10px;
  }

  .home-shell:not(.is-city-map) .country-directory-item {
    flex-basis: min(72vw, 224px);
    width: min(72vw, 224px);
    min-height: var(--home-touch-target);
  }

  .home-shell:not(.is-city-map) .city-directory-card {
    flex-basis: min(78vw, 256px);
    min-height: var(--home-touch-target);
    padding: 14px 18px 13px;
  }

  .home-shell:not(.is-city-map) .country-directory-copy,
  .home-shell:not(.is-city-map) .country-directory-copy > span,
  .home-shell:not(.is-city-map) .city-directory-copy {
    min-width: 0;
    overflow: visible;
  }

  .home-shell:not(.is-city-map) .country-directory-copy strong,
  .home-shell:not(.is-city-map) .country-directory-copy em,
  .home-shell:not(.is-city-map) .city-directory-copy strong,
  .home-shell:not(.is-city-map) .city-directory-copy em,
  .home-shell:not(.is-city-map) .city-directory-copy small {
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .home-shell:not(.is-city-map) .city-directory-copy strong {
    font-size: clamp(17px, 5.5vw, 21px);
    line-height: 1.08;
  }

  .home-shell:not(.is-city-map) .trust-line {
    gap: 6px 10px;
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.35;
  }

  .home-shell:not(.is-city-map) .trust-line > span {
    min-height: var(--home-touch-target);
  }

  .home-shell:not(.is-city-map) .site-footer {
    gap: 10px;
    margin-top: 16px;
    padding-top: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .home-shell:not(.is-city-map) .site-footer nav {
    gap: 2px 12px;
  }

  .home-shell:not(.is-city-map) .site-footer a {
    min-width: var(--home-touch-target);
    min-height: var(--home-touch-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }

  .home-shell:not(.is-city-map) :is(
    .brand-wordmark,
    .primary-nav a,
    .search-form > button,
    .tip-button,
    .map-cta,
    .featured-stage-action,
    .country-directory-item,
    .city-directory-card,
    .directory-scroll-controls button,
    .site-footer a
  ):focus-visible {
    outline: 2px solid #fff4f8;
    outline-offset: 2px;
  }

  .home-shell:not(.is-city-map) :is(
    .primary-nav a,
    .search-form > button,
    .tip-button,
    .map-cta,
    .featured-stage-action,
    .country-directory-item,
    .city-directory-card,
    .directory-scroll-controls button,
    .site-footer a
  ):active {
    filter: brightness(1.08);
    transform: translateY(1px) scale(0.985);
  }

  .home-shell:not(.is-city-map) .map-node:active i {
    transform: translate(-50%, -50%) scale(0.9);
  }

  .home-shell:not(.is-city-map) .map-node.is-active:active i {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 359px) {
  .home-shell:not(.is-city-map) .primary-nav {
    gap: 4px;
    font-size: 12px;
  }

  .home-shell:not(.is-city-map) .primary-nav a {
    padding-inline: 4px;
  }

  .home-shell:not(.is-city-map) .hero-title-row h1 {
    font-size: 58px;
  }
}

@media (max-width: 767px) and (orientation: landscape),
  (max-width: 932px) and (max-height: 500px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .home-shell:not(.is-city-map) .site-header {
    grid-template-columns: minmax(140px, 1fr) auto 82px;
    grid-template-areas:
      "brand nav tip"
      "search search language";
  }

  .home-shell:not(.is-city-map) .brand-wordmark {
    max-width: 260px;
  }

  .home-shell:not(.is-city-map) .hero-section {
    padding-top: 8px;
  }

  .home-shell:not(.is-city-map) .tip-button {
    width: 82px;
    white-space: nowrap;
  }
}

@media (max-width: 767px),
  (max-width: 932px) and (max-height: 500px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .tip-dialog {
    position: fixed;
    inset: 0;
    width: min(540px, calc(100vw - 16px));
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow: hidden;
    margin: auto;
  }

  #poiActionDialog[open] {
    height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  #poiActionDialog .poi-action-form {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 0;
    overflow: hidden;
    padding: 0;
  }

  .poi-action-header {
    position: relative;
    display: grid;
    gap: 7px;
    max-height: min(48dvh, 280px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 1px solid rgba(255, 244, 248, 0.12);
    padding: 16px 64px 13px 16px;
  }

  .poi-action-header .dialog-close {
    position: fixed;
    z-index: 4;
    top: calc(18px + env(safe-area-inset-top));
    right: max(18px, calc((100vw - 540px) / 2 + 10px));
    background: #0a0a0f;
  }

  .poi-action-header h2 {
    font-size: clamp(23px, 7vw, 28px);
    overflow-wrap: anywhere;
  }

  .poi-action-header p {
    font-size: 12px;
    line-height: 1.4;
  }

  .poi-action-scroll {
    min-height: 0;
    display: grid;
    align-content: start;
    gap: 14px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-padding-block: 12px 20px;
    padding: 14px 16px 18px;
  }

  #poiActionDialog .dialog-submit {
    min-height: max(48px, 3em);
    border-radius: 0;
    padding: 8px 16px;
    line-height: 1.15;
    white-space: normal;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.32);
  }

  .dialog-close {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .rating-options span,
  .signal-options span {
    min-height: 44px;
  }

  .rating-options span {
    width: 44px;
  }

  .poi-action-check {
    min-height: 44px;
    align-items: center;
  }

  .poi-action-check input {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .poi-action-error:not([hidden]) {
    border-left: 3px solid #ff5fa8;
    background: rgba(255, 95, 168, 0.09);
    padding: 10px 12px;
  }

  #tipDialog form {
    max-height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-padding-block: 56px;
    padding: 14px 16px 16px;
  }

  #tipDialog .dialog-close {
    position: sticky;
    z-index: 3;
    top: 0;
    justify-self: end;
    margin-bottom: -44px;
    background: #0a0a0f;
  }

  #tipDialog .dialog-kicker {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-right: 52px;
  }

  #tipDialog .dialog-submit {
    position: sticky;
    z-index: 2;
    bottom: 0;
    min-height: 48px;
  }

  .tip-dialog.is-photo-lightbox {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .poi-photo-lightbox {
    height: min(760px, calc(100dvh - 18px - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
    max-height: 100%;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 12px;
  }

  .poi-photo-lightbox > header {
    min-height: 44px;
    gap: 12px;
    padding-right: 50px;
  }

  .poi-photo-lightbox-stage {
    min-height: 0;
  }

  .poi-photo-lightbox-stage > img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .poi-photo-lightbox-nav {
    width: 44px;
    height: 48px;
  }

  .poi-photo-lightbox > footer {
    max-height: min(26dvh, 160px);
    overflow-y: auto;
  }

  .poi-photo-attribution a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .is-city-map-active .toast,
  .is-city-map-active .service-status {
    z-index: 1600;
    top: calc(164px + env(safe-area-inset-top));
    right: 8px;
    bottom: auto;
    left: 8px;
    width: auto;
    max-width: none;
    transform: none;
    pointer-events: none;
  }

  .tip-dialog :is(button, input, select, textarea):focus-visible {
    outline: 2px solid #fff4f8;
    outline-offset: 2px;
  }

  .tip-dialog :is(button:not(:disabled), label):active {
    filter: brightness(1.08);
  }
}

@media (max-width: 359px) {
  .is-city-map-active .toast,
  .is-city-map-active .service-status {
    top: calc(208px + env(safe-area-inset-top));
  }

  .poi-action-header {
    padding-inline: 13px 60px;
  }

  .poi-action-scroll {
    padding-inline: 13px;
  }
}
