:root {
  --color-bg: #f4f8fb;
  --color-bg-2: #edf5f7;
  --color-surface: rgba(255, 255, 255, 0.72);
  --color-glass: rgba(255, 255, 255, 0.58);
  --color-border: rgba(255, 255, 255, 0.72);
  --color-text: #4b4d4d;
  --color-muted: #4b4d4d;
  --color-accent: #4192c9;
  --color-accent-strong: #4b4d4d;
  --color-accent-soft: #d7ebee;
  --color-navy: #153240;
  --font-sans: "Unageo", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --radius-sm: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-soft: 0 24px 80px rgba(93, 129, 143, 0.13);
  --shadow-card: 0 28px 60px rgba(35, 63, 75, 0.16);
  --shadow-hover: 0 34px 70px rgba(27, 54, 67, 0.2);
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1440px;
  --header-height: 88px;
}

@font-face {
  font-family: "Unageo";
  src: url("assets/Unageo-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unageo";
  src: url("assets/Unageo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  background:
    radial-gradient(circle at top left, rgba(156, 211, 220, 0.35), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(140, 193, 208, 0.28), transparent 26%),
    linear-gradient(180deg, #f8fbfd 0%, #f1f6f8 38%, #eef4f6 100%);
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .page-shell,
body.is-loading .detail-drawer,
body.is-loading .detail-scrim {
  opacity: 0;
  pointer-events: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
  filter: blur(30px);
}

body::before {
  top: 6%;
  left: 6%;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  background: rgba(136, 213, 223, 0.2);
}

body::after {
  right: 4%;
  bottom: 14%;
  width: 26vw;
  height: 26vw;
  border-radius: 50%;
  background: rgba(165, 208, 226, 0.16);
}

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

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

:focus-visible {
  outline: 2px solid rgba(55, 119, 138, 0.75);
  outline-offset: 3px;
}

.page-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
  transition: opacity 0.9s var(--easing);
}

.bino-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  --loader-mask-top: 0px;
  --loader-mask-right: 0px;
  --loader-mask-bottom: 0px;
  --loader-mask-left: 0px;
  --loader-mask-radius: 0px;
  clip-path: inset(0 0 0 0 round 0px);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.9s var(--easing),
    visibility 0.9s var(--easing),
    clip-path 1.08s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.bino-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.bino-loader.is-masking {
  clip-path: inset(
    var(--loader-mask-top)
    var(--loader-mask-right)
    var(--loader-mask-bottom)
    var(--loader-mask-left)
    round var(--loader-mask-radius)
  );
}

.bino-loader-background,
.bino-loader-wash {
  position: absolute;
  inset: 0;
}

.bino-loader-poster,
.bino-loader-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bino-loader-video {
  filter: saturate(0.96) contrast(1.02) brightness(1);
}

.bino-loader-wash {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.3), rgba(244, 248, 251, 0.26) 42%, rgba(232, 241, 245, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(65, 146, 201, 0.06), rgba(228, 131, 59, 0.04));
}

.bino-loader-stage {
  position: relative;
  width: min(100%, 760px);
  min-height: min(72svh, 520px);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 1;
}

.bino-loader-scenes {
  position: relative;
  width: min(100%, 680px);
  min-height: clamp(176px, 32vw, 236px);
}

.bino-loader-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.26s linear;
}

.bino-loader-scene.is-visible {
  opacity: 1;
  visibility: visible;
}

.bino-loader-scene.is-exiting {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    opacity 0.34s linear,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.34s linear;
  filter: blur(1.8px);
}

.bino-loader-stack {
  margin: 0;
}

.bino-loader-stack {
  display: grid;
  justify-items: center;
  gap: 0.035em;
}

.bino-loader-stack-explore {
  gap: 0.01em;
}

.loader-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.18em;
  margin: 0;
  color: var(--color-text);
  font-family: "Unageo", var(--font-sans);
  font-size: clamp(2.2rem, 8.2vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.88;
}

.loader-line-brand {
  color: #4192c9;
  font-weight: 600;
}

.loader-line-semibold {
  font-weight: 600;
}

.loader-word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transform-origin: 50% 70%;
}

.loader-word.variant-rise {
  transform: translate3d(0, 26px, 0);
  --loader-from-transform: translate3d(0, 26px, 0);
}

.loader-word.variant-slide {
  transform: translate3d(-26px, 0, 0);
  --loader-from-transform: translate3d(-26px, 0, 0);
}

.loader-word.variant-tilt {
  transform: translate3d(0, 18px, 0) rotate(-3.5deg);
  --loader-from-transform: translate3d(0, 18px, 0) rotate(-3.5deg);
}

.loader-word.variant-glide {
  transform: translate3d(24px, 8px, 0);
  --loader-from-transform: translate3d(24px, 8px, 0);
}

.loader-word.variant-depth {
  transform: scale(1.04) translate3d(0, 12px, 0);
  filter: blur(4px);
  --loader-from-transform: scale(1.04) translate3d(0, 12px, 0);
}

.bino-loader-scene.is-visible .loader-word {
  animation: loaderWordIn 0.7s var(--easing) forwards;
  animation-delay: var(--loader-delay, 0ms);
}

.bino-loader-brand {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s linear, filter 0.32s linear;
}

.bino-loader-brand.in {
  visibility: visible;
  animation: loaderLogoIn 0.88s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bino-loader.is-masking .bino-loader-scenes,
.bino-loader.is-masking .bino-loader-brand {
  opacity: 0;
  filter: blur(6px);
}

.bino-loader-logo {
  width: min(59vw, 512px);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 34px rgba(64, 116, 144, 0.1));
}

.glass-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.glass-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  min-height: 88px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 40px rgba(69, 101, 118, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition:
    padding 0.5s var(--easing),
    min-height 0.5s var(--easing),
    box-shadow 0.5s var(--easing),
    background 0.5s var(--easing),
    transform 0.5s var(--easing);
}

.glass-header.is-condensed {
  padding: 12px 18px;
  min-height: 68px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 44px rgba(54, 90, 106, 0.16);
}

.brand-block {
  min-width: 0;
  flex: 0 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wordmark-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

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

.wordmark-copy strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.wordmark-copy small {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

.nav-link,
.lang-btn,
.subtle-action,
.drawer-close,
.programme-trigger {
  transition:
    transform 0.4s var(--easing),
    background 0.4s var(--easing),
    box-shadow 0.4s var(--easing),
    border-color 0.4s var(--easing),
    color 0.4s var(--easing),
    opacity 0.4s var(--easing);
}

.nav-link {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.nav-link:hover,
.nav-link.is-active,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 10px 20px rgba(64, 97, 113, 0.12);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  padding: 4px;
  border-radius: 999px;
}

.lang-btn {
  min-width: 58px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-btn.is-active {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 18px rgba(81, 110, 122, 0.12);
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-kicker,
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}

.section-title,
.hero-title {
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero {
  position: relative;
  min-height: clamp(660px, calc(100vh - 150px), 820px);
  display: flex;
  align-items: flex-end;
  padding: 68px 56px 64px;
  overflow: hidden;
  border-radius: 48px;
  background: linear-gradient(180deg, rgba(222, 242, 246, 0.78), rgba(197, 227, 235, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(63, 98, 112, 0.12);
}

.hero-background,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-background {
  overflow: hidden;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(238, 247, 249, 0.95) 0%, rgba(238, 247, 249, 0.82) 24%, rgba(238, 247, 249, 0.34) 56%, rgba(238, 247, 249, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(13, 35, 45, 0.1));
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.34), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.12), transparent 20%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero-title {
  font-size: clamp(3.9rem, 7.4vw, 6.9rem);
  max-width: 13.4ch;
  overflow: visible;
  color: var(--color-text);
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-title .title-line-shell {
  display: block;
  overflow: hidden;
  padding-bottom: 0.24em;
}

.hero-title .title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12em;
}

.hero-title .title-line-typed {
  min-height: 1em;
  padding-left: 0.02em;
}

.hero-title .title-line-shell[data-line="1"] .title-line {
  font-family: var(--font-sans);
  flex-wrap: nowrap;
  gap: 0.08em;
  font-size: 0.56em;
  font-weight: 300;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero-title .title-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 112%, 0) scale(0.92) rotateX(-56deg);
  transform-origin: 50% 100%;
  filter: blur(10px);
  text-shadow: 0 18px 40px rgba(41, 85, 100, 0.08);
}

body.is-ready .hero-title .title-word {
  animation: titleWordReveal 1.05s var(--easing) forwards;
  animation-delay: var(--word-delay);
}

body.is-ready .hero-title .title-line-shell:nth-child(2) .title-word {
  animation-duration: 1.12s;
}

.hero-title .title-word-typed {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  color: #4192c9;
  text-shadow: 0 10px 24px rgba(65, 146, 201, 0.14);
}

.hero-title .typed-word {
  display: inline-block;
  min-width: 13.2ch;
}

.hero-title .typed-cursor {
  display: inline-block;
  width: 0.055em;
  height: 0.8em;
  margin-bottom: 0.08em;
  border-radius: 999px;
  background: rgba(65, 146, 201, 0.92);
  box-shadow: 0 0 0 1px rgba(252, 242, 234, 0.36);
  animation: heroCursorBlink 1s steps(1, end) infinite;
}

.hero-subtitle,
.section-summary {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-subtitle {
  max-width: 44ch;
}

.hero-meta,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin-top: 22px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(63, 92, 105, 0.1);
}

.meta-chip.soft {
  background: rgba(229, 241, 243, 0.82);
  border-color: rgba(255, 255, 255, 0.76);
}

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

.subtle-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #fcf2ea;
  background: #e4833b;
  border: 1px solid rgba(228, 131, 59, 0.92);
  box-shadow: 0 18px 30px rgba(200, 106, 38, 0.2);
}

.subtle-action:hover,
.subtle-action:focus-visible {
  transform: translateY(-3px);
  background: #d97733;
  border-color: rgba(217, 119, 51, 0.94);
  box-shadow: 0 24px 36px rgba(200, 106, 38, 0.28);
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  opacity: 0.82;
  transform: scale(1.08);
  transition: transform 1.4s var(--easing);
}

body.is-ready .hero-poster {
  transform: scale(1);
}

.hero-video {
  transform: scale(1.12);
  filter: saturate(1.04) contrast(1.02);
  opacity: 0;
  transition:
    opacity 0.8s var(--easing),
    transform 1.2s var(--easing);
}

body.is-ready .hero-video {
  opacity: 1;
  transform: scale(1.02);
}

.highlight-grid,
.programme-grid,
.included-grid,
.audience-grid {
  display: grid;
  gap: 20px;
}

.browser-section {
  padding-top: 48px;
  overflow-x: clip;
}

.country-selector {
  display: none;
}

.country-browser {
  display: grid;
  gap: 28px;
  min-width: 0;
  overflow-x: clip;
}

.country-block {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 32px 72px rgba(35, 54, 66, 0.14);
  background:
    linear-gradient(180deg, rgba(234, 243, 246, 0.6), rgba(225, 237, 241, 0.36)),
    rgba(255, 255, 255, 0.42);
}

.country-stage,
.country-stage-wash {
  position: absolute;
  inset: 0;
}

.country-poster,
.country-stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-poster {
  transform: scale(1.03);
  opacity: 0.48;
}

.country-stage-video {
  opacity: 0.98;
  filter: saturate(0.94) contrast(1.04) brightness(0.98);
}

.country-stage-wash {
  background:
    linear-gradient(90deg, rgba(65, 146, 201, 0.9) 0%, rgba(65, 146, 201, 0.68) 28%, rgba(65, 146, 201, 0.22) 58%, rgba(65, 146, 201, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 24, 31, 0.04), rgba(12, 24, 31, 0.24)),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.42), transparent 28%);
}

.country-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(9, 18, 24, 0.02), rgba(9, 18, 24, 0.14));
}

.country-stage-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr);
  gap: 20px;
  align-items: center;
  padding: 46px 42px 42px;
}

.country-copy-block {
  max-width: 420px;
  padding-top: 6px;
}

.country-stage-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fcf2ea;
}

.country-stage-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 7.2rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  color: #fcf2ea;
  text-shadow: 0 16px 30px rgba(24, 68, 96, 0.22);
}

.country-stage-title span {
  display: inline-block;
  padding: 0.12em 0 0.14em;
}

.country-stage-summary {
  margin: 16px 0 0;
  max-width: 26ch;
  color: rgba(252, 242, 234, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

.country-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #e4833b;
  border: 1px solid rgba(228, 131, 59, 0.92);
  box-shadow: 0 18px 30px rgba(200, 106, 38, 0.2);
  color: #fcf2ea;
  font-weight: 600;
}

.country-expand-btn svg {
  width: 18px;
  height: 18px;
}

.country-expand-btn:hover,
.country-expand-btn:focus-visible {
  transform: translateY(-3px);
  background: #d97733;
  border-color: rgba(217, 119, 51, 0.94);
  box-shadow: 0 24px 36px rgba(200, 106, 38, 0.28);
}

.upcoming-tour {
  margin-top: 10px;
  padding: 22px 0 4px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.upcoming-tour-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.upcoming-tour-head .section-kicker {
  margin: 0;
}

.upcoming-tour-summary {
  margin: 0;
  max-width: 36ch;
  color: rgba(75, 77, 77, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: right;
}

.upcoming-tour-viewport {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 4px 0 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  cursor: grab;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
}

.upcoming-tour-viewport::-webkit-scrollbar {
  display: none;
}

.upcoming-tour-viewport:active {
  cursor: grabbing;
}

.upcoming-tour-track {
  display: flex;
  gap: 18px;
  width: max-content;
  min-width: max-content;
}

.upcoming-card {
  position: relative;
  flex: 0 0 clamp(250px, 29vw, 360px);
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 26px 54px rgba(36, 59, 71, 0.14);
  scroll-snap-align: start;
}

.upcoming-card-media,
.upcoming-card-media img,
.upcoming-card-shade {
  position: absolute;
  inset: 0;
}

.upcoming-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dfe8ec;
  transform: scale(1.1);
  filter: saturate(0.3) brightness(0.74);
  transition:
    transform 1.2s var(--easing),
    filter 1.1s var(--easing),
    opacity 0.8s var(--easing);
  animation: upcomingImageBreath 12s ease-in-out infinite alternate;
}

.upcoming-card-shade {
  background:
    linear-gradient(180deg, rgba(10, 24, 32, 0.08) 0%, rgba(10, 24, 32, 0.18) 48%, rgba(10, 24, 32, 0.58) 100%),
    linear-gradient(180deg, rgba(65, 146, 201, 0.06), rgba(228, 131, 59, 0.12));
  transition: opacity 1s var(--easing);
}

.upcoming-card-body {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.upcoming-card-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 68%;
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 30px rgba(34, 58, 72, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.upcoming-card-logo {
  display: block;
  max-width: 140px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.upcoming-card-name {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fcf2ea;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.upcoming-card:hover .upcoming-card-media img,
.upcoming-card:focus-within .upcoming-card-media img,
.upcoming-card.is-active .upcoming-card-media img {
  transform: scale(1.02);
  filter: saturate(1) brightness(1);
  animation-play-state: paused;
}

.upcoming-card:hover .upcoming-card-shade,
.upcoming-card:focus-within .upcoming-card-shade,
.upcoming-card.is-active .upcoming-card-shade {
  opacity: 0.22;
}

.custom-route-band {
  margin-top: 18px;
}

.custom-route-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.54), transparent 22%),
    radial-gradient(circle at 86% 78%, rgba(65, 146, 201, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(244, 249, 251, 0.84), rgba(231, 241, 245, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow:
    0 28px 62px rgba(62, 91, 104, 0.12),
    0 0 28px rgba(145, 208, 228, 0.08);
}

.custom-route-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 6px;
}

.custom-route-title {
  margin: 0;
  font-family: "Unageo", var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.custom-route-summary {
  margin: 0;
  max-width: 29ch;
  color: rgba(75, 77, 77, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.custom-route-stage {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.46), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(145, 221, 255, 0.36), transparent 28%),
    linear-gradient(145deg, rgba(65, 146, 201, 0.96), rgba(91, 175, 228, 0.88));
  border: 1px solid rgba(228, 246, 255, 0.58);
  box-shadow:
    0 26px 58px rgba(50, 101, 136, 0.22),
    0 0 34px rgba(65, 146, 201, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.custom-route-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.1), transparent 18%);
}

.custom-route-capsule-wrap {
  position: relative;
  min-height: 100px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.custom-route-react-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.custom-route-capsule {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  overflow: hidden;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 32px rgba(37, 83, 114, 0.2),
    0 0 24px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}

.custom-route-capsule::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -24%;
  width: 38%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(252, 242, 234, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-150%);
  opacity: 0.9;
  pointer-events: none;
  animation: panelSheenSweep 4.8s linear infinite;
}

.custom-route-capsule-label {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 242, 234, 0.78);
}

.custom-route-capsule strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fcf2ea;
}

.custom-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.custom-route-grid > .custom-route-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.custom-route-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.11));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 34px rgba(28, 74, 104, 0.12),
    0 0 20px rgba(180, 231, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.custom-route-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
  color: #fcf2ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 26px rgba(37, 83, 114, 0.14);
}

.custom-route-icon svg {
  width: 19px;
  height: 19px;
}

.custom-route-card-copy strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fcf2ea;
}

.custom-route-card-copy p {
  margin: 8px 0 0;
  color: rgba(252, 242, 234, 0.82);
  line-height: 1.58;
}

.journey-band {
  margin-top: 18px;
}

.journey-band-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: 34px;
}

.journey-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 6px 10px 6px;
}

.journey-title {
  margin: 0;
  font-family: "Unageo", var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.journey-summary {
  margin: 0;
  max-width: 28ch;
  font-family: "Unageo", var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.42;
  color: rgba(75, 77, 77, 0.78);
}

.journey-gallery-viewport {
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.journey-gallery-track {
  height: 430px;
  width: max-content;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: stretch;
}

.journey-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 42px rgba(34, 58, 72, 0.12);
  width: 220px;
}

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

.journey-photo-card-1,
.journey-photo-card-6 {
  grid-row: span 2;
  width: 238px;
}

.journey-photo-card-2,
.journey-photo-card-5 {
  width: 280px;
}

.journey-photo-card-3,
.journey-photo-card-4 {
  width: 200px;
}

.contact-band {
  margin-top: 18px;
  position: relative;
}

.contact-band-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 34px;
}

.contact-band-shell-accent {
  background: linear-gradient(135deg, #e4833b, #d97733);
  border-color: rgba(228, 131, 59, 0.86);
  box-shadow: 0 24px 54px rgba(200, 106, 38, 0.24);
}

.contact-band-copy .section-kicker {
  margin-bottom: 12px;
}

.contact-band-shell-accent .section-kicker,
.contact-band-shell-accent .contact-band-title,
.contact-band-shell-accent .contact-band-summary {
  color: #fcf2ea;
}

.contact-band-title {
  margin: 0;
  max-width: 15ch;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #112732;
  text-wrap: balance;
}

.contact-band-summary {
  margin: 18px 0 0;
  max-width: 46ch;
  color: rgba(75, 77, 77, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-band-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(252, 242, 234, 0.16);
  border-color: rgba(252, 242, 234, 0.24);
  box-shadow: none;
}

.contact-band-name {
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  color: #fcf2ea;
}

.contact-band-detail,
.contact-band-mail {
  margin: 0;
  color: rgba(252, 242, 234, 0.9);
  font-size: 1rem;
  text-decoration: none;
}

.contact-band-mail:hover,
.contact-band-mail:focus-visible {
  color: #fcf2ea;
}

.contact-band-action {
  justify-self: start;
  margin-top: 8px;
}

.contact-band-shell-accent .contact-band-action {
  background: #fcf2ea;
  border-color: rgba(252, 242, 234, 0.92);
  color: #e4833b;
  box-shadow: 0 16px 30px rgba(124, 52, 8, 0.16);
}

.contact-band-shell-accent .contact-band-action:hover,
.contact-band-shell-accent .contact-band-action:focus-visible {
  background: #fff7f0;
  color: #cf6f2f;
}

.page-shell {
  transition:
    opacity 0.9s var(--easing),
    transform 1s var(--easing),
    filter 1s var(--easing);
}

body.founder-popup-active .page-shell {
  transform: none;
  filter: saturate(0.94) brightness(0.9);
}

.founder-popup-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding:
    max(28px, calc(env(safe-area-inset-top) + 18px))
    max(28px, calc(env(safe-area-inset-right) + 18px))
    max(28px, calc(env(safe-area-inset-bottom) + 18px))
    max(28px, calc(env(safe-area-inset-left) + 18px));
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: opacity 0.7s var(--easing);
}

.founder-popup-layer.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.founder-popup-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(65, 146, 201, 0.16), transparent 28%),
    radial-gradient(circle at 72% 20%, rgba(228, 131, 59, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(9, 18, 24, 0.22), rgba(9, 18, 24, 0.44));
  backdrop-filter: blur(28px) saturate(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(1.05);
}

.founder-popup {
  position: relative;
  width: min(860px, calc(100vw - 42px));
  max-height: calc(100dvh - 56px);
  min-height: 510px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 42px 120px rgba(19, 34, 44, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(1.08);
  -webkit-backdrop-filter: saturate(1.08);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.985);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.founder-popup.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.founder-popup-media,
.founder-popup-media img,
.founder-popup-wash {
  position: absolute;
  inset: 0;
}

.founder-popup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(0.64);
}

.founder-popup-wash {
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.14), rgba(8, 16, 22, 0.56)),
    linear-gradient(135deg, rgba(65, 146, 201, 0.14), rgba(228, 131, 59, 0.16)),
    radial-gradient(circle at 82% 24%, rgba(248, 189, 132, 0.34), transparent 34%);
}

.founder-popup-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.82;
}

.founder-popup-orb-a {
  width: 180px;
  height: 180px;
  top: -28px;
  right: -16px;
  background: radial-gradient(circle, rgba(65, 146, 201, 0.42), transparent 72%);
}

.founder-popup-orb-b {
  width: 220px;
  height: 220px;
  bottom: -64px;
  left: -34px;
  background: radial-gradient(circle, rgba(228, 131, 59, 0.34), transparent 72%);
}

.founder-popup-sheen {
  position: absolute;
  inset: -20% auto auto -18%;
  width: 42%;
  height: 160%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-120%);
  opacity: 0.68;
  pointer-events: none;
}

.founder-popup.is-visible .founder-popup-sheen {
  animation: founderSheen 3.6s linear infinite;
}

.founder-popup-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  padding: 42px 40px 38px;
  color: #fcf2ea;
}

.founder-popup-rail {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 8px;
}

.founder-popup-kicker,
.founder-popup-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 242, 234, 0.8);
}

.founder-popup-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 36px rgba(10, 20, 26, 0.14);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(252, 242, 234, 0.86);
}

.founder-popup-editorial {
  display: grid;
  gap: 20px;
  align-content: start;
  width: min(100%, 470px);
  min-height: 100%;
  margin-top: auto;
}

.founder-popup-intro {
  display: grid;
  gap: 12px;
}

.founder-popup-heading {
  margin: 0;
  max-width: 10.5ch;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.3vw, 4.6rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  color: #fcf2ea;
  text-wrap: balance;
}

.founder-popup-body-card {
  display: grid;
  gap: 14px;
  max-width: 36ch;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 54px rgba(9, 18, 24, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.founder-popup-line {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.72;
  color: rgba(252, 242, 234, 0.96);
  text-wrap: pretty;
}

.founder-popup-signoff {
  display: grid;
  gap: 14px;
  max-width: 28ch;
  padding-left: 2px;
}

.founder-popup-signoff-line {
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(252, 242, 234, 0.92), rgba(252, 242, 234, 0));
}

.founder-popup-signature {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(252, 242, 234, 0.92);
}

.founder-popup-animate {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: blur(8px);
}

.founder-popup.is-visible .founder-popup-animate {
  animation: founderPopupReveal 0.92s var(--easing) forwards;
}

.founder-popup.is-visible .founder-popup-animate-1 {
  animation-delay: 0.14s;
}

.founder-popup.is-visible .founder-popup-animate-2 {
  animation-delay: 0.26s;
}

.founder-popup.is-visible .founder-popup-animate-3 {
  animation-delay: 0.4s;
}

.founder-popup.is-visible .founder-popup-animate-4 {
  animation-delay: 0.58s;
}

.founder-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fcf2ea;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.founder-popup-close:hover,
.founder-popup-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.detail-country-intro {
  margin-bottom: 20px;
}

.detail-country-title {
  margin: 14px 0 10px;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.detail-country-summary {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.drawer-programme-list {
  display: grid;
  gap: 14px;
}

.drawer-programme-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 22px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  text-align: left;
  box-shadow: 0 16px 34px rgba(62, 91, 104, 0.12);
}

.drawer-programme-body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.drawer-programme-media {
  overflow: hidden;
  border-radius: 28px;
  min-height: 0;
  height: auto;
  aspect-ratio: auto;
  background: transparent;
}

.drawer-programme-media img {
  width: 100%;
  height: auto;
  object-position: center center;
  display: block;
  background: transparent;
}

.drawer-programme-body .category-tag {
  justify-self: start;
  width: max-content;
  max-width: 100%;
  margin: 0;
}

.drawer-programme-body .meta-row {
  flex-wrap: wrap;
  row-gap: 10px;
}

.drawer-programme-body h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.drawer-programme-body p {
  margin: 0;
  color: var(--color-muted);
}

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

.highlight-card,
.included-item,
.audience-card,
.focus-side-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}

.highlight-card {
  min-height: 240px;
}

.card-icon,
.node-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent-strong);
}

.highlight-card h3,
.included-item h3,
.audience-card h3,
.focus-side-card h3,
.programme-title,
.detail-title {
  margin: 18px 0 10px;
  font-size: 1.26rem;
  letter-spacing: -0.03em;
}

.highlight-card p,
.included-item p,
.audience-card p,
.focus-side-card p,
.programme-description,
.detail-copy,
.focus-node-copy {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.highlight-card .meta-row {
  margin-top: 18px;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.focus-map {
  position: relative;
  min-height: 680px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(201, 230, 234, 0.42), rgba(255, 255, 255, 0.24) 46%, rgba(255, 255, 255, 0.1) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(241, 248, 250, 0.5));
}

.focus-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 210px;
  padding: 22px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.focus-core-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
}

.focus-core strong {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  letter-spacing: -0.04em;
}

.focus-node-layer {
  position: absolute;
  inset: 0;
}

.focus-node {
  position: absolute;
  width: 164px;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(75, 107, 121, 0.12);
}

.focus-node::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(93, 153, 167, 0.18);
  border: 1px solid rgba(93, 153, 167, 0.34);
  box-shadow: 0 0 0 10px rgba(93, 153, 167, 0.06);
}

.focus-node[data-position="north"] {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.focus-node[data-position="north"]::before {
  bottom: -24px;
  left: calc(50% - 7px);
}

.focus-node[data-position="north-east"] {
  top: 17%;
  right: 4%;
}

.focus-node[data-position="north-east"]::before {
  left: -24px;
  top: calc(50% - 7px);
}

.focus-node[data-position="south-east"] {
  right: 3%;
  bottom: 12%;
}

.focus-node[data-position="south-east"]::before {
  left: -24px;
  top: calc(50% - 7px);
}

.focus-node[data-position="south"] {
  bottom: 5%;
  left: 42%;
  transform: translateX(-50%);
}

.focus-node[data-position="south"]::before {
  top: -24px;
  left: calc(50% - 7px);
}

.focus-node[data-position="south-west"] {
  left: 4%;
  bottom: 13%;
}

.focus-node[data-position="south-west"]::before {
  right: -24px;
  top: calc(50% - 7px);
}

.focus-node[data-position="north-west"] {
  top: 17%;
  left: 4%;
}

.focus-node[data-position="north-west"]::before {
  right: -24px;
  top: calc(50% - 7px);
}

.focus-node-title {
  margin: 12px 0 8px;
  font-size: 0.98rem;
}

.focus-node-copy {
  font-size: 0.84rem;
  line-height: 1.5;
}

.focus-side {
  display: grid;
  gap: 16px;
}

.compare-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  padding: 28px;
  border-radius: 34px;
}

.compare-title {
  margin-top: 6px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compare-item {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.compare-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.compare-item span {
  display: block;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.programme-card {
  position: relative;
  display: grid;
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 44px rgba(70, 99, 113, 0.12);
}

.programme-media {
  position: relative;
  aspect-ratio: 0.84;
  overflow: hidden;
}

.programme-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 29, 0.04), rgba(7, 22, 29, 0.22)),
    linear-gradient(180deg, transparent 42%, rgba(12, 29, 38, 0.32));
}

.programme-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--easing), filter 1s var(--easing);
}

.programme-card:hover .programme-media img,
.programme-card:focus-within .programme-media img {
  transform: scale(1.06);
  filter: saturate(1.03);
}

.programme-body {
  padding: 22px;
}

.programme-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(229, 241, 243, 0.9);
  color: var(--color-accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.programme-location {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.programme-title {
  font-size: 1.45rem;
}

.programme-description {
  font-size: 0.95rem;
}

.programme-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.programme-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--color-accent-strong);
  font-weight: 600;
}

.programme-trigger svg {
  width: 18px;
  height: 18px;
}

.programme-card:hover,
.programme-card:focus-within,
.highlight-card:hover,
.included-item:hover,
.audience-card:hover,
.focus-side-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.programme-card:hover .programme-trigger,
.programme-card:focus-within .programme-trigger {
  transform: translateX(4px);
}

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

.included-item,
.audience-card,
.focus-side-card,
.highlight-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(62, 91, 104, 0.12);
  transition:
    transform 0.55s var(--easing),
    box-shadow 0.55s var(--easing),
    border-color 0.55s var(--easing);
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 18px;
  margin-top: 26px;
  padding: 26px 28px;
  border-radius: 32px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.footer-copy-block {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-copy-block strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #112732;
}

.footer-tools {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.footer-lang-toggle {
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex: 0 0 auto;
}

.footer-bottom-line {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.66);
  color: rgba(75, 77, 77, 0.72);
  font-size: 0.88rem;
}

.detail-scrim {
  position: fixed;
  inset: 0;
  background: rgba(18, 34, 43, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 1.1s var(--easing);
  z-index: 29;
}

.detail-scrim.is-visible {
  opacity: 1;
}

.detail-scrim.is-closing {
  opacity: 0;
  transition: opacity 0.2s var(--easing);
}

.detail-drawer {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-height: calc(100dvh - 36px);
  width: auto;
  z-index: 30;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(34px) scale(0.96);
  transform-origin: var(--drawer-origin-x, calc(100vw - 40px)) var(--drawer-origin-y, 40px);
  filter: blur(10px);
  transition:
    opacity 1.4s var(--easing),
    transform 1.6s var(--easing),
    filter 1.4s var(--easing);
}

.detail-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.detail-drawer.is-closing {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.22s var(--easing),
    transform 0.24s var(--easing),
    filter 0.22s var(--easing);
}

.detail-drawer-shell {
  position: relative;
  width: min(980px, 100%);
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
  border-radius: 36px;
  background: rgba(244, 249, 251, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 40px 90px rgba(23, 44, 54, 0.22);
  backdrop-filter: blur(26px) saturate(130%);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
}

.detail-drawer-body {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
  padding-top: 82px;
  position: relative;
  z-index: 1;
  will-change: auto;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 120;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(63, 88, 101, 0.16);
  pointer-events: auto;
}

.drawer-close span {
  pointer-events: none;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  transform: translateY(-2px);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 260px;
  margin-bottom: 22px;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: #e4edf0;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 24, 31, 0.12), rgba(12, 24, 31, 0.4));
}

.detail-hero-content {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  color: white;
}

.detail-title {
  margin: 12px 0 10px;
  font-size: 2rem;
  color: white;
}

.detail-subtitle {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.detail-grid {
  display: grid;
  gap: 16px;
}

.detail-module {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.detail-module h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.detail-list,
.detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-list-item {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--color-muted);
}

.detail-list-item span {
  line-height: 1.55;
}

.detail-bottom {
  margin-top: 22px;
}

.detail-story {
  display: grid;
  gap: 26px;
}

.detail-story .story-banner,
.detail-story .story-intro,
.detail-story .story-framing-grid,
.detail-story .story-highlight-grid,
.detail-story .story-photo-rail,
.detail-story .story-panel,
.detail-story .story-framing-card,
.detail-story .story-highlight-card,
.detail-story .story-photo-card,
.detail-story .story-list-card,
.detail-story .story-timeline-item,
.detail-story .story-mini-card {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.95s var(--easing),
    transform 1.05s var(--easing),
    filter 0.95s var(--easing);
  transition-delay: var(--detail-delay, 0ms);
  will-change: transform, opacity, filter;
}

.detail-story .story-banner.is-visible,
.detail-story .story-intro.is-visible,
.detail-story .story-framing-grid.is-visible,
.detail-story .story-highlight-grid.is-visible,
.detail-story .story-photo-rail.is-visible,
.detail-story .story-panel.is-visible,
.detail-story .story-framing-card.is-visible,
.detail-story .story-highlight-card.is-visible,
.detail-story .story-photo-card.is-visible,
.detail-story .story-list-card.is-visible,
.detail-story .story-timeline-item.is-visible,
.detail-story .story-mini-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.detail-story .story-banner {
  transform: translate3d(0, 38px, 0) scale(0.97);
}

.story-banner {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(89, 122, 136, 0.78), rgba(182, 198, 205, 0.4));
}

.story-banner img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  background: #e4edf0;
  filter: saturate(0.86) brightness(0.78);
}

.story-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(45, 69, 80, 0.56), rgba(130, 154, 164, 0.16)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.story-banner-copy {
  position: absolute;
  inset: auto 20px 18px 20px;
  z-index: 2;
  display: grid;
  justify-items: start;
  align-content: end;
  gap: 6px;
  color: rgba(255, 255, 255, 0.96);
}

.story-banner-label,
.story-card-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-banner-country {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-top: -2px;
}

.story-intro {
  display: grid;
  gap: 16px;
}

.story-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.3rem);
  line-height: 0.92;
  color: var(--color-text);
}

.story-lead {
  margin: 0;
  max-width: 48ch;
  color: var(--color-text);
  line-height: 1.75;
}

.story-framing-grid,
.story-card-grid,
.story-mini-grid {
  display: grid;
  gap: 18px;
}

.story-framing-grid {
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
}

.story-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-highlight-card {
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 30px rgba(63, 92, 107, 0.1);
}

.story-highlight-card p {
  margin: 12px 0 0;
  line-height: 1.58;
}

.story-highlight-card.tone-1 {
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(65, 146, 201, 0.96), rgba(46, 104, 151, 0.94));
  border-color: rgba(181, 226, 249, 0.34);
}

.story-highlight-card.tone-1 .story-card-label,
.story-highlight-card.tone-1 p,
.story-highlight-card.tone-1 strong {
  color: #fcf2ea;
}

.story-highlight-card.tone-2 {
  background:
    radial-gradient(circle at top right, rgba(170, 222, 230, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 248, 249, 0.7));
}

.story-highlight-card.tone-2 .story-card-label,
.story-highlight-card.tone-2 p,
.story-highlight-card.tone-2 strong {
  color: var(--color-text);
}

.story-highlight-card.tone-3 {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 239, 224, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(228, 131, 59, 0.94), rgba(210, 110, 43, 0.92));
  border-color: rgba(242, 198, 160, 0.34);
}

.story-highlight-card.tone-3 .story-card-label,
.story-highlight-card.tone-3 p,
.story-highlight-card.tone-3 strong {
  color: #fcf2ea;
}

.story-framing-card,
.story-list-card,
.story-mini-card,
.story-panel {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 251, 252, 0.56));
  box-shadow: 0 16px 34px rgba(62, 91, 104, 0.09);
}

.story-framing-card {
  padding: 22px;
}

.story-framing-card p {
  margin: 14px 0 0;
  color: var(--color-text);
  line-height: 1.72;
  font-weight: 300;
}

.story-framing-card.is-wide p {
  font-size: 1.04rem;
}

.story-framing-card strong,
.story-list-card strong,
.story-lens-note strong {
  font-weight: 600;
}

.story-framing-card.is-core-question {
  background: linear-gradient(135deg, #e4833b, #d97733);
  border-color: rgba(228, 131, 59, 0.8);
  box-shadow: 0 22px 40px rgba(200, 106, 38, 0.24);
}

.story-framing-card.is-core-question .story-card-label,
.story-framing-card.is-core-question p,
.story-framing-card.is-core-question strong {
  color: #fcf2ea;
}

.story-photo-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.story-photo-card {
  margin: 0;
  min-height: 148px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 32px rgba(63, 92, 107, 0.1);
}

.story-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e4edf0;
}

.story-panel {
  padding: 26px;
}

.story-panel-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.detail-module-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, rgba(67, 121, 133, 0.95), rgba(143, 203, 213, 0.95));
  box-shadow: 0 14px 28px rgba(75, 120, 133, 0.18);
}

.detail-module-icon svg {
  width: 20px;
  height: 20px;
}

.story-panel-head h3 {
  margin: 8px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.story-panel-head p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.story-chip-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.story-context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.story-context-card {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(61, 91, 104, 0.14);
  isolation: isolate;
}

.story-context-card::before {
  content: "";
  position: absolute;
  inset: -24% auto auto -22%;
  width: 34%;
  height: 176%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(252, 242, 234, 0.28), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-158%);
  opacity: 0.84;
  pointer-events: none;
  z-index: 0;
  animation: panelSheenSweep 5.6s linear infinite;
}

.story-context-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.story-context-card > * {
  position: relative;
  z-index: 1;
}

.story-context-card.tone-blue {
  background:
    radial-gradient(circle at 18% 18%, rgba(175, 232, 255, 0.28), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(65, 146, 201, 0.98), rgba(48, 110, 162, 0.95));
  border-color: rgba(189, 232, 249, 0.28);
  box-shadow:
    0 20px 38px rgba(41, 94, 136, 0.24),
    0 0 24px rgba(117, 219, 255, 0.14);
}

.story-context-card.tone-blue::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.16), transparent 24%);
}

.story-context-card.tone-orange {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 242, 231, 0.22), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(255, 209, 175, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(228, 131, 59, 0.98), rgba(209, 108, 40, 0.95));
  border-color: rgba(249, 211, 181, 0.28);
  box-shadow:
    0 20px 38px rgba(186, 97, 34, 0.24),
    0 0 24px rgba(255, 190, 135, 0.14);
}

.story-context-card.tone-orange::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 243, 234, 0.14), transparent 24%);
}

.story-context-card .story-card-label,
.story-context-card h4,
.story-context-card li {
  color: #fcf2ea;
}

.story-context-card .story-card-label {
  display: inline-block;
  margin-bottom: 12px;
}

.story-context-card h4 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.story-context-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.story-context-points li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.56;
  font-size: 0.98rem;
}

.story-context-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.32rem;
  border-radius: 999px;
  background: rgba(252, 242, 234, 0.92);
  box-shadow: 0 0 14px rgba(252, 242, 234, 0.34);
}

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

.story-list-card,
.story-mini-card {
  padding: 24px;
}

.story-list-index,
.story-mini-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(43, 62, 73, 0.92);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.story-list-card p,
.story-mini-card p {
  margin: 18px 0 0;
  color: var(--color-text);
  line-height: 1.72;
  font-size: 1.02rem;
}

.story-lens-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(170, 222, 230, 0.32), transparent 26%),
    linear-gradient(180deg, rgba(247, 251, 252, 0.88), rgba(235, 245, 247, 0.72));
}

.story-panel-copy h3 {
  margin: 8px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.story-panel-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.story-lens-note {
  margin: -2px 0 0;
  color: var(--color-text);
  line-height: 1.7;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.story-timeline {
  display: grid;
  gap: 14px;
}

.story-timeline-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 24px;
  background-color: #e4833b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(228, 131, 59, 0.84);
  box-shadow:
    0 20px 34px rgba(200, 106, 38, 0.24),
    0 0 22px rgba(228, 131, 59, 0.16);
  animation: cardGlowBreathOrange 6.8s ease-in-out infinite;
}

.story-timeline-item strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #fcf2ea !important;
  line-height: 1;
  font-weight: 600;
}

.story-timeline-item p {
  margin: 0;
  color: #fcf2ea;
  line-height: 1.74;
}

.story-timeline-item p strong {
  color: #fcf2ea !important;
}

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

.story-panel-included .story-mini-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 12px;
}

.story-panel-included .story-mini-card {
  aspect-ratio: auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 250, 251, 0.7));
  border-radius: 22px;
}

.story-panel-included .story-mini-index {
  min-width: 44px;
  min-height: 44px;
  border-radius: 16px;
  align-self: start;
}

.story-panel-included .story-mini-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

.story-panel-usp {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(137, 215, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(228, 131, 59, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(53, 122, 169, 0.98), rgba(39, 92, 132, 0.97));
  border-color: rgba(186, 226, 248, 0.24);
  box-shadow:
    0 26px 52px rgba(34, 84, 122, 0.34),
    0 0 30px rgba(117, 219, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: cardGlowBreathBlue 6.6s ease-in-out infinite;
}

.story-panel-usp::before {
  content: "";
  position: absolute;
  inset: -22% auto auto -16%;
  width: 34%;
  height: 170%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(252, 242, 234, 0.22), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-155%);
  opacity: 0.86;
  pointer-events: none;
  z-index: 0;
  animation: panelSheenSweep 5.4s linear infinite;
}

.story-panel-usp::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.story-panel-usp::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.16), transparent 22%),
    radial-gradient(circle at 78% 76%, rgba(117, 219, 255, 0.2), transparent 24%);
}

.story-panel-usp .story-panel-head {
  position: relative;
  z-index: 1;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.story-panel-usp .story-panel-head h3,
.story-panel-usp .story-panel-head p {
  color: #fcf2ea;
}

.story-panel-usp .detail-module-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: 0;
  background: rgba(252, 242, 234, 0.12);
  color: #fcf2ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 24px rgba(19, 57, 84, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.story-mini-card-usp {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border-color: rgba(220, 240, 251, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 30px rgba(24, 68, 96, 0.18),
    0 0 18px rgba(117, 219, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.story-mini-card-usp::after {
  content: "";
  position: absolute;
  inset: -34% auto auto -24%;
  width: 44%;
  height: 190%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(252, 242, 234, 0.18), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(-165%);
  opacity: 0.74;
  pointer-events: none;
  animation: panelSheenSweep 6.1s linear infinite;
}

.story-mini-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(252, 242, 234, 0.16);
  color: #fcf2ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 24px rgba(17, 52, 77, 0.16),
    0 0 16px rgba(252, 242, 234, 0.1);
}

.story-mini-icon svg {
  width: 20px;
  height: 20px;
}

.story-mini-copy strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fcf2ea !important;
  letter-spacing: -0.02em;
}

.story-mini-card-usp p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: #fcf2ea;
  font-size: 0.96rem;
  line-height: 1.56;
  font-weight: 600;
}

.story-mini-card-usp p strong {
  color: #fcf2ea;
  font-weight: 600;
}

@keyframes customRoutePulse {
  0%,
  100% {
    opacity: 0.16;
    transform: translateX(-50%) scale(0.88);
    filter: blur(18px);
  }
  42% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.22);
    filter: blur(30px);
  }
  64% {
    opacity: 0.36;
    transform: translateX(-50%) scale(1.06);
    filter: blur(22px);
  }
}

@keyframes cardGlowBreathBlue {
  0%,
  100% {
    box-shadow:
      0 26px 52px rgba(34, 84, 122, 0.28),
      0 0 18px rgba(117, 219, 255, 0.12),
      0 0 0 rgba(117, 219, 255, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  50% {
    box-shadow:
      0 30px 60px rgba(34, 84, 122, 0.42),
      0 0 52px rgba(117, 219, 255, 0.34),
      0 0 88px rgba(117, 219, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes cardGlowBreathOrange {
  0%,
  100% {
    box-shadow:
      0 20px 34px rgba(200, 106, 38, 0.22),
      0 0 14px rgba(228, 131, 59, 0.1),
      0 0 0 rgba(228, 131, 59, 0);
  }
  50% {
    box-shadow:
      0 28px 44px rgba(200, 106, 38, 0.34),
      0 0 42px rgba(228, 131, 59, 0.28),
      0 0 76px rgba(255, 186, 105, 0.16);
  }
}

.story-mini-card-suitable p {
  margin-top: 0;
}

.story-panel strong,
.story-lead strong {
  color: var(--color-text);
  font-weight: 600;
}

.reveal,
.rise {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--easing),
    transform 0.8s var(--easing),
    filter 0.8s var(--easing);
  filter: blur(8px);
}

.reveal.in-view,
.rise.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.rise {
  transform: translateY(38px);
}

.reveal[data-delay="1"],
.rise[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"],
.rise[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"],
.rise[data-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="4"],
.rise[data-delay="4"] {
  transition-delay: 0.32s;
}

.orbit,
.radar-pulse {
  pointer-events: none;
}

.orbit {
  animation: orbitFloat 16s linear infinite;
}

.orbit-large,
.orbit-small {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(122, 174, 187, 0.18);
  transform: translate(-50%, -50%);
}

.orbit-large {
  width: min(82%, 500px);
  aspect-ratio: 1;
}

.orbit-small {
  width: min(54%, 320px);
  aspect-ratio: 1;
  animation-duration: 12s;
  animation-direction: reverse;
}

.radar-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(141, 202, 212, 0.18), rgba(141, 202, 212, 0.05) 44%, transparent 72%);
  animation: pulse 8s var(--easing) infinite;
}

.content-switching main,
#app.is-switching {
  opacity: 0.86;
}

@keyframes orbitFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 0.94;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes titleWordReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 112%, 0) scale(0.92) rotateX(-56deg);
    filter: blur(10px);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, -4%, 0) scale(1.02) rotateX(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}

@keyframes loaderWordIn {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: var(--loader-from-transform, translate3d(0, 16px, 0) scale(1.01));
  }

  62% {
    opacity: 1;
    filter: blur(0.2px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loaderLogoIn {
  0% {
    clip-path: circle(0% at 50% 50%);
    filter: blur(4px);
    transform: scale(1.015);
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  100% {
    clip-path: circle(75% at 50% 50%);
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding: 64px 36px 52px;
  }

  .country-browser {
    gap: 22px;
  }

  .country-stage-shell {
    min-height: 620px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .country-copy-block {
    max-width: 520px;
  }

  .upcoming-tour-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .upcoming-tour-summary {
    text-align: left;
  }

  .journey-band-shell {
    grid-template-columns: 1fr;
  }

  .custom-route-shell {
    grid-template-columns: 1fr;
  }

  .custom-route-stage {
    padding: 16px;
  }

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

  .journey-copy {
    padding: 2px 2px 0;
  }

  .journey-summary {
    max-width: 34ch;
  }

  .journey-gallery-track {
    height: 360px;
  }

  .contact-band-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-band-title,
  .contact-band-summary {
    max-width: none;
  }

  .focus-layout,
  .compare-band {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
    padding-top: 10px;
  }

  .glass-header {
    top: 8px;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 12px;
    border-radius: 24px;
    padding: 12px 14px;
    min-height: auto;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .nav-link {
    flex: 1 1 auto;
    text-align: center;
    padding: 9px 8px;
    font-size: 0.84rem;
  }

  .wordmark-logo {
    width: 48px;
    height: 48px;
  }

  .wordmark-copy strong {
    font-size: 0.94rem;
  }

  .wordmark-copy small {
    font-size: 0.68rem;
  }

  .hero-title {
    max-width: none;
  }

  .hero-title .title-line-shell[data-line="1"] .title-line {
    font-size: 0.52em;
  }

  .hero-title .typed-word {
    min-width: 11ch;
  }

  .bino-loader-stage {
    min-height: min(74svh, 500px);
  }

  .bino-loader-scenes {
    min-height: 180px;
  }

  .bino-loader-logo {
    width: min(60vw, 448px);
  }

  .hero {
    min-height: calc(100vh - 124px);
    border-radius: 30px;
    padding: 24px 18px 22px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-top: 12px;
    max-width: 31ch;
    font-size: 0.9rem;
    line-height: 1.65;
  }

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

  .country-block {
    border-radius: 34px;
  }

  .country-stage-shell {
    padding: 30px 24px 24px;
    gap: 20px;
  }

  .country-stage-title {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .highlight-grid,
  .included-grid,
  .programme-grid,
  .audience-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .story-framing-grid,
  .story-highlight-grid,
  .story-photo-rail,
  .story-context-grid,
  .story-card-grid,
  .story-mini-grid {
    grid-template-columns: 1fr;
  }

  .story-banner-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-title {
    font-size: clamp(2.3rem, 9vw, 3.7rem);
  }

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

  .focus-map {
    min-height: 760px;
  }

  .focus-node[data-position="north"] {
    top: 9%;
  }

  .focus-node[data-position="north-east"] {
    top: 28%;
    right: 7%;
  }

  .focus-node[data-position="south-east"] {
    right: 9%;
    bottom: 16%;
  }

  .focus-node[data-position="south-west"] {
    left: 9%;
    bottom: 16%;
  }

  .focus-node[data-position="north-west"] {
    top: 28%;
    left: 7%;
  }

  .detail-drawer {
    top: max(8px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    left: max(8px, env(safe-area-inset-left));
    bottom: max(8px, env(safe-area-inset-bottom));
    max-height: calc(100dvh - 16px);
    width: auto;
    transform: none;
    filter: none;
    transition: opacity 0.32s var(--easing);
  }

  .detail-drawer-shell {
    border-radius: 28px;
    backdrop-filter: blur(18px) saturate(116%);
    -webkit-backdrop-filter: blur(18px) saturate(116%);
  }

  .detail-drawer-body {
    padding: 20px;
    padding-top: 76px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-tools {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .glass-header {
    gap: 8px 10px;
    padding: 10px 12px 9px;
  }

  .bino-loader {
    padding: 20px 16px;
  }

  .bino-loader-stage {
    width: 100%;
    min-height: min(76svh, 460px);
  }

  .bino-loader-scenes {
    min-height: 148px;
  }

  .loader-line {
    font-size: clamp(1.7rem, 9.8vw, 2.9rem);
    line-height: 0.9;
  }

  .bino-loader-stack {
    gap: 0.01em;
  }

  .bino-loader-logo {
    width: min(66vw, 368px);
  }

  .site-nav {
    gap: 2px;
  }

  .nav-link {
    padding: 8px 8px;
    font-size: 0.74rem;
  }

  .wordmark {
    gap: 10px;
  }

  .wordmark-logo {
    width: 42px;
    height: 42px;
  }

  .country-stage-shell {
    padding: 28px 22px 22px;
    min-height: 528px;
  }

  .country-copy-block {
    align-self: end;
    max-width: 100%;
    padding-top: 0;
  }

  .country-stage-label {
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .country-stage-title {
    line-height: 0.92;
  }

  .country-stage-summary {
    margin-top: 12px;
    max-width: 23ch;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .upcoming-tour {
    margin-top: 2px;
    padding-top: 10px;
  }

  .upcoming-tour-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .upcoming-tour-summary {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .upcoming-tour-track {
    gap: 14px;
  }

  .upcoming-card {
    flex-basis: 78vw;
    min-height: 320px;
    border-radius: 28px;
  }

  .upcoming-card-body {
    min-height: 320px;
    padding: 14px;
  }

  .upcoming-card-logo-wrap {
    max-width: 74%;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .upcoming-card-logo {
    max-width: 118px;
    max-height: 34px;
  }

  .upcoming-card-name {
    font-size: 0.8rem;
    padding: 9px 12px;
  }

  .journey-band {
    margin-top: 14px;
  }

  .custom-route-band {
    margin-top: 14px;
  }

  .custom-route-shell {
    padding: 14px;
    gap: 12px;
    border-radius: 28px;
  }

  .custom-route-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .custom-route-summary {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 26ch;
  }

  .custom-route-stage {
    padding: 14px;
    border-radius: 24px;
  }

  .custom-route-capsule-wrap {
    min-height: 88px;
  }

  .custom-route-capsule {
    padding: 14px 16px;
  }

  .custom-route-capsule strong {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .custom-route-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .custom-route-card {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px 15px;
  }

  .journey-band-shell {
    padding: 14px;
    gap: 12px;
    border-radius: 28px;
  }

  .journey-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .journey-summary {
    font-size: 0.9rem;
    line-height: 1.34;
    max-width: 24ch;
  }

  .journey-gallery-track {
    height: auto;
    display: flex;
    gap: 10px;
  }

  .journey-photo-card {
    flex: 0 0 62vw;
    width: auto;
    height: 190px;
    border-radius: 20px;
  }

  .journey-photo-card-1,
  .journey-photo-card-2,
  .journey-photo-card-3,
  .journey-photo-card-4,
  .journey-photo-card-5,
  .journey-photo-card-6 {
    grid-column: auto;
    grid-row: auto;
    width: auto;
  }

  .contact-band {
    margin-top: 14px;
  }

  .contact-band-shell {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 28px;
  }

  .contact-band-copy .section-kicker {
    margin-bottom: 10px;
  }

  .contact-band-title {
    max-width: none;
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 0.92;
  }

  .contact-band-summary {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .contact-band-card {
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
  }

  .contact-band-name {
    font-size: 1.25rem;
  }

  .contact-band-detail,
  .contact-band-mail {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .contact-band-action {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .founder-popup {
    width: min(100%, 560px);
    min-height: min(64dvh, 560px);
    max-height: calc(100dvh - 28px);
    border-radius: 28px;
  }

  .founder-popup-copy {
    min-height: min(64dvh, 560px);
    align-items: stretch;
    padding: 16px 16px 16px;
  }

  .founder-popup-editorial {
    width: 100%;
    min-height: 100%;
    gap: 12px;
    grid-template-rows: auto 1fr auto;
  }

  .founder-popup-heading {
    max-width: 8.6ch;
    font-size: clamp(1.7rem, 7.1vw, 2.35rem);
    line-height: 0.92;
  }

  .founder-popup-body-card {
    max-width: none;
    align-self: end;
    padding: 14px 16px 13px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  }

  .founder-popup-line {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .founder-popup-signoff {
    align-self: end;
    gap: 8px;
  }

  .founder-popup-signoff-line {
    width: 72px;
  }

  .founder-popup-signature {
    font-size: 0.88rem;
  }

  .country-expand-btn {
    margin-top: 22px;
  }

  .country-stage-summary {
    font-size: 0.9rem;
  }

  .drawer-programme-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 30px;
  }

  .drawer-programme-media {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    border-radius: 24px;
  }

  .drawer-programme-media img {
    height: auto;
    background: transparent;
  }

  .story-banner {
    min-height: 164px;
  }

  .story-banner img {
    min-height: 164px;
  }

  .story-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .story-panel-head h3,
  .story-panel-copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .story-panel-included .story-mini-grid {
    grid-template-columns: 1fr;
  }

  .story-panel,
  .story-lens-panel {
    padding: 20px;
  }

  .story-list-card,
  .story-mini-card,
  .story-framing-card {
    padding: 20px;
  }

  .hero {
    min-height: calc(100vh - 112px);
    padding: 18px 16px 18px;
    border-radius: 26px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 0.97;
  }

  .hero-title .title-line-shell[data-line="1"] .title-line {
    font-size: 0.44em;
    letter-spacing: -0.045em;
  }

  .hero-title .typed-word {
    min-width: 10.5ch;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(238, 247, 249, 0.72) 0%, rgba(238, 247, 249, 0.82) 52%, rgba(238, 247, 249, 0.9) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(13, 35, 45, 0.12));
  }

  .focus-map {
    min-height: auto;
    padding: 22px;
    display: grid;
    gap: 14px;
  }

  .orbit-large,
  .orbit-small,
  .radar-pulse {
    display: none;
  }

  .focus-core,
  .focus-node {
    position: static;
    transform: none;
    width: 100%;
  }

  .focus-node::before {
    display: none;
  }

  .footer-tools {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .footer-lang-toggle {
    width: auto;
    justify-content: center;
  }

  .footer-copy-block strong {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-brand-logo {
    width: 34px;
    height: 34px;
  }

  .site-footer p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .footer-bottom-line {
    padding-top: 12px;
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .rise,
  .hero-title .title-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-title .typed-cursor {
    animation: none !important;
  }

  .bino-loader-scene.is-visible .loader-word,
  .bino-loader-brand.in {
    animation: none !important;
  }

  .loader-word {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

@keyframes heroCursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes upcomingImageBreath {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1.04);
  }
}

@keyframes founderPopupReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.985);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes founderSheen {
  0% {
    transform: rotate(18deg) translateX(-120%);
  }

  100% {
    transform: rotate(18deg) translateX(260%);
  }
}

@keyframes panelSheenSweep {
  0% {
    transform: rotate(18deg) translateX(-165%);
  }

  100% {
    transform: rotate(18deg) translateX(285%);
  }
}

@media (max-width: 820px) and (max-height: 760px) {
  .country-stage-shell {
    min-height: 500px;
    padding-top: 24px;
  }

  .country-stage-title {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .country-stage-summary {
    max-width: 24ch;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .drawer-programme-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 28px;
  }

  .drawer-programme-media {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    border-radius: 22px;
  }

  .drawer-programme-body h3 {
    margin: 0;
    font-size: 1.08rem;
  }

  .drawer-programme-body p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .founder-popup {
    width: min(100%, 520px);
    min-height: min(58dvh, 500px);
    max-height: calc(100dvh - 20px);
    border-radius: 24px;
  }

  .founder-popup-copy {
    min-height: min(58dvh, 500px);
    padding: 14px;
  }

  .founder-popup-editorial {
    gap: 10px;
  }

  .founder-popup-heading {
    max-width: 8.2ch;
    font-size: clamp(1.55rem, 6.8vw, 2.1rem);
    line-height: 0.9;
  }

  .founder-popup-body-card {
    padding: 13px 14px 12px;
  }

  .founder-popup-line {
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .founder-popup-signature {
    font-size: 0.82rem;
  }
}
