:root {
  --ink: #222222;
  --ink-soft: #555555;
  --paper: #ffffff;
  --cream: #F5F1EE;
  --cream-soft: #faf8f5;
  --rose: #c98fa2;
  --coral: #dda18f;
  --lilac: #b9b5d6;
  --sage: #b8c8bb;
  --line: rgba(34, 34, 34, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --container: min(87%, 1400px);
  --section-pad: 150px;
  --header-height: 88px;
  --radius-xl: clamp(30px, 4vw, 56px);
  --radius-lg: clamp(24px, 3vw, 42px);
  --radius-md: 22px;
  --display: "Helvetica Neue", "Neue Haas Grotesk Text Pro", "Arial Nova", Arial, sans-serif;
  --sans: "Helvetica Neue", "Neue Haas Grotesk Text Pro", "Arial Nova", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 2147483647;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  max-width: 1400px;
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-pad);
}

p {
  margin: 0;
  font-size: 17pt;
}

.prose p + p {
  margin-top: 1.25em;
}

.site-header {
  position: fixed;
  z-index: 2147483646;
  inset: 0 0 auto;
  display: grid;
  width: 100%;
  min-height: var(--header-height);
  padding-block: 30px;
  align-items: center;
  background: transparent;
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: 90%;
  max-width: none;
  min-height: 64px;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  background: rgba(229, 223, 218, 0.5);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 10px 32px rgba(34, 34, 34, 0.05);
  transition: box-shadow 280ms ease, background-color 280ms ease, backdrop-filter 280ms ease;
  animation: nav-shell-enter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes nav-shell-enter {
  0% {
    opacity: 0;
    transform: translateY(-28px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header[data-scrolled="true"] .nav-shell,
.site-header[data-menu-open="true"] .nav-shell {
  background: rgba(229, 223, 218, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 14px 42px rgba(34, 34, 34, 0.08);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.wordmark-logo {
  height: 22px;
  width: auto;
  color: var(--ink-soft);
  display: block;
}

.wordmark-secondary {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:not(.nav-cta):hover::after,
.desktop-nav a:not(.nav-cta):focus-visible::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  transition: transform 220ms ease, background-color 220ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: flex;
  min-height: 100vh;
  min-height: max(100svh, 700px);
  padding-top: 130px;
  padding-bottom: 50px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(34, 34, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 34, 34, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 74%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 74%);
}

.hero-divider {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
}

.hero-music-notes {
  display: none !important;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-note {
  position: absolute;
  display: block;
  opacity: 1;
  will-change: transform;
}

.hero-note-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  animation: note-appear 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.note-sm { width: clamp(30px, 3.5vw, 50px); height: auto; }
.note-md { width: clamp(80px, 8vw, 120px); height: auto; }
.note-lg { width: clamp(150px, 14vw, 200px); height: auto; }

.note-1  { top: 5%;  left: 3vw;   animation: note-drift-1 22s ease-in-out infinite alternate; }
.note-2  { top: 12%; right: 4vw;  animation: note-drift-2 26s ease-in-out infinite alternate; }
.note-3  { bottom: 5%; left: 4vw;  animation: note-drift-3 19s ease-in-out infinite alternate-reverse; }
.note-4  { bottom: 7%; right: 3vw; animation: note-drift-4 24s ease-in-out infinite alternate-reverse; }
.note-5  { top: 46%; right: 2vw;  animation: note-drift-5 17s ease-in-out infinite alternate; }
.note-6  { top: 40%; left: 2vw;   animation: note-drift-6 21s ease-in-out infinite alternate; }
.note-7  { top: 3%;  left: 20%;  animation: note-drift-1 28s ease-in-out infinite alternate; }
.note-8  { top: 4%;  right: 22%; animation: note-drift-2 20s ease-in-out infinite alternate-reverse; }
.note-9  { bottom: 3%; left: 24%; animation: note-drift-3 23s ease-in-out infinite alternate; }
.note-10 { bottom: 4%; right: 23%; animation: note-drift-4 18s ease-in-out infinite alternate; }
.note-11 { top: 20%; left: 10%;  animation: note-drift-5 25s ease-in-out infinite alternate-reverse; }
.note-12 { top: 22%; right: 11%; animation: note-drift-6 19s ease-in-out infinite alternate; }
.note-13 { bottom: 22%; left: 12%; animation: note-drift-1 21s ease-in-out infinite alternate; }
.note-14 { bottom: 23%; right: 12%; animation: note-drift-2 16s ease-in-out infinite alternate; }
.note-15 { top: 62%; left: 4vw;  animation: note-drift-3 22s ease-in-out infinite alternate-reverse; }
.note-16 { top: 68%; right: 4vw; animation: note-drift-4 18s ease-in-out infinite alternate; }
.note-17 { top: 15%; left: 34%; animation: note-drift-5 30s ease-in-out infinite alternate; }
.note-18 { top: 14%; right: 36%; animation: note-drift-6 27s ease-in-out infinite alternate-reverse; }
.note-19 { bottom: 16%; left: 36%; animation: note-drift-1 29s ease-in-out infinite alternate-reverse; }
.note-20 { bottom: 14%; right: 34%; animation: note-drift-2 22s ease-in-out infinite alternate; }

.note-1 .hero-note-img  { animation-delay: 100ms; }
.note-2 .hero-note-img  { animation-delay: 250ms; }
.note-3 .hero-note-img  { animation-delay: 400ms; }
.note-4 .hero-note-img  { animation-delay: 550ms; }
.note-5 .hero-note-img  { animation-delay: 700ms; }
.note-6 .hero-note-img  { animation-delay: 850ms; }
.note-7 .hero-note-img  { animation-delay: 200ms; }
.note-8 .hero-note-img  { animation-delay: 350ms; }
.note-9 .hero-note-img  { animation-delay: 500ms; }
.note-10 .hero-note-img { animation-delay: 650ms; }
.note-11 .hero-note-img { animation-delay: 800ms; }
.note-12 .hero-note-img { animation-delay: 950ms; }
.note-13 .hero-note-img { animation-delay: 1100ms; }
.note-14 .hero-note-img { animation-delay: 1250ms; }
.note-15 .hero-note-img { animation-delay: 300ms; }
.note-16 .hero-note-img { animation-delay: 600ms; }
.note-17 .hero-note-img { animation-delay: 900ms; }
.note-18 .hero-note-img { animation-delay: 1050ms; }
.note-19 .hero-note-img { animation-delay: 1200ms; }
.note-20 .hero-note-img { animation-delay: 1350ms; }

@keyframes note-appear {
  0% {
    opacity: 0;
    transform: scale(0.2) translateY(36px) rotate(-24deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

@keyframes note-drift-1 {
  0% { transform: translate3d(0, 0, 0) rotate(-15deg) scale(0.95); }
  50% { transform: translate3d(35px, -45px, 0) rotate(18deg) scale(1.1); }
  100% { transform: translate3d(-25px, 30px, 0) rotate(-8deg) scale(1); }
}

@keyframes note-drift-2 {
  0% { transform: translate3d(0, 0, 0) rotate(20deg) scale(1.05); }
  50% { transform: translate3d(-40px, 40px, 0) rotate(-15deg) scale(0.9); }
  100% { transform: translate3d(30px, -25px, 0) rotate(12deg) scale(1); }
}

@keyframes note-drift-3 {
  0% { transform: translate3d(0, 0, 0) rotate(-10deg) scale(1); }
  50% { transform: translate3d(45px, 20px, 0) rotate(25deg) scale(1.12); }
  100% { transform: translate3d(-35px, -40px, 0) rotate(-18deg) scale(0.92); }
}

@keyframes note-drift-4 {
  0% { transform: translate3d(0, 0, 0) rotate(12deg) scale(0.9); }
  50% { transform: translate3d(-30px, -50px, 0) rotate(-22deg) scale(1.08); }
  100% { transform: translate3d(20px, 35px, 0) rotate(15deg) scale(0.98); }
}

@keyframes note-drift-5 {
  0% { transform: translate3d(0, 0, 0) rotate(-25deg) scale(1.02); }
  50% { transform: translate3d(50px, -30px, 0) rotate(14deg) scale(0.94); }
  100% { transform: translate3d(-30px, 45px, 0) rotate(-12deg) scale(1.06); }
}

@keyframes note-drift-6 {
  0% { transform: translate3d(0, 0, 0) rotate(8deg) scale(0.96); }
  50% { transform: translate3d(-45px, -35px, 0) rotate(-28deg) scale(1.14); }
  100% { transform: translate3d(35px, 25px, 0) rotate(22deg) scale(0.9); }
}

.hero .container {
  width: 90%;
  max-width: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 0;
  min-height: 0;
  margin-top: 0;
}

.section-index,
.service-number,
.media-card figcaption,
.service-media,
.founder-media figcaption,
.required-note {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-media-wrap {
  position: relative;
  display: grid;
  flex: 1;
  width: 100%;
  height: auto;
  min-width: 0;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-media-stage {
  position: relative;
  height: 100%;
  min-height: clamp(360px, 55svh, 760px);
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 32px 90px rgba(34, 34, 34, 0.13);
}

.player-title {
  position: absolute;
  z-index: 5;
  top: clamp(1.5rem, 4vw, 4rem);
  left: clamp(1.5rem, 4vw, 4rem);
  max-width: min(760px, 72%);
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(34, 34, 34, 0.38);
}

.player-title span {
  display: block;
}

.hero-media-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  margin: 0;
  grid-template-rows: minmax(0, 1fr);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.035);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 700ms;
}

.hero-media-frame.is-active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0s;
}

.media-surface {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
}

.media-surface > img,
.media-surface > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.media-frame-showreel .media-surface,
.media-frame-artists .media-surface,
.media-frame-immersive .media-surface {
  background: #222222;
}

.hero-media-frame .media-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 35%, transparent 65%);
}

.media-surface::after,
.intro-image::after,
.media-placeholder::after,
.service-media::after,
.founder-portrait::after,
.inquiry-media::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.24) 48%, transparent 56%),
    linear-gradient(0deg, rgba(34, 34, 34, 0.22), transparent 52%);
  background-size: 210% 100%, 100% 100%;
  content: "";
}

.intro-image::after,
.media-placeholder::after,
.service-media::after,
.founder-portrait::after,
.inquiry-media::after {
  animation: light-sweep 9s ease-in-out infinite;
}

.intro-image::after {
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-media-frame .media-surface::after {
  animation: none;
}

.hero-media-frame.is-active .media-surface::after {
  animation: light-sweep 9s ease-in-out infinite;
  animation-delay: 200ms;
}

.media-light {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(2px);
  mix-blend-mode: screen;
  animation: media-float 8s ease-in-out infinite alternate;
}

.media-light-a {
  top: 14%;
  right: 10%;
  width: 24%;
  height: 58%;
  background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
}

.media-light-b {
  bottom: 9%;
  left: 13%;
  width: 42%;
  height: 34%;
  background: radial-gradient(circle, rgba(255, 248, 230, 0.78), rgba(255, 248, 230, 0));
  animation-delay: -3s;
}

.media-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
}

.media-play::after {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
  content: "";
  animation: play-pulse 2.8s ease-out infinite;
}

.media-play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--paper);
}

.media-card figcaption small,
.founder-media figcaption small,
.service-media small,
.inquiry-media small {
  color: rgba(34, 34, 34, 0.52);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-controls {
  display: grid;
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.media-controls button {
  display: flex;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.media-controls button:hover,
.media-controls button:focus-visible,
.media-controls button.is-current {
  background: var(--paper);
  transform: translateY(-2px);
}

.media-controls button i {
  position: relative;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(34, 34, 34, 0.15);
}

.media-controls button i::after {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.media-controls button.is-current i::after {
  animation: media-progress 5.8s linear forwards;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.2rem, 3vw, 3rem);
}

.section-index {
  padding-top: 0.65rem;
  color: rgba(34, 34, 34, 0.45);
}

.section-heading h2,
.trusted-heading h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(3.1rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

#create-title,
#founder-title,
#trusted-title,
#services-title {
  font-size: clamp(4.65rem, 9vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.section-subtitle {
  max-width: 1050px;
  margin-top: clamp(1.6rem, 3vw, 3rem);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.5vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.subtitle-word {
  display: inline-block;
}

.subtitle-word.word-1 { color: #8c4c68; }
.subtitle-word.word-2 { color: #aa6e40; }
.subtitle-word.word-3 { color: #3b735c; }
.subtitle-word.word-4 { color: #554d8a; }
.subtitle-word.word-5 { color: #7a3e5c; }
.subtitle-word.word-dash { color: rgba(34, 34, 34, 0.35); }
.subtitle-word.word-6 { color: #8c4c68; }
.subtitle-word.word-7 { color: #aa6e40; }
.subtitle-word.word-8 { color: #3b735c; }
.subtitle-word.word-9 { color: #554d8a; }
.subtitle-word.word-10 { color: #7a3e5c; }

.create-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.create-section {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  isolation: isolate;
}

.create-balloons-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.balloon {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.balloon-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(0, var(--balloon-parallax-y, 0px), 0);
  will-change: transform;
}

.balloon-wrap-white {
  z-index: 1;
}

.balloon-wrap-blush {
  z-index: 2;
}

.balloon-white {
  top: 0;
  right: 0;
  width: 120%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #F5F1EE;
  opacity: 1;
  transform: translate(50%, -50%);
  animation: balloon-pulse-1-right 6s ease-in-out infinite alternate;
}

.balloon-blush {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #E8B8C8;
  opacity: 0.9;
  transform: translate(50%, -50%);
  animation: balloon-pulse-2-right 7.5s ease-in-out infinite alternate;
}

@keyframes balloon-pulse-1-right {
  0% {
    transform: translate(50%, -50%) scale(1);
  }
  100% {
    transform: translate(50%, -50%) scale(1.08);
  }
}

@keyframes balloon-pulse-2-right {
  0% {
    transform: translate(50%, -50%) scale(1);
  }
  100% {
    transform: translate(50%, -50%) scale(1.09);
  }
}

@keyframes balloon-pulse-1-left {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes balloon-pulse-2-left {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.09);
  }
}

.create-section .container {
  position: relative;
  z-index: 1;
}



.intro-section {
  position: relative;
  overflow: hidden;
  background: #F5F1EE;
}

.intro-marquee-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.intro-marquee-track {
  display: flex;
  width: max-content;
  animation: intro-marquee-loop 35s linear infinite;
}

.intro-marquee-track img {
  height: clamp(220px, 34vw, 460px);
  width: auto;
  flex-shrink: 0;
  display: block;
}

@keyframes intro-marquee-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.intro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.intro-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  min-height: 0;
  margin-left: 0;
}

.intro-image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: clamp(5px, 0.6vw, 8px) solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(70, 50, 62, 0.16);
  will-change: transform;
  background: #FFFFFF;
}

.intro-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius-lg) - clamp(5px, 0.6vw, 8px));
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-image:hover > img {
  transform: scale(1.04);
}

.intro-image-primary {
  top: 4%;
  right: 0;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1.6 / 1;
  transform: translate3d(0, var(--parallax-y-1, 0px), 0);
  will-change: transform;
}

.intro-image-secondary {
  bottom: 5%;
  left: 0;
  z-index: 2;
  width: 62%;
  aspect-ratio: 1.4 / 1;
  transform: translate3d(0, var(--parallax-y-2, 0px), 0);
  will-change: transform;
}

.intro-copy {
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.intro-copy p {
  color: rgba(34, 34, 34, 0.78);
}

.intro-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.create-layout {
  display: grid;
  margin-top: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1.05fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 9rem);
}

.create-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.create-copy p {
  color: rgba(34, 34, 34, 0.78);
}

.editorial-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.62fr);
  align-items: end;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.media-card {
  margin: 0;
}

.media-card-wide {
  transform: translate3d(0, calc(-7% + var(--editorial-parallax-y-1, 0px)), 0);
  will-change: transform;
}

.media-card-tall {
  transform: translate3d(0, var(--editorial-parallax-y-2, 0px), 0);
  will-change: transform;
}

.media-placeholder {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.media-card-tall .media-placeholder {
  min-height: 440px;
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  filter: blur(2px);
}

.media-placeholder-performance {
  background:
    radial-gradient(circle at 62% 26%, rgba(255, 255, 255, 0.8), transparent 22%),
    linear-gradient(155deg, #dac1c6, #a9a7c3 45%, #ebc0a4);
}

.media-placeholder-performance::before {
  right: 9%;
  bottom: -12%;
  width: 46%;
  height: 86%;
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
}

.media-placeholder-performance::after {
  top: 16%;
  left: 8%;
  width: 44%;
  height: 35%;
  background: radial-gradient(circle, rgba(113, 73, 94, 0.26), transparent 64%);
}

.media-placeholder-detail {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.76), transparent 18%),
    linear-gradient(185deg, #e7cdb8, #b9c8b9 48%, #8e7e94);
}

.media-placeholder-detail::before {
  top: 16%;
  left: 20%;
  width: 70%;
  height: 22%;
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(-16deg);
}

.media-card figcaption,
.founder-media figcaption {
  display: flex;
  padding: 14px 4px 0;
  justify-content: space-between;
  gap: 1rem;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}

.services-balloons-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.balloon-wrap-services-white {
  z-index: 1;
}

.balloon-wrap-services-cream {
  z-index: 2;
}

.balloon-white-left {
  top: 0;
  left: 0;
  width: 120%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #FFFFFF;
  opacity: 1;
  transform: translate(-50%, -50%);
  animation: balloon-pulse-1-left 6s ease-in-out infinite alternate;
}

.balloon-cream-left {
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #CECAE8;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  animation: balloon-pulse-2-left 7.5s ease-in-out infinite alternate;
}

.services-heading {
  position: relative;
  z-index: 5;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.service-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

.service-card {
  display: grid;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: var(--radius-xl);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 90px rgba(34, 34, 34, 0.06);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms ease;
}

.service-card:hover {
  box-shadow: 0 38px 110px rgba(34, 34, 34, 0.1);
  transform: translateY(-6px);
}

.service-card-reverse .service-content {
  order: 2;
}

.service-card-reverse .service-media {
  order: 1;
}

.service-content {
  display: flex;
  min-width: 0;
  padding: clamp(2.4rem, 5vw, 5.6rem);
  flex-direction: column;
  container-type: inline-size;
}

.service-number {
  font-size: clamp(2rem, 4.7vw, 60px);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: auto;
  color: rgba(34, 34, 34, 0.4);
}

.service-content h2 {
  margin: clamp(1.8rem, 3.5vw, 3.5rem) 0 clamp(1.2rem, 2.5vw, 2.5rem);
  font-family: var(--sans);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.service-content ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem clamp(1.2rem, 2.5vw, 2.5rem);
}

.service-content li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(34, 34, 34, 0.72);
  font-size: 1.02rem;
  line-height: 1.42;
}

.service-content li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.service-media,
.inquiry-media {
  display: flex;
  min-height: 0;
  margin: 18px;
  padding: 24px;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 14px);
  justify-content: flex-end;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  isolation: isolate;
}

.service-media::before,
.service-media::after,
.inquiry-media::before,
.inquiry-media::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  animation: media-float 9s ease-in-out infinite alternate;
}

.service-media-one {
  position: relative;
  background: linear-gradient(155deg, #d9a7b4, #a9a6c7 48%, #efb793);
}

.service-media-two {
  position: relative;
  background: linear-gradient(32deg, #8b7c8a, #d28ca6 48%, #f0c5aa);
}

.service-media-three {
  position: relative;
  background: conic-gradient(from 195deg at 42% 48%, #d7b2b6, #9faac4, #e7b995, #b5c9bc, #d7b2b6);
}

.service-media::before {
  top: 8%;
  right: -10%;
  width: 76%;
  height: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(-24deg);
}

.service-media::after {
  bottom: 16%;
  left: 10%;
  width: 48%;
  height: 30%;
  background: radial-gradient(circle, rgba(70, 44, 61, 0.28), transparent 68%);
  animation-delay: -4s;
}

.service-media small,
.inquiry-media small {
  color: rgba(255, 255, 255, 0.7);
}

.founder-section {
  position: relative;
  background: var(--paper);
  isolation: isolate;
}

.founder-balloons-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.balloon-wrap-founder-cream {
  z-index: 1;
}

.balloon-wrap-founder-soft {
  z-index: 2;
}

.balloon-cream-right {
  top: 0;
  right: 0;
  width: 120%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #F5F1EE;
  opacity: 1;
  transform: translate(50%, -50%);
  animation: balloon-pulse-1-right 6s ease-in-out infinite alternate;
}

.balloon-soft-right {
  top: 0;
  right: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #F2C0B0;
  opacity: 0.9;
  transform: translate(50%, -50%);
  animation: balloon-pulse-2-right 7.5s ease-in-out infinite alternate;
}

.founder-heading {
  position: relative;
  z-index: 5;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 10rem);
}

.founder-media {
  position: sticky;
  top: 130px;
  align-self: start;
  margin: 0;
}

.founder-portrait {
  position: relative;
  display: grid;
  min-height: min(68vw, 720px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  place-items: center;
  background:
    radial-gradient(circle at 58% 25%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(158deg, #ead6c7, #c6a7b6 52%, #8f8eaa);
  box-shadow: 0 32px 100px rgba(34, 34, 34, 0.1);
}

.founder-portrait::before {
  position: absolute;
  right: -22%;
  bottom: -8%;
  width: 84%;
  height: 86%;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.08), 0 0 0 78px rgba(255, 255, 255, 0.06);
}

.founder-portrait span {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: clamp(12rem, 28vw, 28rem);
  font-style: italic;
  line-height: 1;
  transform: translateX(-4%);
}

.founder-copy p {
  color: rgba(34, 34, 34, 0.78);
}

.founder-copy strong {
  color: var(--ink);
}

.founder-lede {
  margin-bottom: 1.55em;
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.7vw, 4.7rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.founder-closing {
  margin-top: clamp(3rem, 6vw, 6rem) !important;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius-lg);
  color: var(--ink) !important;
  background: var(--cream);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.trusted-section {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--cream);
}

.trusted-heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.2rem, 3vw, 3rem);
}

.client-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.client-track {
  display: flex;
  flex: none;
  width: max-content;
  margin: 0;
  padding: clamp(1.4rem, 2.5vw, 2.4rem) 0;
  list-style: none;
  align-items: center;
  animation: trusted-marquee 48s linear infinite;
}

.client-track li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.8rem, 3.5vw, 4rem);
}

.client-track li::after {
  display: none;
}

.client-track img {
  display: block;
  height: clamp(38px, 4.8vw, 68px);
  width: auto;
  max-width: clamp(140px, 18vw, 240px);
  object-fit: contain;
  filter: none;
  opacity: 0.92;
  transition: opacity 280ms ease, transform 280ms ease;
}

.client-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.client-track-wrap {
  display: flex;
  width: max-content;
}

.client-marquee {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.client-marquee.is-dragging {
  cursor: grabbing;
}

.inquiry-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.inquiry-glow {
  position: absolute;
  z-index: -1;
  top: -20vw;
  right: -12vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 143, 162, 0.28), transparent 67%);
  filter: blur(30px);
  animation: ambient-drift 13s ease-in-out infinite alternate;
}

.inquiry-heading {
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.inquiry-heading .section-index {
  color: rgba(255, 255, 255, 0.42);
}

.inquiry-heading h2 {
  max-width: 1220px;
}

.inquiry-intro {
  display: grid;
  max-width: 1120px;
  margin-top: clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.inquiry-intro p,
.inquiry-intro.prose p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(500px, 1fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
}

.inquiry-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.form-title {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.7vw, 4.5rem);
  line-height: 1;
}

.inquiry-side ul {
  display: grid;
  margin: 0 0 clamp(2rem, 4vw, 4rem);
  padding: 0;
  list-style: none;
  gap: 0.75rem;
}

.inquiry-side li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.inquiry-side li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.inquiry-media {
  position: relative;
  min-height: 280px;
  margin: auto 0 0;
  background: linear-gradient(150deg, #dfb09f, #ba8ca5 52%, #8e8aaa);
}

.inquiry-media::before {
  top: -10%;
  right: -12%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.62), transparent 65%);
}

.inquiry-media::after {
  bottom: -24%;
  left: -8%;
  width: 66%;
  height: 72%;
  background: radial-gradient(circle, rgba(65, 43, 57, 0.28), transparent 62%);
  animation-delay: -4s;
}

.form-shell {
  min-width: 0;
  padding: clamp(1.5rem, 3.8vw, 4rem);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.24);
}

.required-note {
  margin-bottom: 2rem;
  color: rgba(34, 34, 34, 0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 1.1rem;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

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

.field label {
  display: flex;
  margin-bottom: 0.45rem;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field label > span:not([aria-hidden]) {
  color: rgba(34, 34, 34, 0.42);
  font-size: 0.59rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(201, 143, 162, 0.12);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  display: flex;
  width: 100%;
  min-height: 58px;
  margin-top: 1.7rem;
  padding: 0 1rem 0 1.35rem;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 220ms ease, transform 220ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--ink-soft);
  transform: translateY(-2px);
}

.submit-button i {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  font-size: 1rem;
  font-style: normal;
}

.form-status {
  margin-top: 0.9rem;
  color: rgba(34, 34, 34, 0.54);
  font-size: 0.72rem;
}

.inquiry-closing {
  display: grid;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: clamp(2.5rem, 5vw, 5rem);
  border-top: 1px solid var(--line-light);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.inquiry-closing > p {
  max-width: 900px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.7vw, 5.8rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.inquiry-closing a {
  display: flex;
  max-width: 420px;
  flex-direction: column;
  gap: 0.5rem;
  overflow-wrap: anywhere;
}

.inquiry-closing a strong {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-closing a span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.site-footer {
  padding-block: 56px;
  background: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.55fr 1fr auto;
  align-items: end;
  gap: 2rem;
}

.wordmark-footer {
  align-self: start;
}

.footer-inner > p {
  max-width: 560px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.4rem;
  color: rgba(34, 34, 34, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta a {
  color: var(--ink);
  text-transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition:
    opacity 2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .reveal-delay-1 {
  transition-delay: 220ms;
}

.js .reveal-delay-2 {
  transition-delay: 440ms;
}

.js .reveal-delay-3 {
  transition-delay: 660ms;
}

@keyframes aura-float-1 {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  33% { transform: translate3d(6vw, -4vh, 0) scale(1.18) rotate(45deg); }
  66% { transform: translate3d(-3vw, 5vh, 0) scale(0.92) rotate(-30deg); }
  100% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
}

@keyframes aura-float-2 {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  40% { transform: translate3d(-7vw, 6vh, 0) scale(1.22) rotate(-50deg); }
  75% { transform: translate3d(5vw, -3vh, 0) scale(0.88) rotate(35deg); }
  100% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
}

@keyframes ambient-drift {
  from { transform: translate3d(-2%, -2%, 0) scale(0.96); }
  to { transform: translate3d(3%, 4%, 0) scale(1.05); }
}

@keyframes intro-float-primary {
  from { transform: translate3d(0, -8px, 0); }
  to { transform: translate3d(0, 10px, 0); }
}

@keyframes intro-float-secondary {
  from { transform: translate3d(0, 9px, 0); }
  to { transform: translate3d(0, -8px, 0); }
}

@keyframes light-sweep {
  0%, 18% { background-position: 120% 0, 0 0; }
  65%, 100% { background-position: -120% 0, 0 0; }
}

@keyframes media-float {
  from { transform: translate3d(-2%, -3%, 0) rotate(-3deg); }
  to { transform: translate3d(4%, 5%, 0) rotate(3deg); }
}

@keyframes play-pulse {
  from { opacity: 0.65; transform: scale(0.86); }
  to { opacity: 0; transform: scale(1.35); }
}

@keyframes media-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes trusted-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Breakpoints System:
   Desktop: 1001px+ (Base styles)
   Tablet Landscape: 651px - 1000px (@media max-width: 1000px)
   Mobile:  320px - 650px  (@media max-width: 650px)
*/

@media (max-width: 1000px) {
  .balloon-white,
  .balloon-white-left,
  .balloon-cream-right {
    width: 140%;
  }

  .balloon-blush,
  .balloon-cream-left,
  .balloon-soft-right {
    width: 120%;
  }

  :root {
    --section-pad: 100px;
    --header-height: 82px;
  }

  p {
    font-size: 14pt;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: max(100svh, 600px);
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .site-header {
    padding-block: 30px;
  }

  .nav-shell {
    min-height: 58px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: var(--paper);
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 1;
    inset: 0 0 auto;
    display: grid;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: rgba(242, 237, 232, 0.98);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    transition: height 350ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, visibility 240ms ease;
  }

  .mobile-nav[data-open="true"] {
    height: 100svh;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-inner {
    display: flex;
    padding-block: 7vh;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
  }

  .mobile-nav a {
    padding: 0.65rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    text-decoration: none;
    opacity: 0;
    transform: translateY(24px);
  }

  .mobile-nav[data-open="true"] a {
    animation: nav-fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .mobile-nav[data-open="true"] a:nth-child(1) { animation-delay: 0.08s; }
  .mobile-nav[data-open="true"] a:nth-child(2) { animation-delay: 0.16s; }
  .mobile-nav[data-open="true"] a:nth-child(3) { animation-delay: 0.24s; }
  .mobile-nav[data-open="true"] a:nth-child(4) { animation-delay: 0.32s; }
  .mobile-nav[data-open="true"] a:nth-child(5) { animation-delay: 0.40s; }

  @keyframes nav-fade-up {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-media-wrap {
    width: 100%;
  }

  .hero-media-stage {
    min-height: 0;
  }

  .intro-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
  }

  .intro-media {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    min-height: 0;
    margin-left: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .intro-copy {
    max-width: none;
  }

  .create-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .create-copy {
    position: static;
    max-width: 800px;
  }

  .editorial-media {
    width: min(100%, 820px);
    margin-left: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .service-card {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }

  .service-content ul {
    grid-template-columns: 1fr;
  }

  .founder-layout {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
    gap: 4rem;
  }

  .inquiry-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .inquiry-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 2rem;
  }

  .inquiry-side .form-title,
  .inquiry-side ul {
    grid-column: 1;
  }

  .inquiry-side ul {
    margin-bottom: 0;
  }

  .inquiry-media {
    min-height: 100%;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .inquiry-closing {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }
@media (max-width: 650px) {
  .service-card,
  .service-card-reverse {
    grid-template-columns: 1fr;
  }

  .service-card-reverse .service-content,
  .service-card-reverse .service-media {
    order: initial;
  }

  .service-media {
    min-height: 390px;
    margin-top: 0;
  }

  .service-content h2 {
    margin-top: 3rem;
  }

  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-media {
    position: static;
    width: 100%;
  }

  .founder-portrait {
    min-height: min(98vw, 650px);
  }

  .hero-divider {
    height: 0px;
  }
  :root {
    --section-pad: 50px;
    --header-height: 74px;
    --radius-xl: 30px;
    --radius-lg: 26px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    padding-block: 30px;
  }

  .nav-shell {
    min-height: 58px;
    padding-left: 16px;
  }

  .wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  .wordmark-logo {
    height: 24px;
  }

  .wordmark-secondary {
    font-size: 0.55rem;
  }

  .hero::before {
    background-size: 48px 48px;
  }

  .hero {
    min-height: max(100svh, 500px);
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .hero-media-wrap {
    width: 100%;
  }

  .hero-media-stage {
    min-height: clamp(300px, 55svh, 620px);
    border-width: 7px;
  }

  .player-title {
    top: 1rem;
    left: 1rem;
    max-width: 76%;
    font-size: clamp(1.35rem, 6.5vw, 2.2rem);
    line-height: 1.02;
  }

  .media-play {
    width: 62px;
    height: 62px;
  }

  .section-heading,
  .trusted-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trusted-section {
    padding-top: 2.2rem;
    padding-bottom: 0;
  }

  .trusted-heading {
    margin-bottom: 2.2rem;
  }

  .section-index {
    padding-top: 0;
  }

  .section-heading h2,
  .trusted-heading h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 0.94;
  }

  #create-title,
  #founder-title,
  #trusted-title,
  #services-title {
    font-size: clamp(2rem, 19vw, 4.65rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
  }

  .section-subtitle {
    margin-top: 1.35rem;
    font-size: clamp(2rem, 9.8vw, 3.3rem);
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-layout .intro-media {
    order: 2;
    width: 100%;
    aspect-ratio: 1.1 / 1;
  }

  .intro-layout .intro-copy {
    order: 1;
  }
  .create-layout {
    margin-top: 3rem;
    gap: 3rem;
  }

  .editorial-media {
    grid-template-columns: 1fr 0.72fr;
  }

  .media-placeholder {
    min-height: 390px;
  }

  .media-card-tall .media-placeholder {
    min-height: 290px;
  }

  .media-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .service-stack {
    gap: 1.4rem;
  }

  .service-card {
    min-height: 0;
  }

  .service-content {
    padding: 1.65rem;
  }

  .service-content h2 {
    margin: 2.2rem 0 1.6rem;
  }

  .service-media {
    min-height: 320px;
    margin: 0 12px 12px;
  }

  .founder-heading {
    margin-bottom: 3rem;
  }

  .founder-layout {
    gap: 3rem;
  }

  .founder-media {
    width: 100%;
  }

  .founder-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .founder-lede {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .founder-closing {
    padding: 1.5rem;
    font-size: clamp(1.9rem, 8.7vw, 2.8rem);
  }

  .client-track li {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .section-heading h2,
  .trusted-heading h2,
  .inquiry-heading h2 {
    font-size: clamp(2rem, 7.8vw, 3.8rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .service-content h2 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    margin: 1.8rem 0 1.2rem;
  }

  .inquiry-heading {
    margin-bottom: 3rem;
  }

  .inquiry-intro {
    grid-template-columns: 1fr;
    margin-top: 1.6rem;
  }

  .inquiry-intro.prose p + p {
    margin-top: 1.25em !important;
  }

  .inquiry-side {
    display: flex;
  }

  .inquiry-media {
    min-height: 280px;
    margin-top: 0;
  }

  .form-shell {
    padding: 1.25rem;
  }

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

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

  .inquiry-closing {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .inquiry-closing > p {
    font-size: clamp(2.2rem, 10.8vw, 3.5rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-inner > p {
    font-size: 1.3rem;
  }

  .footer-meta {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .client-marquee {
    overflow: visible;
  }

  .client-track {
    width: var(--container);
    margin-inline: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .client-track[aria-hidden="true"] {
    display: none;
  }
}

@media (forced-colors: active) {
  .hero-glow,
  .inquiry-glow,
  .media-light,
  .service-media::before,
  .service-media::after,
  .inquiry-media::before,
  .inquiry-media::after {
    display: none;
  }

  .hero-media-stage,
  .intro-image,
  .media-placeholder,
  .service-media,
  .founder-portrait,
  .inquiry-media,
  .form-shell {
    border: 2px solid CanvasText;
  }
}
