@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: rgba(11, 11, 11, 0.72);
  --line: rgba(11, 11, 11, 0.12);
  --blue: #175cff;
  --blue-soft: rgba(23, 92, 255, 0.08);
  --panel: #f5f6f8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --service-orange: #ff6300;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: clip;
}

body.is-intro {
  overflow: hidden;
  background: #000;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 850ms ease;
}

.intro-screen.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.intro-screen__inner {
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
  padding: 24px;
}

.intro-screen__title {
  margin: 0;
  min-height: 1em;
  color: #fff;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  color: #ffffff;
  text-decoration: none;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.site-logo.is-dark {
  color: #0b0b0b;
}

.site-contact-link {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  color: #ffffff;
  text-decoration: none;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease, opacity 220ms ease;
}

.site-contact-link:hover {
  opacity: 0.72;
}

.site-contact-link.is-dark {
  color: #0b0b0b;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu__backdrop {
  position: fixed;
  inset: 0;
  background: #000;
}

.site-menu__panel {
  position: relative;
  width: 100vw;
  height: 100svh;
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #000;
  color: #fff;
}

.site-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  width: 100%;
  position: absolute;
  top: clamp(20px, 4vw, 48px);
  left: 0;
  padding: 0 clamp(24px, 5vw, 48px);
}

.site-menu__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.site-menu__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.site-menu__links {
  display: grid;
  gap: 18px;
  width: min(90vw, 900px);
  margin-top: 80px;
}

.site-menu__links a,
.site-menu__links button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.06em;
  line-height: 1;
  font-size: clamp(2.1rem, 5vw, 5rem);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.site-menu__links a:hover,
.site-menu__links button:hover {
  opacity: 0.72;
}

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

img {
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__overlay--dark {
  background: rgba(0, 0, 0, 0.42);
}

.hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  pointer-events: none;
}

.hero__copy--secondary {
  gap: 18px;
  align-content: center;
  justify-items: center;
}

.page--home .hero--outro .hero__copy--secondary {
  align-content: center;
  justify-items: center;
  text-align: center;
  max-width: min(780px, calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 80px);
}

.page--home .hero--outro .hero__secondary-heading {
  max-width: 12ch;
}

.page--home .hero--outro .hero__secondary-copy {
  max-width: 34ch;
}

.page--home .hero--outro .hero__eyebrow {
  text-align: center;
}

.page--home .hero--outro .hero__copy--secondary,
.page--home .hero--outro .hero__copy--secondary * {
  font-family: "Inter", Arial, Helvetica, sans-serif !important;
}

.page--home .hero--outro .hero__secondary-heading {
  font-size: clamp(1.9rem, 3.9vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: none;
  max-width: 13ch;
  font-weight: 700;
  text-wrap: balance;
}

.page--home .hero--outro .hero__secondary-copy {
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.6;
  max-width: 40ch;
}

.page--home .hero--outro .hero__eyebrow {
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero__copy--tertiary {
  display: grid;
  place-items: center;
}

.hero--feature {
  background: #ff6300;
}

.hero--feature .hero__copy--secondary {
  align-content: center;
  justify-items: center;
}

.hero--feature .hero__secondary-copy,
.hero--feature .hero__eyebrow,
.hero--feature .hero__secondary-heading {
  color: #fff;
}

.hero__tertiary-caption {
  margin: 0;
  color: #fff;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero__heading--home {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(0.7rem, 1.3vw, 1.15rem);
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(12px);
  transition:
    opacity 850ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 900ms ease;
  will-change: opacity, transform, filter;
}

.hero#top .hero__copy {
  place-items: end center;
  padding-bottom: clamp(56px, 10vh, 120px);
}

.hero.is-ready .hero__heading--home {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.hero__secondary-heading {
  margin: 0;
  max-width: 14ch;
  color: #fff;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 3.3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero__secondary-heading-accent {
  color: inherit;
}

.hero__eyebrow--accent {
  color: #ff6300;
}

.hero__secondary-heading--link {
  display: inline-block;
  text-decoration: none;
  pointer-events: auto;
}

.hero__secondary-heading--link:hover {
  opacity: 0.82;
}

.hero__secondary-copy {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  line-height: 1.65;
}

.hero__copy--secondary .hero__secondary-heading,
.hero__copy--secondary .hero__secondary-copy,
.hero__copy--secondary .hero__eyebrow {
  pointer-events: auto;
}

.hero__kicker,
.section__kicker,
.intro__eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
}

.hero__heading {
  margin: 0;
  max-width: 14ch;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
  color: #fff;
}

.hero__heading--about {
  max-width: min(12ch, 100%);
  display: grid;
  gap: clamp(0.06em, 0.5vw, 0.12em);
  font-size: clamp(3.4rem, 7vw, 7rem);
  letter-spacing: -0.06em;
  color: #fff;
  text-align: left;
  line-height: 0.86;
  text-transform: none;
}

.hero__heading--about span {
  display: block;
  white-space: nowrap;
}

.hero__kicker--about {
  color: var(--service-orange);
}

.page--about .hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100svh;
  background: #050505;
  color: #fff;
}

.page--about .hero__image--about {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.45) contrast(1.05) saturate(0.95);
}

.page--about .hero__overlay--about {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.page--about .hero__content {
  position: relative;
  z-index: 2;
  left: auto;
  bottom: auto;
  max-width: min(1280px, calc(100vw - 40px));
  margin: 0 auto;
  opacity: 1;
  transform: none;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(72px, 12vh, 140px);
  padding-bottom: clamp(72px, 10vh, 120px);
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
  min-height: 100svh;
  text-align: left;
  flex-direction: column;
  gap: 14px;
}

.page--about .hero__heading--about {
  margin-left: 0;
}

.page--about .hero__kicker--about {
  text-align: left;
}

.page--about .page > section {
  position: relative;
  z-index: 1;
}

.about-intro {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  color: #0b0b0b;
  border-top: 1px solid rgba(11, 11, 11, 0.1);
}

.about-intro__inner {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(84px, 10vh, 128px) 0 clamp(110px, 12vh, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.page--about .white-bubble {
  background: #fff;
}

.page--about .white-bubble__inner {
  justify-content: center;
}

.statement--about {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding-top: 0;
}

.about-values {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  color: #0b0b0b;
  border-top: 1px solid rgba(11, 11, 11, 0.1);
  height: auto;
}

.about-values--list {
  margin-top: 0;
  padding-bottom: clamp(96px, 10vh, 140px);
  height: auto;
}

.about-values__inner {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  justify-content: end;
  align-items: start;
  text-align: right;
  padding: clamp(84px, 10vh, 128px) 0 clamp(84px, 10vh, 128px);
}

.about-values__content {
  display: grid;
  gap: 18px;
  align-items: start;
  text-align: right;
  justify-self: end;
  max-width: min(820px, 100%);
}

.about-values:not(.about-values--list) .about-values__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-values:not(.about-values--list) .about-values__content {
  width: min(820px, 100%);
  align-items: flex-start;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.about-values:not(.about-values--list) .about-values__kicker {
  margin-bottom: 22px;
}

.about-values:not(.about-values--list) .about-values__heading {
  margin-inline: auto;
}

.about-values--list .about-values__inner {
  grid-template-columns: 1fr;
}

.about-values--list .about-values__content {
  width: min(820px, 100%);
  align-items: flex-start;
  text-align: right;
  margin-left: 0;
  margin-right: 0;
}

.about-values__kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(11, 11, 11, 0.72);
}

.about-values__heading {
  margin: 0;
  max-width: 14ch;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.08;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  font-weight: 500;
  color: #0b0b0b;
  margin-left: auto;
}

.about-values__copy {
  margin: 0;
  max-width: 46ch;
  color: rgba(11, 11, 11, 0.74);
  line-height: 1.68;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  margin-left: auto;
}

.about-followup {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  background: #fff;
  color: #0b0b0b;
  border-top: 1px solid rgba(11, 11, 11, 0.1);
}

.about-followup__inner {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(88px, 12vh, 150px) 0;
  text-align: left;
}

.about-followup__kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--service-orange);
}

.about-followup__heading {
  margin: 0;
  max-width: 14ch;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.08;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  font-weight: 500;
  color: #0b0b0b;
}

.about-followup__heading span {
  display: block;
}

.about-followup__copy {
  margin: 0;
  max-width: 46ch;
  color: rgba(11, 11, 11, 0.74);
  line-height: 1.7;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.about-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  background: var(--service-orange);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-banner__inner {
  width: min(1280px, calc(100vw - 32px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-banner__heading {
  margin: 0;
  max-width: 12ch;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.08;
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 900px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
  }

  .about-intro__media {
    justify-self: start;
    width: min(100%, 520px);
  }
}

.page--about .hero__heading--about {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero__cutout-text {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 540px;
  font-weight: 950;
  letter-spacing: -0.14em;
  text-transform: uppercase;
  transform: scaleY(1.22);
  transform-origin: center;
}

.page {
  background: var(--bg);
}

.section {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 110px 0 0;
}

.statement {
  padding-top: 116px;
  padding-bottom: 72px;
}

.statement__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 56px);
  align-items: center;
}

.statement__content {
  min-width: 0;
}

.statement__note {
  margin: 0;
  align-self: center;
  justify-self: center;
  color: #0b0b0b;
  font-family: inherit;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.65;
  letter-spacing: 0;
  font-weight: 400;
  max-width: 34ch;
}

.statement__kicker {
  color: var(--service-orange);
}

.about-values__kicker {
  color: var(--service-orange);
}

.statement__heading,
.intro__headline,
.section__title {
  margin: 0;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

.statement__heading {
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  max-width: 16ch;
  font-weight: 500;
}

.statement__copy,
.intro__copy,
.body-copy {
  margin: 18px 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.65;
}

.partnerships {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(96px, 12vh, 164px) 0 clamp(168px, 18vh, 260px);
  background: #fff;
  color: #0b0b0b;
  overflow: hidden;
}

.partnerships__inner {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.partnerships__header {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.partnerships__eyebrow {
  margin: 0;
  color: rgba(11, 11, 11, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.partnerships__title {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
  max-width: 12ch;
}

.partnerships__copy {
  margin: 0;
  max-width: 46ch;
  color: rgba(11, 11, 11, 0.78);
  line-height: 1.75;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

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

.partnerships__grid--placeholder {
  margin-top: 34px;
}

.partnerships__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  background: #f5f5f5;
  border: 0;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.08);
  isolation: isolate;
}

.partnerships__card:nth-child(2n) {
  transform: translateY(22px);
}

.partnerships__card img {
  width: 100%;
  aspect-ratio: 4 / 6;
  height: auto;
  object-fit: cover;
  display: block;
  transform: none;
  transition: transform 650ms ease, filter 650ms ease;
  filter: saturate(0.95) contrast(1.05);
}

.partnerships__card:hover img {
  transform: scale(1.08);
}

.partnerships__card--placeholder {
  background: #f5f5f5;
}

.partnerships__caption {
  padding: 14px 4px 2px;
  text-align: left;
}

.partnerships__caption h3 {
  margin: 0;
  color: #0b0b0b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.partnerships__caption p {
  margin: 4px 0 0;
  color: rgba(11, 11, 11, 0.62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #050505;
}

.home-banner__image {
  width: 100%;
  height: min(28svh, 340px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-banner__copy {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1;
  display: grid;
  place-items: start center;
  padding: 28px 20px 0;
  text-align: center;
  pointer-events: none;
}

.home-banner__text {
  margin: 0;
  max-width: none;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.82rem, 1.5vw, 1.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-shadow: none;
  white-space: nowrap;
}

.home-banner__text-accent {
  color: #ff6300;
}

.home-post-partnerships,
.home-post-partnerships * {
  font-family: Arial, Helvetica, sans-serif !important;
}

.home-post-partnerships .statement {
  background: #050505;
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(34px, 5vw, 72px) clamp(22px, 4vw, 48px);
}

.home-post-partnerships .statement__layout {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.home-post-partnerships .statement__content {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.home-post-partnerships .statement__kicker,
.home-post-partnerships .statement__heading,
.home-post-partnerships .statement__copy,
.home-post-partnerships .statement__note {
  font-family: inherit !important;
}

.home-post-partnerships .statement__kicker {
  text-transform: uppercase !important;
  color: #ff6300;
  letter-spacing: 0.16em;
}

.home-post-partnerships .statement__heading {
  letter-spacing: 0.02em !important;
  line-height: 0.96;
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
  font-weight: 700;
  max-width: 14ch;
}

.home-post-partnerships .statement__copy {
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.blue-bubble {
  width: 100vw;
  height: 220svh;
  margin-top: 44px;
  margin-left: calc(50% - 50vw);
}

.blue-bubble__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blue-bubble__panel {
  width: var(--bubble-width, 280px);
  height: var(--bubble-height, 280px);
  background: #0038ff;
  color: #fff;
  border-radius: var(--bubble-radius, 999px);
  overflow: hidden;
  will-change: width, height, border-radius;
}

.blue-bubble__inner {
  width: 100%;
  height: 100%;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: var(--bubble-content-opacity, 0);
  transform: translateY(var(--bubble-content-shift, 18px));
  transition: opacity 120ms linear, transform 120ms linear;
}

.section__kicker--light {
  color: rgba(255, 255, 255, 0.82);
}

.blue-bubble__heading {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.12;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  font-weight: 400;
  text-align: center;
  display: grid;
  justify-items: center;
}

.blue-bubble__heading,
.blue-bubble__heading span {
  text-transform: none;
}

.blue-bubble__heading span {
  display: block;
  text-align: center;
}

.blue-bubble__heading span:first-child {
  white-space: normal;
}

.blue-bubble__heading span:last-child {
  white-space: nowrap;
}

.blue-bubble__copy {
  margin: 18px 0 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.white-bubble {
  width: 100vw;
  height: 220svh;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  background: #000;
}

.white-bubble__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.white-bubble__panel {
  width: var(--white-bubble-width, 280px);
  height: var(--white-bubble-height, 280px);
  background: #fff;
  color: #0b0b0b;
  border-radius: var(--white-bubble-radius, 999px);
  overflow: hidden;
  will-change: width, height, border-radius;
}

.white-bubble__inner {
  width: 100%;
  height: 100%;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
}

.service-marquee__track {
  display: flex;
  width: max-content;
  animation: service-marquee-scroll 22s linear infinite;
}

.service-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  padding-right: clamp(14px, 1.8vw, 24px);
  white-space: nowrap;
}

.service-marquee__group span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(0.95rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}

@keyframes service-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.page--services {
  background: #fff;
  color: #0b0b0b;
  min-height: 100vh;
}

.page--services .site-logo {
  color: #fff;
}

.page--services .site-logo.is-dark,
.page--services .site-contact-link.is-dark {
  color: #0b0b0b;
}

.page--services .site-logo,
.page--services .site-contact-link {
  color: #ffffff;
}

.services-page {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 90px;
}

.services-hero {
  position: relative;
  min-height: 100svh;
  background: #050505;
  color: #ffffff;
  overflow: hidden;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 48%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.services-hero__content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: clamp(72px, 10vw, 140px) 0 clamp(40px, 5vw, 72px);
  align-items: end;
  min-height: 100svh;
}

.services-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 46ch;
  margin-top: auto;
}

.services-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.services-tile {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.services-tile::before {
  content: none;
}

.services-tile__icon {
  position: relative;
  z-index: 1;
  width: min(42%, 180px);
  height: auto;
  display: block;
}

.services-tile__icon * {
  stroke: var(--service-orange);
}

.services-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.services-hero__title {
  margin: 0;
  max-width: 10ch;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  color: #ffffff;
}

.services-hero__text {
  margin: 18px 0 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
}

.services-hero .section__kicker--light {
  color: rgba(255, 255, 255, 0.72);
}

.services-hero .services-hero__kicker {
  color: var(--service-orange) !important;
}

.services-bubble {
  width: 100vw;
  height: 220svh;
  margin-top: -12svh;
  margin-left: calc(50% - 50vw);
  background: #050505;
}

.services-bubble__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.services-bubble__panel {
  width: var(--services-bubble-width, 240px);
  height: var(--services-bubble-height, 240px);
  border-radius: var(--services-bubble-radius, 999px);
  background: #fff;
  color: #0b0b0b;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  will-change: width, height, border-radius;
}

.services-bubble__inner {
  width: 100%;
  height: 100%;
  opacity: var(--services-bubble-content-opacity, 0);
  transform: translateY(var(--services-bubble-content-shift, 18px));
  transition: opacity 0.2s linear, transform 0.2s linear;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 64px);
  background: #fff;
}

.services-list-page {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  color: #0b0b0b;
  margin-top: 0;
  padding: 8px 0 88px;
}

.page--services .services-list {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding-top: 0;
  background: transparent;
  border-top: 0;
}

.services-list--timeline {
  --services-timeline-spine: clamp(36px, 4.8vw, 92px);
  --services-timeline-column: clamp(88px, 9vw, 140px);
  padding-left: clamp(88px, 9vw, 140px);
}

.services-list--timeline::before {
  content: "";
  position: absolute;
  left: var(--services-timeline-spine);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 99, 0, 0.2), rgba(255, 99, 0, 1), rgba(255, 99, 0, 0.2));
}

.page--services .services-list__row {
  border-bottom-color: transparent;
}

.page--services .services-list__title {
  color: #0b0b0b;
}

.page--services .services-list__copy {
  color: rgba(11, 11, 11, 0.74);
}

.services-list__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 0;
}

.services-list__row--timeline {
  position: relative;
  grid-template-columns: var(--services-timeline-column) minmax(0, 1fr);
  align-items: start;
  gap: 0;
  padding-right: 0;
}

.services-list__row--timeline::after {
  content: none;
}

.services-list__copy-group {
  display: grid;
  gap: 12px;
  grid-column: 2;
  width: 100%;
  justify-self: stretch;
}

.services-list__title::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 14px;
  background: var(--service-orange);
}

.services-list__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
}

.services-list__image .services-tile__icon {
  width: min(38%, 160px);
}

.services-list__image--compact {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 5;
}

.services-list__title {
  margin: 0;
  max-width: 14ch;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.06;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: #0b0b0b;
}

.services-list__copy {
  margin: 0;
  justify-self: start;
  max-width: 46ch;
  color: rgba(11, 11, 11, 0.74);
  line-height: 1.72;
  font-size: clamp(0.88rem, 0.95vw, 0.96rem);
}

.services-page__footer {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding-top: 72px;
}

.services-page__back {
  color: #fff;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(2rem, 4vw, 4rem);
  text-decoration: none;
}

.services-contact {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 72svh;
  padding: 120px 20px 160px;
  background: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: none;
}

.services-contact__content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 20px;
}

.services-contact__cursor {
  position: absolute;
  left: var(--services-cursor-x, 50%);
  top: var(--services-cursor-y, 50%);
  width: 340px;
  height: 340px;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  -webkit-mask-image: url("./puzzle-piece.svg");
  mask-image: url("./puzzle-piece.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
  transition: opacity 140ms ease;
}

.services-contact__cursor::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.services-contact__cursor-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: transparent;
  transform: none;
  object-fit: unset;
  object-position: center;
  opacity: 1;
  mix-blend-mode: normal;
  will-change: auto;
}

.services-contact__cursor-image .services-tile__icon {
  width: min(40%, 150px);
}

.services-contact.is-active .services-contact__cursor {
  opacity: 0.98;
}

.services-contact__trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  cursor: none;
  display: inline-block;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.services-contact__trigger:hover {
  opacity: 0.78;
  transform: scale(1.08);
}

.services-contact__back {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  text-decoration: none;
  cursor: none;
  display: inline-block;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.services-contact__back:hover {
  opacity: 0.78;
  transform: scale(1.08);
}

.script-write {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.script-write__inner {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.script-write__line {
  margin: 0;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
  color: #0b0b0b;
  text-shadow: none;
}

.script-write__text {
  display: inline-block;
  position: relative;
  clip-path: inset(0 calc((1 - var(--script-progress, 0)) * 100%) 0 0);
  will-change: clip-path;
}

.script-write__accent {
  color: #0b0b0b;
}

.script-write__subtext {
  margin: 18px auto 0;
  max-width: 34ch;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.7;
  color: rgba(11, 11, 11, 0.72);
  text-transform: none;
  letter-spacing: 0;
}

.script-write__squiggle {
  display: block;
  width: clamp(150px, 24vw, 300px);
  height: auto;
  margin: 18px auto 0;
  color: #0b0b0b;
  opacity: 0.95;
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section__title {
  font-size: clamp(2.8rem, 6.3vw, 7rem);
}

.archive {
  padding-top: 160px;
  background: #fff;
  color: #0b0b0b;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: 120px;
}

.archive .section__kicker {
  color: rgba(11, 11, 11, 0.72);
}

.archive__head {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
  justify-items: start;
  text-align: left;
}

.archive__title {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
  max-width: 12ch;
}

.archive__copy {
  margin: 0;
  max-width: 46ch;
  color: rgba(11, 11, 11, 0.78);
  line-height: 1.75;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  text-align: left;
}

.archive > .section__head,
.archive > .archive-preview-grid {
  width: min(1280px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.archive-preview-marquee {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 12px 0 0;
}

.archive-preview-marquee__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: start;
  transform: none;
  transition: none;
  will-change: auto;
}

.archive-preview-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #f5f5f5;
  border: 0;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.08);
  isolation: isolate;
}

.archive-preview-stack .archive-preview {
  width: 100%;
  aspect-ratio: 4 / 6;
  min-height: 0;
  position: static;
  overflow: hidden;
  padding: 0;
  background: transparent;
  flex: 0 0 auto;
}

.archive-preview-stack .archive-preview img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.01);
  transition: transform 650ms ease, filter 420ms ease;
  will-change: transform, filter;
}

.archive-preview-stack .partnerships__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px 12px;
  background: #ff6300;
  display: grid;
  gap: 4px;
  z-index: 2;
}

.archive-preview-stack .partnerships__caption h3 {
  color: #0b0b0b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.archive-preview-stack .partnerships__caption p {
  margin: 0;
  color: rgba(11, 11, 11, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.archive-preview-stack .archive-preview {
  position: relative;
}

.archive-preview-stack:hover .archive-preview img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.08);
}

.work-heroes {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  gap: 0;
}

.work-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
}

.work-hero + .work-hero {
  margin-top: 0;
}

.work-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--preview-shift-y, 0px), 0);
  will-change: transform;
}

.work-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.work-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
}

.work-hero__kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-hero__title {
  margin: 0;
  max-width: 14ch;
  color: #fff;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 3.3rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.work-hero__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  line-height: 1.65;
  max-width: 42ch;
}

.archive-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.archive-preview {
  min-height: 420px;
  border-radius: 0;
  border: 0;
  background: #fff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.archive-preview--large {
  grid-column: span 2;
  min-height: 420px;
}

.archive-preview--wide {
  grid-column: span 2;
  min-height: 520px;
}

.archive-preview--image {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.archive-preview--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, var(--preview-shift-y, 0px), 0);
  transform-origin: center;
  will-change: transform;
}

.archive-preview--dzire img,
.archive-preview--dzire .archive-preview__video {
  object-position: center 40%;
}

.archive-preview--champ img {
  object-position: center 28%;
}

.archive-preview__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: translate3d(0, var(--preview-shift-y, 0px), 0);
  transform-origin: center;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.archive-preview--video.is-playing .archive-preview__video {
  opacity: 1;
}

.archive-preview--video.is-playing img {
  opacity: 0;
}

.archive-preview__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  margin-top: 0;
  padding: 24px;
  color: #fff;
  background: transparent;
  transition: opacity 0.25s ease;
}

.archive-preview--video.is-playing .archive-preview__content {
  opacity: 0;
}

.archive-preview__content h3,
.archive-preview__content p {
  color: #fff;
}

.archive-preview__subtext {
  color: #fff !important;
}

.archive-preview__content h3 {
  margin: 8px 0 8px;
}

.archive-preview h3 {
  margin: 0;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  max-width: 11ch;
  color: #0b0b0b;
}

.archive-preview p {
  margin: 0;
  color: rgba(11, 11, 11, 0.72);
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 72px 0 160px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section__trigger {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
  color: #fff;
  cursor: pointer;
}

.contact-section__trigger:hover {
  opacity: 0.72;
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 72px 0 56px;
  background: #fff;
  color: #0b0b0b;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(11, 11, 11, 0.08);
}

.site-footer__inner {
  width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: 28px 56px;
  align-items: start;
  text-align: left;
}

.site-footer__brand-block {
  display: grid;
  gap: 16px;
  align-content: start;
}

.site-footer__brand {
  margin: 0;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  line-height: 1;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: #0b0b0b;
}

.site-footer__intro {
  margin: 0;
  max-width: 32ch;
  color: rgba(11, 11, 11, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

.site-footer__column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer__label {
  margin: 0 0 6px;
  color: rgba(11, 11, 11, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 500;
}

.site-footer__column a {
  color: rgba(11, 11, 11, 0.78);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer__column a:hover,
.site-footer__contact:hover {
  opacity: 0.72;
}

.site-footer__contact {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(11, 11, 11, 0.78);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  justify-self: start;
}

.site-footer__meta {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 11, 11, 0.08);
  color: rgba(11, 11, 11, 0.52);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  align-items: center;
}

.site-footer__links a {
  color: rgba(11, 11, 11, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-footer__links a:hover,
.site-footer__contact:hover {
  opacity: 0.72;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.78);
  backdrop-filter: blur(14px);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  background: #fff;
  color: #0b0b0b;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  appearance: none;
  border: 0;
  background: transparent;
  color: #0b0b0b;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-modal__kicker {
  color: #0b0b0b;
}

.contact-modal__title {
  margin: 0 0 20px;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.contact-form--inline {
  width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f6f7fa);
  border: 1px solid rgba(11, 11, 11, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form--inline label:nth-child(5),
.contact-form--inline .contact-form__submit {
  grid-column: 1 / -1;
}

.contact-form--inline textarea {
  min-height: 180px;
}

.contact-form--inline .contact-form__submit {
  justify-self: start;
  margin-top: 8px;
  min-width: 220px;
  background: var(--blue);
}

.culture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding-top: 128px;
}

.culture__copy {
  max-width: 48ch;
}

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

.culture__block {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
  box-shadow: var(--shadow);
}

.culture__block span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.culture__block p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.closing {
  padding: 80px 0 90px;
}

.archive-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.archive-cta__link {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-block;
  color: #fff;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
  text-decoration: none;
}

.archive-cta__link:hover {
  opacity: 0.75;
}

.archive-cta__link--dark {
  color: #fff;
}

.archive-cta__link--dark:hover {
  opacity: 0.75;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding-bottom: 8px;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(11, 11, 11, 0.58);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  font-size: 0.92rem;
  background: #fafafa;
  color: #0b0b0b;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(11, 11, 11, 0.38);
  background: #fff;
}

.contact-form__submit {
  appearance: none;
  border: 0;
  border-radius: 18px;
  padding: 14px 18px;
  background: transparent;
  color: #0b0b0b;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  font-weight: 400;
  justify-self: start;
  border: 1px solid rgba(11, 11, 11, 0.12);
  cursor: pointer;
}

.contact-form__submit:hover {
  border-color: rgba(11, 11, 11, 0.28);
  background: rgba(11, 11, 11, 0.02);
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

.page--creativity {
  background: #0b0b0b;
  color: #fff;
  min-height: 100vh;
}

.page--creativity .site-logo {
  color: #fff;
}

.creativity-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px;
}

.creativity-hero {
  width: min(920px, 100%);
  padding: clamp(32px, 6vw, 72px);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

.creativity-hero__title {
  margin: 0 0 18px;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  max-width: 9ch;
}

.creativity-hero__text {
  margin: 0 0 28px;
  max-width: 34ch;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.page--project {
  background: #fff;
  color: #0b0b0b;
  min-height: 100vh;
}

.page--project .site-logo {
  color: #0b0b0b;
}

.page--project .site-contact-link {
  color: #0b0b0b;
}

.page--project .site-logo.is-dark {
  color: #0b0b0b;
}

.page--project .site-contact-link.is-dark {
  color: #0b0b0b;
}

.project-page {
  width: 100%;
  background: #fff;
  color: #0b0b0b;
  padding: 72px 0 120px;
}

.project-page__hero {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
}

.project-page__hero-frame {
  padding: clamp(14px, 2vw, 24px);
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: var(--shadow);
}

.project-page__hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.project-page__hero-video {
  display: block;
  width: 100%;
  height: auto;
}

.project-page__body {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding-top: 42px;
  display: grid;
  gap: 40px;
}

.project-page__intro {
  display: grid;
  gap: 14px;
  width: min(840px, 100%);
}

.project-page__kicker {
  margin-bottom: 0;
  color: rgba(11, 11, 11, 0.72);
}

.project-page__title {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-size: clamp(2.8rem, 6vw, 6rem);
  max-width: 10ch;
}

.project-page__subhead {
  margin: 0;
  color: #ff6300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.project-page__lede {
  margin: 0;
  max-width: 52ch;
  color: rgba(11, 11, 11, 0.78);
  line-height: 1.8;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.project-writeup__content {
  display: grid;
  gap: 24px;
}

.project-writeup__section {
  display: grid;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 11, 11, 0.08);
}

.project-writeup__section h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  color: #0b0b0b;
}

.project-writeup__section p {
  margin: 0;
  max-width: 68ch;
  color: rgba(11, 11, 11, 0.78);
  line-height: 1.8;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.project-writeup__details {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 11, 11, 0.08);
}

.project-writeup__details h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  color: #0b0b0b;
}

.project-writeup__details-list {
  display: grid;
  gap: 18px;
}

.project-writeup__detail {
  display: grid;
  gap: 6px;
  padding: 0;
}

.project-writeup__detail-label {
  margin: 0;
  color: rgba(11, 11, 11, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
}

.project-writeup__detail-body {
  margin: 0;
  max-width: 68ch;
  color: rgba(11, 11, 11, 0.78);
  line-height: 1.8;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.project-page__footer {
  padding-top: 8px;
}

.project-page__footer a {
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px) {
  .project-page {
    padding: 60px 0 96px;
  }

  .project-page__hero,
  .project-page__body {
    width: min(100vw - 24px, 1280px);
  }
}

@media (max-width: 640px) {
  .project-page {
    padding: 52px 0 84px;
  }

  .project-page__hero,
  .project-page__body {
    width: min(100vw - 20px, 1280px);
  }

  .project-page__body {
    gap: 32px;
  }

  .project-page__intro {
    gap: 12px;
  }

  .project-page__title {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .project-page__hero-frame {
    padding: 12px;
  }
}

.page--contact {
  background: #fff;
  color: #0b0b0b;
  min-height: 100vh;
}

.page--contact .site-logo,
.page--contact .site-contact-link {
  color: #0b0b0b;
}

.page--contact .site-logo.is-dark,
.page--contact .site-contact-link.is-dark {
  color: #0b0b0b;
}

.contact-page {
  width: 100%;
  min-height: 100svh;
  background: #fff;
  color: #0b0b0b;
  padding: 120px 0 96px;
}

.contact-page__title {
  margin: 0;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.08;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  max-width: 14ch;
}

.contact-page__form-head {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 760px;
}

.contact-page__panel .section__kicker {
  color: var(--service-orange);
}

.contact-page__panel {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 0;
}

.contact-page__form-copy {
  margin: 0;
  max-width: 52ch;
  line-height: 1.75;
  color: rgba(11, 11, 11, 0.82);
}

.contact-page .contact-form--inline {
  width: 100%;
  margin: 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow);
}

.contact-page .contact-form--inline .contact-form__submit {
  background: #0b0b0b;
  color: #fff;
}

.project-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 120px;
  background: #050505;
  color: #fff;
}

.project-shell--oyster-creek {
  width: min(1280px, calc(100vw - 32px));
}

.project-shell--oyster-creek .project-hero {
  width: min(980px, 100%);
  margin: 0 auto;
  min-height: 72svh;
  border-radius: 36px;
  overflow: hidden;
}

.project-shell--oyster-creek .project-media {
  width: min(900px, 100%);
  aspect-ratio: 4 / 5;
}

.project-shell--oyster-creek .project-flow,
.project-shell--oyster-creek .project-footer {
  width: min(980px, 100%);
}

.project-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-hero--full {
  display: block;
}

.project-hero__title {
  margin: 0;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-size: clamp(3.6rem, 8vw, 8.5rem);
  max-width: 8ch;
  color: #fff;
}

.project-hero__intro {
  margin: 18px 0 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.project-meta {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-meta li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.project-hero__image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-hero__overlay {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  bottom: clamp(28px, 6vw, 72px);
  z-index: 2;
  max-width: min(840px, calc(100vw - 40px));
  padding: clamp(18px, 3vw, 28px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.68), rgba(11, 11, 11, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.project-flow,
.project-media,
.project-footer {
  width: min(1280px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.project-flow {
  padding: 0 0 36px;
  display: grid;
}

.project-flow__timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-bottom: 8px;
  padding-left: 34px;
  --flow-progress: 0;
}

.project-flow__timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.28));
  transform-origin: top;
  transform: scaleY(var(--flow-progress, 0));
}

.project-flow__row {
  width: 100%;
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-flow__row:first-child {
  border-top: 0;
}

.project-flow__row--timeline {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  padding: 46px 0;
  border-top: 0;
}

.project-flow__row--timeline + .project-flow__row--timeline {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-flow__marker {
  width: 14px;
  height: 14px;
  margin-top: 0.55em;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.project-flow__row--right .project-flow__content {
  grid-column: 2;
  justify-self: end;
}

.project-flow__row--left .project-flow__content {
  grid-column: 1;
  justify-self: start;
}

.project-flow__content {
  width: min(100%, 560px);
}

.project-flow__title {
  margin: 0;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  max-width: 9ch;
  font-weight: 400;
  color: #fff;
}

.project-flow__copy {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.project-visual {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 0 24px;
}

.project-visual--square {
  padding: 0 0 28px;
}

.project-visual--left .project-visual__frame,
.project-visual--right .project-visual__frame {
  width: min(720px, calc(100vw - 32px));
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
}

.project-visual--left .project-visual__frame {
  margin-left: max(16px, calc((100vw - min(1280px, calc(100vw - 32px))) / 2));
  margin-right: auto;
}

.project-visual--right .project-visual__frame {
  margin-left: auto;
  margin-right: max(16px, calc((100vw - min(1280px, calc(100vw - 32px))) / 2));
}

.project-visual__frame {
  width: min(1280px, calc(100vw - 32px));
  margin: 0 auto;
  min-height: 72svh;
  border-radius: 36px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.2);
}

.project-visual__placeholder {
  width: 100%;
  height: 100%;
  min-height: 72svh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.88));
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.project-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-visual--square .project-visual__placeholder {
  min-height: 0;
}

.project-media {
  margin-top: 24px;
  aspect-ratio: var(--project-media-ratio, 16 / 9);
  min-height: 0;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.12);
}

.project-media__image,
.project-media__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-media__label {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.72);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.project-footer {
  display: flex;
  justify-content: center;
  padding: 38px 0 0;
}

.project-footer a {
  color: #fff;
  font-family: "Impact", "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.94;
  font-size: clamp(2rem, 4.2vw, 4rem);
  text-decoration: none;
}

.project-footer a:hover {
  opacity: 0.72;
}

.archive-preview {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .project-hero {
    min-height: 88svh;
  }

  .project-hero__overlay {
    max-width: calc(100vw - 40px);
  }

  .project-flow {
    width: min(100vw - 32px, 1280px);
  }

  .project-flow__timeline {
    padding-left: 26px;
  }

  .project-flow__timeline::before {
    left: 8px;
    top: 18px;
    bottom: 18px;
  }

  .project-flow__row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 52px 0;
  }

  .project-flow__row--timeline {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
    padding: 34px 0;
  }

  .project-flow__row--right .project-flow__content,
  .project-flow__row--left .project-flow__content {
    grid-column: auto;
    justify-self: start;
  }

  .project-flow__title {
    font-size: clamp(2rem, 9vw, 4rem);
    max-width: 10ch;
  }

  .project-visual__frame {
    width: min(100vw - 32px, 1280px);
    min-height: 64svh;
    border-radius: 28px;
  }

  .project-visual__placeholder {
    min-height: 64svh;
  }
}

.closing__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  margin-bottom: 28px;
}

.closing__content {
  max-width: 14ch;
}

.hero__cutout-r {
  letter-spacing: 0;
}

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

.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.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;
}

@media (max-width: 1100px) {
  .archive > .section__head,
  .archive > .archive-preview-grid {
    width: min(100vw - 24px, 1280px);
  }

  .archive-preview-marquee__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .archive-preview-grid,
  .culture {
    grid-template-columns: 1fr;
  }

  .archive-preview--large,
  .archive-preview--wide {
    grid-column: auto;
  }

  .contact-form--inline {
    width: min(100vw - 40px, 1280px);
  }

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

  .contact-form--inline label:nth-child(5),
  .contact-form--inline .contact-form__submit {
    grid-column: auto;
  }

  .closing__content {
    max-width: 100%;
  }

  .blue-bubble {
    height: 240svh;
  }
}

@media (hover: none), (pointer: coarse) {
  .services-contact,
  .contact-page__hero {
    cursor: auto;
  }

  .services-contact__cursor {
    display: none;
  }

  .services-contact__trigger,
  .services-contact__back {
    cursor: pointer;
  }
}

@media (max-width: 900px) {
  .site-logo {
    top: 14px;
    left: 14px;
    font-size: 1.8rem;
  }

  .site-contact-link {
    top: 17px;
    right: 14px;
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .site-menu__panel {
    padding: 20px 16px;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .site-menu__header {
    position: static;
    padding: 0;
    margin-bottom: 28px;
  }

  .site-menu__links {
    width: 100%;
    margin-top: 0;
    gap: 14px;
  }

  .site-menu__links a,
  .site-menu__links button {
    font-size: clamp(1.9rem, 11vw, 3.2rem);
  }

  .hero__content {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: none;
  }

  .hero__heading {
    font-size: clamp(2.5rem, 12vw, 4.8rem);
    max-width: 10ch;
  }

  .hero#top .hero__copy {
    padding-bottom: 44px;
  }

  .hero__heading--home {
    font-size: clamp(0.65rem, 3.2vw, 1rem);
    letter-spacing: 0.1em;
  }

  .hero__heading--about {
    font-size: clamp(2.05rem, 8.4vw, 3.5rem);
    max-width: 100%;
    gap: 0.05em;
  }

  .hero__heading--about span {
    white-space: nowrap;
  }

  .hero__cutout-text {
    font-size: 300px;
  }

  .page--about .hero {
    position: relative;
    min-height: 84svh;
  }

  .page--about .hero__content {
    padding-top: 88px;
    padding-bottom: 72px;
    min-height: 84svh;
  }

  .section {
    width: min(100vw - 24px, 1280px);
    padding-top: 72px;
  }

  .statement {
    padding-top: 84px;
    padding-bottom: 56px;
  }

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

  .statement__note {
    justify-self: center;
    align-self: center;
    margin-top: 0;
    font-size: clamp(0.88rem, 1.1vw, 1rem);
  }

  .statement__media {
    justify-self: start;
    width: min(240px, 100%);
  }

  .statement__heading,
  .section__title {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .statement__copy,
  .intro__copy,
  .body-copy {
    max-width: 100%;
  }

  .partnerships {
    padding: 84px 0 132px;
  }

  .partnerships__inner {
    width: min(100vw - 24px, 1280px);
    gap: 22px;
  }

  .partnerships__title {
    font-size: clamp(2rem, 9vw, 3.8rem);
    max-width: 11ch;
  }

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

  .partnerships__card {
    min-height: 320px;
    border-radius: 0;
  }

  .partnerships__card:nth-child(2n) {
    transform: translateY(0);
  }

  .about-intro__inner {
    width: min(100vw - 24px, 1280px);
    padding: 60px 0 72px;
    gap: 24px;
  }

  .about-intro__media {
    width: 100%;
    justify-self: stretch;
  }

  .about-intro__image {
    aspect-ratio: 4 / 5;
  }

  .about-values {
    height: 240svh;
  }

  .about-values--list {
    height: 300svh;
    padding-bottom: 96px;
  }

  .about-values__inner {
    width: min(100vw - 24px, 1280px);
  }

  .about-values__content {
    width: 100%;
    max-width: 100%;
  }

  .about-values__list {
    gap: 18px;
  }

  .about-values__list li {
    font-size: clamp(1.55rem, 8vw, 3rem);
    transform: translateY(20px) translateX(calc(var(--list-shift, 0px) + 72px));
  }

  .about-followup__inner {
    width: min(100vw - 24px, 1280px);
    padding: 64px 0 84px;
  }

  .about-followup__heading {
    font-size: clamp(2.2rem, 10vw, 4rem);
    max-width: 12ch;
  }

  .about-followup__copy {
    max-width: 100%;
  }

  .about-banner {
    min-height: 72svh;
  }

  .about-banner__inner {
    width: min(100vw - 24px, 1280px);
    min-height: 72svh;
  }

  .about-banner__heading {
    font-size: clamp(2.2rem, 10vw, 4rem);
    max-width: 11ch;
  }

  .blue-bubble,
  .white-bubble,
  .offerings {
    height: 200svh;
  }

  .service-marquee {
    padding: 12px 0;
  }

  .service-marquee__group {
    gap: 12px;
    padding-right: 12px;
  }

  .service-marquee__group span {
    font-size: clamp(0.9rem, 3.8vw, 1.15rem);
  }

  .blue-bubble__panel,
  .white-bubble__panel {
    width: min(94vw, 420px);
    height: min(94vw, 420px);
  }

  .blue-bubble__inner,
  .white-bubble__inner {
    padding: 18px 16px 22px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }

  .blue-bubble__heading {
    width: 100%;
    max-width: none;
    font-size: clamp(1.35rem, 5.5vw, 2.15rem);
    line-height: 1.08;
    font-weight: 400;
    text-align: center;
  }

  .blue-bubble__copy {
    max-width: 100%;
  }

  .offerings__inner {
    width: min(100vw - 24px, 1280px);
  }

  .offerings__list {
    gap: 10px;
  }

  .offerings__list li {
    font-size: clamp(1.7rem, 9vw, 2.9rem);
  }

  .offerings__view-bubble {
    width: 68px;
    height: 68px;
    font-size: 0.82rem;
  }

  .archive {
    padding-top: 112px;
    padding-bottom: 88px;
  }

  .work-hero {
    min-height: 82svh;
  }

  .work-hero__title {
    font-size: clamp(1.9rem, 8.4vw, 3.5rem);
  }

  .work-hero__copy {
    font-size: 0.78rem;
    max-width: 32ch;
  }

  .archive > .section__head,
  .archive > .archive-preview-grid {
    width: min(100vw - 24px, 1280px);
  }

  .archive-preview-marquee__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .archive-preview-stack {
    width: 100%;
  }

  .archive-preview-stack .archive-preview {
    aspect-ratio: 4 / 6;
  }

  .archive-preview-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .archive-preview,
  .archive-preview--large,
  .archive-preview--wide {
    min-height: 300px;
    border-radius: 0;
  }

  .archive-preview__content {
    padding: 16px;
  }

  .archive-preview h3 {
    font-size: clamp(1.7rem, 8vw, 2.8rem);
    max-width: 12ch;
  }

  .archive-preview p {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .contact-section {
    padding: 48px 0 96px;
  }

  .contact-section__trigger {
    font-size: clamp(1.9rem, 9vw, 3rem);
    max-width: 12ch;
    text-align: center;
  }

  .services-page {
    width: 100%;
    padding: 88px 0 72px;
  }

  .services-hero {
    min-height: auto;
  }

  .services-hero__content {
    width: min(100vw - 24px, 1280px);
    padding: 104px 0 28px;
  }

  .services-hero__copy {
    margin-top: 0;
  }

  .services-hero__title {
    font-size: clamp(3rem, 13vw, 5rem);
    max-width: 8ch;
    line-height: 0.98;
    padding-top: 0.04em;
  }

  .services-hero__text {
    max-width: 100%;
  }

  .services-bubble {
    height: 210svh;
    margin-top: -8svh;
  }

  .services-bubble__panel {
    width: min(94vw, 420px);
    height: min(94vw, 420px);
  }

  .services-bubble__inner {
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .services-list-page {
    padding: 0 0 72px;
  }

  .services-list {
    width: min(100vw - 24px, 1280px);
  }

  .services-list__row {
    padding: 24px 0;
    gap: 8px;
  }

  .services-list__title {
    font-size: clamp(1.35rem, 6vw, 2rem);
    max-width: 16ch;
  }

  .services-list__copy {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .services-contact {
    min-height: 56svh;
    padding: 64px 16px 84px;
    cursor: auto;
  }

  .services-contact__content {
    gap: 10px;
  }

  .services-contact__cursor {
    display: none;
  }

  .services-contact__trigger {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .services-contact__back {
    font-size: clamp(1.1rem, 5vw, 1.8rem);
  }

  .contact-page__hero {
    min-height: 78svh;
    padding: 92px 0 64px;
    cursor: auto;
  }

  .contact-page__hero--puzzle {
    min-height: 78svh;
    padding: 92px 16px 64px;
  }

  .contact-page__hero-inner {
    width: min(100vw - 24px, 1280px);
    gap: 12px;
  }

  .contact-page__title {
    font-size: clamp(2.8rem, 12vw, 5rem);
    max-width: 9ch;
  }

  .contact-page__copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .contact-page__form-section {
    width: min(100vw - 24px, 1280px);
    margin-top: -36px;
    padding: 22px;
    border-radius: 26px;
  }

  .contact-page__form-head {
    margin-bottom: 20px;
  }

  .contact-page__form-title {
    font-size: clamp(2rem, 9vw, 3.6rem);
    max-width: 11ch;
  }

  .contact-page__form-copy {
    max-width: 100%;
  }

  .contact-page .contact-form--inline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-page .contact-form--inline input,
  .contact-page .contact-form--inline textarea,
  .contact-modal input,
  .contact-modal textarea {
    font-size: 16px;
  }

  .contact-page .contact-form--inline textarea {
    min-height: 150px;
  }

  .contact-page__cards {
    padding: 56px 0 64px;
  }

  .contact-page__cards-copy {
    width: min(100vw - 24px, 1280px);
    padding-left: 0;
    gap: 56px;
  }

  .contact-page__new-business-title,
  .contact-page__social-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .contact-page__new-business-link,
  .contact-page__new-business-email,
  .contact-page__social-link,
  .contact-page__social-links a {
    font-size: 1rem;
  }

  .contact-page__cards-image {
    width: min(100vw - 24px, 1280px);
    aspect-ratio: 4 / 5;
    margin-top: 24px;
    border-radius: 22px;
  }

  .contact-page__footer {
    padding-top: 0;
  }

  .project-shell {
    padding-bottom: 48px;
  }

  .project-hero {
    min-height: 80svh;
  }

  .project-hero__overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 16px;
    border-radius: 20px;
  }

  .project-hero__title {
    font-size: clamp(2.3rem, 10vw, 4.2rem);
    max-width: 10ch;
  }

  .project-hero__intro {
    font-size: 1rem;
    max-width: 100%;
  }

  .project-meta {
    gap: 8px;
    margin-top: 18px;
  }

  .project-meta li {
    font-size: 0.62rem;
    padding: 8px 11px;
  }

  .project-flow {
    width: min(100vw - 24px, 1280px);
  }

  .project-flow__timeline {
    padding-left: 22px;
  }

  .project-flow__timeline::before {
    left: 7px;
    top: 16px;
    bottom: 16px;
  }

  .project-flow__row {
    padding: 44px 0;
  }

  .project-flow__row--timeline {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    padding: 30px 0;
  }

  .project-flow__marker {
    width: 12px;
    height: 12px;
    margin-top: 0.45em;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.1);
  }

  .project-visual__frame {
    width: min(100vw - 24px, 1280px);
    min-height: 58svh;
    border-radius: 24px;
  }

  .project-visual--square .project-visual__frame {
    width: min(78vw, 520px);
    border-radius: 22px;
  }

  .project-visual--left .project-visual__frame,
  .project-visual--right .project-visual__frame {
    margin-left: auto;
    margin-right: auto;
  }

  .project-visual__placeholder {
    min-height: 58svh;
  }

  .project-visual--square .project-visual__placeholder {
    min-height: 0;
  }

  .project-media {
    width: min(100vw - 24px, 1280px);
    aspect-ratio: var(--project-media-ratio, 16 / 9);
    border-radius: 24px;
  }

  .project-shell--oyster-creek .project-hero,
  .project-shell--oyster-creek .project-media,
  .project-shell--oyster-creek .project-flow,
  .project-shell--oyster-creek .project-footer {
    width: min(100vw - 24px, 1280px);
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-modal__panel {
    width: min(100vw - 24px, 760px);
    max-height: calc(100svh - 24px);
    padding: 22px 18px;
    border-radius: 24px;
  }

  .contact-modal__title {
    font-size: clamp(2.2rem, 9vw, 4rem);
    max-width: 10ch;
  }

  .contact-form {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .site-logo {
    top: 14px;
    left: 14px;
    font-size: 1.7rem;
  }

  .site-contact-link {
    top: 18px;
    right: 14px;
    font-size: 1rem;
  }

  .section {
    width: min(100vw - 20px, 1280px);
    padding-top: 84px;
  }

  .contact-section {
    padding: 52px 0 120px;
  }

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

  .site-footer__inner {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__brand {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .home-banner__copy {
    padding: 20px 14px 0;
  }

  .home-banner__text {
    font-size: clamp(0.68rem, 3vw, 0.96rem);
  }

  .archive > .section__head,
  .archive > .archive-preview-grid {
    width: min(100vw - 28px, 1280px);
  }

  .archive-preview-marquee__track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .archive-preview-stack {
    width: 100%;
  }

  .archive-preview-stack .archive-preview {
    aspect-ratio: 4 / 6;
  }

  .hero__content {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .hero__heading {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero__cutout-text {
    font-size: 260px;
  }

  .statement__heading,
  .section__title {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .partnerships {
    padding: 72px 0 80px;
  }

  .partnerships__inner {
    width: min(100vw - 20px, 1280px);
  }

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

  .partnerships__card {
    min-height: 300px;
  }

  .partnerships__card:nth-child(2n) {
    transform: translateY(0);
  }

  .blue-bubble__inner {
    padding: 18px 14px 22px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .offerings {
    height: 180svh;
  }

  .offerings__list li {
    font-size: clamp(1.8rem, 11vw, 3.2rem);
  }

  .services-page {
    width: min(100vw - 20px, 1280px);
    padding: 96px 0 72px;
  }

  .services-hero__content {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
  }

  .services-hero__copy {
    margin-top: 0;
  }

  .services-list--timeline {
    --services-timeline-spine: 14px;
    --services-timeline-column: 22px;
    padding-left: 28px;
  }

  .services-list--timeline::before {
    left: 14px;
  }

  .services-list__copy-group {
    width: calc(100% - 34px);
  }

  .services-list__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }

  .services-list__copy-group {
    grid-column: 2;
  }

  .services-page__back {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .hero__cutout-text {
    font-size: 390px;
    letter-spacing: -0.12em;
    transform: scaleX(1.08) scaleY(1.2);
  }

  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  * {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  *::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .blue-bubble,
  .white-bubble {
    height: 170svh;
  }

  .blue-bubble__panel,
  .white-bubble__panel {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
  }

  .blue-bubble__inner,
  .white-bubble__inner {
    padding: 18px 14px 20px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }

  .blue-bubble__heading {
    width: 100%;
    max-width: none;
    font-size: clamp(1.25rem, 5vw, 1.9rem);
    font-weight: 400;
    text-align: center;
  }

  .services-bubble {
    height: 180svh;
    margin-top: -4svh;
  }

  .services-bubble__panel {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
  }

  .services-bubble__inner {
    padding: 18px 14px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .blue-bubble,
  .white-bubble,
  .offerings {
    height: 220svh;
  }

  .blue-bubble__panel {
    width: 280px;
    height: 280px;
  }

  .white-bubble__panel {
    width: 260px;
    height: 260px;
  }

  .blue-bubble__inner,
  .white-bubble__inner {
    padding: clamp(28px, 5vw, 64px);
  }

  .blue-bubble__heading {
    width: 100%;
    max-width: none;
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
  }

  .blue-bubble__heading span:first-child {
    transform: none;
  }

  .services-bubble {
    height: 220svh;
    margin-top: -12svh;
  }

  .services-bubble__panel {
    width: 240px;
    height: 240px;
  }

  .services-bubble__inner {
    padding: clamp(28px, 4vw, 64px);
  }
}

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

  .hero__cutout,
  .hero__content,
  .reveal {
    transition: none;
  }
}

*, *::before, *::after {
  font-family: "Inter", Arial, Helvetica, sans-serif !important;
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-logo {
    font-size: clamp(1.45rem, 5vw, 1.8rem);
    max-width: 48vw;
  }

  .site-contact-link {
    font-size: 0.9rem;
    max-width: 36vw;
  }

  .hero__copy,
  .hero__content,
  .hero__copy--secondary,
  .statement,
  .partnerships__inner,
  .about-intro__inner,
  .about-values__inner,
  .about-followup__inner,
  .about-banner__inner,
  .services-hero__content,
  .services-list,
  .contact-page__panel,
  .project-page__hero,
  .project-page__body,
  .project-flow,
  .project-media,
  .project-footer,
  .archive > .section__head,
  .archive > .archive-preview-grid {
    width: min(100vw - 16px, 1280px);
  }

  .hero__secondary-heading,
  .hero__secondary-copy,
  .hero__heading,
  .hero__heading--about,
  .statement__heading,
  .partnerships__title,
  .archive__title,
  .services-hero__title,
  .contact-page__title,
  .project-hero__title,
  .project-flow__title,
  .about-values__heading,
  .about-followup__heading,
  .about-banner__heading,
  .home-post-partnerships .statement__heading {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero__heading--home,
  .hero__heading--about span,
  .home-banner__text,
  .blue-bubble__heading span:last-child {
    white-space: normal;
  }

  .hero__secondary-heading {
    font-size: clamp(1.75rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .hero__secondary-copy {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero__copy {
    padding: 16px;
  }

  .hero#top .hero__copy {
    padding-bottom: 36px;
  }

  .hero__heading--about {
    font-size: clamp(2rem, 8vw, 3rem);
    gap: 0.08em;
  }

  .statement__layout {
    gap: 14px;
  }

  .statement__note {
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .statement__heading {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .statement__copy,
  .intro__copy,
  .body-copy,
  .about-values__copy,
  .about-followup__copy,
  .contact-page__form-copy,
  .services-hero__text,
  .services-list__copy,
  .project-hero__intro,
  .project-flow__copy,
  .home-post-partnerships .statement__copy {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .partnerships {
    padding: 72px 0 80px;
  }

  .partnerships__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partnerships__card {
    min-height: 280px;
  }

  .partnerships__caption h3 {
    font-size: 0.9rem;
  }

  .partnerships__caption p {
    font-size: 0.62rem;
  }

  .home-banner__copy {
    padding: 16px 12px 0;
  }

  .home-banner__text {
    font-size: clamp(0.7rem, 3vw, 0.95rem);
    max-width: calc(100vw - 24px);
  }

  .home-post-partnerships .statement {
    padding: 28px 16px;
  }

  .home-post-partnerships .statement__heading {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .about-intro__inner,
  .about-values__inner,
  .about-followup__inner,
  .about-banner__inner {
    width: min(100vw - 16px, 1280px);
  }

  .about-values,
  .about-values--list {
    height: auto;
  }

  .about-values--list {
    padding-bottom: 72px;
  }

  .about-values__list li {
    transform: none;
    font-size: clamp(1.45rem, 8vw, 2.5rem);
  }

  .about-banner {
    min-height: auto;
  }

  .about-banner__inner {
    min-height: 52svh;
    padding: 56px 0;
  }

  .about-banner__heading {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .blue-bubble,
  .white-bubble,
  .services-bubble {
    height: auto;
    margin-top: 24px;
  }

  .blue-bubble__stage,
  .white-bubble__stage,
  .services-bubble__stage {
    position: relative;
    height: auto;
    min-height: 100svh;
  }

  .blue-bubble__panel,
  .white-bubble__panel,
  .services-bubble__panel {
    width: min(100vw - 16px, 420px);
    height: auto;
    min-height: 420px;
    border-radius: 28px;
  }

  .blue-bubble__inner,
  .white-bubble__inner,
  .services-bubble__inner {
    width: 100%;
    height: auto;
    min-height: 420px;
    padding: 20px 16px 24px;
  }

  .services-page {
    width: 100%;
    padding: 88px 0 64px;
  }

  .services-hero__content {
    width: min(100vw - 16px, 1280px);
    padding: 96px 0 24px;
  }

  .services-hero__title {
    font-size: clamp(2.5rem, 12vw, 4.25rem);
    max-width: 100%;
  }

  .services-list-page {
    padding-bottom: 64px;
  }

  .services-list--timeline {
    --services-timeline-spine: 12px;
    --services-timeline-column: 16px;
    padding-left: 20px;
  }

  .services-list__row--timeline {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .services-list__copy-group {
    grid-column: auto;
  }

  .services-list__title::before {
    width: 28px;
    height: 2px;
    margin-bottom: 10px;
  }

  .services-list__image {
    aspect-ratio: 4 / 5;
  }

  .contact-page {
    padding: 96px 0 72px;
  }

  .contact-page__title {
    font-size: clamp(2rem, 11vw, 3.5rem);
  }

  .contact-page__form-head {
    margin-bottom: 24px;
  }

  .contact-page .contact-form--inline {
    padding: 18px;
    border-radius: 22px;
  }

  .contact-page .contact-form--inline textarea {
    min-height: 150px;
  }

  .project-hero {
    min-height: 72svh;
  }

  .project-hero__overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
  }

  .project-hero__title {
    font-size: clamp(2rem, 10vw, 3.4rem);
    max-width: 11ch;
  }

  .project-meta {
    gap: 8px;
  }

  .project-meta li {
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .project-flow__row {
    padding: 42px 0;
  }

  .project-flow__row--timeline {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
  }

  .project-flow__marker {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
  }

  .project-visual__frame,
  .project-media,
  .project-shell--oyster-creek .project-hero,
  .project-shell--oyster-creek .project-media,
  .project-shell--oyster-creek .project-flow,
  .project-shell--oyster-creek .project-footer,
  .project-page__hero,
  .project-page__body {
    width: min(100vw - 16px, 1280px);
  }

  .project-visual__frame {
    min-height: 48svh;
    border-radius: 22px;
  }

  .project-visual__placeholder {
    min-height: 48svh;
  }

  .project-media {
    border-radius: 22px;
  }

  .project-footer a {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .archive > .section__head,
  .archive > .archive-preview-grid {
    width: min(100vw - 16px, 1280px);
  }

  .archive-preview-marquee__track,
  .archive-preview-grid {
    grid-template-columns: 1fr;
  }

  .archive-preview,
  .archive-preview--large,
  .archive-preview--wide {
    min-height: 240px;
  }
}
