:root {
  --maroon: #4b0503;
  --maroon-deep: #2d0201;
  --gold: #d0a15a;
  --gold-soft: #ad8041;
  --gold-pale: #efd9b5;
  --ivory: #fff8ed;
  --serif: "Cormorant Garamond", Georgia, serif;
  --caps: "Marcellus", "Cormorant Garamond", serif;
  --numbers: "Sora", "Helvetica Neue", Arial, sans-serif;
  --heading-page: clamp(3rem, 6.4vw, 6.4rem);
  --heading-section: clamp(2.4rem, 4.3vw, 4.6rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  background: #120806;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(rgba(55, 8, 4, 0.86), rgba(55, 8, 4, 0));
}

.nav-mark,
.nav-links a,
.grand-hero-cta,
.eyebrow,
.begin a {
  font-family: var(--caps);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-mark {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
}

.nav-mark img {
  display: block;
  width: clamp(3.84rem, 6vw, 5.52rem);
  height: auto;
  filter: drop-shadow(0 0.15rem 0.7rem rgba(66, 10, 4, 0.28));
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  color: var(--gold-pale);
  font-size: 0.76rem;
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.scene-tuning-panel {
  position: fixed;
  z-index: 30;
  top: 4.3rem;
  right: clamp(0.8rem, 2vw, 1.4rem);
  display: grid;
  gap: 0.25rem;
  width: min(25rem, calc(100vw - 1.6rem));
  border: 1px solid rgba(199, 160, 97, 0.42);
  border-radius: 8px;
  background: rgba(18, 8, 6, 0.82);
  color: var(--gold-pale);
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  padding: 0.8rem 0.9rem;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.scene-tuning-panel strong {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scene-tuning-panel code {
  color: var(--ivory);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0;
  white-space: normal;
}

.hero-sequence {
  position: relative;
  height: 520svh;
  background: #120806;
}

.sequence-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.hero-sequence .sequence-panel {
  position: absolute;
  inset: 0;
  min-height: 100svh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.08s linear;
}

.hero-sequence .sequence-panel.is-active {
  pointer-events: auto;
}

.story-screen {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.story-screen canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.cheetah-intro {
  background:
    radial-gradient(circle at 80% 45%, rgba(145, 96, 52, 0.26), transparent 32%),
    radial-gradient(circle at 52% 70%, rgba(96, 54, 31, 0.32), transparent 34%),
    linear-gradient(115deg, #120806 0%, #1a0d0a 48%, #2b1711 100%);
  border: 0.55rem solid #f5efe4;
}

.cheetah-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 7, 5, 0.24), rgba(14, 7, 5, 0) 52%),
    radial-gradient(circle at 78% 40%, transparent 0 22%, rgba(14, 7, 5, 0.18) 58%, rgba(14, 7, 5, 0.58) 100%);
}

.cheetah-intro-copy {
  position: relative;
  z-index: 2;
  width: min(43rem, 78vw);
  padding: clamp(7rem, 15vh, 10rem) 0 0 clamp(2.4rem, 8vw, 6rem);
}

.quiet-line {
  color: rgba(255, 253, 248, 0.74);
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.2;
}

.cheetah-intro-copy ul {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.1rem;
  list-style: none;
}

.cheetah-intro-copy li {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.cheetah-intro-copy li::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.72rem;
  border: 1px solid color-mix(in srgb, var(--gold) 68%, #2b1711);
  transform: translateY(-0.12em) rotate(45deg);
}

.chosen-line {
  margin-top: clamp(6rem, 18vh, 10rem);
  color: rgba(255, 253, 248, 0.76);
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.chosen-line span {
  display: block;
  margin-top: -0.15rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-style: italic;
  line-height: 0.9;
  text-transform: lowercase;
}

.intro-logo {
  position: absolute;
  z-index: 2;
  left: clamp(2.4rem, 8vw, 6rem);
  bottom: clamp(2rem, 6vh, 4rem);
  width: clamp(92px, 11vw, 155px);
  filter: sepia(0.2) saturate(1.2);
}

.run-hero {
  background:
    radial-gradient(circle at 55% 36%, rgba(105, 18, 16, 0.14), transparent 34%),
    radial-gradient(circle at 50% 0%, rgba(46, 90, 158, 0.55), transparent 55%),
    linear-gradient(to bottom, rgba(22, 44, 84, 0.85), rgba(8, 16, 34, 0.9)),
    #0b1730;
}

.run-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(94, 170, 210, 0.32), transparent 38%),
    linear-gradient(to top, rgba(2, 4, 10, 0.7), transparent 48%);
  pointer-events: none;
}

.run-atmosphere {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(92, 18, 15, 0.38), transparent 44%),
    url('../assets/maroon-noise.svg?v=2') center / 180px 180px repeat;
  mix-blend-mode: soft-light;
  opacity: 0;
  pointer-events: none;
}

.mwp-mask-overlay {
  position: absolute;
  z-index: 4;
  inset: 0;
  background: #000;
  -webkit-mask-image:
    linear-gradient(#fff, #fff),
    url('../assets/mwp-mask-logo.png?v=1');
  -webkit-mask-position: center, center;
  -webkit-mask-size: 100% 100%, clamp(15rem, 25vw, 30rem) auto;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: xor;
  mask-image:
    linear-gradient(#fff, #fff),
    url('../assets/mwp-mask-logo.png?v=1');
  mask-position: center, center;
  mask-size: 100% 100%, clamp(15rem, 25vw, 30rem) auto;
  mask-repeat: no-repeat, no-repeat;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transform: scale(3.6);
}

.mwp-mask-backdrop {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.scroll-to-continue {
  position: absolute;
  z-index: 5;
  bottom: clamp(1.2rem, 3.5vh, 2.3rem);
  left: 50%;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
  font-size: clamp(0.68rem, 0.9vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.3rem);
}

body.experience-started .scroll-to-continue {
  animation: scroll-cue-pulse 2.1s ease-in-out infinite;
}

.run-hero.is-abyss-message-visible .scroll-to-continue {
  animation: none;
  opacity: 0;
}

@keyframes scroll-cue-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, 0.3rem);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.experience-gate {
  position: absolute;
  z-index: 6;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 6rem 1.5rem 2.5rem;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(2, 7, 11, 0.2) 0%, rgba(2, 7, 11, 0.54) 54%, rgba(2, 7, 11, 0.88) 100%),
    linear-gradient(90deg, rgba(2, 7, 11, 0.72), rgba(2, 7, 11, 0.3) 50%, rgba(2, 7, 11, 0.56));
  color: var(--ivory);
  text-align: center;
  backdrop-filter: blur(2px) saturate(0.9);
  -webkit-backdrop-filter: blur(2px) saturate(0.9);
  transition: opacity 0.8s ease, visibility 0.8s step-end, backdrop-filter 0.8s ease;
}

/* Keep the world deliberately hushed until the visitor chooses to enter it. */
body:not(.experience-started) .run-hero > canvas {
  filter: brightness(0.72) saturate(0.78) blur(0.7px);
  transform: scale(1.015);
}

body:not(.experience-started) .run-atmosphere {
  opacity: 0.16;
}

body.experience-started .run-hero > canvas {
  transition: filter 1.1s ease, transform 1.1s ease;
}

.experience-gate-kicker {
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-family: var(--caps);
  font-size: 0.68rem;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.experience-gate h1 {
  font-size: var(--heading-page);
  font-weight: 400;
  line-height: 0.84;
  text-shadow: 0 0.25rem 2rem rgba(0, 0, 0, 0.55);
}

.experience-gate > p:not(.experience-gate-kicker) {
  margin-top: 1.25rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-style: italic;
}

.experience-gate-button {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
  border: 1px solid rgba(242, 230, 197, 0.68);
  border-radius: 999px;
  background: rgba(5, 17, 23, 0.48);
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.38);
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding: 1rem 1.35rem 1rem 1.65rem;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.experience-gate-button span:last-child {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 0.6;
}

.experience-gate-button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #071116;
  transform: translateY(-2px);
}

.experience-gate-button:hover span:last-child {
  color: #071116;
}

body.experience-started .experience-gate {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.run-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1.4rem, 5vw, 4.5rem);
  bottom: clamp(2.8rem, 9vh, 6rem);
  max-width: min(35rem, 84vw);
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(20, 8, 4, 0.52);
}

.run-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.run-scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;
  left: 50%;
  color: rgba(255, 253, 248, 0.58);
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

#cheetah-run-canvas {
  filter: drop-shadow(0 0 12px rgba(74, 174, 210, 0.18));
}

.run-copy p:last-child {
  margin-top: 1rem;
  max-width: 28rem;
  color: rgba(255, 253, 248, 0.78);
  font-style: italic;
}

/* ── Destination story: one continuous chase, punctuated by memories ── */
.destination-story {
  height: 1200svh;
}

.destination-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.destination-story .run-hero {
  position: absolute;
  inset: 0;
  min-height: 100svh;
}

.destination-story .run-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(24, 3, 3, 0.5), transparent 58%), linear-gradient(to top, rgba(24, 3, 3, 0.28), transparent 42%);
}

.destination-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(1.4rem, 6vw, 6rem);
  width: min(31rem, 42vw);
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(2, 7, 11, 0.7);
  transform: translateY(-50%);
}

.destination-copy .eyebrow {
  margin-bottom: 1rem;
}

.destination-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
}

.destination-copy p:last-child {
  margin-top: 1.2rem;
  color: rgba(255, 253, 248, 0.78);
  font-style: italic;
}

.destination-scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 1.25rem;
  left: clamp(1.4rem, 6vw, 6rem);
  color: rgba(255, 253, 248, 0.58);
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.destination-cards {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.destination-polaroid {
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 10vw, 10rem);
  display: grid;
  width: min(25rem, 34vw);
  padding: 0.72rem 0.72rem 1.05rem;
  border: 1px solid rgba(109, 75, 40, 0.32);
  background: #f5eee0;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.48);
  color: #24170d;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(42vw, -50%, 0) rotate(8deg) scale(0.9);
  transition: opacity 0.42s ease, transform 0.7s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}

.destination-polaroid.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) rotate(var(--tilt, -3deg)) scale(1);
}

.destination-polaroid.is-selected,
.destination-polaroid:hover,
.destination-polaroid:focus-visible {
  box-shadow: 0 1.9rem 4.5rem rgba(0, 0, 0, 0.62), 0 0 0 3px rgba(199, 160, 97, 0.68);
  outline: none;
}

.destination-polaroid:nth-child(2) { --tilt: 3deg; }
.destination-polaroid:nth-child(3) { --tilt: -5deg; }

.polaroid-image {
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #c1b095;
}

.polaroid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.polaroid-caption {
  display: grid;
  gap: 0.1rem;
  padding: 0.8rem 0.3rem 0.05rem;
  text-align: left;
}

.polaroid-caption strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
}

.polaroid-caption small {
  font-family: var(--caps);
  font-size: 0.57rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.destination-status {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 10vw, 10rem);
  bottom: clamp(1.5rem, 6vh, 4rem);
  width: min(25rem, 34vw);
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--caps);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.destination-polaroids {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.three-destination-polaroids .destination-polaroids {
  display: none;
}

.destination-polaroids .destination-polaroid {
  top: 26%;
  right: auto;
  width: min(24rem, 32vw);
  padding: 0.55rem 0.55rem 1.35rem;
}

.destination-polaroids .destination-polaroid.is-left {
  left: clamp(1.4rem, 7vw, 7rem);
  transform: translate3d(-38vw, -50%, 0) rotate(-7deg) scale(0.9);
}

.destination-polaroids .destination-polaroid.is-right {
  right: clamp(1.4rem, 8vw, 8rem);
  transform: translate3d(38vw, -50%, 0) rotate(7deg) scale(0.9);
}

.destination-polaroids .destination-polaroid.is-visible {
  pointer-events: auto;
}

.destination-polaroids .destination-polaroid.is-left.is-visible {
  transform: translate3d(0, -50%, 0) rotate(-3deg) scale(1);
}

.destination-polaroids .destination-polaroid.is-right.is-visible {
  transform: translate3d(0, -50%, 0) rotate(3deg) scale(1);
}

.destination-polaroids .destination-polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: none;
}

.destination-polaroids .polaroid-caption {
  display: block;
  padding: 0.85rem 0.15rem 0;
  color: rgba(36, 23, 13, 0.88);
  font-family: var(--caps);
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.grand-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--maroon-deep) url("../assets/grand-hero.png") center / cover no-repeat;
}

.grand-hero canvas,
.grand-hero-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.grand-hero canvas {
  cursor: grab;
  touch-action: none;
}

.grand-hero canvas:active {
  cursor: grabbing;
}

.grand-hero-fallback {
  object-fit: cover;
}

.grand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(30, 5, 2, 0.28), rgba(30, 5, 2, 0) 24%),
    linear-gradient(to top, rgba(30, 5, 2, 0.58), rgba(30, 5, 2, 0) 38%);
}

.grand-hero-logo {
  position: absolute;
  z-index: 2;
  top: clamp(3.8rem, 8vh, 5rem);
  left: 50%;
  width: clamp(112px, 10vw, 154px);
  filter: drop-shadow(0 1px 12px rgba(66, 10, 4, 0.42));
  transform: translateX(-50%);
}

.grand-hero-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(1.6rem, 5vh, 3.3rem);
  left: 50%;
  width: min(60rem, 92vw);
  color: var(--ivory);
  text-align: center;
  text-shadow: 0 1px 18px rgba(10, 15, 30, 0.72), 0 1px 4px rgba(10, 15, 30, 0.58);
  transform: translateX(-50%);
}

.grand-hero-copy h1 {
  font-weight: 500;
  font-size: clamp(1.55rem, 3.3vw, 2.7rem);
  line-height: 1.14;
}

.grand-hero-copy p {
  margin: 0.75rem auto 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-style: italic;
  opacity: 0.9;
}

.grand-hero-cta {
  display: block;
  width: fit-content;
  margin: 1.35rem auto 0;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold-soft) 90%, black);
  box-shadow: 0 4px 24px rgba(10, 15, 30, 0.35);
  color: var(--ivory);
  font-size: 0.78rem;
  padding: 0.85rem 2.4rem;
  text-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.grand-hero-cta:hover {
  background: var(--gold);
  color: var(--maroon-deep);
}

.intro,
.begin {
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 4rem);
  text-align: center;
}

.intro {
  max-width: 56rem;
  margin: 0 auto;
}

.begin {
  background: var(--maroon-deep);
}

.eyebrow {
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 0.72rem;
}

.intro h2,
.begin h2 {
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.15;
}

.intro p:last-child {
  max-width: 42rem;
  margin: 1.6rem auto 0;
  opacity: 0.86;
}

.begin a {
  display: inline-block;
  margin-top: 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  padding: 0.95rem 2.8rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.begin a:hover {
  background: var(--gold);
  color: var(--maroon-deep);
}

@media (max-width: 640px) {
  .nav {
    padding-inline: 1rem;
  }

  .nav-links {
    gap: clamp(0.55rem, 2.5vw, 0.9rem);
  }

  .nav-links a {
    font-size: clamp(0.52rem, 2.25vw, 0.66rem);
    letter-spacing: 0.12em;
  }

  .cheetah-intro {
    border-width: 0.35rem;
  }

  .cheetah-intro-copy {
    width: 94vw;
    padding: 6.5rem 1.25rem 0;
  }

  .chosen-line {
    margin-top: 4rem;
  }

  .grand-hero-copy h1 {
    font-size: 1.36rem;
  }

  .grand-hero-copy p {
    font-size: 1rem;
  }

  .grand-hero-cta {
    padding-inline: 1.85rem;
  }

  .destination-story {
    height: 1050svh;
  }

  .experience-gate {
    padding-top: 4rem;
  }

  .experience-gate h1 {
    font-size: var(--heading-page);
  }

  .destination-copy {
    top: 21%;
    left: 1.4rem;
    width: min(25rem, calc(100vw - 2.8rem));
    transform: none;
  }

  .destination-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .destination-polaroid {
    top: 59%;
    right: 50%;
    width: min(21rem, calc(100vw - 3rem));
    transform: translate3d(50vw, -50%, 0) rotate(8deg) scale(0.9);
  }

  .destination-polaroid.is-visible {
    transform: translate3d(50%, -50%, 0) rotate(var(--tilt, -3deg)) scale(1);
  }

  .destination-status {
    right: 50%;
    bottom: 1.4rem;
    width: calc(100vw - 3rem);
    transform: translateX(50%);
  }
}
}

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

}

@media (max-width: 640px) {
  .destination-polaroids .destination-polaroid {
    top: 25%;
    width: min(21rem, calc(100vw - 3rem));
  }

  .destination-polaroids .destination-polaroid.is-left {
    left: 1.25rem;
    right: auto;
  }

  .destination-polaroids .destination-polaroid.is-right {
    right: 1.25rem;
  }
}

/* Closing chapters — numbers, recognition and contact */
.site-finale {
  position: relative;
  z-index: 7;
  padding-top: clamp(3rem, 6vw, 6rem);
  background: #160302;
  color: var(--ivory);
}

.site-footer {
  padding-inline: clamp(1.5rem, 6vw, 6.5rem);
}

.final-metrics {
  position: absolute;
  z-index: 6;
  right: clamp(1.2rem, 5vw, 5rem);
  bottom: clamp(1rem, 2.5vh, 2rem);
  left: clamp(1.2rem, 5vw, 5rem);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.25rem);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.final-metrics::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4rem -5vw -2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.74));
}

.final-metrics.is-visible {
  opacity: 1;
  transform: none;
}

.final-tagline {
  position: relative;
  /* Centre the line in the breathing room between the mark and the numbers. */
  transform: translateY(clamp(-3rem, -5vh, -2.25rem));
  width: min(48rem, 100%);
  margin: 0 auto clamp(0.85rem, 1.8vh, 1.5rem);
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 1.95rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.85);
}

.section-kicker {
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--caps);
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.media-heading h2 {
  max-width: 52rem;
  font-size: var(--heading-section);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 82rem;
  margin: 0 auto;
  border-top: 1px solid rgba(208, 161, 90, 0.35);
  border-bottom: 1px solid rgba(208, 161, 90, 0.35);
}

.number-stat {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.7rem) clamp(0.8rem, 2.2vw, 2.2rem);
  text-align: center;
}

.number-stat + .number-stat {
  border-left: 1px solid rgba(208, 161, 90, 0.24);
}

.number-stat strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--gold-pale);
  font-family: var(--numbers);
  font-size: clamp(3.1rem, 5vw, 5.8rem);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.number-stat strong span + span {
  margin-left: 0.16em;
  color: var(--gold);
  font-size: 0.32em;
  font-weight: 400;
  letter-spacing: 0;
}

.number-stat p {
  margin-top: 0.8rem;
  color: rgba(255, 248, 237, 0.7);
  font-family: var(--caps);
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-section {
  padding-block: clamp(1rem, 2vw, 1.8rem);
  background: #f1e9dc;
  color: #2d0b07;
  overflow: hidden;
}

.media-section .section-kicker {
  color: #9e6b2f;
}

.media-heading h2 {
  font-size: var(--heading-section);
}

.media-marquee {
  width: 100%;
  margin: 0;
  padding-block: clamp(1.4rem, 2.5vw, 2.2rem);
  border-top: 1px solid rgba(74, 31, 20, 0.24);
  border-bottom: 1px solid rgba(74, 31, 20, 0.24);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.media-marquee-track {
  display: flex;
  width: max-content;
  animation: media-marquee 32s linear infinite;
  will-change: transform;
}

.media-marquee:hover .media-marquee-track {
  animation-play-state: paused;
}

.media-logo-group {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 7vw, 8rem);
  padding-right: clamp(4rem, 7vw, 8rem);
}

.media-logo {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  min-width: clamp(10rem, 15vw, 15rem);
  color: #32100b;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.media-logo b {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 600;
}

.media-logo small {
  font-family: Arial, sans-serif;
  font-size: clamp(0.55rem, 0.7vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-logo-wow,
.media-logo-panache,
.media-logo-eemax {
  flex-direction: column;
  gap: 0.35rem;
}

.media-logo-wow b,
.media-logo-icwf b,
.media-logo-eemax b {
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.media-logo-panache b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.media-logo-traveller b,
.media-logo-weddingsutra b {
  font-family: var(--serif);
  font-weight: 500;
}

.media-logo-eventfaqs b,
.media-logo-eventfaqs small {
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.media-logo-eventfaqs small {
  align-self: flex-end;
  margin: 0 0 0.18em 0.1em;
  letter-spacing: 0;
  text-transform: lowercase;
}

.media-logo-ht b {
  font-family: Georgia, serif;
  font-size: clamp(1.65rem, 2.7vw, 2.8rem);
  font-weight: 700;
}

@keyframes media-marquee {
  to {
    transform: translateX(-50%);
  }
}

.testimonials-section {
  padding: clamp(3.75rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6.5rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(150, 55, 27, .18), transparent 30rem),
    #160302;
  color: var(--ivory);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 68rem;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.testimonials-heading h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.testimonials-carousel {
  position: relative;
  max-width: 68rem;
  margin: 0 auto;
}

.testimonials-viewport {
  overflow: hidden;
  border: 1px solid rgba(208, 161, 90, .3);
}

.testimonials-track {
  display: flex;
  transition: transform .75s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.testimonial-slide {
  display: flex;
  flex: 0 0 100%;
  min-width: 0;
  min-height: clamp(18rem, 36vh, 24rem);
  margin: 0;
}

.testimonial-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  width: 100%;
  padding: clamp(2.5rem, 4.5vw, 4rem) clamp(2.5rem, 5.5vw, 5rem);
  background: rgba(39, 6, 4, .72);
}

.testimonial-slide blockquote {
  margin: 0;
  max-width: 58rem;
}

.testimonial-slide blockquote::before {
  content: "“";
  display: block;
  height: .55em;
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  line-height: .75;
}

.testimonial-slide blockquote p {
  margin: 0;
  color: rgba(255, 248, 237, .88);
  font-size: clamp(1.08rem, 1.32vw, 1.28rem);
  line-height: 1.58;
}

.testimonial-slide blockquote p + p {
  margin-top: .95rem;
}

.testimonial-slide figcaption {
  color: var(--gold-pale);
  font-family: var(--caps);
  font-size: clamp(.82rem, .92vw, .95rem);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.testimonial-slide figcaption span {
  margin-right: .5rem;
  color: rgba(255, 248, 237, .46);
  font-size: .78em;
}

.testimonials-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial-chevron {
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-pale);
  font-family: Arial, sans-serif;
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  opacity: .8;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

.testimonial-chevron-prev {
  left: -3.75rem;
}

.testimonial-chevron-next {
  right: -3.75rem;
}

.testimonial-chevron:hover,
.testimonial-chevron:focus-visible {
  color: var(--ivory);
  opacity: 1;
  outline: none;
}

.testimonial-chevron-prev:hover,
.testimonial-chevron-prev:focus-visible {
  transform: translate(-.18rem, -50%);
}

.testimonial-chevron-next:hover,
.testimonial-chevron-next:focus-visible {
  transform: translate(.18rem, -50%);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(15rem, 1.5fr) repeat(3, minmax(9rem, 0.75fr));
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: 2rem;
  background: #0d0201;
}

.footer-intro img {
  width: clamp(5rem, 7vw, 7rem);
}

.footer-intro p {
  margin-top: 1.8rem;
  color: rgba(255, 248, 237, 0.72);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-style: italic;
  line-height: 1.3;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 248, 237, 0.78);
  font-size: clamp(1.18rem, 1.35vw, 1.4rem);
  font-style: normal;
  line-height: 1.5;
}

.footer-column address {
  font-size: inherit;
  font-style: normal;
  line-height: 1.5;
}

.footer-column h2 {
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-family: var(--caps);
  font-size: clamp(0.76rem, 0.88vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: clamp(1.2rem, 1.38vw, 1.45rem);
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer a[href^="tel:"] {
  font-family: var(--numbers);
  font-size: clamp(0.875rem, 1.01vw, 1.075rem);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.footer-column a:hover {
  color: var(--ivory);
  text-decoration-color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.footer-column .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(208, 161, 90, 0.4);
  color: var(--gold-pale);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-column .footer-socials a:hover,
.footer-column .footer-socials a:focus-visible {
  border-color: var(--gold);
  background: rgba(208, 161, 90, 0.1);
  color: var(--ivory);
}

.footer-socials svg {
  width: 1.35rem;
  height: 1.35rem;
}

.footer-column .footer-map-link {
  margin-top: 0.5rem;
  color: var(--gold-pale);
  font-family: var(--caps);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(208, 161, 90, 0.2);
  color: rgba(255, 248, 237, 0.56);
  font-family: var(--caps);
  font-size: clamp(0.8rem, 0.9vw, 0.88rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom a {
  text-decoration: none;
}

/* Contact */
.contact-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(146, 65, 30, 0.22), transparent 34rem),
    linear-gradient(145deg, #240706, #100201 70%);
  color: var(--ivory);
}

.contact-main {
  padding: clamp(9rem, 14vw, 12rem) clamp(1.5rem, 6vw, 6.5rem) 0;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
  max-width: 88rem;
  margin: 0 auto;
}

.contact-heading h1 {
  font-size: var(--heading-page);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.contact-heading h1 em {
  color: var(--gold-pale);
  font-weight: 400;
}

.contact-heading > .contact-intro {
  max-width: 30rem;
  margin-top: 4rem;
  color: rgba(255, 248, 237, 0.7);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(208, 161, 90, 0.38);
  color: var(--gold-pale);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  border-color: var(--gold);
  background: rgba(208, 161, 90, 0.1);
  color: var(--ivory);
}

.contact-socials svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.6rem;
  width: 100%;
  max-width: 44rem;
  justify-self: end;
  padding: clamp(1.6rem, 3vw, 2.8rem);
  border: 1px solid rgba(208, 161, 90, 0.38);
  background: rgba(10, 1, 1, 0.35);
  backdrop-filter: blur(12px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--gold);
  font-family: var(--caps);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 0;
  padding: 0.6rem 0 0.85rem;
  background: transparent;
  color: var(--ivory);
  font: 1.38rem/1.4 var(--serif);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field input::placeholder {
  color: rgba(255, 248, 237, 0.35);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-submit button {
  flex: none;
  border: 1px solid var(--gold);
  padding: 1rem 1.35rem;
  background: var(--gold);
  color: #210706;
  font-family: var(--caps);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.form-submit button:hover,
.form-submit button:focus-visible {
  background: transparent;
  color: var(--gold-pale);
}

.form-submit p {
  color: rgba(255, 248, 237, 0.88);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.45;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 88rem;
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  border-top: 1px solid rgba(208, 161, 90, 0.35);
  border-bottom: 1px solid rgba(208, 161, 90, 0.35);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: clamp(1.8rem, 4vw, 3.5rem) clamp(1rem, 3vw, 3rem);
  font-style: normal;
  text-align: center;
}

.contact-detail + .contact-detail {
  border-left: 1px solid rgba(208, 161, 90, 0.25);
}

.contact-detail > span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--caps);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-detail > a:not(.contact-map-link) {
  display: block;
  font-size: clamp(1.2rem, 1.38vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.contact-detail > a[href^="tel:"] {
  font-family: var(--numbers);
  font-size: clamp(0.875rem, 1.01vw, 1.075rem);
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.025em;
}

.contact-detail > a:not(.contact-map-link) + a {
  margin-top: 0.55rem;
}

.contact-address p {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.35vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.35rem;
  border: 1px solid rgba(208, 161, 90, 0.4);
  padding: 0.85rem 1.15rem;
  color: var(--gold-pale);
  font-family: var(--caps);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-map-link:hover,
.contact-map-link:focus-visible {
  border-color: var(--gold);
  background: rgba(208, 161, 90, 0.1);
  color: var(--ivory);
}

.contact-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.2rem clamp(1.5rem, 6vw, 6.5rem);
  border-top: 1px solid rgba(208, 161, 90, 0.25);
  color: rgba(255, 248, 237, 0.46);
  font-family: var(--caps);
  font-size: 0.84rem;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.contact-footer a {
  text-decoration: none;
}

@media (max-width: 800px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-detail,
  .contact-detail:first-child {
    padding: 2rem 0;
  }

  .contact-detail + .contact-detail {
    border-top: 1px solid rgba(208, 161, 90, 0.25);
    border-left: 0;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-footer {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .mwp-mask-overlay {
    -webkit-mask-size: 100% 100%, clamp(13rem, 62vw, 19rem) auto;
    mask-size: 100% 100%, clamp(13rem, 62vw, 19rem) auto;
  }
}

/* MWP — about page */
.mwp-page {
  background: #160302;
}

.mwp-page .nav {
  background: linear-gradient(rgba(22, 3, 2, 0.96), rgba(22, 3, 2, 0));
}

.mwp-about-main {
  overflow: hidden;
}

.mwp-about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 82svh;
  overflow: hidden;
  padding: clamp(9rem, 18vh, 13rem) clamp(1.5rem, 7vw, 7rem) clamp(5rem, 10vh, 8rem);
  background: #160302;
}

.mwp-about-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.02);
  filter: saturate(0.95) brightness(0.84) contrast(1.03);
  pointer-events: none;
}

.mwp-about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 2, 2, 0.76) 0%, rgba(16, 2, 2, 0.38) 48%, rgba(16, 2, 2, 0.12) 100%),
    linear-gradient(0deg, rgba(22, 3, 2, 0.82) 0%, rgba(22, 3, 2, 0.2) 48%, transparent 72%),
    radial-gradient(circle at 75% 28%, rgba(186, 126, 62, 0.12), transparent 42%);
  pointer-events: none;
}

.mwp-about-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: clamp(9rem, 18vh, 13rem) clamp(1.5rem, 7vw, 7rem) clamp(5rem, 10vh, 8rem);
}

.mwp-about-hero h1 {
  position: absolute;
  top: clamp(7.5rem, 15vh, 10rem);
  right: clamp(1.5rem, 7vw, 7rem);
  max-width: 70rem;
  color: var(--ivory);
  font-size: var(--heading-page);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.78;
  text-align: right;
  text-transform: uppercase;
}

.mwp-about-hero-copy {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.mwp-about-hero-copy > p:last-child {
  max-width: 34rem;
  color: rgba(255, 248, 237, 0.72);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
}

.mwp-chapter {
  display: grid;
  grid-template-columns: minmax(13rem, 0.55fr) minmax(20rem, 1.15fr);
  gap: clamp(3rem, 10vw, 11rem);
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 7vw, 7rem);
  border-top: 1px solid rgba(208, 161, 90, 0.2);
}

.mwp-chapter:nth-child(even) {
  background: #f1e9dc;
  color: #2d0b07;
}

.mwp-chapter-heading {
  position: sticky;
  top: 8rem;
  align-self: start;
  text-align: center;
}

/* Keep the opening chapter title centred against its full supporting copy. */
#about-mwp .mwp-chapter-heading {
  position: static;
  align-self: center;
}

.mwp-chapter h2 {
  font-size: var(--heading-section);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  text-align: center;
}

.mwp-chapter-copy {
  max-width: 47rem;
  color: rgba(255, 248, 237, 0.72);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.65;
}

.mwp-chapter:nth-child(even) .mwp-chapter-copy {
  color: rgba(45, 11, 7, 0.76);
}

.mwp-chapter-copy p + p {
  margin-top: 1.8rem;
}

.mwp-team-roster {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 2.5rem 1.5rem;
  align-self: start;
}

.mwp-team-chapter {
  grid-template-columns: minmax(17rem, 0.58fr) minmax(36rem, 1.42fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.mwp-team-intro .mwp-chapter-heading {
  position: static;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.mwp-team-intro .mwp-chapter-copy {
  max-width: 34rem;
  font-size: clamp(1.08rem, 1.35vw, 1.4rem);
  line-height: 1.55;
}

.mwp-team-intro .mwp-chapter-copy p + p {
  margin-top: 1.35rem;
}

.mwp-team-member {
  grid-column: span 2;
  padding: 0;
  border-bottom: none;
  text-align: center;
}

.mwp-team-member:nth-child(5):nth-last-child(3) {
  grid-column: 2 / span 2;
}

.mwp-team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(208, 161, 90, 0.2), transparent 48%),
    linear-gradient(155deg, #3b0b07, #170302);
}

.mwp-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.mwp-team-member h3 {
  color: var(--gold-pale);
  font-size: clamp(0.92rem, 1.1vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.mwp-team-member p,
.mwp-team-member p + p {
  margin-top: 0.4rem;
  color: rgba(255, 248, 237, 0.56);
  font-family: var(--caps);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  text-align: center;
}

.mwp-chapter:nth-child(even) .mwp-team-member h3 {
  color: #5b2418;
}

.mwp-chapter:nth-child(even) .mwp-team-member p {
  color: rgba(45, 11, 7, 0.62);
}

.mwp-founder-chapter {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(20rem, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.mwp-founder-copy {
  align-self: center;
}

.mwp-founder-copy .mwp-founder-heading,
.mwp-founder-copy .mwp-founder-heading h2 {
  text-align: left;
}

.mwp-founder-heading {
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  text-align: center;
}

.mwp-founder-heading h2 {
  font-size: var(--heading-section);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
}

.mwp-chapter:nth-child(even) .mwp-founder-heading h2 {
  color: #2d0b07;
}

.mwp-founder-portrait {
  align-self: stretch;
  min-width: 0;
  text-align: center;
}

.mwp-founder-portrait-frame {
  display: flex;
  min-height: 32rem;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(208, 161, 90, 0.48);
  background:
    radial-gradient(circle at 50% 38%, rgba(208, 161, 90, 0.2), transparent 46%),
    linear-gradient(180deg, transparent 56%, rgba(87, 15, 11, 0.34));
}

.mwp-founder-portrait img {
  display: block;
  width: min(100%, 28rem);
  max-height: 40rem;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 1.4rem 2.2rem rgba(0, 0, 0, 0.34));
}

.mwp-founder-meta {
  margin-top: 1.25rem;
  text-align: center;
}

.mwp-founder-meta h3 {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.mwp-founder-meta p {
  margin-top: 0.4rem;
  color: rgba(255, 248, 237, 0.56);
  font-family: var(--caps);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.mwp-chapter:nth-child(even) .mwp-founder-meta h3 {
  color: #5b2418;
}

.mwp-chapter:nth-child(even) .mwp-founder-meta p {
  color: rgba(45, 11, 7, 0.62);
}

.mwp-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.mwp-principles span {
  padding-top: 1rem;
  border-top: 1px solid rgba(208, 161, 90, 0.35);
  color: var(--gold);
  font-family: var(--caps);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mwp-page .site-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .final-metrics {
    right: 1rem;
    bottom: 0.75rem;
    left: 1rem;
  }

  .final-tagline {
    margin-bottom: 0.75rem;
    font-size: clamp(1.05rem, 4.4vw, 1.35rem);
  }

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

  .number-stat:first-child {
    padding-left: 1rem;
  }

  .number-stat:nth-child(3) {
    border-left: 0;
  }

  .number-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(208, 161, 90, 0.24);
  }

  .number-stat strong {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .number-stat p {
    margin-top: 0.55rem;
    font-size: 0.62rem;
  }

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

  .testimonials-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-slide {
    min-height: auto;
  }

  .testimonial-slide-copy {
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3.5vw, 2rem);
  }

  .testimonial-chevron-prev {
    left: -2.75rem;
  }

  .testimonial-chevron-next {
    right: -2.75rem;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .mwp-about-hero-copy,
  .mwp-chapter {
    grid-template-columns: 1fr;
  }

  .mwp-team-intro .mwp-chapter-copy {
    max-width: 47rem;
  }

  .mwp-founder-portrait {
    min-height: 28rem;
  }

  .mwp-about-hero-copy {
    gap: 2.5rem;
  }

  .mwp-chapter-heading {
    position: static;
  }
}

@media (max-width: 540px) {
  .mwp-team-roster {
    grid-template-columns: 1fr;
  }

  .mwp-team-member,
  .mwp-team-member:nth-child(5):nth-last-child(3) {
    grid-column: auto;
  }

  .media-logo-group {
    gap: 3.25rem;
    padding-right: 3.25rem;
  }

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

  .testimonials-section {
    padding-inline: 1rem;
  }

  .testimonial-slide-copy {
    padding: 1.75rem 1.25rem 2rem;
  }

  .testimonial-slide blockquote p {
    font-size: 1.04rem;
  }

  .testimonial-chevron {
    top: 50%;
    width: 2rem;
    color: var(--ivory);
    font-size: 2.5rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
  }

  .testimonial-chevron-prev {
    left: .15rem;
  }

  .testimonial-chevron-next {
    right: .15rem;
  }

  .footer-intro,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mwp-principles {
    grid-template-columns: 1fr;
  }
}

/* Work gallery — scroll-driven radial carousel */
.work-gallery {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 30%, #3a0a06 0%, #1c0403 55%, #0c0201 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.work-gallery.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.work-gallery-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(208, 161, 90, 0.5);
  border-radius: 50%;
  background: rgba(18, 8, 6, 0.5);
  color: var(--gold-pale);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.work-gallery-close:hover,
.work-gallery-close:focus-visible {
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.06);
}

.work-gallery-stage {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  touch-action: none;
  cursor: grab;
}

.work-gallery-stage:active {
  cursor: grabbing;
}

.work-gallery-ring {
  position: relative;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
  will-change: transform;
}

.work-gallery-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(150px, 20vw, 240px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(208, 161, 90, 0.25);
  will-change: transform, filter, opacity;
}

.work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.work-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(208, 161, 90, 0.4);
  border-radius: 50%;
  background: rgba(18, 8, 6, 0.45);
  color: var(--gold-pale);
  font-size: 1.2rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.work-gallery-nav:hover,
.work-gallery-nav:focus-visible {
  color: #fff;
  border-color: var(--gold);
}

.work-gallery-prev {
  left: clamp(0.5rem, 3vw, 2rem);
}

.work-gallery-next {
  right: clamp(0.5rem, 3vw, 2rem);
}

.work-gallery-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem clamp(0.6rem, 2vh, 1.2rem);
  max-width: 34rem;
  min-height: 8rem;
}

.work-gallery-badge {
  font-family: var(--caps);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  min-height: 1.1rem;
  margin-bottom: 0.4rem;
}

.work-gallery-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--ivory);
}

.work-gallery-desc {
  margin-top: 0.35rem;
  font-size: 1rem;
  color: rgba(239, 217, 181, 0.78);
}

.work-gallery-hint {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(1rem, 3vh, 1.8rem);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 640px) {
  .work-gallery-item {
    width: clamp(130px, 42vw, 190px);
  }

  .work-gallery-nav {
    width: 2.3rem;
    height: 2.3rem;
  }
}
