@font-face {
  font-family: "Priestacy";
  src: local("Priestacy"), local("Priestacy Demo"), local("Priestacy Script");
  font-display: swap;
}

:root {
  --ink: #f8f4e9;
  --olive: #182016;
  --olive-soft: #283424;
  --olive-deep: #10160f;
  --gold: #c8a65d;
  --gold-rich: #daa84f;
  --gold-soft: #ecd8a4;
  --paper: #f2ecdf;
  --paper-warm: #eee3cf;
  --paper-deep: #e6d8bf;
  --orange-warm: #c97734;
  --left-size: 50%;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --logo-script: "Priestacy", "Brush Script MT", "Segoe Script", "Snell Roundhand", "URW Chancery L", "Apple Chancery", cursive;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; }
html { background: #0c100b; }
body {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: #0c100b;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 2500;
  top: 14px;
  left: 14px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--olive);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* INTRO */
.intro {
  position: fixed;
  z-index: 1800;
  inset: 0;
  overflow: hidden;
  pointer-events: all;
  isolation: isolate;
}
.intro::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .08;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0 .7px, transparent .9px),
    radial-gradient(circle at 78% 72%, #000 0 .7px, transparent .9px);
  background-size: 13px 13px, 14px 14px;
  mix-blend-mode: multiply;
}

.loading-stage,
.capri-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.loading-stage {
  overflow: hidden;
  opacity: 1;
  transform: scale(1);
  transition: opacity .6s ease, transform .78s cubic-bezier(.2,.8,.2,1), filter .78s ease;
}
.loading-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(198,154,69,.11), transparent 22rem),
    radial-gradient(circle at 82% 22%, rgba(117,139,104,.10), transparent 20rem),
    radial-gradient(circle at 50% 58%, rgba(236,228,212,.92), rgba(244,237,223,.96) 42%, rgba(242,236,223,.98) 68%, #f4efe3 100%),
    linear-gradient(180deg, #f4efe3 0%, #f1eadc 100%);
}
.loading-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}
.loading-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  opacity: .75;
}
.loading-blur-one {
  left: -8%;
  bottom: -12%;
  width: 34rem;
  height: 34rem;
  background: rgba(201,119,52,.52);
}
.loading-blur-two {
  right: -6%;
  top: -10%;
  width: 31rem;
  height: 31rem;
  background: rgba(236,216,164,.34);
}
.loading-blur-three {
  left: 50%;
  top: 50%;
  width: 28rem;
  height: 28rem;
  background: rgba(23,32,21,.22);
  transform: translate(-50%, -50%);
}

.loading-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.loading-orbit-outer {
  width: min(720px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(211,186,129,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
  opacity: .8;
  animation: orbit 18s linear infinite;
}
.loading-orbit-middle {
  width: min(620px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.72);
  opacity: .7;
  animation: orbitReverse 22s linear infinite;
}
.loading-orbit-inner {
  width: min(540px, 63vw);
  aspect-ratio: 1;
  border: 1px solid rgba(174,167,142,.22);
  opacity: .55;
  animation: orbit 24s linear infinite;
}

.loading-olive {
  position: absolute;
  z-index: 4;
  width: 118px;
  height: 118px;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(131,126,109,.16));
}
.loading-olive-left {
  left: calc(50% - 280px);
  top: calc(50% + 112px);
  transform: rotate(-28deg);
}
.loading-olive-right {
  right: calc(50% - 300px);
  top: calc(50% - 78px);
  transform: rotate(34deg);
}
.loading-olive .olive-stem {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 2px;
  height: 106px;
  background: #72826d;
  transform: translateX(-50%) rotate(20deg);
  transform-origin: top center;
  border-radius: 999px;
}
.loading-olive .olive-leaf {
  position: absolute;
  width: 34px;
  height: 16px;
  border-radius: 100% 0 100% 0;
  background: #8ea083;
}
.loading-olive .olive-leaf-a { left: 17px; top: 16px; transform: rotate(-28deg); }
.loading-olive .olive-leaf-b { left: 54px; top: 28px; transform: rotate(28deg); }
.loading-olive .olive-leaf-c { left: 23px; top: 56px; transform: rotate(-36deg); }
.loading-olive .olive-leaf-d { left: 58px; top: 68px; transform: rotate(30deg); }
.loading-olive .olive-berry {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #495544;
  box-shadow: 16px 7px 0 0 #495544;
}
.loading-olive .olive-berry-one { left: 34px; top: 39px; }
.loading-olive .olive-berry-two {
  left: 40px;
  top: 82px;
  transform: scale(.92);
  opacity: .95;
}

.loader-art-wrap {
  position: relative;
  z-index: 3;
  width: clamp(205px, 18vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(-18px);
}
.loader-halo {
  position: absolute;
  inset: -24%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,.96) 0 34%, rgba(240,231,211,.92) 53%, rgba(219,204,173,.28) 69%, rgba(255,255,255,0) 76%);
  box-shadow:
    0 28px 42px rgba(105,99,80,.10),
    inset -14px -16px 30px rgba(192,183,158,.12);
  filter: blur(.6px);
  opacity: .96;
}
.loader-cloche {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter:
    drop-shadow(0 20px 32px rgba(12,18,12,.14))
    drop-shadow(0 0 26px rgba(220,180,92,.08));
}
.cloche-knob,
.cloche-stem,
.cloche-dome,
.cloche-tray {
  fill: none;
  stroke: #364836;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cloche-accent,
.cloche-swoosh {
  fill: none;
  stroke: #cda658;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cloche-tray-lower {
  stroke-width: 2.8;
  opacity: .85;
}
.cloche-steam {
  fill: none;
  stroke: #d6b15f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  filter: drop-shadow(0 0 12px rgba(236,216,164,.72));
  animation: clocheSteam 2.2s ease-in-out infinite;
}
.steam-b { animation-delay: .42s; }
.steam-c { animation-delay: .84s; }


.loader-progress {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(62px, 7.2vh, 88px);
  width: min(325px, 68vw);
  height: 7px;
  transform: translateX(-50%);
}
.loader-progress-track,
.loader-progress-run,
.loader-progress-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}
.loader-progress-track {
  background: rgba(24,32,22,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.loader-progress-run {
  width: 0%;
  background:
    linear-gradient(90deg, #b96f2f 0%, #dda94d 32%, #f3d99d 53%, #c69a45 74%, #87936d 100%);
  box-shadow:
    0 0 18px rgba(190,116,49,.42),
    0 0 35px rgba(236,216,164,.34);
  animation: loadThreeSeconds 3s cubic-bezier(.18,.85,.2,1) forwards;
}
.loader-progress-glow {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  mix-blend-mode: screen;
  transform: translateX(-100%);
  animation: gloss 1.55s ease-in-out infinite;
}
.loader-caption {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 4.3vh, 44px);
  margin: 0;
  transform: translateX(-50%);
  color: rgba(54,72,54,.78);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.capri-stage {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity .48s ease, transform .78s cubic-bezier(.2,.8,.2,1);
}
.capri-background,
.capri-vortex {
  position: absolute;
  inset: 0;
}
.capri-background {
  overflow: hidden;
}
.capri-pane {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
}
.capri-pane-left {
  left: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.18), transparent 15rem),
    linear-gradient(140deg, #f6efe2 0%, #ebdfcb 60%, #dcc9ab 100%);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}
.capri-pane-right {
  right: 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(236,216,164,.12), transparent 14rem),
    linear-gradient(210deg, #0f150f 0%, #162016 38%, #273323 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.capri-swirl {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,166,93,.22);
  pointer-events: none;
}
.capri-swirl-one {
  top: -18%;
  right: -8%;
  width: 36rem;
  height: 36rem;
  border-width: 2px;
  opacity: .4;
  animation: orbit 24s linear infinite;
}
.capri-swirl-two {
  bottom: -24%;
  left: -10%;
  width: 42rem;
  height: 42rem;
  border-style: dashed;
  opacity: .25;
  animation: orbitReverse 28s linear infinite;
}
.capri-swirl-three {
  top: 50%;
  left: 50%;
  width: min(34rem, 70vw);
  height: min(34rem, 70vw);
  border-color: rgba(255,255,255,.13);
  opacity: .22;
  transform: translate(-50%, -50%);
}
.capri-pattern {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.25) 0 1px, transparent 1.2px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.capri-word-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: min(860px, 90vw);
  transform: rotate(-2deg);
}
.capri-word {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-inline: 2rem;
  color: #fbf4e7;
  font-family: var(--logo-script);
  font-size: clamp(5.2rem, 13vw, 12rem);
  font-style: normal;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-shadow:
    0 5px 22px rgba(12,17,12,.28),
    0 0 42px rgba(236,216,164,.14);
}
.capri-word span {
  display: inline-block;
  opacity: 0;
  filter: blur(18px);
  transform-origin: 50% 70%;
}
.capri-word span + span {
  margin-left: -.085em;
}
.capri-word .from-top {
  transform: translateY(-130px) rotate(-13deg) scale(.72);
}
.capri-word .from-bottom {
  transform: translateY(130px) rotate(12deg) scale(.72);
}
.capri-flourish {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -22px;
  width: min(520px, 68vw);
  height: 90px;
  transform: translateX(-50%);
  overflow: visible;
  opacity: 0;
}
.capri-flourish path {
  fill: none;
  stroke: rgba(226,195,125,.82);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 660;
  stroke-dashoffset: 660;
}

.capri-vortex {
  z-index: 2;
  width: 18rem;
  height: 18rem;
  margin: auto;
  border-radius: 50%;
  opacity: 0;
  background:
    conic-gradient(from 0deg, rgba(245,239,227,0) 0deg, rgba(245,239,227,.75) 58deg, rgba(200,166,93,.56) 120deg, rgba(15,21,15,.22) 220deg, rgba(245,239,227,0) 360deg);
  filter: blur(3px);
  transform: translate(24vw, -20vh) scale(.12) rotate(0deg);
  transform-origin: 82% 16%;
}

body.intro-capri .loading-stage {
  opacity: 0;
  filter: blur(18px);
  transform: scale(.8);
  pointer-events: none;
}
body.intro-capri .capri-stage {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
body.intro-capri .capri-word span {
  animation: letterIn 1s cubic-bezier(.16,.84,.28,1) forwards;
}
body.intro-capri .capri-flourish {
  opacity: 1;
}
body.intro-capri .capri-flourish path {
  animation: flourishDraw 1.05s cubic-bezier(.25,.78,.2,1) 1.02s forwards;
}
body.intro-capri .capri-word span:nth-child(1) { animation-delay: .08s; }
body.intro-capri .capri-word span:nth-child(2) { animation-delay: .18s; }
body.intro-capri .capri-word span:nth-child(3) { animation-delay: .28s; }
body.intro-capri .capri-word span:nth-child(4) { animation-delay: .38s; }
body.intro-capri .capri-word span:nth-child(5) { animation-delay: .48s; }

body.intro-exit .capri-vortex {
  opacity: 1;
  animation: vortexSweep 1.25s cubic-bezier(.72,.02,.16,.99) forwards;
}
body.intro-exit .capri-word-wrap {
  animation: capriWhirl .95s cubic-bezier(.72,.02,.18,.98) forwards;
}
body.intro-exit .capri-background {
  animation: capriBackdropWhirl 1.1s cubic-bezier(.7,.04,.18,.99) forwards;
}
body.intro-exit .intro {
  pointer-events: none;
}
body.intro-complete .intro {
  visibility: hidden;
}

/* MAIN PAGE */
.location-gateway {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--olive);
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.045) rotate(-1.1deg);
  transition: opacity .85s ease .08s, filter 1.1s ease .05s, transform 1.2s cubic-bezier(.2,.8,.2,1) .04s;
}
body.intro-exit .location-gateway,
body.intro-complete .location-gateway {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) rotate(0);
}

.gateway-divider {
  position: absolute;
  z-index: 45;
  top: 0;
  bottom: 0;
  left: var(--left-size);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(225,201,131,.5) 18%, rgba(225,201,131,.24) 82%, transparent);
  transform: translateX(-.5px);
  transition: left .16s cubic-bezier(.22,.72,.26,1);
  pointer-events: none;
}

.gateway-brand {
  position: absolute;
  z-index: 60;
  top: 28px;
  left: 50%;
  display: grid;
  width: 150px;
  justify-items: center;
  gap: 4px;
  transform: translateX(-50%);
  pointer-events: none;
}
.gateway-brand img {
  width: 92px;
  height: 74px;
  object-fit: contain;
  filter: invert(1) sepia(.16) saturate(.75) brightness(1.25);
}
.gateway-brand span {
  color: rgba(255,255,255,.58);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.location-panel {
  --local-x: 0px;
  --local-y: 0px;
  --local-rx: 0deg;
  --local-ry: 0deg;
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: width .16s cubic-bezier(.22,.72,.26,1), filter .36s ease, transform .52s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
}
.location-panel-containers {
  left: 0;
  width: var(--left-size);
}
.location-panel-woodkirk {
  right: 0;
  width: calc(100% - var(--left-size));
}

body.intro-exit .location-panel,
body.intro-complete .location-panel {
  transform: translateX(0) rotate(0);
}
.location-panel-containers { transform: translateX(-5vw) rotate(-2deg); }
.location-panel-woodkirk { transform: translateX(5vw) rotate(2deg); }

.location-image {
  position: absolute;
  z-index: -4;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.06) brightness(.9);
  transform:
    translate3d(var(--local-x), var(--local-y), 0)
    scale(1.04)
    rotateX(var(--local-rx))
    rotateY(var(--local-ry));
  transition: transform .22s ease-out, filter .32s ease;
  will-change: transform;
}
.location-panel.is-active .location-image {
  filter: saturate(.98) contrast(1.03) brightness(1.03);
}
.location-panel.is-inactive .location-image {
  filter: saturate(.55) contrast(1.04) brightness(.78);
}

.location-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,9,.62) 0%, rgba(10,14,9,.14) 34%, rgba(10,14,9,.74) 76%, rgba(10,14,9,.96) 100%),
    linear-gradient(90deg, rgba(23,31,20,.4), rgba(23,31,20,.02));
  transition: opacity .3s ease;
}
.location-panel-woodkirk .location-shade {
  background:
    linear-gradient(180deg, rgba(12,15,10,.58) 0%, rgba(12,15,10,.12) 34%, rgba(12,15,10,.78) 76%, rgba(12,15,10,.96) 100%),
    linear-gradient(270deg, rgba(23,31,20,.42), rgba(23,31,20,.02));
}

.location-glow {
  position: absolute;
  z-index: -2;
  bottom: -30%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .32;
  filter: blur(18px);
  transition: opacity .35s ease, transform .45s ease;
}
.location-panel-containers .location-glow {
  right: -14%;
  background: radial-gradient(circle, rgba(201,119,52,.9), transparent 68%);
}
.location-panel-woodkirk .location-glow {
  left: -15%;
  background: radial-gradient(circle, rgba(201,164,65,.8), transparent 68%);
}
.location-panel.is-active .location-glow {
  opacity: .62;
  transform: scale(1.08);
}
.location-panel.is-inactive .location-glow {
  opacity: .18;
}

.location-content {
  position: relative;
  z-index: 7;
  width: min(600px, 82%);
  margin: 0 0 clamp(72px, 10vh, 126px) clamp(42px, 6vw, 112px);
  transform: translate3d(calc(var(--local-x) * -.24), calc(var(--local-y) * -.12), 0);
  transition: transform .22s ease;
}
.location-panel-woodkirk .location-content {
  margin-right: clamp(42px, 6vw, 112px);
  margin-left: clamp(48px, 5vw, 90px);
}

.location-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.54);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.location-kicker::after {
  width: 54px;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: .8;
}
.location-content h1,
.location-content h2 {
  margin: 18px 0 16px;
  font-family: var(--serif);
  font-size: clamp(3.55rem, 5.1vw, 6.7rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}
.location-panel-containers .location-content em {
  color: #d98541;
}
.location-panel-woodkirk .location-content em {
  color: var(--gold-soft);
}
.location-content p {
  max-width: 520px;
  margin: 0 0 31px;
  color: rgba(255,255,255,.74);
  font-size: clamp(.86rem, 1.05vw, 1.04rem);
  line-height: 1.75;
}

.location-enter {
  position: relative;
  display: inline-flex;
  min-width: 208px;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.location-enter::before {
  width: 44px;
  height: 1px;
  content: "";
  background: rgba(255,255,255,.38);
  transition: width .35s ease, background .35s ease;
}
.location-enter span { order: 2; }
.location-enter i {
  order: 3;
  color: var(--gold-soft);
  font-size: 1rem;
  font-style: normal;
  transition: transform .35s ease;
}
.location-panel:hover .location-enter::before,
.location-panel:focus-visible .location-enter::before {
  width: 62px;
  background: var(--gold-soft);
}
.location-panel:hover .location-enter i,
.location-panel:focus-visible .location-enter i {
  transform: translateX(7px);
}

.gateway-hint {
  position: absolute;
  z-index: 60;
  right: 0;
  bottom: 21px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  pointer-events: none;
}
.gateway-hint span {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.22);
}

/* ANIMATIONS */
@keyframes loadThreeSeconds {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes gloss {
  0% { transform: translateX(-100%); opacity: 0; }
  22% { opacity: .8; }
  100% { transform: translateX(160%); opacity: 0; }
}
@keyframes clocheSteam {
  0% {
    stroke-dashoffset: 150;
    opacity: 0;
    transform: translateY(12px) scale(.96);
  }
  34% { opacity: .94; }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
    transform: translateY(-17px) scale(1.04);
  }
}
@keyframes flourishDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes steamRise {
  0% { stroke-dashoffset: 160; opacity: 0; transform: translateY(14px) scale(.96); }
  35% { opacity: .86; }
  100% { stroke-dashoffset: 0; opacity: 0; transform: translateY(-16px) scale(1.05); }
}
@keyframes lineSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
@keyframes orbit {
  to { transform: rotate(360deg); }
}
@keyframes orbitReverse {
  to { transform: rotate(-360deg); }
}
@keyframes letterIn {
  0% {
    opacity: 0;
    filter: blur(18px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotate(0) scale(1);
  }
}
@keyframes capriWhirl {
  0% {
    opacity: 1;
    transform: translate3d(0,0,0) scale(1) rotate(0);
    filter: blur(0);
  }
  60% {
    opacity: 1;
    transform: translate3d(5vw,-6vh,0) scale(1.18) rotate(-10deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(38vw,-34vh,0) scale(.1) rotate(-24deg);
    filter: blur(16px);
  }
}
@keyframes capriBackdropWhirl {
  0% { transform: scale(1) rotate(0); opacity: 1; }
  100% { transform: translate(22vw,-18vh) scale(.6) rotate(-16deg); opacity: 0; filter: blur(10px); }
}
@keyframes vortexSweep {
  0% {
    opacity: 0;
    transform: translate(24vw,-20vh) scale(.12) rotate(0deg);
  }
  15% { opacity: .95; }
  100% {
    opacity: 0;
    transform: translate(32vw,-28vh) scale(16) rotate(420deg);
  }
}

@media (max-width: 900px) {
  body { overflow: auto; }
  .intro,
  .loading-stage,
  .capri-stage { min-height: 100svh; }
  .loading-orbit-outer { width: 92vw; }
  .loading-orbit-inner { width: 72vw; }
  .loader-art-wrap { width: min(265px, 60vw); transform: translateY(-22px); }
  .loading-olive-left { left: calc(50% - 210px); top: calc(50% + 110px); }
  .loading-olive-right { right: calc(50% - 218px); top: calc(50% - 82px); }
  .capri-word { font-size: clamp(4rem, 17vw, 7rem); }

  .location-gateway {
    display: grid;
    min-height: 100svh;
    opacity: 1;
    filter: none;
    transform: none;
  }
  .gateway-divider,
  .gateway-hint { display: none; }
  .gateway-brand {
    position: fixed;
    top: 14px;
    width: 122px;
  }
  .gateway-brand img { width: 72px; height: 56px; }
  .gateway-brand span { display: none; }

  .location-panel,
  .location-panel-containers,
  .location-panel-woodkirk {
    position: relative;
    inset: auto;
    width: 100% !important;
    min-height: 58svh;
    transform: none !important;
  }
  .location-panel:first-of-type { padding-top: 58px; }
  .location-image,
  .location-panel.is-active .location-image,
  .location-panel.is-inactive .location-image {
    transform: scale(1.05);
    filter: saturate(.88) contrast(1.04) brightness(.92);
  }
  .location-content,
  .location-panel-woodkirk .location-content {
    width: calc(100% - 48px);
    margin: 0 24px 45px;
    transform: none;
  }
  .location-content h1,
  .location-content h2 { font-size: clamp(3.1rem, 13vw, 5.5rem); }
}

@media (max-width: 640px) {
  .loader-art-wrap { width: min(240px, 68vw); }
  .loading-olive { width: 86px; height: 86px; }
  .loading-olive-left { left: calc(50% - 148px); top: calc(50% + 96px); }
  .loading-olive-right { right: calc(50% - 156px); top: calc(50% - 76px); }
  .loader-progress { width: min(270px, 74vw); }
  .loader-caption { font-size: .58rem; letter-spacing: .18em; }
  .capri-pane { width: 56%; }
  .capri-word { font-size: clamp(3.2rem, 18vw, 5.6rem); }
  .capri-word span { letter-spacing: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  body { overflow: auto; }
  .intro { display: none; }
  .location-gateway { opacity: 1; filter: none; transform: none; }
}
