:root {
  --bg: #111111;
  --panel: rgba(30, 30, 32, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(228, 184, 220, 0.18);
  --text: #f4f3f2;
  --muted: #bdb6bc;
  --muted-strong: #d9d0d8;
  --pink: #cb9cc6;
  --pink-strong: #d7a7d1;
  --purple: #7d67cc;
  --lime: #a7ff39;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font-heading: "Syne", "Arial Black", sans-serif;
  --font-ui: "Manrope", "SF Pro Display", "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #111111;
  color: var(--text);
  font-family: var(--font-ui);
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

html.is-section-jumping,
html.is-section-jumping body {
  scroll-snap-type: none !important;
}

main {
  position: relative;
  z-index: 1;
}

.section-nav {
  position: fixed;
  top: 50%;
  right: clamp(0.75rem, 2vw, 1.75rem);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transform: translateY(-50%);
}

.section-nav__item {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.section-nav__item::before {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.section-nav__item::after {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.45rem);
  color: var(--muted-strong);
  content: attr(aria-label);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(0.35rem, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.section-nav__item:hover::after,
.section-nav__item:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.section-nav__item:hover::before,
.section-nav__item:focus-visible::before {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.22);
}

.section-nav__item.is-active::before {
  width: 12px;
  height: 12px;
  border-color: var(--pink-strong);
  background: var(--pink-strong);
  box-shadow: 0 0 14px rgba(215, 167, 209, 0.55);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

html.has-custom-cursor,
html.has-custom-cursor body,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor [role="button"],
html.has-custom-cursor .service-tab,
html.has-custom-cursor .scroll-top,
html.has-custom-cursor .nav-contact,
html.has-custom-cursor .nav-icon,
html.has-custom-cursor .service-card__cta {
  cursor: none !important;
}

html.has-custom-cursor input,
html.has-custom-cursor textarea {
  cursor: text !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  --glow-top-size: 780px 220px;
  --glow-top-position: 50% 0%;
  --glow-top-color: rgba(210, 159, 204, 0);
  --glow-left-size: 520px 760px;
  --glow-left-position: 2% 68%;
  --glow-left-color: rgba(210, 159, 204, 0);
  --glow-right-size: 520px 780px;
  --glow-right-position: 98% 42%;
  --glow-right-color: rgba(210, 159, 204, 0);
  min-height: 100svh;
  padding: clamp(4.4rem, 7vw, 6.2rem) 0;
  display: flex;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: clip;
  isolation: isolate;
  content-visibility: visible;
  contain: none;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse var(--glow-top-size) at var(--glow-top-position), var(--glow-top-color) 0, rgba(214, 163, 210, 0.12) 30%, transparent 66%),
    radial-gradient(ellipse var(--glow-left-size) at var(--glow-left-position), var(--glow-left-color) 0, rgba(214, 163, 210, 0.14) 26%, transparent 62%),
    radial-gradient(ellipse var(--glow-right-size) at var(--glow-right-position), var(--glow-right-color) 0, rgba(214, 163, 210, 0.14) 26%, transparent 62%);
  filter: blur(28px) saturate(112%);
  mix-blend-mode: screen;
  opacity: 0.58;
  pointer-events: none;
  z-index: 0;
  transition: opacity 480ms ease;
}

.section::after {
  content: none;
}

/* Rounded frame
  content: "";
  position: absolute;
  inset: clamp(12px, 2vw, 24px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
*/

body:not(.panels-ready) .section > .container,
body.panels-ready .section.is-visible > .container {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

body.panels-ready .section > .container {
  opacity: 0.16;
  filter: blur(1.5px);
  transform: translateY(30px) scale(0.99);
  will-change: opacity, filter, transform;
  transition:
    opacity 380ms ease,
    filter 380ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.is-current::before {
  opacity: 1;
}

.site-header {
  padding-top: 1.4rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.floating-nav {
  display: flex;
  align-items: center;
  gap: 0.76rem;
  width: fit-content;
  margin: 0 auto;
  padding: 0.38rem 0.44rem;
  border-radius: 17px;
  background: rgba(63, 56, 67, 0.5);
  border: 1px solid rgba(221, 189, 219, 0.14);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.floating-nav--mobile {
  display: none;
}

.nav-icon,
.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 11px;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.nav-icon {
  width: 44px;
  color: #ffffff;
}

.nav-icon--logo {
  width: 38px;
  padding-left: 0.18rem;
}

.nav-logo {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
}

.nav-divider {
  width: 2px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  flex: none;
}

.nav-contact {
  padding: 0 1.3rem;
  background: #e8e4e8;
  color: #151515;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-icon:hover,
.nav-contact:hover {
  transform: translateY(-1px);
}

.nav-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.hero-section {
  --glow-top-size: 760px 190px;
  --glow-top-position: 50% -2%;
  --glow-top-color: rgba(226, 179, 222, 0.82);
  --glow-right-size: 440px 620px;
  --glow-right-position: 96% 72%;
  --glow-right-color: rgba(221, 170, 217, 0.42);
  padding-top: clamp(7rem, 10vw, 8.5rem);
}

.hero-scroll-cue {
  position: absolute;
  bottom: clamp(1.4rem, 3vh, 2.4rem);
  left: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 52px;
  place-items: center;
  color: var(--pink-strong);
  filter: drop-shadow(0 0 7px rgba(215, 167, 209, 0.58));
  transform: translateX(-50%);
  transition: color 180ms ease;
  animation: hero-scroll-cue 2.2s ease-in-out infinite;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: #edc5e8;
  filter: drop-shadow(0 0 10px rgba(215, 167, 209, 0.8));
}

.hero-scroll-cue svg {
  width: 22px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

@keyframes hero-scroll-cue {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}

.gallery-section {
  --glow-left-size: 560px 760px;
  --glow-left-position: 1% 58%;
  --glow-left-color: rgba(227, 180, 223, 0.82);
  --glow-right-size: 430px 580px;
  --glow-right-position: 97% 88%;
  --glow-right-color: rgba(221, 170, 217, 0.46);
}

.testimonials-section {
  --glow-left-size: 360px 520px;
  --glow-left-position: 0% 82%;
  --glow-left-color: rgba(220, 170, 216, 0.28);
  --glow-right-size: 560px 820px;
  --glow-right-position: 98% 48%;
  --glow-right-color: rgba(226, 178, 222, 0.78);
}

.about-section {
  --glow-left-size: 560px 820px;
  --glow-left-position: 2% 82%;
  --glow-left-color: rgba(224, 178, 221, 0.72);
  --glow-right-size: 520px 760px;
  --glow-right-position: 98% 24%;
  --glow-right-color: rgba(221, 172, 218, 0.66);
}

.services-section {
  --glow-left-size: 580px 860px;
  --glow-left-position: 1% 86%;
  --glow-left-color: rgba(226, 180, 223, 0.76);
  --glow-right-size: 360px 520px;
  --glow-right-position: 97% 18%;
  --glow-right-color: rgba(220, 170, 216, 0.26);
}

.contact-section {
  --glow-top-size: 520px 150px;
  --glow-top-position: 50% 4%;
  --glow-top-color: rgba(222, 175, 219, 0.34);
  --glow-left-size: 420px 600px;
  --glow-left-position: 1% 76%;
  --glow-left-color: rgba(220, 170, 216, 0.38);
  --glow-right-size: 560px 780px;
  --glow-right-position: 98% 72%;
  --glow-right-color: rgba(223, 175, 220, 0.58);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 486px);
  gap: 3.35rem;
  align-items: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.hero-copy__text h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 4.3vw, 3.02rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy__text p {
  margin: 0;
  max-width: 560px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.45;
}

.brand-mark {
  flex: none;
  width: 64px;
  height: 64px;
  position: relative;
  display: grid;
  place-items: center;
}

.brand-lockup .brand-mark {
  width: 96px;
  height: 96px;
}

.brand-mark--large {
  width: 90px;
  height: 90px;
}

.brand-mark__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.showcase-card,
.testimonial-card,
.service-card,
.contact-form,
.poster-card {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.showcase-card {
  width: 100%;
  padding: 0.82rem;
  border-radius: 24px;
  background: rgba(33, 31, 35, 0.95);
  overflow: hidden;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(60px, 14vw, 72px);
  gap: clamp(0.5rem, 1.6vw, 0.72rem);
  align-items: stretch;
}

.video-poster {
  min-height: 0;
  min-width: 0;
  aspect-ratio: 16 / 9;
  height: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(104, 76, 28, 0.82), rgba(27, 22, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-poster__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-poster.is-missing::before {
  content: "thumb_1";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 241, 193, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(124, 78, 31, 0.8) 0%, rgba(23, 21, 22, 0.96) 75%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 16px);
}

.thumb-column {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0.42rem;
  min-width: 0;
  min-height: 0;
  height: auto;
  align-self: stretch;
}

.thumb-chip {
  border-radius: 11px;
  min-height: 0;
  height: auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.thumb-chip__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thumb-chip.is-missing::before {
  content: attr(data-thumb-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #5a485e, #262129);
}

.video-footer {
  display: flex;
  align-items: center;
  gap: 0.66rem;
  padding: 0.82rem 0.14rem 0.1rem;
}

.channel-badge {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background: #121212;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.channel-badge__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-footer__copy p,
.video-footer__copy span {
  margin: 0;
}

.video-footer__copy {
  display: grid;
  gap: 0.14rem;
}

.video-footer__copy p {
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.05;
}

.video-footer__copy span {
  color: #ff4c4c;
  font-size: 0.78rem;
  line-height: 1;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.3vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.gallery-section .section-heading {
  max-width: 960px;
}

.gallery-heading-title {
  white-space: nowrap;
}

.poster-stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  height: 400px;
}

.poster-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.poster-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(28, 27, 31, 0.9);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.poster-control:hover {
  transform: translateY(-1px);
  background: rgba(199, 154, 194, 0.2);
  border-color: rgba(227, 193, 222, 0.35);
}

.poster-control:active {
  transform: translateY(0) scale(0.94);
}

.poster-control svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poster-card {
  position: absolute;
  top: 50%;
  overflow: hidden;
  color: #ffffff;
  border-radius: 18px;
}

.poster-card::before,
.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.poster-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%);
  z-index: 0;
}

.poster-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.poster-card > * {
  position: relative;
  z-index: 2;
}

.poster-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.poster-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.poster-card.is-animating-next .poster-card__image {
  animation: design-swap-next 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.poster-card.is-animating-prev .poster-card__image {
  animation: design-swap-prev 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes design-swap-next {
  0% {
    opacity: 0.62;
    transform: translateX(18px) scale(1.035);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes design-swap-prev {
  0% {
    opacity: 0.62;
    transform: translateX(-18px) scale(1.035);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

.poster-card__eyebrow,
.poster-card__banner {
  display: inline-flex;
  width: fit-content;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-card--left-far {
  left: calc(50% - 405px);
  width: 150px;
  height: 145px;
  padding: 1rem;
  transform: translateY(-50%);
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 11, 14, 0.1), rgba(11, 11, 14, 0.18)),
    linear-gradient(135deg, #2e2c30 0%, #173258 48%, #0e0f12 100%);
}

.poster-card--left-far::after {
  background:
    radial-gradient(circle at 28% 36%, rgba(40, 82, 145, 0.85), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.38));
}

.poster-card--left-far h3 {
  margin-top: 3rem;
  font-size: 1rem;
}

.poster-card--left-mid {
  left: calc(50% - 280px);
  width: 170px;
  height: 172px;
  padding: 1rem;
  transform: translateY(-50%);
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(236, 228, 191, 0.16), rgba(30, 20, 20, 0.22)),
    linear-gradient(135deg, #6a624f 0%, #e5e0d1 28%, #7b5b4b 48%, #1d1d20 100%);
}

.poster-card--left-mid::after {
  background:
    radial-gradient(circle at 76% 76%, rgba(233, 102, 42, 0.45), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.45));
}

.poster-card--left-mid h3 {
  margin-top: 4.6rem;
  font-size: 1.05rem;
}

.poster-card--feature {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 372px;
  padding: 1rem 1rem 0.9rem;
  z-index: 4;
  background:
      radial-gradient(circle at 20% 18%, rgba(61, 169, 255, 0.26), transparent 28%),
      linear-gradient(180deg, #1a85f8 0%, #0f305c 28%, #84272f 30%, #1a1a1d 82%);
}

.poster-card--feature::after {
  background:
      radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.2), transparent 22%),
      linear-gradient(180deg, rgba(0, 0, 0, 0) 26%, rgba(0, 0, 0, 0.5));
}

.poster-card--feature h3 {
  margin-top: 8.7rem;
  font-size: 2.15rem;
}

.poster-card--design-test {
  padding: 0;
  background: #0f1013;
}

.poster-card__zoom-hitbox {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  background: transparent;
}

.poster-card--design-test .poster-card__image {
  object-fit: cover;
  object-position: center;
  background: #0f1013;
}

.poster-card--design-test::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 22%);
}

.poster-card--design-test::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56%, rgba(8, 8, 9, 0.78) 100%);
}

.poster-card__banner {
  padding: 0.32rem 0.56rem;
  border-radius: 999px;
  background: rgba(36, 165, 255, 0.94);
}

.poster-card__social {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.poster-card__social--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  padding: 0.88rem 1rem;
  color: #ffffff;
}

.poster-card__social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poster-card--right-mid {
  left: calc(50% + 110px);
  width: 170px;
  height: 172px;
  padding: 1rem;
  transform: translateY(-50%);
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(68, 106, 255, 0.2), rgba(22, 22, 28, 0.2)),
    linear-gradient(135deg, #193e78 0%, #6836ad 52%, #121216 100%);
}

.poster-card--right-mid::after {
  background:
    radial-gradient(circle at 55% 38%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.45));
}

.poster-card--right-mid h3 {
  margin-top: 5.4rem;
  font-size: 1.75rem;
}

.poster-card--design-side {
  padding: 0;
  background: #121216;
}

.poster-card--design-side .poster-card__image {
  object-fit: cover;
  object-position: center;
}

.poster-card.is-portrait-slide .poster-card__image {
  object-position: center top;
}

.poster-card--design-side::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 26%);
}

.poster-card--design-side::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
}

.poster-card--right-far {
  left: calc(50% + 255px);
  width: 150px;
  height: 145px;
  padding: 1rem;
  transform: translateY(-50%);
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 214, 84, 0.16), rgba(26, 26, 27, 0.24)),
    linear-gradient(135deg, #373029 0%, #bb7c1d 38%, #181818 100%);
}

.poster-card--right-far::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 70% 34%, rgba(255, 180, 60, 0.32), transparent 24%);
}

.poster-card--right-far h3 {
  margin-top: 4.7rem;
  font-size: 1.3rem;
}

.poster-card--left-far.poster-card--design-side,
.poster-card--right-far.poster-card--design-side {
  padding: 0;
  background: #121216;
}

.poster-card--left-far.poster-card--design-side::after,
.poster-card--right-far.poster-card--design-side::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
}

.testimonial-track {
  --testimonial-card-width: 412px;
  --testimonial-card-height: 206px;
  --testimonial-side-offset: clamp(300px, 25vw, 430px);
  --testimonial-mid-offset: clamp(520px, 46vw, 760px);
  --testimonial-far-offset: clamp(690px, 62vw, 1040px);
  position: relative;
  width: calc(100% + 320px);
  max-width: none;
  height: var(--testimonial-card-height);
  margin: 0 -160px;
  overflow: visible;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--testimonial-card-width);
  height: var(--testimonial-card-height);
  padding: 0.92rem 1rem 1.05rem;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateX(-50%) scale(0.9);
  filter: blur(4px);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease,
    background-color 320ms ease;
}

.testimonial-card.is-center {
  background: rgba(35, 35, 37, 0.96);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

.testimonial-card.is-left {
  transform: translateX(calc(-50% - var(--testimonial-side-offset))) scale(0.95);
  opacity: 0.82;
  filter: blur(0);
  z-index: 2;
}

.testimonial-card.is-right {
  transform: translateX(calc(-50% + var(--testimonial-side-offset))) scale(0.95);
  opacity: 0.82;
  filter: blur(0);
  z-index: 2;
}

.testimonial-card.is-hidden {
  opacity: 0;
  z-index: 1;
}

.poster-position {
  display: grid;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  place-items: center;
}

.poster-position::before {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.poster-position:hover::before,
.poster-position:focus-visible::before {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.22);
}

.poster-position.is-active::before {
  width: 12px;
  height: 12px;
  border-color: var(--pink-strong);
  background: var(--pink-strong);
  box-shadow: 0 0 14px rgba(215, 167, 209, 0.55);
}

.testimonial-card.is-left-mid {
  transform: translateX(calc(-50% - var(--testimonial-mid-offset))) scale(0.9);
  opacity: 0.56;
  filter: blur(0.4px);
  z-index: 1;
}

.testimonial-card.is-right-mid {
  transform: translateX(calc(-50% + var(--testimonial-mid-offset))) scale(0.9);
  opacity: 0.56;
  filter: blur(0.4px);
  z-index: 1;
}

.testimonial-card.is-left-far {
  transform: translateX(calc(-50% - var(--testimonial-far-offset))) scale(0.84);
  opacity: 0.3;
  filter: blur(1px);
  z-index: 0;
}

.testimonial-card.is-right-far {
  transform: translateX(calc(-50% + var(--testimonial-far-offset))) scale(0.84);
  opacity: 0.3;
  filter: blur(1px);
  z-index: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.testimonial-controls button {
  display: grid;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  place-items: center;
}

.testimonial-controls button::before {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.testimonial-controls button:hover::before,
.testimonial-controls button:focus-visible::before {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.22);
}

.testimonial-controls button.is-active::before {
  width: 12px;
  height: 12px;
  border-color: var(--pink-strong);
  background: var(--pink-strong);
  box-shadow: 0 0 14px rgba(215, 167, 209, 0.55);
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.68rem;
}

.testimonial-card h3,
.testimonial-card p {
  margin: 0;
}

.testimonial-card h3 {
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.testimonial-card p {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.38;
}

.rating {
  color: #ffcc33;
  margin-top: 0.24rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.avatar {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  flex: none;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.avatar::before,
.avatar::after {
  position: absolute;
  left: 50%;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transform: translateX(-50%);
}

.avatar::before {
  top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.avatar::after {
  bottom: 7px;
  width: 30px;
  height: 16px;
  border-radius: 50% 50% 38% 38%;
}

.avatar--olive {
  background: linear-gradient(135deg, #817c55, #34382e);
}

.avatar--james {
  background: linear-gradient(135deg, #7f8d68, #2b2d34);
}

.avatar--sophia {
  background: linear-gradient(135deg, #ba8f86, #33415f);
}

.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: end;
}

.about-editorial__head {
  align-self: center;
  padding-right: clamp(2rem, 4vw, 4rem);
}

.about-editorial__head h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.about-editorial__head h2 span {
  display: block;
}

.about-editorial__head h2 .about-title__outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(245, 243, 246, 0.92);
  text-stroke: 1.4px rgba(245, 243, 246, 0.92);
}

.about-editorial__head h2 .about-title__solid {
  color: var(--text);
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.about-editorial__story {
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: 1.35rem;
  padding: 0.4rem 0 0.4rem clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(215, 167, 209, 0.72);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.about-signature .brand-mark {
  width: 64px;
  height: 64px;
}

.about-signature strong,
.about-signature span {
  display: block;
}

.about-signature strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.about-signature span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.about-copy {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.62;
}

.skills-grid {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin: clamp(2.2rem, 5vh, 3.8rem) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.skill-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 66px;
  padding: 0 1rem;
  color: var(--muted-strong);
  font-size: 0.86rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.skill-item:first-child {
  padding-left: 0;
}

.skill-item:last-child {
  border-right: 0;
}

.skill-item::after {
  color: rgba(245, 243, 246, 0.28);
  content: attr(data-index);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.skill-item__line {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  border-radius: 999px;
  background: var(--pink-strong);
  transition: width 280ms ease;
}

.skill-item:hover .skill-item__line {
  width: 100%;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.services-intro {
  display: grid;
  align-content: center;
  padding-right: clamp(2rem, 5vw, 5rem);
}

.services-intro > p:first-child,
.service-card__eyebrow {
  margin: 0 0 0.9rem;
  color: var(--pink-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.services-intro h2 span {
  display: block;
  color: var(--pink-strong);
}

.services-intro__copy {
  max-width: 34ch;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.services-workspace {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  min-height: 350px;
  padding-left: clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(215, 167, 209, 0.72);
}

.service-switcher {
  position: relative;
}

.service-tabs {
  display: grid;
  width: 100%;
}

.service-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 64px;
  padding: 0 1rem 0 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
  color: rgba(245, 243, 246, 0.48);
  font-size: 0.86rem;
  font-weight: 650;
  text-align: left;
  transition: color 180ms ease, padding-left 180ms ease;
}

.service-tab:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.service-tab small {
  color: rgba(245, 243, 246, 0.24);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.service-tab:hover,
.service-tab.is-active {
  padding-left: 0.65rem;
  background: transparent;
  color: #ffffff;
}

.service-tab.is-active {
  box-shadow: inset 2px 0 0 var(--pink-strong);
}

.service-tab.is-active small {
  color: var(--pink-strong);
}

.service-card {
  max-width: none;
  margin: 0;
  padding: 1rem 0 1rem clamp(2rem, 4vw, 4rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-card h3,
.service-card p {
  margin: 0;
}

.service-card h3 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.service-card__body {
  max-width: 42ch;
  margin-top: 0.85rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card__price {
  margin-top: 1rem;
  color: var(--lime);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.service-card__note {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.service-card__cta,
.contact-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 46px;
  margin-top: 1rem;
  border-radius: 12px;
  border: 0;
  background: var(--pink);
  color: #ffffff;
  font-weight: 700;
}

.contact-form {
  max-width: 590px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(460px, 1.25fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  width: min(100%, 1060px);
  margin: 0 auto;
}

.contact-intro.section-heading {
  max-width: none;
  margin: 0;
  padding-top: 0.35rem;
  text-align: left;
}

.contact-intro h2 {
  font-size: clamp(3.1rem, 5vw, 4.75rem);
  line-height: 0.9;
}

.contact-intro h2 span {
  color: var(--pink-strong);
}

.contact-intro > p:last-child {
  max-width: 37ch;
  margin-top: 1.3rem;
  line-height: 1.6;
}

.contact-layout .contact-form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(1.5rem, 3vw, 2.75rem);
  border-left: 1px solid rgba(215, 167, 209, 0.55);
}

.contact-layout .contact-form input,
.contact-layout .contact-form textarea {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(219, 170, 213, 0.32);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-layout .contact-form input:focus,
.contact-layout .contact-form textarea:focus {
  border-color: var(--pink-strong);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(220, 165, 216, 0.1);
}

.contact-field__label {
  display: block;
  margin: 0 0 0.4rem 0.15rem;
  color: rgba(245, 243, 246, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-layout .contact-submit {
  max-width: 240px;
  margin-inline: 0;
}

.contact-layout .contact-success {
  width: 100%;
  margin: 0;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 650px;
  }

  .contact-intro.section-heading {
    padding: 0;
  }

  .contact-layout .contact-form {
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(215, 167, 209, 0.55);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-scroll-cue {
    display: none;
  }

  .contact-intro h2 {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .contact-intro > p:last-child {
    margin-top: 0.9rem;
  }

  .contact-layout {
    gap: 1.35rem;
  }

  .contact-layout .contact-form {
    padding-top: 1rem;
  }

  .contact-layout .contact-submit {
    max-width: none;
  }
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.contact-form label {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(219, 170, 213, 0.45);
  border-radius: 12px;
  background: rgba(28, 28, 30, 0.92);
  color: #ffffff;
  padding: 0.92rem 0.95rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 164px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c2bac2;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 184, 236, 0.88);
  box-shadow: 0 0 0 4px rgba(220, 165, 216, 0.12);
}

.attachment-field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  margin-top: 0.8rem;
}

.attachment-picker {
  display: inline-flex !important;
}

.contact-form .attachment-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.attachment-picker__button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(219, 170, 213, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}

.attachment-picker:focus-within .attachment-picker__button {
  border-color: rgba(245, 184, 236, 0.78);
  box-shadow: 0 0 0 3px rgba(220, 165, 216, 0.1);
}

.attachment-picker__button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.attachment-field__hint {
  color: var(--muted);
  font-size: 0.72rem;
}

.attachment-list {
  display: grid;
  width: 100%;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.attachment-list:empty {
  display: none;
}

.attachment-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.52rem 0.62rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.attachment-list li > span {
  display: flex;
  min-width: 0;
  gap: 0.5rem;
  align-items: baseline;
}

.attachment-list strong {
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-list small {
  flex: none;
  color: var(--muted);
  font-size: 0.68rem;
}

.attachment-list button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffb2b2;
  font-size: 0.72rem;
}

.contact-status {
  min-height: 1.35rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: center;
}

.contact-status[data-state="success"] {
  color: #d7edbf;
}

.contact-status[data-state="error"] {
  color: #ffb2b2;
}

.contact-submit {
  max-width: 208px;
  margin-inline: auto;
}

.contact-submit:disabled {
  opacity: 0.82;
}

.contact-success {
  width: min(100%, 590px);
  min-height: 340px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(219, 170, 213, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  animation: contact-confirmation-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-success[hidden] {
  display: none;
}

.contact-success__icon {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  color: #d7edbf;
}

.contact-success__icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-success h3 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2rem);
  letter-spacing: -0.035em;
}

.contact-success > p:not(.contact-success__eyebrow) {
  max-width: 390px;
  margin: 0.85rem auto 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-success__reset {
  min-height: 42px;
  margin-top: 1.5rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 650;
}

.contact-success__reset:hover {
  border-color: rgba(233, 195, 228, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

@keyframes contact-confirmation-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(228, 184, 220, 0.22);
  border-radius: 16px;
  background: rgba(30, 30, 32, 0.88);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.94);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
  z-index: 4;
}

.custom-cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0;
  transition: opacity 120ms ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor__dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  -webkit-backdrop-filter: invert(1) saturate(1.05);
  backdrop-filter: invert(1) saturate(1.05);
  will-change: transform;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  border-color: rgba(233, 195, 228, 0.4);
  background: rgba(44, 40, 46, 0.96);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-copy,
.showcase-card,
.section-heading,
.poster-stage,
.testimonial-track,
.about-grid,
.skills-grid,
.service-switcher,
.service-card,
.contact-form {
  animation: fade-up 420ms ease both;
}

.showcase-card {
  animation-delay: 80ms;
}

.poster-stage {
  animation-delay: 120ms;
}

.testimonial-track {
  animation-delay: 160ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  html {
    scroll-snap-type: y proximity;
  }

  body {
    scroll-snap-type: y proximity;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.55rem;
    max-width: 510px;
  }

  .hero-copy {
    justify-self: center;
  }

  .brand-lockup {
    flex-direction: column;
    text-align: center;
    gap: 1.15rem;
  }

  .brand-lockup .brand-mark {
    width: 86px;
    height: 86px;
  }

  .hero-copy__text p {
    margin: 0 auto;
  }

  .hero-scroll-cue {
    bottom: max(8.5rem, calc(env(safe-area-inset-bottom) + 8.5rem));
  }

  .showcase-card {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .section::after {
    inset: 10px;
    border-radius: 28px;
  }

  .site-header {
    display: none;
  }

  .floating-nav--mobile {
    position: fixed;
    right: auto;
    bottom: max(3.25rem, calc(env(safe-area-inset-bottom) + 3.25rem));
    left: 50%;
    z-index: 60;
    display: flex;
    margin: 0;
    transform: translateX(-50%);
  }

  .section-heading h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .gallery-heading-title {
    white-space: normal;
  }

  .poster-stage {
    height: clamp(306px, 40vw, 366px);
    max-width: clamp(340px, 50vw, 446px);
    overflow: visible;
  }

  .poster-controls {
    margin-top: 0.95rem;
  }

  .poster-card--left-far,
  .poster-card--left-mid,
  .poster-card--right-mid,
  .poster-card--right-far {
    left: 50%;
  }

  .poster-card--left-far {
    width: clamp(76px, 10vw, 104px);
    height: clamp(116px, 14vw, 145px);
    transform: translate(calc(-50% - clamp(114px, 15vw, 170px)), -50%);
    opacity: 0.74;
    z-index: 1;
  }

  .poster-card--left-mid {
    width: clamp(90px, 12vw, 135px);
    height: clamp(148px, 17vw, 166px);
    transform: translate(calc(-50% - clamp(74px, 9vw, 118px)), -50%);
    z-index: 2;
  }

  .poster-card--feature {
    width: clamp(204px, 26vw, 252px);
    height: clamp(268px, 31vw, 304px);
    padding: 0.78rem 0.78rem 0.7rem;
  }

  .poster-card--feature h3 {
    margin-top: 8.4rem;
    font-size: 1.85rem;
  }

  .poster-card__social--overlay {
    padding: 0.72rem 0.8rem;
  }

  .poster-card--right-mid {
    width: clamp(90px, 12vw, 135px);
    height: clamp(148px, 17vw, 166px);
    transform: translate(calc(-50% + clamp(74px, 9vw, 118px)), -50%);
    z-index: 2;
  }

  .poster-card--right-far {
    width: clamp(76px, 10vw, 104px);
    height: clamp(116px, 14vw, 145px);
    transform: translate(calc(-50% + clamp(114px, 15vw, 170px)), -50%);
    opacity: 0.74;
    z-index: 1;
  }

  .testimonial-track {
    --testimonial-mobile-width: min(84vw, 320px);
    display: flex;
    width: 100%;
    height: auto;
    margin: 0;
    overflow-x: auto;
    overflow-y: visible;
    max-width: 100%;
    gap: 0.85rem;
    padding:
      0
      calc((100% - var(--testimonial-mobile-width)) / 2)
      calc(0.25rem + 2px);
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc((100% - var(--testimonial-mobile-width)) / 2);
    scrollbar-width: none;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card,
  .testimonial-card.is-center,
  .testimonial-card.is-left,
  .testimonial-card.is-right,
  .testimonial-card.is-left-mid,
  .testimonial-card.is-right-mid,
  .testimonial-card.is-left-far,
  .testimonial-card.is-right-far,
  .testimonial-card.is-hidden {
    position: static;
    flex: 0 0 var(--testimonial-mobile-width);
    scroll-snap-align: center;
    width: var(--testimonial-mobile-width);
    height: auto;
    min-height: 220px;
    opacity: 1;
    transform: none;
    filter: none;
    z-index: auto;
    background: rgba(35, 35, 37, 0.96);
    box-shadow: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
    max-width: 680px;
    gap: 1.8rem;
  }

  .about-editorial__head {
    padding-right: 0;
  }

  .about-editorial__head h2 {
    max-width: 620px;
    font-size: clamp(3.1rem, 10vw, 5rem);
  }

  .about-editorial__story {
    padding-left: 1.25rem;
  }

  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-top: 0.6rem;
  }

  .skill-item:nth-child(2) {
    border-right: 0;
  }

  .skill-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .services-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 2rem;
  }

  .services-intro {
    padding-right: 0;
  }

  .services-intro h2 {
    max-width: 600px;
  }

  .services-workspace {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
    min-height: 0;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(215, 167, 209, 0.72);
    border-left: 0;
  }

  .service-tabs {
    width: 100%;
  }

  .service-tab {
    justify-content: space-between;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .scroll-top {
    display: none;
  }

  html,
  body {
    scroll-snap-type: y proximity;
  }

  .section-nav {
    top: auto;
    right: auto;
    bottom: max(0.35rem, env(safe-area-inset-bottom));
    left: 50%;
    z-index: 50;
    flex-direction: row;
    gap: 0.2rem;
    transform: translateX(-50%);
  }

  .section-nav__item {
    width: 32px;
    height: 32px;
  }

  .section-nav__item::before {
    width: 10px;
    height: 10px;
    border-color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  .section-nav__item.is-active::before {
    width: 15px;
    height: 15px;
    border-color: #efc0e9;
    background: #dfa9d7;
    box-shadow: 0 0 16px rgba(223, 169, 215, 0.8);
  }

  .section-nav__item::after {
    display: none;
  }

  .section {
    scroll-snap-stop: normal;
  }

  .container {
    width: min(100% - 24px, 420px);
  }

  .section-heading {
    width: 100%;
    max-width: 100%;
    padding-inline: 0.25rem;
  }

  .gallery-heading-title {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.75rem, 7.4vw, 1.95rem);
    line-height: 1.04;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .gallery-section .section-heading p {
    max-width: 100%;
    margin-inline: auto;
    text-wrap: balance;
  }

  .section {
    min-height: 100svh;
    padding: 3.6rem 0 9rem;
    --glow-left-size: 360px 560px;
    --glow-right-size: 360px 560px;
    --glow-top-size: 500px 160px;
    --glow-left-position: 4% 72%;
    --glow-right-position: 96% 36%;
  }

  .hero-section {
    padding-top: 1.8rem;
  }

  .hero-copy__text h1 {
    font-size: 2.3rem;
  }

  .hero-copy__text p {
    font-size: 0.9rem;
  }

  .showcase-card {
    padding: 0.66rem;
    border-radius: 18px;
  }

  .video-layout {
    grid-template-columns: minmax(0, 1fr) 60px;
    gap: 0.5rem;
  }

  .video-poster {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .thumb-column {
    gap: 0.42rem;
  }

  .thumb-chip {
    min-height: 28px;
    border-radius: 10px;
  }

  .channel-badge {
    width: 32px;
    height: 32px;
    font-size: 0.66rem;
  }

  .floating-nav {
    gap: 0.34rem;
    padding: 0.28rem;
  }

  .nav-icon {
    width: 40px;
    min-height: 40px;
  }

  .nav-icon--logo {
    width: 35px;
  }

  .nav-logo {
    width: 16px;
    height: 16px;
  }

  .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  .nav-divider {
    height: 24px;
  }

  .poster-stage {
    height: 294px;
    max-width: 320px;
    overflow: visible;
  }

  .poster-controls {
    margin-top: 0.25rem;
    gap: 0.6rem;
  }

  .poster-control {
    width: 42px;
    height: 42px;
  }

  .poster-card--left-far,
  .poster-card--left-mid,
  .poster-card--right-mid,
  .poster-card--right-far {
    left: 50%;
  }

  .poster-card--left-far {
    width: 78px;
    height: 116px;
    transform: translate(calc(-50% - 114px), -50%);
  }

  .poster-card--left-mid {
    width: 88px;
    height: 146px;
    transform: translate(calc(-50% - 72px), -50%);
  }

  .poster-card--left-mid h3,
  .poster-card--right-mid h3,
  .poster-card--right-far h3 {
    font-size: 1rem;
  }

  .poster-card--feature {
    width: 202px;
    height: 262px;
    padding: 0.75rem 0.75rem 0.68rem;
  }

  .poster-card--feature h3 {
    margin-top: 8.8rem;
    font-size: 1.7rem;
  }

  .poster-card--design-test {
    padding: 0;
  }

  .poster-card__banner {
    font-size: 0.57rem;
  }

  .poster-card__social--overlay {
    padding: 0.56rem 0.62rem;
  }

  .poster-card--right-mid {
    width: 88px;
    height: 146px;
    transform: translate(calc(-50% + 72px), -50%);
  }

  .poster-card--right-far {
    width: 78px;
    height: 116px;
    transform: translate(calc(-50% + 114px), -50%);
  }

  .testimonial-card,
  .testimonial-card.is-center,
  .testimonial-card.is-left,
  .testimonial-card.is-right,
  .testimonial-card.is-hidden {
    min-height: 0;
  }

  .testimonial-card h3 {
    font-size: 1.08rem;
  }

  .about-copy {
    font-size: 0.9rem;
  }

  .about-editorial__head h2 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
    line-height: 0.92;
  }

  .about-editorial__head h2 .about-title__outline {
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }

  .about-editorial__story {
    gap: 1rem;
    padding-left: 1rem;
  }

  .about-signature .brand-mark {
    width: 52px;
    height: 52px;
  }

  .skills-grid {
    gap: 0;
  }

  .skill-item {
    min-height: 54px;
    padding: 0 0.7rem;
    font-size: 0.78rem;
  }

  .skill-item:nth-child(3) {
    padding-left: 0;
  }

  .service-switcher {
    align-items: stretch;
  }

  .services-layout {
    gap: 1.35rem;
  }

  .services-intro > p:first-child {
    margin-bottom: 0.6rem;
  }

  .services-intro h2 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .services-intro__copy {
    margin-top: 0.85rem;
    font-size: 0.82rem;
  }

  .services-workspace {
    grid-template-columns: 1fr;
    padding-top: 1.25rem;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .service-tab {
    width: 100%;
    min-height: 54px;
    padding: 0.55rem 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.72rem;
    line-height: 1.15;
    text-align: center;
    justify-content: center;
  }

  .service-tab:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .service-tab small {
    display: none;
  }

  .service-tab:hover,
  .service-tab.is-active {
    padding-left: 0.5rem;
  }

  .service-tab.is-active {
    box-shadow: inset 0 -2px 0 var(--pink-strong);
  }

  .service-card {
    padding: 1.35rem 0 0;
  }

  .service-card h3 {
    font-size: 2rem;
  }

  .service-card__price {
    font-size: 2.35rem;
  }

  .contact-section {
    padding-bottom: 9rem;
  }

  .contact-success {
    min-height: 300px;
    padding: 1.6rem 1.2rem;
    border-radius: 16px;
  }

  .contact-success__icon,
  .contact-success__icon svg {
    width: 44px;
    height: 44px;
  }

  .contact-success__icon {
    margin-bottom: 0.9rem;
  }

  .contact-success h3 {
    font-size: 1.5rem;
  }

  .contact-success > p {
    font-size: 0.9rem;
  }

  .contact-success__reset {
    width: 100%;
    max-width: 260px;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .custom-cursor__dot {
    width: 20px;
    height: 20px;
  }
}

@supports not ((backdrop-filter: invert(1)) or (-webkit-backdrop-filter: invert(1))) {
  .custom-cursor__dot {
    background: #ffffff;
    border-color: transparent;
    mix-blend-mode: difference;
  }
}

/* Alternate full-width service deck */
@media (min-width: 981px) {
  .service-card {
    height: 108px;
  }
}

.services-layout {
  display: block;
  width: min(100%, 1060px);
}

.services-intro {
  display: block;
  padding: 0;
  text-align: center;
}

.services-intro > p:first-child {
  margin-bottom: 0.7rem;
}

.services-intro h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.25rem);
  line-height: 0.95;
}

.services-intro h2 span {
  display: inline;
}

.services-intro__copy {
  max-width: 48ch;
  margin: 0.9rem auto 0;
}

.services-workspace {
  display: block;
  min-height: 0;
  margin-top: clamp(1.6rem, 3.5vh, 2.4rem);
  padding: 0;
  border: 0;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-tab,
.service-tab:first-child,
.service-tab:last-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0.35rem 1rem;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(245, 243, 246, 0.5);
  text-align: left;
  box-shadow: none;
}

.service-tab:last-child {
  border-right: 0;
}

.service-tab small {
  order: 0;
  margin: 0;
  color: rgba(245, 243, 246, 0.26);
}

.service-tab:hover,
.service-tab.is-active {
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  box-shadow: inset 0 2px 0 var(--pink-strong);
}

.service-tab.is-active small {
  color: var(--pink-strong);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(280px, 1.35fr) minmax(170px, 0.65fr);
  grid-template-rows: auto;
  align-items: center;
  column-gap: clamp(1.5rem, 4vw, 4rem);
  row-gap: 0.45rem;
  margin: 0;
  padding: clamp(1.35rem, 3vh, 2rem) 0 0;
}

.service-card__eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.service-card h3 {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  font-size: clamp(2.4rem, 3.2vw, 3.25rem);
  line-height: 0.9;
}

.service-tab--direct {
  text-decoration: none;
}

.service-card__body {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: none;
  margin: 0;
}

.service-card__note {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
}

.service-card__cta {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  width: 100%;
  margin: 0.1rem 0 0;
}

@media (max-width: 980px) {
  .services-layout {
    max-width: 700px;
  }

  .services-workspace {
    margin-top: 1.7rem;
    padding: 0;
    border: 0;
  }

  .service-card {
    grid-template-columns: minmax(170px, 0.75fr) minmax(0, 1.25fr);
  }

  .service-card__cta {
    grid-column: 1 / -1;
    grid-row: 3;
    width: min(100%, 230px);
    margin-top: 0.8rem;
  }
}

@media (max-width: 640px) {
  .services-layout {
    gap: 0;
  }

  .services-intro h2 {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }

  .services-intro__copy {
    margin-top: 0.7rem;
  }

  .services-workspace {
    margin-top: 1.25rem;
  }

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

  .service-tab,
  .service-tab:first-child,
  .service-tab:last-child,
  .service-tab:hover,
  .service-tab.is-active {
    min-height: 44px;
    padding: 0.6rem 0.75rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .service-tab small {
    order: 0;
    margin: 0;
  }

  .service-tab:nth-child(even) {
    border-right: 0;
  }

  .service-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-top: 1.2rem;
  }

  .service-card__eyebrow,
  .service-card h3,
  .service-card__body,
  .service-card__note,
  .service-card__cta {
    grid-column: 1;
    grid-row: auto;
  }

  .service-card__eyebrow {
    margin: 0;
  }

  .service-card h3 {
    font-size: 1.85rem;
  }

  .service-card__cta {
    width: 100%;
    margin-top: 0.55rem;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  z-index: 20;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(10px);
}

.lightbox__dialog {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.9rem;
  width: min(92vw, var(--lightbox-dialog-width, 1100px));
  max-height: min(88vh, 900px);
  padding: 14px;
  border-radius: 24px;
  background: rgba(24, 24, 27, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(min(88vh, 900px) - 118px);
  border-radius: 16px;
  object-fit: contain;
  background: #111111;
}

.lightbox__caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  align-items: end;
  gap: 1.5rem;
  padding: 0 0.25rem 0.15rem;
}

.lightbox__meta {
  margin: 0 0 0.28rem;
  color: var(--pink-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.035em;
}

.lightbox__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.lightbox__control,
.lightbox__counter {
  position: absolute;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.lightbox.has-multiple.is-image-loaded .lightbox__control,
.lightbox.has-multiple.is-image-loaded .lightbox__counter {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__control {
  top: 44%;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(15, 15, 18, 0.72);
  color: #ffffff;
  place-items: center;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.lightbox__control:hover {
  background: rgba(35, 32, 38, 0.92);
}

.lightbox__control--previous {
  left: 26px;
}

.lightbox__control--next {
  right: 26px;
}

.lightbox__control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lightbox__counter {
  top: 24px;
  left: 50%;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(15, 15, 18, 0.7);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f2eef1;
  color: #111111;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.service-card__cta {
  justify-content: space-between;
  width: min(100%, 230px);
  min-height: 44px;
  padding: 0 0.9rem 0 1rem;
  border-radius: 10px;
}

.lightbox__positions {
  position: absolute;
  bottom: -38px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 180ms ease;
}

.lightbox.has-multiple.is-image-loaded .lightbox__positions {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__positions button {
  display: grid;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  place-items: center;
}

.lightbox__positions button::before {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lightbox__positions button:hover::before,
.lightbox__positions button:focus-visible::before {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__positions button.is-active::before {
  width: 12px;
  height: 12px;
  border-color: var(--pink-strong);
  background: var(--pink-strong);
  box-shadow: 0 0 14px rgba(215, 167, 209, 0.62);
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  body.is-lightbox-open .floating-nav--mobile,
  body.is-lightbox-open .section-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .lightbox__dialog {
    width: min(94vw, var(--lightbox-dialog-width, 560px));
    max-height: calc(92svh - 36px);
    gap: 0.7rem;
    padding: 10px;
  }

  .lightbox__image {
    max-height: calc(92svh - 211px);
  }

  .lightbox__caption {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0 0.2rem 0.2rem;
  }

  .lightbox__description {
    font-size: 0.76rem;
  }


  .lightbox__control {
    top: 42%;
    width: 40px;
    height: 40px;
  }

  .lightbox__control--previous {
    left: 18px;
  }

  .lightbox__control--next {
    right: 18px;
  }

  .lightbox__counter {
    top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  body {
    scroll-snap-type: none;
  }

  .custom-cursor {
    display: none;
  }

  .hero-scroll-cue {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
