:root {
  --bg: #07131c;
  --bg-soft: #0e2231;
  --panel: rgba(10, 25, 38, 0.72);
  --panel-strong: rgba(9, 20, 30, 0.94);
  --line: rgba(181, 220, 208, 0.2);
  --line-strong: rgba(181, 220, 208, 0.42);
  --text: #eef5f0;
  --muted: #a9c1bd;
  --accent: #a8ddd0;
  --doubletree: #91d3c0;
  --hilton: #dcc485;
  --curio: #f08c6d;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-xs: 5px;
  --radius-sm: 6px;
  --radius-md: 8px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Gill Sans Nova", "Gill Sans", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: #3a999e;
  overflow: hidden;
}

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

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

strong,
b {
  font-weight: 400;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Gill Sans Nova", "Gill Sans", "Trebuchet MS", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-shell {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.eyebrow,
.panel-label,
.footer-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.ghost-button,
.rail-card,
.map-marker {
  border: 1px solid transparent;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.ghost-button {
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.experience {
  position: relative;
  min-height: 100vh;
  min-width: 0;
}

.map-home {
  --home-panel-width: clamp(258px, 27vw, 355px);
  min-height: 100vh;
  min-width: 0;
  overflow: hidden;
  background: #3a999e;
}

.map-overlay-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.map-overlay-nav .ghost-button {
  padding: 11px 18px;
  background: rgba(0, 26, 77, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 26, 77, 0.18);
  animation: nav-float 6.2s ease-in-out infinite;
}

.map-picker {
  position: relative;
}

.map-picker-button {
  min-width: 152px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: teal!important;
}

.map-picker-button::after {
  content: "▾";
  margin-left: 10px;
  font-size: 0.78rem;
  opacity: 0.78;
}

.map-picker-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, 82vw);
  max-height: min(70vh, 620px);
  overflow: auto;
  padding: 14px;
  border-radius: var(--radius-md);
  background: teal;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 26, 77, 0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
  scrollbar-width: none;
}

.map-picker-panel::-webkit-scrollbar {
  display: none;
}

body.picker-open .map-picker-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.map-picker-group + .map-picker-group {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-picker-group p {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.map-picker-group-list {
  display: grid;
  gap: 8px;
}

.map-picker-option {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.map-picker-option-copy strong,
.map-picker-option-copy span {
  display: block;
}

.map-picker-option-image {
  width: 58px;
  height: 44px;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.map-picker-option-copy {
  min-width: 0;
}

.map-picker-option-copy strong {
  font-size: 0.94rem;
  line-height: 1.14;
  color: var(--text);
}

.map-picker-option-copy span {
  margin-top: 3px;
  font-size: 0.82rem;
  color: var(--muted);
}

.map-picker-option:hover,
.map-picker-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.story-copy p,
.story-body p {
  color: var(--muted);
  text-align: justify;
}

.map-stage {
  position: relative;
  display: grid;
  grid-template-columns: var(--home-panel-width) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  min-height: 100vh;
  padding: clamp(88px, 9vh, 124px) clamp(24px, 2.8vw, 42px) clamp(22px, 3vh, 42px);
  overflow: hidden;
  background: #3a999e;
  min-width: 0;
  width: 100%;
}

.home-story-panel {
  position: relative;
  z-index: 4;
  width: min(100%, 400px);
  max-height: calc(100vh - 124px);
  display: grid;
  gap: 14px;
  align-self: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(309deg, #0b4a4d78, #00537761);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 26, 77, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.home-story-brand {
  width: min(168px, 100%);
  margin: auto;
  margin-top: 30px;
}

.home-story-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.home-story-carousel {
  margin-top: 40px;
  display: grid;
  gap: 10px;
}

.home-story-carousel .panel-label {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.home-story-card-shell {
  min-height: 0;
}

.home-story-card {
  width: 100%;
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.home-story-card:hover,
.home-story-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
}

.home-story-visual {
  position: relative;
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.home-story-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-story-card:hover .home-story-visual img,
.home-story-card:focus-visible .home-story-visual img {
  transform: scale(1.04);
}

.home-story-copy {
  display: grid;
  gap: 8px;
  padding: 14px 14px 16px;
}

.home-story-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.home-story-copy strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.02;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.home-story-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.86rem;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.84);
}

.home-story-dots {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-story-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.home-story-dot:hover,
.home-story-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.58);
}

.home-story-dot.is-active {
  background: #ffffff;
}

.map-frame {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(
    calc((100dvh + 212px) * 0.6363),
    calc(100vw - var(--home-panel-width) - 116px),
    980px
  );
  max-width: 100%;
  height: auto;
  aspect-ratio: 629.93 / 990.01;
  transform: translate(-1.8%, -32%);
  transform-origin: center;
}

.uk-map-art {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(0, 83, 87, 0.18));
}

.uk-map-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.uk-map-art svg path {
  fill: #0c757a !important;
  stroke: rgba(255, 255, 255, 0.2) !important;
  stroke-width: 0.85px !important;
  transition:
    fill 180ms ease,
    filter 180ms ease,
    stroke 180ms ease;
}

.uk-map-art svg path:hover {
  fill: #15969c !important;
  filter: brightness(1.06);
  stroke: rgba(255, 255, 255, 0.34) !important;
}

.uk-map-art svg path.map-country-region {
  cursor: pointer;
  outline: none;
}

.uk-map-art svg path.map-country-region:focus,
.uk-map-art svg path.map-country-region:active {
  outline: none;
  box-shadow: none;
}

.uk-map-art svg path.map-country-region:focus-visible {
  outline: none;
  box-shadow: none;
}

.marker-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-marker-wrap {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.map-marker-wrap:hover,
.map-marker-wrap:focus-within {
  z-index: 12;
}

.map-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  background: #001a4d;
  box-shadow: 0 14px 20px rgba(0, 26, 77, 0.22);
  cursor: pointer;
  animation: pin-bob 3.2s ease-in-out infinite;
  pointer-events: auto;
}

.map-marker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(45deg);
}

.map-marker-preview {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 184px;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(0, 26, 77, 0.9);
  border: 3px solid rgb(5 41 85);
  box-shadow: 0 22px 34px rgba(0, 26, 77, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0) scale(0.96);
  transform-origin: center bottom;
  z-index: 999;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.map-marker-preview img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  display: block;
  object-fit: cover;
}

.map-marker-preview strong {
  display: block;
  padding: 10px 12px 11px;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
}

.map-marker-wrap:hover .map-marker,
.map-marker-wrap:focus-within .map-marker,
.map-marker:hover,
.map-marker:focus-visible {
  transform: rotate(-45deg) scale(1.14);
}

.map-marker-wrap:hover .map-marker-preview,
.map-marker-wrap:focus-within .map-marker-preview {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.map-marker.is-active {
  animation: none;
  transform: rotate(-45deg);
}

.country-dialog {
  position: fixed;
  inset: 0;
  z-index: 18;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.country-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 77, 0.18);
  backdrop-filter: blur(8px);
}

.country-dialog-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100vw - 48px));
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #0000006e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 70px rgba(0, 26, 77, 0.24);
  transform: translate(-50%, -46%);
  transition: transform 260ms ease;
  scrollbar-width: none;
}

.country-dialog-card::-webkit-scrollbar {
  display: none;
}

body.country-open .country-dialog {
  opacity: 1;
  pointer-events: auto;
}

body.country-open .country-dialog-card {
  transform: translate(-50%, -50%);
}

.country-dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.country-dialog-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
}

.country-dialog-copy {
  margin-bottom: 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.5;
}

.country-dialog-close {
  flex-shrink: 0;
}

.country-dialog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.country-hotel-card,
.country-empty-state {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.country-hotel-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.country-hotel-card:hover,
.country-hotel-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 30px rgba(0, 26, 77, 0.18);
}

.country-hotel-card strong,
.country-empty-state strong {
  display: block;
}

.country-hotel-image {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.country-hotel-card:hover .country-hotel-image,
.country-hotel-card:focus-visible .country-hotel-image {
  transform: scale(1.03);
}

.country-hotel-name {
    position: absolute;
    inset: auto 0px -2px 0px;
    padding: 10px 12px;
    border-radius: 0px 0px 8px 8px;
    background: rgb(0 0 0 / 60%);
    backdrop-filter: blur(3px);
    border-top: 0.5px solid #ffffff4a;
    text-align: center;
}

.country-hotel-name strong,
.country-empty-state strong {
  font-size: 0.92rem;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.country-empty-state {
  padding: 18px;
}

.story-screen {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5%) scale(0.985);
  transition:
    opacity 320ms ease,
    transform 540ms cubic-bezier(0.2, 0.95, 0.24, 1);
}

body.story-open .story-screen {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.story-open .map-home {
  filter: blur(12px);
  opacity: 0.26;
  transform: scale(0.985);
}

body.story-open .home-story-panel {
  opacity: 0;
  transform: translateY(-8px);
}

body.story-open .map-overlay-nav,
body.story-open .map-picker,
body.story-open .country-dialog,
body.story-open .map-overlay-nav .map-picker-button {
  pointer-events: none;
}

body.story-open .map-overlay-nav,
body.story-open .map-picker,
body.story-open .map-overlay-nav .map-picker-button {
  opacity: 0;
}

body.country-open .map-home {
  filter: blur(8px);
  transform: scale(0.992);
}

.story-screen-shell {
  position: relative;
  isolation: isolate;
  height: calc(100vh - 40px);
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(7, 18, 27, 0.54);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.story-close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 399;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: white;
  color: black;
  font-family: "Gill Sans Nova", "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.story-close-button:hover,
.story-close-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: #a9fafe;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.story-shell-backdrop {
  inset: -48px;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.story-shell-backdrop-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(32px) saturate(1.34);
  opacity: 0;
  transform: scale(1.16);
  transition: opacity 720ms ease;
  will-change: opacity;
}

.story-shell-backdrop-layer.is-active {
  opacity: 0.9;
}

.story-screen-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(168, 221, 208, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(240, 140, 109, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(4, 12, 20, 0.16), rgba(4, 12, 20, 0.44)),
    rgba(5, 13, 20, 0.34);
}

.story-screen-shell > .story-layout {
  position: relative;
  z-index: 2;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.78fr);
  gap: 20px;
  height: 100%;
  min-height: 0;
}

.story-visual-stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 0;
}

.story-primary-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(168, 221, 208, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(240, 140, 109, 0.14), transparent 24%),
    #11283a;
  border: 1px solid rgba(168, 221, 208, 0.1);
}

.primary-media-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 720ms ease;
  will-change: opacity;
}

.primary-media-layer.is-active {
  opacity: 1;
}

.primary-media-layer img,
.primary-media-layer video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transform-origin: center;
}

.story-primary-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.05));
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
}

.primary-media-layer.is-active .primary-image {
  animation: ken-burns 7.2s ease-in-out infinite alternate;
}

.story-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
  min-height: 0;
  overflow: auto;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(168, 221, 208, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.primary-media-label,
.gallery-label {
  position: absolute;
  inset: auto auto 18px 20px;
  max-width: min(60%, 420px);
  padding: 0;
  background: none;
  border: 0;
  backdrop-filter: none;
}

.primary-media-label strong,
.gallery-label strong {
  font-family: "Gill Sans Nova", "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.78rem;
}

.story-summary-top {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  align-items: flex-start;
}

.story-summary-top .panel-label {
  margin-bottom: 12px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.story-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 0.98;
  font-weight: 200;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid #ffffff45;
  padding-top: 10px;
  padding-bottom: 20px;
}

.metric-card {
  padding: 10px;
  padding-left: 0px;
  border-radius: var(--radius-md);
}

.metric-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 200;
}

.story-copy {
  display: block;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-copy h3 {
  margin: 0 0 14px;
  font-size: 2.45rem;
  line-height: 1.14;
}

.story-body {
  display: block;
  max-width: 56ch;
}

.story-copy p,
.story-body p {
  margin: 0 0 14px;
  line-height: 1.52;
  font-weight: 300;
  color: #d8d8d8;
  font-size: 18px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(168, 221, 208, 0.12);
}

.story-footer strong {
  word-break: break-word;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.gallery-tile {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    linear-gradient(155deg, rgba(168, 221, 208, 0.32), transparent 48%),
    linear-gradient(225deg, rgba(240, 140, 109, 0.22), transparent 44%),
    #163149;
  border: 1px solid rgba(168, 221, 208, 0.1);
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.gallery-tile.is-active {
  border-color: rgba(168, 221, 208, 0.5);
  box-shadow: 0 0 0 2px rgba(168, 221, 208, 0.16);
  transform: translateY(-3px);
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(168, 221, 208, 0.42);
}

.gallery-tile.has-visual .gallery-label {
  display: none;
}

.gallery-tile.is-placeholder .gallery-label {
  inset: auto 10px 10px 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.gallery-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.gallery-video-play span {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 999px;
  background: rgba(7, 18, 27, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  position: relative;
}

.gallery-video-play span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(255, 255, 255, 0.94);
  transform: translate(-35%, -50%);
}

.gallery-tile img,
.gallery-tile video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 340ms ease, filter 340ms ease;
}

.gallery-tile:hover img,
.gallery-tile:hover video,
.gallery-tile:focus-visible img,
.gallery-tile:focus-visible video {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.story-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
}

.story-nav .ghost-button {
  flex: 1;
}

.story-screen-shell,
.story-panel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.story-screen-shell::-webkit-scrollbar,
.story-panel::-webkit-scrollbar {
  display: none;
}

@keyframes pin-bob {
  0%,
  100% {
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
  }

  50% {
    box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
  }
}

@keyframes nav-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes ken-burns {
  0% {
    transform: scale(1.03) translate3d(-1.2%, -0.6%, 0);
  }

  100% {
    transform: scale(1.11) translate3d(1.2%, 0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghost-button,
  .map-marker,
  .story-screen,
  .gallery-tile,
  .gallery-tile img,
  .gallery-tile video,
  .story-shell-backdrop-layer,
  .primary-media-layer,
  .primary-media-layer .primary-image,
  .map-overlay-nav .ghost-button {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1260px) {
  body {
    overflow: hidden;
  }

  .map-home {
    --home-panel-width: clamp(220px, 27vw, 282px);
  }

  .story-screen {
    position: fixed;
    inset: 0;
    padding: 14px;
  }

  body.story-open {
    overflow: hidden;
  }

  body.story-open .map-home {
    filter: blur(10px);
    opacity: 0.22;
    transform: scale(0.99);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-screen-shell {
    height: calc(100dvh - 28px);
    overflow: auto;
  }

  .story-panel {
    padding: 18px;
  }

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

  .map-stage {
    gap: 24px;
    padding: 86px 20px 22px;
  }

  .home-story-panel {
    padding: 16px;
  }

  .map-frame {
    width: min(
      calc((100dvh + 170px) * 0.6363),
      calc(100vw - var(--home-panel-width) - 88px),
      780px
    );
    transform: translate(0.8%, -24.5%);
  }

  .country-dialog-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .app-shell {
    padding: 0;
  }

  .story-screen {
    padding: 10px;
  }

  .story-screen-shell {
    height: calc(100dvh - 20px);
    overflow: auto;
  }

  .story-close-button {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .story-panel {
    padding: 16px;
  }

  .map-home {
    min-height: 100svh;
  }

  .map-overlay-nav {
    top: 16px;
    right: 16px;
    gap: 10px;
  }

  .map-picker-button {
    min-width: 0;
  }

  .map-stage {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 18px;
    padding: 72px 16px 16px;
  }

  .home-story-panel {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 16px;
  }

  .home-story-brand {
    width: min(156px, 46vw);
  }

  .home-story-copy p {
    -webkit-line-clamp: 2;
  }

  .map-frame {
    width: min(calc(100vw - 32px), 470px);
    transform: translate(0, -8%);
  }

  .map-marker-preview {
    width: 156px;
    left: 50%;
    bottom: calc(100% + 10px);
  }

  .map-marker-preview strong {
    padding: 9px 10px 10px;
    font-size: 0.68rem;
  }

  .country-dialog-card {
    width: min(100vw - 24px, 720px);
    padding: 18px;
  }

  .country-dialog-head {
    display: grid;
  }

  .metric-row,
  .story-footer {
    grid-template-columns: 1fr;
  }

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

  .story-nav {
    justify-content: stretch;
    flex-direction: column;
  }

  .story-nav .ghost-button {
    width: 100%;
  }
}

@media (max-height: 930px) and (min-width: 1100px) {
  .map-stage {
    padding-top: clamp(80px, 8vh, 108px);
    padding-bottom: clamp(20px, 2.8vh, 34px);
  }

  .map-frame {
    width: min(
      calc((100dvh + 210px) * 0.6363),
      calc(100vw - var(--home-panel-width) - 118px),
      860px
    );
    transform: translate(1.1%, -26.5%);
  }

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