@font-face {
  font-family: "KandyKay Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/dm-serif-display-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "KandyKay Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin-400-800.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --ink: #080204;
  --ink-soft: #15050b;
  --panel: #1b0710;
  --panel-strong: #2a0815;
  --scarlet: #c8072d;
  --scarlet-bright: #ff2457;
  --plum: #7c0a3b;
  --brass: #ff9bc8;
  --pearl: #fff7fb;
  --paper: #fff0f6;
  --muted: #f4bad0;
  --paper-muted: #5c2333;
  --line: rgba(255, 206, 225, 0.2);
  --shadow: rgba(0, 0, 0, 0.55);
  --candy-pink: #ff7fbd;
  --candy-hot: #ff2b69;
  --candy-red: #d80732;
  --sugar-white: #fffafd;
  --max: 1160px;
  --font-display: "KandyKay Display", Georgia, "Times New Roman", serif;
  --font-body: "KandyKay Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--pearl);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.splash-body {
  min-height: 100svh;
  overflow-x: hidden;
}

body::selection {
  background: var(--candy-hot);
  color: var(--sugar-white);
}

a {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-feature-settings: "kern" 1, "liga" 1;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 12vw, 8.8rem);
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 188, 216, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), rgba(255, 43, 105, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 2, 4, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand-initial {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(197, 155, 88, 0.65);
  background: rgba(159, 20, 41, 0.28);
  color: var(--pearl);
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-signature {
  width: clamp(132px, 15vw, 194px);
  height: auto;
  margin: -8px 0 -9px;
  filter:
    drop-shadow(0 0 8px rgba(255, 250, 245, 0.22))
    drop-shadow(0 0 18px rgba(213, 41, 63, 0.16));
}

.brand-line {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--pearl);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(247, 239, 228, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(90, 27, 42, 0.16), rgba(75, 29, 53, 0.1)),
    rgba(8, 6, 7, 0.26);
  color: var(--pearl);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(197, 155, 88, 0.52);
  background:
    linear-gradient(135deg, rgba(159, 20, 41, 0.2), rgba(75, 29, 53, 0.16)),
    rgba(8, 6, 7, 0.38);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: 84svh;
  padding: 134px clamp(20px, 5vw, 72px) 70px;
}

.splash-gateway {
  position: relative;
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  place-items: center;
  padding: clamp(28px, 4vw, 52px);
  isolation: isolate;
}

.splash-shade,
.splash-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.splash-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 127, 189, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(8, 2, 4, 0.22), rgba(8, 2, 4, 0.02) 48%, rgba(8, 2, 4, 0.24)),
    linear-gradient(0deg, rgba(8, 2, 4, 0.34) 0%, rgba(8, 2, 4, 0.01) 46%, rgba(8, 2, 4, 0.12) 100%);
}

.splash-scanlines {
  z-index: 0;
  opacity: 0.16;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0 1px,
      transparent 1px 14px,
      rgba(255, 43, 105, 0.12) 14px 16px,
      transparent 16px 30px
    );
  mix-blend-mode: soft-light;
}

.splash-content {
  position: absolute;
  right: 0;
  bottom: clamp(132px, 16vh, 176px);
  left: 0;
  z-index: 1;
  display: grid;
  width: min(760px, 92vw);
  row-gap: clamp(12px, 2vh, 20px);
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.splash-enter {
  min-height: 44px;
  padding: 11px 24px;
  border-color: rgba(255, 250, 253, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 12%, transparent 12% 24%, rgba(255, 255, 255, 0.12) 24% 36%, transparent 36%),
    linear-gradient(135deg, #2a020c 0%, #c8072d 52%, #ff7fbd 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 253, 0.34),
    0 0 24px rgba(255, 43, 105, 0.34),
    0 10px 26px rgba(0, 0, 0, 0.34);
  color: var(--sugar-white);
  font-size: clamp(0.86rem, 1.5vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
}

.splash-enter:hover,
.splash-enter:focus-visible {
  border-color: rgba(255, 250, 253, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0 12%, transparent 12% 24%, rgba(255, 255, 255, 0.18) 24% 36%, transparent 36%),
    linear-gradient(135deg, #35020f 0%, #ff2457 54%, #ff9bc8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 253, 0.42),
    0 0 30px rgba(255, 127, 189, 0.42),
    0 12px 28px rgba(0, 0, 0, 0.38);
}

.splash-signature {
  width: min(66vw, 760px);
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 12px rgba(255, 247, 251, 0.7))
    drop-shadow(0 0 34px rgba(255, 43, 105, 0.5))
    drop-shadow(0 0 68px rgba(255, 127, 189, 0.26));
  animation: splash-signature-glow 4.8s ease-in-out infinite;
}

.splash-signature-spacer {
  visibility: hidden;
  filter: none;
}

@keyframes splash-signature-glow {
  0%,
  100% {
    opacity: 0.9;
    filter:
      drop-shadow(0 1px 0 rgba(0, 0, 0, 0.9))
      drop-shadow(0 0 10px rgba(255, 247, 251, 0.54))
      drop-shadow(0 0 28px rgba(255, 43, 105, 0.38))
      drop-shadow(0 0 58px rgba(255, 127, 189, 0.18));
  }

  48% {
    opacity: 1;
    filter:
      drop-shadow(0 1px 0 rgba(0, 0, 0, 0.95))
      drop-shadow(0 0 14px rgba(255, 247, 251, 0.82))
      drop-shadow(0 0 40px rgba(255, 43, 105, 0.56))
      drop-shadow(0 0 82px rgba(255, 127, 189, 0.34));
  }
}

.splash-icon-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.icon-button {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 240, 247, 0.32);
  border-radius: 999px;
  background: rgba(8, 2, 4, 0.18);
  color: var(--pearl);
  text-decoration: none;
  box-shadow:
    0 0 18px rgba(255, 43, 105, 0.14),
    0 10px 28px rgba(0, 0, 0, 0.26);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(255, 250, 253, 0.82);
  background: rgba(255, 43, 105, 0.16);
  filter: drop-shadow(0 0 16px rgba(255, 127, 189, 0.46));
  transform: translateY(-2px) scale(1.035);
}

.icon-button img {
  width: 58px;
  height: 58px;
}

.sound-toggle {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(118px, 14vh, 156px);
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 240, 247, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 18%, transparent 18% 36%, rgba(255, 255, 255, 0.08) 36% 54%, transparent 54%),
    linear-gradient(135deg, rgba(255, 43, 105, 0.62), rgba(8, 2, 4, 0.58));
  color: var(--pearl);
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 18px rgba(255, 43, 105, 0.22),
    0 12px 30px rgba(0, 0, 0, 0.3);
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  border-color: rgba(255, 250, 253, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 18%, transparent 18% 36%, rgba(255, 255, 255, 0.12) 36% 54%, transparent 54%),
    linear-gradient(135deg, rgba(255, 127, 189, 0.72), rgba(216, 7, 50, 0.62));
}

.sound-icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sound-toggle[aria-pressed="false"] .sound-icon-on,
.sound-toggle[aria-pressed="true"] .sound-icon-muted {
  display: none;
}

.splash-footer {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 3vh, 28px);
  left: clamp(18px, 4vw, 48px);
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 247, 251, 0.68);
  font-size: 0.74rem;
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-credit {
  margin: 0;
  max-width: min(620px, 100%);
  color: rgba(255, 247, 251, 0.68);
  line-height: 1.36;
}

.footer-credit a {
  color: inherit;
  text-decoration-color: rgba(255, 247, 251, 0.34);
  text-underline-offset: 0.22em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--sugar-white);
  text-decoration-color: rgba(255, 250, 253, 0.82);
}

.footer-credit-line {
  display: block;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}

.footer-links a {
  color: rgba(255, 247, 251, 0.74);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sugar-white);
}

.splash-footer,
.footer-credit {
  line-height: 1.36;
}

.splash-footer a,
.footer-links a {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: end center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.46);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.policy-modal.hidden {
  display: none;
}

.policy-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(76svh, 620px);
  overflow: auto;
  border: 1px solid rgba(197, 155, 88, 0.34);
  border-radius: 8px;
  padding: 24px;
  color: var(--pearl);
  background: rgba(12, 8, 12, 0.96);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.54),
    0 0 34px rgba(197, 155, 88, 0.12);
}

.policy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 999px;
  background: rgba(247, 239, 228, 0.06);
  color: rgba(247, 239, 228, 0.78);
  cursor: pointer;
}

.policy-close:hover,
.policy-close:focus-visible {
  border-color: rgba(197, 155, 88, 0.56);
  color: var(--pearl);
}

.policy-kicker {
  margin: 0 0 8px;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-panel h2 {
  margin: 0 42px 18px 0;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
}

.policy-body {
  display: grid;
  gap: 14px;
  color: rgba(247, 239, 228, 0.76);
  font-size: 0.98rem;
}

.policy-body p {
  margin: 0;
}

.policy-ack {
  min-height: 42px;
  margin-top: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 250, 245, 0.48);
  border-radius: 4px;
  background: linear-gradient(135deg, #250817 0%, #5a1b2a 52%, #22082f 100%);
  color: #fff7f4;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-ack:hover,
.policy-ack:focus-visible {
  border-color: rgba(255, 250, 245, 0.78);
  background: linear-gradient(135deg, #1b1027 0%, #4b2a63 54%, #2b123d 100%);
}

.deck-transition {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 239, 228, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(90, 27, 42, 0.74), rgba(8, 6, 7, 0.95)),
    #080607;
  opacity: 0;
  backdrop-filter: blur(0);
}

.deck-transition[data-direction="next"] {
  animation: deck-fade-next 500ms cubic-bezier(0.72, 0, 0.18, 1) forwards;
}

.deck-transition[data-direction="prev"] {
  animation: deck-fade-prev 500ms cubic-bezier(0.72, 0, 0.18, 1) forwards;
}

.deck-page main {
  transition:
    filter 360ms ease,
    opacity 360ms ease,
    transform 360ms ease;
}

.deck-page.is-leaving-next main {
  filter: blur(10px);
  opacity: 0.42;
  transform: translateY(-32px) scale(0.985);
}

.deck-page.is-leaving-prev main {
  filter: blur(10px);
  opacity: 0.42;
  transform: translateY(32px) scale(0.985);
}

@keyframes deck-fade-next {
  0% {
    opacity: 0;
    backdrop-filter: blur(0);
    transform: translateY(16%);
  }
  55% {
    opacity: 0.72;
    backdrop-filter: blur(12px);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(18px);
    transform: translateY(0);
  }
}

@keyframes deck-fade-prev {
  0% {
    opacity: 0;
    backdrop-filter: blur(0);
    transform: translateY(-16%);
  }
  55% {
    opacity: 0.72;
    backdrop-filter: blur(12px);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(18px);
    transform: translateY(0);
  }
}

.hero-home {
  place-items: center;
  text-align: center;
}

.page-hero {
  min-height: 58svh;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 74px;
}

.hero-media,
.hero-shade,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: brightness(1.04) saturate(1.02) contrast(1.03);
}

.splash-gateway .hero-video {
  filter: saturate(1.1) contrast(1.02) brightness(1.16);
}

.page-hero-signature-pulse {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  opacity: 0.42;
  pointer-events: none;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 18px rgba(247, 239, 228, 0.5))
    drop-shadow(0 0 48px rgba(255, 43, 105, 0.32))
    drop-shadow(0 0 84px rgba(255, 127, 189, 0.18));
  animation: hero-signature-pulse 6.2s ease-in-out infinite;
}

@keyframes hero-signature-pulse {
  0%,
  100% {
    opacity: 0.34;
    filter:
      drop-shadow(0 0 12px rgba(247, 239, 228, 0.34))
      drop-shadow(0 0 34px rgba(255, 43, 105, 0.2))
      drop-shadow(0 0 64px rgba(255, 127, 189, 0.1));
  }

  18% {
    opacity: 0.58;
    filter:
      drop-shadow(0 0 16px rgba(247, 239, 228, 0.5))
      drop-shadow(0 0 44px rgba(255, 43, 105, 0.28))
      drop-shadow(0 0 78px rgba(255, 127, 189, 0.16));
  }

  34%,
  68% {
    opacity: 0.82;
    filter:
      drop-shadow(0 0 22px rgba(247, 239, 228, 0.72))
      drop-shadow(0 0 62px rgba(255, 43, 105, 0.42))
      drop-shadow(0 0 112px rgba(255, 127, 189, 0.22));
  }

  84% {
    opacity: 0.56;
    filter:
      drop-shadow(0 0 16px rgba(247, 239, 228, 0.48))
      drop-shadow(0 0 42px rgba(255, 43, 105, 0.26))
      drop-shadow(0 0 74px rgba(255, 127, 189, 0.14));
  }
}

.hero-shade,
.page-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 38%, rgba(213, 41, 63, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(8, 6, 7, 0.9) 0%, rgba(8, 6, 7, 0.62) 38%, rgba(8, 6, 7, 0.34) 72%),
    linear-gradient(0deg, rgba(8, 6, 7, 0.88) 0%, rgba(8, 6, 7, 0.12) 44%);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero-signature {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translateY(-76px);
}

.hero-signature img {
  width: min(46vw, 560px);
  opacity: 0.72;
  filter:
    drop-shadow(0 0 16px rgba(247, 239, 228, 0.72))
    drop-shadow(0 0 42px rgba(213, 41, 63, 0.38));
}

.signature-aura {
  position: absolute;
  width: min(58vw, 700px);
  aspect-ratio: 1 / 0.34;
  background:
    radial-gradient(ellipse, rgba(247, 239, 228, 0.28), rgba(213, 41, 63, 0.16) 38%, transparent 70%);
  filter: blur(18px);
}

.hero-content,
.page-hero-content {
  width: min(760px, 100%);
}

.hero-content.centered {
  display: grid;
  justify-items: center;
  margin-top: min(24vh, 190px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy,
.page-hero-copy {
  width: min(660px, 100%);
  margin: 18px 0 0;
  color: #f3e7db;
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--scarlet-bright);
  color: #fff7f4;
}

.button.secondary {
  border-color: rgba(247, 239, 228, 0.45);
  background: rgba(8, 6, 7, 0.32);
  color: var(--pearl);
}

.button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.config-button-region {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.config-card-region {
  display: none;
}

.config-card-region.has-config-items {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.contact-layout .config-card-region.has-config-items {
  grid-column: auto;
}

.config-card {
  display: grid;
  min-height: 128px;
  align-content: end;
  gap: 7px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(247, 239, 228, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.07), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.48);
  color: rgba(247, 239, 228, 0.72);
  text-decoration: none;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.config-card:hover,
.config-card:focus-visible {
  border-color: rgba(197, 155, 88, 0.42);
  background:
    linear-gradient(145deg, rgba(159, 20, 41, 0.16), rgba(75, 29, 53, 0.14)),
    rgba(8, 6, 7, 0.58);
}

.config-card strong {
  color: var(--pearl);
  font-family: var(--font-display);
  font-size: clamp(1.26rem, 2.2vw, 1.58rem);
  font-weight: 600;
}

.config-card span {
  font-size: 0.94rem;
  line-height: 1.5;
}

.config-card em {
  margin-top: 4px;
  color: var(--brass);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-note {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 24px;
  margin: 0;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.74rem;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-shell,
.footer-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.home-statement,
.content-section,
.home-grid-section,
.gallery-section,
.notes-section,
.contact-section,
.legal-section,
.authenticity-strip {
  padding: clamp(72px, 10vw, 132px) 0;
}

.home-statement,
.paper-section,
.legal-section {
  background: var(--paper);
  color: #201313;
}

.home-statement .eyebrow,
.paper-section .eyebrow,
.legal-section .eyebrow,
.home-statement h2,
.paper-section h2,
.legal-section h2 {
  color: #6e1222;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.statement-copy,
.body-copy {
  color: var(--paper-muted);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.statement-copy p,
.body-copy p,
.work-copy p,
.note-card p,
.authenticity-panel p,
.contact-copy,
.legal-copy p {
  margin: 0;
}

.statement-copy p + p,
.body-copy p + p,
.work-copy p + p,
.legal-copy p + p {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: #8d1225;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: #201313;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.with-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-grid-section,
.work-section,
.gallery-section,
.contact-section {
  background: var(--ink);
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-card {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(159, 20, 41, 0.18), rgba(75, 29, 53, 0.22)),
    var(--panel);
  color: var(--pearl);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.home-card:hover,
.home-card:focus-visible {
  border-color: rgba(197, 155, 88, 0.62);
}

.home-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 68%;
  background: linear-gradient(0deg, rgba(8, 6, 7, 0.92), transparent);
  content: "";
}

.home-card span,
.home-card strong {
  position: relative;
  z-index: 1;
}

.home-card span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
}

.portrait-card {
  grid-column: span 2;
}

.work-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.work-media {
  min-height: 430px;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 62px);
}

.work-kicker {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.work-copy p:not(.work-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.03rem;
}

.gallery-section {
  background: #201118;
}

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

.media-card,
.placeholder-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
}

.media-card img,
.placeholder-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.feature-card {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 536px;
}

.feature-card img {
  min-height: 536px;
}

.media-card::after,
.placeholder-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(8, 6, 7, 0.9), rgba(8, 6, 7, 0));
  content: "";
}

.placeholder-card::after {
  height: 82%;
  background: linear-gradient(0deg, #080607 0%, rgba(8, 6, 7, 0.98) 42%, rgba(8, 6, 7, 0) 100%);
}

.media-card-copy {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.media-card-copy p {
  margin: 0;
  color: var(--pearl);
  font-family: var(--font-display);
  font-size: 1.22rem;
}

.media-card-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.note-card {
  display: grid;
  gap: 12px;
  min-height: 240px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(32, 19, 19, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
}

.note-card time,
.note-card span {
  color: #8d1225;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.note-card h3 {
  color: #201313;
}

.note-card p {
  color: var(--paper-muted);
}

.audio-note audio {
  width: 100%;
  margin-top: 12px;
  accent-color: var(--scarlet);
}

.authenticity-strip {
  background: var(--ink);
}

.authenticity-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  border-block: 1px solid var(--line);
  padding-block: clamp(32px, 7vw, 72px);
}

.signature {
  width: min(360px, 100%);
  opacity: 0.86;
}

.authenticity-panel p:not(.eyebrow) {
  width: min(720px, 100%);
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.contact-copy {
  width: min(520px, 100%);
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.direct-email {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brass);
  font-size: 1.06rem;
  text-decoration: none;
}

.direct-email:hover,
.direct-email:focus-visible {
  color: var(--pearl);
}

.contact-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 228, 0.055);
  box-shadow: 0 22px 70px var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 239, 228, 0.22);
  border-radius: 4px;
  background: rgba(8, 6, 7, 0.5);
  color: var(--pearl);
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(213, 41, 63, 0.72);
  outline-offset: 2px;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.86rem;
}

.legal-copy {
  width: min(820px, 100%);
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.legal-copy h2 {
  margin: 34px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.site-footer {
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0 9%, transparent 9% 19%, rgba(255, 255, 255, 0.05) 19% 28%, transparent 28%),
    linear-gradient(135deg, rgba(255, 43, 105, 0.24), rgba(7, 2, 5, 0.98) 42%, rgba(216, 7, 50, 0.2) 70%, rgba(255, 127, 189, 0.12)),
    #070205;
}

.footer-shell {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 28px 0 30px;
  text-align: center;
}

.site-footer .footer-credit,
.site-footer .footer-links {
  font-size: 0.74rem;
}

@media (max-width: 1040px) {
  .splash-content {
    bottom: clamp(142px, 15vh, 176px);
    width: min(82vw, 680px);
    row-gap: clamp(11px, 1.8vh, 18px);
  }

  .splash-signature {
    width: min(72vw, 620px);
  }

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

  .portrait-card,
  .feature-card {
    grid-column: span 2;
  }

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

@media (max-width: 960px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    max-width: 330px;
  }

  .hero {
    min-height: 86svh;
  }

  .two-column,
  .work-band,
  .contact-layout,
  .authenticity-panel {
    grid-template-columns: 1fr;
  }

  .work-media {
    min-height: 320px;
  }

}

@media (max-height: 620px) and (min-width: 641px) {
  .splash-gateway {
    padding: 18px;
  }

  .splash-content {
    bottom: 118px;
    row-gap: 10px;
  }

  .splash-enter {
    min-height: 40px;
    padding: 8px 18px;
  }

  .splash-signature {
    width: min(54vw, 560px);
  }

  .icon-button,
  .sound-toggle {
    width: 42px;
    height: 42px;
  }

  .sound-toggle {
    bottom: 112px;
  }

  .splash-footer {
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    min-height: 92px;
    padding: 14px 18px;
  }

  .brand-copy {
    display: none;
  }

  .site-nav {
    max-width: 288px;
    gap: 8px 12px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 82svh;
    padding: 132px 20px 62px;
  }

  .splash-gateway {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 24px 18px 88px;
  }

  .splash-content {
    width: min(100%, 420px);
    bottom: clamp(146px, 18vh, 164px);
    row-gap: 13px;
  }

  .splash-enter {
    min-height: 42px;
    padding: 10px 20px;
  }

  .splash-signature {
    width: min(88vw, 390px);
  }

  .icon-button {
    width: 46px;
    height: 46px;
  }

  .sound-toggle {
    right: 16px;
    bottom: clamp(140px, 17vh, 150px);
    width: 46px;
    height: 46px;
  }

  .splash-footer {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    font-size: 0.74rem;
  }

  .page-hero {
    min-height: 52svh;
    padding: 132px 20px 56px;
  }

  h1 {
    font-size: clamp(3.8rem, 23vw, 5.8rem);
  }

  .hero-signature img {
    width: min(84vw, 430px);
  }

  .hero-copy {
    max-width: 20rem;
  }

  .scroll-note {
    display: none;
  }

  .section-shell,
  .footer-shell {
    width: min(100% - 32px, var(--max));
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .section-heading.with-action {
    display: grid;
  }

  .home-card-grid,
  .gallery-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .portrait-card,
  .feature-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .feature-card img {
    min-height: 360px;
  }

  .media-card,
  .placeholder-card,
  .home-card {
    min-height: 240px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .splash-gateway {
    padding: 14px 16px 64px;
  }

  .splash-content {
    bottom: 112px;
    row-gap: 8px;
  }

  .splash-enter {
    min-height: 38px;
    padding: 7px 16px;
    font-size: 0.78rem;
  }

  .splash-signature {
    width: min(52vw, 360px);
  }

  .icon-button,
  .sound-toggle {
    width: 40px;
    height: 40px;
  }

  .sound-toggle {
    right: 14px;
    bottom: 112px;
  }

  .splash-footer {
    bottom: 10px;
    gap: 10px;
    font-size: 0.68rem;
  }
}

.experience-page {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(8, 6, 7, 0), rgba(8, 6, 7, 0.92) 34%, #080607 100%),
    repeating-linear-gradient(90deg, rgba(247, 239, 228, 0.018) 0 1px, transparent 1px 96px),
    #080607;
}

.experience-page .site-header {
  position: fixed;
  align-items: center;
  min-height: 74px;
  border-bottom-color: rgba(247, 239, 228, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 6, 7, 0.68), rgba(8, 6, 7, 0.26));
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.experience-page .site-header.is-scrolled {
  border-bottom-color: rgba(197, 155, 88, 0.24);
  background: rgba(8, 6, 7, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.44);
}

.brand-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(247, 239, 228, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(90, 27, 42, 0.28), rgba(75, 29, 53, 0.3));
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 245, 0.14),
    0 0 24px rgba(213, 41, 63, 0.16);
}

.brand-symbol img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.experience-page .brand-line {
  color: rgba(247, 239, 228, 0.62);
}

.experience-page .site-nav a {
  position: relative;
  color: rgba(247, 239, 228, 0.66);
}

.experience-page .site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  content: "";
}

.experience-page .site-nav a:hover,
.experience-page .site-nav a:focus-visible,
.experience-page .site-nav a[aria-current="page"] {
  color: var(--pearl);
}

.experience-page .site-nav a:hover::after,
.experience-page .site-nav a:focus-visible::after,
.experience-page .site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.experience-page .page-hero {
  min-height: 100svh;
  min-height: 100dvh;
  align-items: end;
  padding: clamp(136px, 17vh, 190px) clamp(20px, 5vw, 72px) clamp(86px, 13vh, 138px);
  border-bottom: 1px solid rgba(247, 239, 228, 0.12);
}

.experience-page .page-hero::after {
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.64), rgba(8, 6, 7, 0.2) 46%, rgba(8, 6, 7, 0.54)),
    linear-gradient(0deg, rgba(8, 6, 7, 0.9) 0%, rgba(8, 6, 7, 0.18) 42%, rgba(8, 6, 7, 0.44) 100%);
}

.experience-page .page-hero-media img {
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.03) brightness(1.08);
  transform: scale(1.035);
}

.experience-page .page-hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.experience-page .page-hero-content::before {
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--brass), rgba(213, 41, 63, 0.34), transparent);
  content: "";
}

.experience-page .page-hero-copy {
  color: rgba(247, 239, 228, 0.82);
}

.experience-page .content-section,
.experience-page .home-grid-section,
.experience-page .work-section,
.experience-page .gallery-section,
.experience-page .notes-section,
.experience-page .contact-section,
.experience-page .legal-section,
.experience-page .experience-path,
.experience-page .authenticity-strip {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(247, 239, 228, 0.08);
  padding: clamp(88px, 12vw, 168px) 0;
  background:
    linear-gradient(180deg, rgba(247, 239, 228, 0.025), rgba(247, 239, 228, 0)),
    #080607;
  color: var(--pearl);
}

.experience-page .content-section::before,
.experience-page .work-section::before,
.experience-page .gallery-section::before,
.experience-page .notes-section::before,
.experience-page .contact-section::before,
.experience-page .legal-section::before,
.experience-page .experience-path::before,
.experience-page .authenticity-strip::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(20px, 6vw, 96px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(197, 155, 88, 0.28), rgba(213, 41, 63, 0.18), transparent);
  content: "";
}

.experience-page .paper-section,
.experience-page .legal-section {
  background:
    linear-gradient(125deg, rgba(90, 27, 42, 0.22), rgba(8, 6, 7, 0.2) 38%, rgba(75, 29, 53, 0.18)),
    #0c0709;
  color: var(--pearl);
}

.experience-page .paper-section .eyebrow,
.experience-page .legal-section .eyebrow,
.experience-page .paper-section h2,
.experience-page .legal-section h2 {
  color: var(--brass);
}

.experience-page .body-copy,
.experience-page .statement-copy,
.experience-page .legal-copy,
.experience-page .contact-copy {
  color: rgba(247, 239, 228, 0.72);
}

.experience-page .body-copy p,
.experience-page .legal-copy p {
  max-width: 700px;
}

.experience-page .section-heading {
  position: relative;
  z-index: 1;
}

.experience-path {
  background:
    linear-gradient(180deg, rgba(8, 6, 7, 0.72), rgba(30, 13, 22, 0.92)),
    #080607;
}

.path-river {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(247, 239, 228, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(247, 239, 228, 0.1);
}

.path-step {
  display: grid;
  min-height: 250px;
  align-content: end;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgba(90, 27, 42, 0.28), rgba(8, 6, 7, 0.7)),
    #10090e;
  color: var(--pearl);
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.path-step:hover,
.path-step:focus-visible {
  background:
    linear-gradient(145deg, rgba(159, 20, 41, 0.34), rgba(75, 29, 53, 0.56)),
    #130a10;
  transform: translateY(-2px);
}

.path-step span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.path-step strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 500;
}

.path-step small {
  color: rgba(247, 239, 228, 0.68);
  font-size: 0.94rem;
}

.experience-page .work-band,
.experience-page .contact-form,
.experience-page .authenticity-panel {
  position: relative;
  z-index: 1;
  border-color: rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 239, 228, 0.07), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.46);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.experience-page .work-media {
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}

.experience-page .work-media img,
.experience-page .media-card img,
.experience-page .placeholder-card img {
  filter: saturate(1.06) contrast(1.02);
  transition:
    filter 180ms ease,
    transform 240ms ease;
}

.experience-page .work-band:hover .work-media img,
.experience-page .media-card:hover img,
.experience-page .media-card:focus-within img,
.experience-page .placeholder-card:hover img,
.experience-page .placeholder-card:focus-within img {
  filter: saturate(1.16) contrast(1.05) brightness(1.05);
  transform: scale(1.025);
}

.experience-page .gallery-section {
  background:
    linear-gradient(115deg, rgba(159, 20, 41, 0.16), rgba(8, 6, 7, 0.36) 40%, rgba(75, 29, 53, 0.2)),
    #0a0608;
}

.experience-page .gallery-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-page .feature-card {
  grid-column: span 2;
}

.experience-page .media-card,
.experience-page .placeholder-card,
.experience-page .note-card,
.experience-page .home-card {
  border-color: rgba(247, 239, 228, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.08), rgba(247, 239, 228, 0.02)),
    #120b10;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.experience-page .banner-card {
  grid-column: span 2;
}

.experience-page .note-card {
  border-color: rgba(247, 239, 228, 0.14);
  color: var(--pearl);
}

.experience-page .note-card h3 {
  color: var(--pearl);
}

.experience-page .note-card p {
  color: rgba(247, 239, 228, 0.68);
}

.experience-page .contact-layout,
.experience-page .two-column,
.experience-page .notes-grid,
.experience-page .gallery-grid {
  position: relative;
  z-index: 1;
}

.experience-page .direct-email {
  color: var(--brass);
}

.experience-page .button.primary {
  border-color: rgba(255, 250, 245, 0.48);
  background: linear-gradient(135deg, #250817 0%, #5a1b2a 52%, #22082f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 245, 0.2),
    0 12px 30px rgba(0, 0, 0, 0.3);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .experience-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-page .feature-card,
  .experience-page .banner-card {
    grid-column: span 2;
  }

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

@media (max-width: 960px) {
  .experience-page .site-header {
    position: fixed;
    align-items: center;
  }

  .experience-page .page-hero {
    min-height: 92svh;
    padding-top: 144px;
  }
}

@media (max-width: 640px) {
  .experience-page .site-header {
    min-height: 88px;
    padding: 14px 18px;
  }

  .experience-page .brand-mark {
    gap: 10px;
  }

  .experience-page .brand-copy {
    display: grid;
  }

  .experience-page .brand-signature {
    width: clamp(104px, 31vw, 132px);
    margin: -6px 0 -7px;
  }

  .experience-page .brand-line {
    display: none;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .brand-symbol img {
    width: 31px;
    height: 31px;
  }

  .experience-page .site-nav {
    max-width: 100%;
    justify-content: flex-start;
    gap: 7px 12px;
  }

  .experience-page .page-hero {
    min-height: 86svh;
    padding: 154px 20px 62px;
  }

  .experience-page .content-section,
  .experience-page .work-section,
  .experience-page .gallery-section,
  .experience-page .notes-section,
  .experience-page .contact-section,
  .experience-page .legal-section,
  .experience-page .experience-path,
  .experience-page .authenticity-strip {
    padding: 76px 0;
  }

  .experience-page .content-section::before,
  .experience-page .work-section::before,
  .experience-page .gallery-section::before,
  .experience-page .notes-section::before,
  .experience-page .contact-section::before,
  .experience-page .legal-section::before,
  .experience-page .experience-path::before,
  .experience-page .authenticity-strip::before {
    left: 18px;
  }

  .path-river,
  .experience-page .gallery-grid {
    grid-template-columns: 1fr;
  }

  .experience-page .feature-card,
  .experience-page .banner-card {
    grid-column: auto;
  }

  .path-step {
    min-height: 190px;
  }

  .experience-page .work-media {
    border-radius: 8px 8px 0 0;
  }
}

.deck-page {
  height: 100dvh;
  overflow: hidden;
}

.deck-page .site-header {
  min-height: 72px;
  background:
    linear-gradient(180deg, rgba(8, 6, 7, 0.86), rgba(8, 6, 7, 0.54));
}

.deck-main,
.deck-screen {
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
}

.deck-screen {
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(94px, 13vh, 124px) clamp(18px, 5vw, 72px) clamp(42px, 7vh, 70px);
  isolation: isolate;
}

.deck-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.deck-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04) brightness(0.78);
  transform: scale(1.035);
}

.deck-screen::before,
.deck-screen::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.deck-screen::before {
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.86), rgba(8, 6, 7, 0.52) 48%, rgba(8, 6, 7, 0.74)),
    linear-gradient(0deg, rgba(8, 6, 7, 0.94), rgba(8, 6, 7, 0.22) 48%, rgba(8, 6, 7, 0.62));
}

.deck-screen::after {
  background:
    repeating-linear-gradient(90deg, rgba(247, 239, 228, 0.008) 0 1px, transparent 1px 168px),
    radial-gradient(circle at 82% 20%, rgba(197, 155, 88, 0.13), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(159, 20, 41, 0.16), transparent 32%);
}

.deck-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.deck-copy-panel {
  width: min(710px, 100%);
}

.deck-page h1 {
  max-width: 10ch;
  font-size: clamp(3.15rem, 8.6vw, 7.6rem);
}

.deck-lede {
  max-width: 720px;
  margin: clamp(14px, 2vh, 20px) 0 0;
  color: rgba(247, 239, 228, 0.86);
  font-size: clamp(1.12rem, 2.1vw, 1.55rem);
  line-height: 1.35;
}

.deck-copy {
  display: grid;
  max-width: 660px;
  gap: 12px;
  margin-top: clamp(18px, 3vh, 28px);
  color: rgba(247, 239, 228, 0.72);
  font-size: clamp(0.95rem, 1.25vw, 1.06rem);
}

.deck-note {
  max-width: 620px;
  margin: clamp(16px, 2.6vh, 24px) 0 0;
  color: rgba(247, 239, 228, 0.62);
}

.deck-authenticity {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  width: min(640px, 100%);
  margin-top: clamp(20px, 4vh, 36px);
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  background: rgba(8, 6, 7, 0.36);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.deck-authenticity img {
  width: min(100%, 220px);
  filter:
    drop-shadow(0 0 10px rgba(255, 250, 245, 0.34))
    drop-shadow(0 0 24px rgba(213, 41, 63, 0.28));
}

.deck-authenticity p {
  margin: 0;
  color: rgba(247, 239, 228, 0.68);
  font-size: clamp(0.86rem, 1.1vw, 0.98rem);
}

.deck-split,
.deck-media-layout,
.deck-notes-layout,
.deck-contact-layout {
  display: grid;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.deck-split,
.deck-contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
}

.deck-feature-media {
  margin: 0;
  align-self: center;
}

.deck-feature-media > div {
  overflow: hidden;
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  max-height: min(58vh, 560px);
  background: rgba(247, 239, 228, 0.06);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.42);
}

.deck-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-feature-media figcaption {
  margin-top: 10px;
  color: rgba(247, 239, 228, 0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.deck-media-layout {
  grid-template-columns: minmax(0, 0.62fr) minmax(480px, 1fr);
}

.deck-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.deck-media-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(130px, 19vh, 190px);
  border: 1px solid rgba(247, 239, 228, 0.13);
  border-radius: 8px;
  background: rgba(8, 6, 7, 0.48);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.deck-media-card.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.deck-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.deck-media-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(0deg, rgba(8, 6, 7, 0.88), transparent);
}

.deck-media-card p,
.deck-media-card span {
  margin: 0;
}

.deck-media-card p {
  color: var(--pearl);
  font-weight: 700;
}

.deck-media-card span {
  color: rgba(247, 239, 228, 0.62);
  font-size: 0.78rem;
}

.deck-notes-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
}

.deck-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.deck-note-card {
  display: grid;
  min-height: clamp(220px, 33vh, 310px);
  align-content: end;
  gap: 10px;
  padding: clamp(16px, 2.6vw, 24px);
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.08), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.58);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(13px);
}

.deck-note-card time,
.deck-note-card span {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.deck-note-card h3,
.deck-note-card p {
  margin: 0;
}

.deck-note-card h3 {
  color: var(--pearl);
}

.deck-note-card p {
  color: rgba(247, 239, 228, 0.68);
  font-size: 0.92rem;
}

.deck-note-card audio {
  width: 100%;
  margin-top: 2px;
}

.deck-contact {
  align-items: stretch;
  padding-bottom: clamp(82px, 11vh, 112px);
}

.deck-contact .deck-content {
  align-self: center;
}

.deck-contact .direct-email {
  display: inline-block;
  margin-top: clamp(14px, 2.4vh, 20px);
  color: var(--brass);
  font-weight: 700;
  text-decoration: none;
}

.deck-contact .link-row {
  margin-top: clamp(16px, 2.8vh, 22px);
}

.deck-contact .contact-form {
  display: grid;
  gap: 9px;
  padding: clamp(16px, 2.6vw, 24px);
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 239, 228, 0.07), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.deck-contact .contact-form label {
  gap: 5px;
  font-size: 0.72rem;
}

.deck-contact .contact-form input,
.deck-contact .contact-form select,
.deck-contact .contact-form textarea {
  min-height: 38px;
  padding: 8px 10px;
}

.deck-contact .contact-form textarea {
  min-height: 72px;
  resize: none;
}

.deck-contact .contact-form .button {
  min-height: 40px;
}

.deck-contact .form-note {
  font-size: 0.74rem;
}

.deck-footer {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(16px, 3vh, 28px);
  left: clamp(18px, 5vw, 72px);
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.deck-footer .footer-credit {
  max-width: min(620px, 100%);
  font-size: 0.72rem;
}

.deck-footer .footer-links {
  font-size: 0.72rem;
}

@media (max-width: 1040px) {
  .deck-split,
  .deck-contact-layout,
  .deck-media-layout,
  .deck-notes-layout {
    grid-template-columns: 1fr;
  }

  .deck-feature-media {
    display: none;
  }

  .deck-media-layout,
  .deck-notes-layout {
    align-content: center;
  }

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

  .deck-media-card,
  .deck-media-card.is-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: clamp(120px, 18vh, 160px);
  }

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

@media (max-width: 760px) {
  .deck-page .site-header {
    min-height: 88px;
  }

  .deck-screen {
    padding: 134px 18px 34px;
  }

  .deck-contact {
    padding-bottom: 98px;
  }

  .deck-page h1 {
    font-size: clamp(3rem, 17vw, 5.6rem);
  }

  .deck-lede {
    font-size: clamp(1rem, 4.2vw, 1.22rem);
  }

  .deck-copy {
    gap: 9px;
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .deck-authenticity {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .deck-authenticity img {
    width: min(64vw, 190px);
  }

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

  .deck-media-card {
    min-height: 104px;
  }

  .deck-media-card:nth-child(n + 4) {
    display: none;
  }

  .deck-notes-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .deck-note-card {
    min-height: auto;
    padding: 14px;
  }

  .deck-note-card.audio-note {
    display: none;
  }

  .deck-contact-layout {
    gap: 12px;
  }

  .deck-contact .link-row {
    display: none;
  }

  .deck-contact .direct-email {
    margin-top: 8px;
  }

  .deck-contact .contact-form {
    gap: 7px;
    padding: 14px;
  }

  .deck-contact .contact-form input,
  .deck-contact .contact-form select,
  .deck-contact .contact-form textarea {
    min-height: 35px;
    padding: 7px 9px;
  }

  .deck-contact .contact-form textarea {
    min-height: 50px;
  }

  .deck-contact .form-note {
    display: none;
  }

  .deck-footer .footer-credit,
  .deck-footer .footer-links {
    font-size: 0.68rem;
  }
}

@media (max-height: 720px) {
  .deck-screen {
    padding-top: 88px;
    padding-bottom: 26px;
  }

  .deck-contact {
    padding-bottom: 78px;
  }

  .deck-page h1 {
    font-size: clamp(2.7rem, 7vw, 5.4rem);
  }

  .deck-lede {
    margin-top: 10px;
    font-size: clamp(0.98rem, 1.7vw, 1.22rem);
  }

  .deck-note {
    margin-top: 12px;
  }

  .deck-authenticity {
    margin-top: 14px;
  }

  .deck-note-card {
    min-height: 190px;
  }

  .deck-contact .contact-form {
    gap: 6px;
  }

  .deck-contact .form-note {
    display: none;
  }
}

.actor-page {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 127, 189, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 43, 105, 0.14), rgba(8, 2, 4, 0) 34%),
    var(--ink);
}

.actor-page .site-header {
  position: sticky;
  top: 0;
  background:
    linear-gradient(180deg, rgba(8, 2, 4, 0.9), rgba(8, 2, 4, 0.72));
}

.actor-page main {
  min-height: 100svh;
}

.actor-page h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.actor-page h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.actor-page .page-hero {
  min-height: clamp(520px, 76svh, 760px);
  padding: clamp(112px, 15vh, 168px) clamp(20px, 5vw, 72px) clamp(72px, 11vh, 112px);
}

.actor-page .page-hero::after {
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 127, 189, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(8, 2, 4, 0.38), rgba(8, 2, 4, 0.08) 46%, rgba(8, 2, 4, 0.22)),
    linear-gradient(0deg, rgba(8, 2, 4, 0.45) 0%, rgba(8, 2, 4, 0.03) 46%, rgba(8, 2, 4, 0.12) 100%);
}

.actor-page .page-hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.actor-page .content-section,
.actor-page .gallery-section,
.actor-page .contact-section,
.actor-page .legal-section {
  overflow: visible;
  padding: clamp(72px, 9vw, 124px) 0;
}

.actor-page .content-section::before,
.actor-page .gallery-section::before,
.actor-page .contact-section::before,
.actor-page .legal-section::before {
  width: 1px;
  opacity: 0.5;
  background: linear-gradient(180deg, transparent, rgba(255, 155, 200, 0.2), rgba(255, 43, 105, 0.12), transparent);
}

.actor-note-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.actor-note,
.authenticity-note,
.screen-credit,
.screen-credit-still,
.still-card {
  position: relative;
  z-index: 1;
}

.actor-note {
  display: grid;
  gap: 22px;
  max-width: 850px;
}

.actor-copy {
  display: grid;
  gap: 15px;
  color: rgba(247, 239, 228, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}

.actor-copy p {
  margin: 0;
}

.signed-note {
  width: min(360px, 68%);
  margin: 8px 0 0 auto;
  opacity: 0.92;
  filter:
    drop-shadow(0 0 8px rgba(247, 239, 228, 0.3))
    drop-shadow(0 0 20px rgba(213, 41, 63, 0.18));
}

.authenticity-note {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(247, 239, 228, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.065), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.authenticity-note h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.authenticity-note p {
  margin: 0;
  color: rgba(247, 239, 228, 0.72);
}

.screen-work-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.screen-credit {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(247, 239, 228, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.07), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.48);
}

.screen-credit p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: rgba(247, 239, 228, 0.74);
  font-size: 1.04rem;
}

.screen-credit-still {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(247, 239, 228, 0.12);
  border-radius: 8px;
  background: rgba(8, 6, 7, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.screen-credit-still img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.screen-credit-still figcaption {
  padding: 12px 14px;
  color: rgba(247, 239, 228, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.stills-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.still-card {
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(247, 239, 228, 0.12);
  border-radius: 8px;
  background: rgba(8, 6, 7, 0.6);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
}

.still-card.is-featured {
  grid-column: span 2;
}

.still-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition:
    filter 180ms ease,
    transform 240ms ease;
}

.still-card:hover img,
.still-card:focus-within img {
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
  transform: scale(1.018);
}

.still-card-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.still-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(8, 6, 7, 0.92), rgba(8, 6, 7, 0));
  content: "";
}

.still-card-copy p,
.still-card-copy span {
  margin: 0;
}

.still-card-copy p {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.still-card-copy span {
  color: rgba(247, 239, 228, 0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.actor-page .site-footer {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0 9%, transparent 9% 19%, rgba(255, 255, 255, 0.05) 19% 28%, transparent 28%),
    linear-gradient(135deg, rgba(255, 43, 105, 0.24), rgba(7, 2, 5, 0.98) 42%, rgba(216, 7, 50, 0.2) 70%, rgba(255, 127, 189, 0.12)),
    #070205;
}

.actor-page .site-footer .footer-shell {
  max-width: 760px;
}

@media (max-width: 960px) {
  .actor-page .site-header {
    position: sticky;
  }

  .actor-note-shell,
  .screen-work-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .actor-page .page-hero {
    min-height: 68svh;
    padding: 118px 20px 58px;
  }

  .actor-page .page-hero-content {
    margin-inline: 48px;
  }

  .actor-page h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .actor-page .content-section,
  .actor-page .gallery-section,
  .actor-page .contact-section,
  .actor-page .legal-section {
    padding: 62px 0;
  }

  .actor-note {
    gap: 18px;
  }

  .signed-note {
    width: min(260px, 76%);
    margin-left: 0;
  }

  .stills-grid {
    grid-template-columns: 1fr;
  }

  .still-card,
  .still-card.is-featured {
    grid-column: auto;
  }

  .still-card,
  .still-card img {
    min-height: 280px;
  }
}

.actor-page .site-header {
  min-height: 84px;
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 12px;
}

.actor-page .brand-mark {
  align-items: flex-start;
  gap: 14px;
}

.actor-page .brand-symbol {
  width: clamp(70px, 7vw, 92px);
  height: clamp(70px, 7vw, 92px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.actor-page .brand-symbol img {
  width: clamp(66px, 6.6vw, 88px);
  height: clamp(66px, 6.6vw, 88px);
  filter:
    drop-shadow(0 0 10px rgba(255, 247, 251, 0.24))
    drop-shadow(0 0 22px rgba(255, 43, 105, 0.22));
}

.actor-page .brand-copy {
  min-width: clamp(166px, 18vw, 230px);
  padding-top: 0;
  justify-items: start;
}

.actor-page .brand-signature {
  width: clamp(150px, 16vw, 220px);
  margin: -10px 0 -4px;
}

.actor-page .brand-line {
  justify-self: center;
  margin-top: 3px;
  color: rgba(255, 210, 228, 0.78);
  font-size: 0.7rem;
  text-align: center;
}

.actor-page .page-hero {
  min-height: clamp(340px, 48svh, 520px);
  align-items: end;
  padding: clamp(108px, 13vh, 142px) clamp(20px, 5vw, 72px) clamp(34px, 7vh, 56px);
}

.actor-page .page-hero-content {
  width: auto;
  max-width: min(420px, 100%);
}

.actor-page .page-hero-content::before {
  width: 104px;
  margin-bottom: 12px;
}

.actor-page .page-hero .eyebrow {
  margin: 0;
  color: var(--brass);
  font-size: clamp(0.86rem, 1.2vw, 0.98rem);
}

.actor-page.page-exit .site-header,
.actor-page.page-exit main {
  opacity: 0.5;
  filter: blur(8px);
  transform: translateY(8px);
  transition:
    opacity 190ms ease,
    filter 190ms ease,
    transform 190ms ease;
}

.page-arrows {
  pointer-events: none;
}

.page-arrow {
  position: fixed;
  top: 50%;
  z-index: 24;
  display: grid;
  width: clamp(44px, 5vw, 58px);
  height: clamp(44px, 5vw, 58px);
  place-items: center;
  border: 1px solid rgba(247, 239, 228, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 43, 105, 0.12), rgba(255, 155, 200, 0.07)),
    rgba(8, 2, 4, 0.2);
  color: rgba(247, 239, 228, 0.78);
  text-decoration: none;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.page-arrow:hover,
.page-arrow:focus-visible {
  border-color: rgba(255, 155, 200, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 43, 105, 0.22), rgba(255, 155, 200, 0.14)),
    rgba(8, 2, 4, 0.34);
  color: var(--pearl);
  transform: translateY(-50%) scale(1.04);
}

.page-arrow-left {
  left: clamp(14px, 2.6vw, 34px);
}

.page-arrow-right {
  right: clamp(14px, 2.6vw, 34px);
}

.page-arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.authenticity-note {
  overflow: hidden;
  isolation: isolate;
}

.authenticity-note::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(280px, 88%);
  aspect-ratio: 1;
  border: 2px solid rgba(197, 155, 88, 0.16);
  border-radius: 999px;
  color: rgba(197, 155, 88, 0.12);
  content: "AUTHENTIC";
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-14deg);
}

.screen-work-layout {
  grid-template-columns: minmax(260px, 0.88fr) minmax(220px, 0.54fr) minmax(220px, 0.54fr);
  align-items: stretch;
}

.screen-credit a {
  color: var(--brass);
  text-decoration-color: rgba(197, 155, 88, 0.5);
  text-underline-offset: 0.18em;
}

.production-card,
.screen-credit-still {
  display: grid;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.07), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.production-card {
  position: relative;
  color: var(--pearl);
  text-decoration: none;
}

.production-poster,
.screen-credit-still img {
  width: 100%;
  aspect-ratio: 9 / 16;
}

.production-poster {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(247, 239, 228, 0.14), transparent 28%),
    linear-gradient(150deg, rgba(159, 20, 41, 0.72), rgba(8, 6, 7, 0.98) 54%, rgba(75, 29, 53, 0.72));
  color: rgba(247, 239, 228, 0.9);
  text-align: center;
}

.production-poster video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-poster span {
  color: var(--brass);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.production-poster strong {
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 0.95;
}

.production-card-copy,
.screen-credit-still span {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  color: rgba(247, 239, 228, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.production-card-copy strong {
  color: var(--pearl);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: none;
}

.screen-credit-still {
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.screen-credit-still img {
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.production-card:hover .production-poster,
.production-card:focus-visible .production-poster,
.screen-credit-still:hover img,
.screen-credit-still:focus-visible img {
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(8, 6, 7, 0.78);
  backdrop-filter: blur(18px);
}

.media-modal.hidden {
  display: none;
}

.media-panel {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(520px, 92vw);
  max-height: 92svh;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(247, 239, 228, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.08), rgba(247, 239, 228, 0.018)),
    #080607;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
}

.media-panel img {
  width: 100%;
  max-height: 78svh;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  object-fit: cover;
}

.media-panel p {
  margin: 0;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.82rem;
  text-align: center;
  text-transform: uppercase;
}

.media-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(247, 239, 228, 0.22);
  border-radius: 999px;
  background: rgba(8, 6, 7, 0.58);
  color: var(--pearl);
  cursor: pointer;
}

.contact-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.contact-link-card {
  display: grid;
  min-height: 150px;
  align-content: end;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.07), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.48);
  color: var(--pearl);
  text-decoration: none;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.contact-link-card:hover,
.contact-link-card:focus-visible {
  border-color: rgba(197, 155, 88, 0.48);
  background:
    linear-gradient(145deg, rgba(159, 20, 41, 0.18), rgba(75, 29, 53, 0.16)),
    rgba(8, 6, 7, 0.58);
}

.contact-link-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(247, 239, 228, 0.22);
  border-radius: 999px;
  color: var(--brass);
}

.contact-link-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-link-icon.cash {
  font-weight: 900;
}

.contact-link-card strong {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 600;
}

.contact-link-card small {
  color: rgba(247, 239, 228, 0.64);
  font-size: 0.82rem;
}

.social-link-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  justify-self: start;
  width: min(450px, 100%);
  gap: clamp(9px, 1.5vw, 13px);
  margin-top: 20px;
}

.social-art-button {
  position: relative;
  display: block;
  width: min(365px, 81%);
  min-height: 0;
  color: inherit;
  text-decoration: none;
  outline: none;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.social-art-button:hover,
.social-art-button:focus-visible {
  filter:
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 18px rgba(197, 155, 88, 0.14));
  transform: translateY(-2px);
}

.social-art-button:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(247, 239, 228, 0.74);
}

.social-art-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 1;
}

.social-art-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.social-art-image-hover {
  opacity: 0;
}

.social-art-button:hover .social-art-image-base,
.social-art-button:focus-visible .social-art-image-base {
  opacity: 0;
}

.social-art-button:hover .social-art-image-hover,
.social-art-button:focus-visible .social-art-image-hover {
  opacity: 1;
}

.social-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 127, 189, 0.16), transparent 28%),
    linear-gradient(115deg, rgba(255, 43, 105, 0.16), rgba(8, 2, 4, 0.34) 44%, rgba(255, 255, 255, 0.045)),
    #080204;
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(326px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.social-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.social-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(247, 239, 228, 0.72);
  font-size: 1.05rem;
}

.social-cta {
  justify-self: start;
  margin-top: 8px;
}

.instagram-frame {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(247, 239, 228, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 228, 0.08), rgba(247, 239, 228, 0.018)),
    rgba(8, 6, 7, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.instagram-frame::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(197, 155, 88, 0.12);
  border-radius: 6px;
  pointer-events: none;
  content: "";
}

.instagram-frame .instagram-media {
  min-width: min(326px, 100%) !important;
  max-width: 540px !important;
  width: 100% !important;
  margin: 0 auto !important;
  border-radius: 8px !important;
}

@media (max-width: 1040px) {
  .screen-work-layout {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .screen-credit {
    grid-column: 1 / -1;
  }

  .social-art-button[data-config-link="instagram"] .social-art-image-base {
    opacity: 0;
  }

  .social-art-button[data-config-link="instagram"] .social-art-image-hover {
    opacity: 1;
  }

  .social-art-button[data-config-link="cashapp"] .social-art-image-base {
    opacity: 0;
  }

  .social-art-button[data-config-link="cashapp"] .social-art-image-hover {
    opacity: 1;
  }

  .social-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-copy {
    justify-items: center;
    text-align: center;
  }

  .instagram-frame {
    width: min(540px, 100%);
  }
}

@media (max-width: 760px) {
  .actor-page .site-header {
    align-items: center;
  }

  .actor-page .brand-symbol {
    width: 60px;
    height: 60px;
  }

  .actor-page .brand-symbol img {
    width: 58px;
    height: 58px;
  }

  .actor-page .brand-copy {
    min-width: 138px;
  }

  .actor-page .brand-line {
    display: block;
    justify-self: start;
    text-align: left;
  }

  .actor-page .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .actor-page .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
    padding: 8px;
    border: 1px solid rgba(247, 239, 228, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(247, 239, 228, 0.07), rgba(247, 239, 228, 0.018)),
      rgba(8, 6, 7, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    visibility: hidden;
    backdrop-filter: blur(18px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .actor-page.is-nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .actor-page .site-nav a {
    display: block;
    padding: 13px 12px;
    border-radius: 6px;
    color: rgba(247, 239, 228, 0.76);
    text-align: left;
  }

  .actor-page .site-nav a::after {
    display: none;
  }

  .actor-page .site-nav a:hover,
  .actor-page .site-nav a:focus-visible,
  .actor-page .site-nav a[aria-current="page"] {
    background: rgba(197, 155, 88, 0.1);
    color: var(--pearl);
  }

  .screen-work-layout,
  .contact-link-grid {
    grid-template-columns: 1fr;
  }

  .social-link-grid {
    justify-items: center;
    justify-self: center;
  }

  .production-card,
  .screen-credit-still {
    width: min(360px, 100%);
    min-height: 0;
    margin-inline: auto;
  }

  .page-arrow {
    top: 50%;
    width: 42px;
    height: 42px;
  }

  .page-arrow-left {
    left: 8px;
  }

  .page-arrow-right {
    right: 8px;
  }

  .page-arrow svg {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-video {
    display: none;
  }

  .hero-media {
    background: url("../assets/splash/kandykay_pro_splash_1440x1440.webp") center / cover no-repeat;
  }

  .page-hero-signature-pulse {
    animation: none !important;
    opacity: 0.46;
  }

  .splash-signature {
    animation: none !important;
  }
}
