/* ── Homepage: khaki linen texture background ─────────────── */
body.home {
  cursor: none;
}

/* ── Custom dot cursor ─────────────────────────────────────── */
.dot-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #1f1d18;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  will-change: left, top;
  left: -20px;
  top: -20px;
}
body.home a:hover .dot-cursor,
body.home button:hover .dot-cursor {
  width: 16px;
  height: 16px;
}

.spotlight {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #1a1814;
  margin: 0;
  padding: 0;
}

.spotlight[data-mode="reveal"] .spotlight__bands,
.spotlight[data-mode="reveal"] .spotlight__pixel,
.spotlight[data-mode="reveal"] .spotlight__pixel-bg,
.spotlight[data-mode="pixel"] .spotlight__bg,
.spotlight[data-mode="pixel"] .spotlight__bands,
.spotlight[data-mode="pixel"] .spotlight__veil,
.spotlight[data-mode="pixel"] .spotlight__count,
.spotlight[data-mode="bands"] .spotlight__bg,
.spotlight[data-mode="bands"] .spotlight__pixel-bg,
.spotlight[data-mode="bands"] .spotlight__veil,
.spotlight[data-mode="bands"] .spotlight__pixel,
.spotlight[data-mode="bands"] .spotlight__count,
.spotlight[data-mode="bands-h"] .spotlight__bg,
.spotlight[data-mode="bands-h"] .spotlight__pixel-bg,
.spotlight[data-mode="bands-h"] .spotlight__veil,
.spotlight[data-mode="bands-h"] .spotlight__pixel,
.spotlight[data-mode="bands-h"] .spotlight__count {
  display: none;
}

.spotlight__pixel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.spotlight__pixel-bg .pbg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  filter: saturate(0.96) contrast(1.02);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.spotlight__pixel-bg .pbg-slide.is-active {
  opacity: 1;
}

.spotlight[data-mode="bands"] .spotlight__title,
.spotlight[data-mode="bands-h"] .spotlight__title {
  color: #2a2820;
  text-shadow: none;
}
.spotlight[data-mode="bands"] .spotlight__title .tag,
.spotlight[data-mode="bands-h"] .spotlight__title .tag {
  color: #5a564c;
}

.spotlight[data-mode="bands-h"] .spotlight__bands {
  flex-direction: column;
}
.spotlight[data-mode="bands-h"] .spotlight__bands .band::before {
  background: linear-gradient(
    90deg,
    var(--top, #f1ece2) 0%,
    var(--mid, #d8d2c2) 48%,
    var(--bot, #7d7563) 100%
  );
}

.spotlight__pixel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(var(--cols, 16), 1fr);
  grid-template-rows: repeat(var(--rows, 9), 1fr);
  gap: 3px;
  pointer-events: auto;
  -webkit-mask-image: radial-gradient(
    ellipse 880px 140px at 50% 50%,
    transparent 65%,
    #000 100%
  );
  mask-image: radial-gradient(
    ellipse 880px 140px at 50% 50%,
    transparent 65%,
    #000 100%
  );
}
.spotlight__pixel .px {
  --lift: 0;
  background: var(--c, #d8d2c2);
  cursor: pointer;
  will-change: opacity, transform;
  transition:
    opacity 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-origin: center;
  opacity: calc(1 - var(--lift));
  transform: scale(calc(1 - var(--lift) * 0.34));
}
.spotlight[data-mode="pixel"] .spotlight__pixel .px {
  animation: px-in 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  animation-delay: var(--d, 0s);
}
@keyframes px-in {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.spotlight__pixel .px:focus-visible {
  outline: none;
  --lift: 1;
}
.spotlight__pixel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.35;
}
@media (prefers-reduced-motion: reduce) {
  .spotlight[data-mode="pixel"] .spotlight__pixel .px {
    animation: none;
  }
  .spotlight__pixel .px {
    transition: opacity 0.2s;
  }
}

.spotlight__bands {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  background: #1a1814;
  overflow: hidden;
}
.spotlight__bands-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.spotlight__bands-bg .bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  filter: saturate(0.96) contrast(1.02);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.spotlight__bands-bg .bg-slide.is-active {
  opacity: 1;
}

.spotlight__bands .band {
  flex: var(--w, 1) 1 0;
  position: relative;
  text-decoration: none;
  color: inherit;
  outline: none;
  cursor: pointer;
}

.spotlight__bands .band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    var(--top, #f1ece2) 0%,
    var(--mid, #d8d2c2) 48%,
    var(--bot, #7d7563) 100%
  );
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.spotlight__bands .band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='2.6' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.45;
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.spotlight__bands .band:hover::before,
.spotlight__bands .band:focus-visible::before {
  opacity: 0;
}
.spotlight__bands .band:hover::after,
.spotlight__bands .band:focus-visible::after {
  opacity: 0;
}
.spotlight__bands::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 70% at center,
    transparent 35%,
    rgba(31, 29, 24, 0.1) 100%
  );
}
@media (prefers-reduced-motion: reduce) {
  .spotlight__bands .band::before,
  .spotlight__bands .band::after,
  .spotlight__bands-bg .bg-slide {
    transition: none;
  }
}
.spotlight__bg {
  position: absolute;
  inset: 0;
}
.spotlight__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  filter: saturate(0.96) contrast(1.02);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.spotlight__slide.is-active {
  opacity: 1;
}

.spotlight__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --x: -9999px;
  --y: -9999px;
  --rw: 300px;
  --rh: 400px;
  background: rgba(232, 227, 216, 0.55);
  backdrop-filter: blur(14px) saturate(0.5);
  -webkit-backdrop-filter: blur(14px) saturate(0.5);
  -webkit-mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  -webkit-mask-position:
    0 0,
    calc(var(--x) - var(--rw) / 2) calc(var(--y) - var(--rh) / 2);
  -webkit-mask-size:
    100% 100%,
    var(--rw) var(--rh);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-out;
  mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  mask-position:
    0 0,
    calc(var(--x) - var(--rw) / 2) calc(var(--y) - var(--rh) / 2);
  mask-size:
    100% 100%,
    var(--rw) var(--rh);
  mask-repeat: no-repeat;
  mask-composite: exclude;
}

.spotlight__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 20;
  pointer-events: none;
  width: 90%;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 6px 36px rgba(0, 0, 0, 0.35);
  transition:
    color 0.9s ease,
    text-shadow 0.9s ease;
}
.spotlight__title .name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.spotlight__title .name em {
  font-style: italic;
}
.spotlight__title .tag {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  margin-top: 24px;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 2px 8px rgba(0, 0, 0, 0.6);
  transition:
    color 0.9s ease,
    text-shadow 0.9s ease;
}
.spotlight[data-slide-tone="light"] .spotlight__title {
  color: #1a1814;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.95),
    0 2px 14px rgba(255, 255, 255, 0.7),
    0 6px 36px rgba(255, 255, 255, 0.45);
}
.spotlight[data-slide-tone="light"] .spotlight__title .tag {
  color: #1a1814;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.95),
    0 2px 10px rgba(255, 255, 255, 0.7);
}

.spotlight__count {
  position: absolute;
  left: 32px;
  bottom: 32px;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 3;
  mix-blend-mode: difference;
}
.spotlight__count .bar {
  display: flex;
  gap: 6px;
}
.spotlight__count .seg {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.4s ease;
}
.spotlight__count .seg.on {
  background: #fff;
}

@media (hover: none) {
  .spotlight__veil {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spotlight__slide.is-active {
    animation: none;
  }
  .spotlight__veil {
    transition: none;
  }
}

@media (max-width: 780px) {
  .spotlight .spotlight__bg,
  .spotlight .spotlight__bands,
  .spotlight .spotlight__pixel,
  .spotlight .spotlight__count {
    display: none !important;
  }
  .spotlight {
    background: #d8d1bd !important;
  }
  .spotlight .spotlight__veil {
    display: block !important;
    inset: 0 !important;
    background: linear-gradient(
      180deg,
      #f1ece2 0%,
      #d8d1bd 50%,
      #a89e84 100%
    ) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .spotlight .spotlight__title {
    color: #1f1d18 !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .spotlight .spotlight__title .tag {
    color: var(--ink-2) !important;
  }
}

.world-hero {
  padding: 120px 32px;
  max-width: 1480px;
  margin: 0 auto;
}
.world-hero__head {
  margin-bottom: 48px;
}
.world-hero__head .l {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.world-hero__head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.world-hero__head h2 em {
  font-style: italic;
}
.world-map {
  position: relative;
  aspect-ratio: 1000/460;
  width: 100%;
  color: var(--ink);
}
.world-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.world-map .land path {
  fill: rgba(31, 29, 24, 0.07);
  transition: fill 0.8s;
}
.world-map:hover .land path {
  fill: rgba(31, 29, 24, 0.1);
}

.world-map__type {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.world-map__row {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: rgba(31, 29, 24, 0.78);
  transform: translate(-50%, -100%);
  white-space: nowrap;
  padding-bottom: 14px;
}
.world-map__row[data-pos="usa"] {
  left: 18%;
  top: 39%;
}
.world-map__row[data-pos="india"] {
  left: 69.5%;
  top: 51%;
}
.world-map__row[data-pos="australia"] {
  left: 87%;
  top: 76%;
}
.world-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  z-index: 3;
}
.world-pin__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  box-shadow: 0 0 0 4px rgba(232, 227, 216, 0.85);
  transition: transform 0.3s;
}
.world-pin:hover .world-pin__dot {
  transform: scale(1.18);
}
.world-pin__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: pinPulse 1.6s ease-out infinite;
  opacity: 0.5;
}
@keyframes pinPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}
.world-pin__label {
  display: none;
}

.world-map .arc path {
  stroke-dasharray: 3 5;
  opacity: 0.6;
  animation: dash-march 1.1s linear infinite;
}
@keyframes dash-march {
  from {
    stroke-dashoffset: 16;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .world-map .arc path {
    animation: none;
  }
}

.world-orbit {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 5;
  transform-origin: center center;
}
@media (max-width: 1200px) and (min-width: 781px) {
  .world-orbit {
    transform: scale(0.75);
  }
}
@media (max-width: 1024px) and (min-width: 781px) {
  .world-orbit {
    transform: scale(0.6);
  }
}
.world-orbit__thumb {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  background: #1a1814;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--orbit-d, 0ms);
  filter: saturate(0.94) contrast(1.02);
}
.world-orbit__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.world-orbit.is-open {
  pointer-events: auto;
}
.world-orbit.is-open .world-orbit__thumb {
  opacity: 1;
  transform: translate(calc(-50% + var(--ox, 0px)), calc(-50% + var(--oy, 0px)))
    scale(1);
}

@media (max-width: 900px) {
  .world-hero {
    padding: 80px 20px;
  }
  .world-hero__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .world-pin__label {
    font-size: 9px;
    padding: 4px 8px;
  }
}

.world-stack {
  display: none;
}
@media (max-width: 780px) {
  .world-map {
    display: none;
  }
  .world-stack {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 0;
  }
}
.continent-card {
  display: block;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.continent-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding: 0 4px;
  text-decoration: none;
  color: inherit;
}
.continent-card__head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0;
}
.continent-card__head h3 em {
  font-style: italic;
}
.continent-card__head .count {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.continent-card__strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0 4px;
  scrollbar-width: none;
}
.continent-card__strip::-webkit-scrollbar {
  display: none;
}
.continent-card__strip a {
  flex: 0 0 auto;
  width: 160px;
  height: 120px;
  display: block;
  overflow: hidden;
  background: #1a1814;
  scroll-snap-align: start;
}
.continent-card__strip a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.02);
}
.continent-card__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 4px 0;
  padding-bottom: 6px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  transition:
    gap 0.3s,
    padding-right 0.3s;
  font-weight: 500;
}
.continent-card__more:hover,
.continent-card__more:focus-visible {
  gap: 20px;
  padding-right: 6px;
}
.continent-card__more .ln {
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transition: width 0.3s;
}
.continent-card__more:hover .ln,
.continent-card__more:focus-visible .ln {
  width: 36px;
}

.marquee {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marq 16s linear infinite;
  will-change: transform;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-track .item {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.marquee-track .item em {
  font-style: italic;
  color: var(--ink-2);
}
.marquee-track .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
