:root {
  --container-max: 1600px;
  --page-pad-x: 4rem;
  --page-pad-x-mobile: 1.2rem;
  --space-title-content: clamp(1.2rem, 2.2vw, 2.2rem);
  --space-content-button: clamp(1.4rem, 2.6vw, 2.6rem);
  --fs-sm: clamp(0.95rem, 1.1vw, 1.2rem);
  --fs-md: clamp(1.05rem, 1.3vw, 1.4rem);
  --fs-lg: clamp(1.2rem, 1.8vw, 1.9rem);
  --fs-xl: clamp(1.45rem, 2.6vw, 2.8rem);
  --font-display: "Exo 2", sans-serif;
  --font-body: "Inter", sans-serif;
  --bg: #f7f7f7;
  --text: #212121;
  --accent: #e63946;
  --bg-top: #ffffff;
  --bg-bottom: #efefef;
  --muted: #7b7f84;
  --line: rgba(33, 33, 33, 0.14);
  --line-strong: rgba(33, 33, 33, 0.38);
  --card-bg: rgba(255, 255, 255, 0.3);
  --card-bg-soft: rgba(255, 255, 255, 0.26);
  --card-bg-soft-2: rgba(255, 255, 255, 0.34);
}

body.theme-dark {
  --bg: #121417;
  --text: #f2f2f2;
  --bg-top: #1a1c1f;
  --bg-bottom: #0f1113;
  --muted: #a8adb4;
  --line: rgba(242, 242, 242, 0.16);
  --line-strong: rgba(242, 242, 242, 0.36);
  --card-bg: rgba(26, 30, 34, 0.55);
  --card-bg-soft: rgba(28, 32, 37, 0.6);
  --card-bg-soft-2: rgba(32, 36, 42, 0.65);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 10%, var(--bg-top) 0%, var(--bg) 58%, var(--bg-bottom) 100%);
  color: var(--text);
}

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

/* Global readability pass: reduce scale and strengthen visual hierarchy. */
body {
  --fs-sm: clamp(0.76rem, 0.88vw, 0.96rem);
  --fs-md: clamp(0.84rem, 1.04vw, 1.12rem);
  --fs-lg: clamp(0.96rem, 1.44vw, 1.52rem);
  --fs-xl: clamp(1.16rem, 2.08vw, 2.24rem);
}

.approach-hyphen,
.approach-copy,
.pricing-card h3 {
  font-size: clamp(1.12rem, 2.8vw, 3.44rem);
}

.work-title,
.pricing-title {
  font-size: clamp(6.4rem, 16vw, 14.4rem);
}

.testimonials-title {
  font-size: clamp(3.84rem, 9.6vw, 9.6rem);
}

.conversation-cta-text {
  font-size: clamp(1.6rem, 3.68vw, 3.68rem);
}

.conversation-cta-email {
  font-size: clamp(1.6rem, 3.84vw, 3.84rem);
}

.approach-meta > p,
.work-tag,
.pricing-amount,
.testimonial-role,
.projects-foot p:last-child {
  color: var(--muted);
}

.hero,
.work-page,
.blank-page,
.contact-page,
.project-page,
.video-section,
.approach-section,
.work-preview,
.testimonials-section,
.echo-section,
.pricing-section,
.conversation-cta,
.content-section,
.site-footer {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--page-pad-x);
  padding-right: var(--page-pad-x);
}

/* Shared accent-underline link base */
.learn-more,
.approach-learn,
.project-back-link,
.work-preview .work-tag a,
.work-preview-cta a,
.testimonials-link,
.pricing-cta,
.hyphen-principles-cta {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.hero {
  min-height: 100vh;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 4rem;
}

.topbar {
  font-size: var(--fs-md);
  font-weight: 500;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content max-content;
  align-items: center;
  column-gap: 1.75rem;
  width: 100%;
  padding-right: 0;
  position: relative;
  z-index: 30;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(25px, 2.22vw, 39px);
  height: auto;
  display: block;
}

.time {
  justify-self: center;
  min-width: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.menu {
  justify-self: end;
  display: flex;
  gap: 0.35rem;

  white-space: nowrap;
}

.menu a {

  font-size: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
}

.menu a.active {
  border-bottom-color: var(--line-strong);
}

.accent-hyphen {
  color: var(--accent);
}

.menu a:hover {
  color: var(--accent);
}

.menu a + a::before {
  content: ", ";
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--accent);
  appearance: none;
  justify-self: end;
  position: static;
  transform: none;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .menu a.active {
    border-bottom-color: var(--accent);
  }

  .dot {
    width: 46px;
    height: 27px;
    border-radius: 999px;
    background: var(--accent);
    border: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    transition: background-color 220ms ease;
  }

  .dot::before {
    content: "";
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #f7f7f7;
    transform: translateX(3px);
    transition: transform 220ms ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  body.theme-dark .dot::before {
    transform: translateX(22px);
  }
}

.hero-main {
  position: relative;
  z-index: 1;
  container-type: inline-size;
}

.wordmark {
  margin: 0;
  font-family: var(--font-display);
  width: 100%;
  font-size: 45cqw;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.tm {
  font-size: 0.25em;
  vertical-align: top;
  margin-left: 0.12em;
}

.accent-card {
  position: absolute;
  right: clamp(0rem, 11vw, 11rem);
  top: clamp(5rem, 11vw, 11.4rem);
  width: clamp(250px, 30vw, 440px);
  aspect-ratio: 5 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  z-index: 2;
  pointer-events: none;
}

.accent-card.is-morphing {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 1px;
  height: 1px;
  z-index: 15;
}

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

.accent-anchor {
  position: absolute;
  right: clamp(0rem, 11vw, 11rem);
  top: clamp(5rem, 11vw, 11.4rem);
  width: clamp(250px, 30vw, 440px);
  aspect-ratio: 5 / 3;
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2.6rem;
}

.headline {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.bottom-row > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-content-button);
}

.learn-more {
  font-size: var(--fs-md);
  display: inline-block;
  padding-bottom: 0.3rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.learn-more:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.scroll {

  font-size: var(--fs-md);
  margin-bottom: 0.45rem;
  color: inherit;
  text-decoration: none;
}

.video-section {
  min-height: 95vh;
  padding-top: 3.2rem;
  padding-bottom: 3rem;
}

.video-target {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
}

.approach-section {
  min-height: 100vh;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  align-items: start;
  margin-top: 3.6rem;
}

.approach-hyphen {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 4.3rem);
  line-height: 1.04;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.approach-copy {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.approach-meta {
  display: grid;
  grid-template-columns: 1fr 3fr;
  column-gap: 2.6rem;
  row-gap: var(--space-title-content);
  margin-top: 8.4rem;
}

.approach-meta p {
  margin: 0;

  font-size: var(--fs-lg);
  line-height: 1.25;
}

.approach-meta p:last-child {
  max-width: 980px;
}

.approach-body {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-content-button);
}

.approach-body p {
  margin: 0;
}

.approach-subsection {
  margin-top: 2.1rem;
}

.approach-subtitle {
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
}

.approach-subsection p + p {
  margin-top: 0.75rem;
}

.approach-learn {
  margin-top: 0;
  display: inline-block;
  font-size: var(--fs-lg);
  padding-bottom: 0.28rem;
}

.work-page {
  min-height: 100vh;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

body.work-loop-page {
  overflow: hidden;
}

.work-loop-page .work-page {
  min-height: 100svh;
  height: 100svh;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1.2rem;
  display: grid;
  grid-template-rows: auto 1fr;
}

.work-loop-page .page-topbar {
  max-width: var(--container-max);
  margin: 0 auto 2rem;
  padding-left: var(--page-pad-x);
  padding-right: var(--page-pad-x);
}

.work-loop-page .projects-scroll-section {
  min-height: auto;
  height: 100%;
  width: min(100vw, 1920px);
  margin-inline: auto;
  transform: none;
}

.work-loop-page .projects-sticky {
  position: static;
  min-height: 100%;
  height: 100%;
  padding-top: 0;
}

.work-loop-page .projects-track-wrap {
  overflow: hidden;
  align-self: center;
  padding-left: 0;
  padding-right: 0;
}

.work-loop-page .projects-track {
  gap: 1.2rem;
  transform: translate3d(var(--projects-shift, 0px), 0, 0);
}

.projects-scroll-section {
  position: relative;
  min-height: 420vh;
  width: min(100vw, 1920px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.projects-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 0.5rem;
}

.projects-track-wrap {
  overflow: hidden;
  align-self: center;
  padding-left: max(var(--page-pad-x), calc((100vw - var(--container-max)) / 2 + var(--page-pad-x)));
  padding-right: max(var(--page-pad-x), calc((100vw - var(--container-max)) / 2 + var(--page-pad-x)));
}

.projects-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  transform: translate3d(var(--projects-shift, 0px), 0, 0);
  will-change: transform;
}

.project-card {
  width: clamp(420px, 38vw, 760px);
}

.project-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.project-card p {
  margin: 0.65rem 0 0;
  display: grid;
  gap: 0.22rem;
}

.project-card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.12rem, 2.8vw, 3.44rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.project-card-sub {

  font-size: var(--fs-lg);
  line-height: 1.25;
  color: var(--muted);
}

.projects-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 1.1rem;
  width: min(var(--container-max), 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(var(--page-pad-x), calc((100vw - var(--container-max)) / 2 + var(--page-pad-x)));
  padding-right: max(var(--page-pad-x), calc((100vw - var(--container-max)) / 2 + var(--page-pad-x)));
}

.projects-foot p {
  margin: 0;

  font-size: var(--fs-lg);
}

.project-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-page {
  min-height: 100svh;
  padding-top: 3.2rem;
  padding-bottom: 4.8rem;
  overflow-x: hidden;
}

.project-page .topbar {
  grid-template-columns: max-content minmax(0, 1fr) auto max-content;
}

.project-page .time {
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-page .menu {
  min-width: 0;
  white-space: normal;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.2rem;
}

.project-hero {
  min-height: auto;
  display: grid;
  align-content: start;
  gap: 2rem;
}

.project-kicker {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.project-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 9.8vw, 9.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  max-width: 18ch;
  overflow-wrap: anywhere;
}

.project-hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-end;
  gap: 1.6rem;
}

.project-one-liner {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.project-scroll {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
}

.project-media-full {
  width: 100%;
  max-width: 100%;
  margin: 2.4rem 0 0;
}

.project-media-full :is(img, video) {
  width: 100%;
  aspect-ratio: 16 / 8;
  max-height: min(54svh, 560px);
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.project-split {
  margin: 3.2rem 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.project-split--reverse .project-split-media {
  order: 2;
}

.project-split-media :is(img, video) {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.project-split-copy {
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: clamp(0.8rem, 1.2vw, 1.2rem) 0;
  background: transparent;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.project-section-label {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.project-section-copy {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: 1.36;
  overflow-wrap: anywhere;
}

.project-text-section {
  margin-top: 3.2rem;
  border-top: 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.95fr) minmax(0, 2.05fr);
  gap: 2rem;
}

.project-text-body {
  margin: 0;
  min-width: 0;
  max-width: 980px;
  font-size: var(--fs-lg);
  line-height: 1.36;
  overflow-wrap: anywhere;
}

.project-back-link {
  margin-top: 2.6rem;
  display: inline-block;
  font-size: var(--fs-md);
}

.work-hero {
  display: grid;
  grid-template-columns: 1.9fr 1fr auto;
  align-items: end;
  column-gap: 2.4rem;
  margin: 7.2rem 0 2.8rem;
}

.work-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 0.83;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.work-lead {
  margin: 0 0 0.7rem;
  max-width: 420px;

  font-size: var(--fs-lg);
  line-height: 1.22;
}

.work-tag {
  margin: 0 0 0.75rem;

  font-size: var(--fs-lg);
}

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

.work-card {
  margin: 0;
}

.work-media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #121212;
}

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

.work-media-sign {
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 245, 196, 0.55), transparent 46%),
    radial-gradient(circle at 15% 68%, rgba(22, 83, 28, 0.65), transparent 42%),
    linear-gradient(170deg, #1b311b 0%, #2f4d24 35%, #8c7b5f 100%);
  display: grid;
  place-items: end center;
  padding: 1.6rem;
}

.sign-board {
  width: min(83%, 560px);
  aspect-ratio: 1.5 / 1;
  background: #1f2528;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: #ececec;

  padding: 1.1rem 1.2rem;
}

.sign-board p {
  margin: 0;
}

.sign-board p:first-child {
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  opacity: 0.92;
}

.sign-board p:last-child {
  margin-top: 0.2rem;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.work-media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-preview {
  padding-top: 3.8rem;
  padding-bottom: 5rem;
}

.work-preview .work-hero {
  margin: 4.2rem 0 4.4rem;
}

.work-preview .work-tag a {
  padding-bottom: 0.2rem;
}

.work-preview-cta {
  margin: var(--space-content-button) 0 0;

  font-size: var(--fs-lg);
}

.work-preview-cta a {
  padding-bottom: 0.2rem;
}

.testimonials-section {
  padding-top: 4.8rem;
  padding-bottom: 6.4rem;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.testimonials-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-pad-x);
  padding-right: var(--page-pad-x);
}

.testimonials-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 12vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 800;
  max-width: 980px;
}

.testimonials-link {
  font-size: var(--fs-lg);
  padding-bottom: 0.24rem;
  justify-self: start;
  display: inline-block;
  margin-top: var(--space-content-button);
  margin-left: max(var(--page-pad-x), calc((100vw - var(--container-max)) / 2 + var(--page-pad-x)));
  margin-right: 0;
}

.testimonials-mobile-controls {
  display: none;
}

.echo-section {
  padding-top: 5.8rem;
  padding-bottom: 6.8rem;
}

.pricing-section {
  padding-top: 2.8rem;
  padding-bottom: clamp(1.2rem, 2.4vw, 2.2rem);
}

.pricing-title {
  margin: 0 0 9rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 0.83;
  letter-spacing: -0.06em;
}

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

.pricing-card {
  padding: 0;

}

.pricing-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.pricing-amount {
  margin: var(--space-title-content) 0 0;

  font-size: var(--fs-lg);
  line-height: 1.25;
}

.pricing-card p {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: 1.25;
}

.pricing-card p + p {
  margin-top: var(--space-title-content);
}

.pricing-subhead {
  margin-top: var(--space-title-content);
  font-weight: 500;
}

.pricing-card ul {
  margin: 0.65rem 0 0;
  padding-left: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-top: 0.45rem;
  font-size: var(--fs-lg);
  line-height: 1.25;
}

.pricing-card li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-outcome {
  margin-top: var(--space-title-content);
}

.pricing-cta {
  margin-top: var(--space-content-button);
  display: inline-block;
  font-size: var(--fs-lg);
  padding-bottom: 0.2rem;
}

.partnership-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(4.8rem, 8.5vw, 7rem);
}

.partnership-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 3fr);
  column-gap: clamp(2.4rem, 4vw, 5rem);
  row-gap: var(--space-title-content);
  align-items: start;
}

.partnership-kicker {
  margin: 0;
  color: var(--muted);

  font-size: var(--fs-lg);
  line-height: 1.25;
  letter-spacing: 0;
}

.partnership-copy {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: var(--space-title-content);
}

.partnership-copy p {
  margin: 0;

  font-size: var(--fs-lg);
  line-height: 1.25;
  letter-spacing: 0;
}

.partnership-amount {
  color: var(--muted);
}

.testimonials-marquee {
  overflow: hidden;
  position: relative;
  width: min(100vw, 1920px);
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: testimonials-scroll 40s linear infinite;
  will-change: transform;
}

.testimonials-track--dynamic {
  animation: none;
  transform: translate3d(var(--testimonials-shift, 0px), 0, 0);
}

.testimonial-card {
  flex: 0 0 clamp(320px, 40vw, 610px);
  border: 1px solid rgba(33, 33, 33, 0.16);
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--card-bg-soft);
  min-height: clamp(420px, 50vw, 650px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card--text {
  background: var(--card-bg-soft-2);
}

.testimonial-card--video {
  cursor: pointer;
}

.testimonial-avatar {
  width: clamp(52px, 5vw, 72px);
  height: clamp(52px, 5vw, 72px);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.testimonial-video {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 10, 12, 0.84);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.video-modal[hidden] {
  display: none;
}

.video-modal-dialog {
  width: min(1100px, 100%);
}

.video-modal-close {
  display: inline-block;
  margin: 0 0 0.7rem;
  border: 0;
  background: transparent;
  color: #f2f2f2;

  font-size: var(--fs-lg);
  cursor: pointer;
  border-bottom: 1px solid rgba(242, 242, 242, 0.7);
  padding: 0 0 0.1rem;
}

.video-modal-player {
  display: block;
  width: 100%;
  max-height: min(80vh, 760px);
  border-radius: 14px;
  background: #0b0b0b;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #020202;
  color: #f4f4f4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: max(1.2rem, env(safe-area-inset-top));
  padding-right: max(1.2rem, env(safe-area-inset-right));
  padding-bottom: max(1.2rem, env(safe-area-inset-bottom));
  padding-left: max(1.2rem, env(safe-area-inset-left));
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-brand {
  color: inherit;
  text-decoration: none;
}

.mobile-menu-brand-text {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 8.5vw, 2.9rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.mobile-menu-close {
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-nav {
  align-self: center;
  overflow-y: auto;
  max-height: 62dvh;
}

.mobile-menu-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 14vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: #8f8f8f;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 340ms cubic-bezier(0.22, 0.8, 0.2, 1), opacity 340ms ease;
}

.mobile-menu-nav a + a {
  margin-top: 0.45rem;
}

.mobile-menu-nav a.active {
  color: #f4f4f4;
}

.mobile-menu.is-open .mobile-menu-nav a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(1) {
  transition-delay: 40ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(2) {
  transition-delay: 85ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(3) {
  transition-delay: 130ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(4) {
  transition-delay: 175ms;
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(5) {
  transition-delay: 220ms;
}

.mobile-menu-socials {
  display: flex;
  gap: 1.7rem;
  flex-wrap: wrap;
}

.mobile-menu-socials a {
  color: #f4f4f4;
  text-decoration: none;

  font-size: clamp(1.1rem, 6vw, 2rem);
}

.testimonial-video-overlay {
  margin-top: auto;
  position: relative;
  z-index: 1;
  color: #f7f7f7;
}

.testimonial-video-overlay::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1.5rem -1.5rem -1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 55%);
  z-index: -1;
  border-radius: 14px;
}

.testimonial-quote {
  margin: 1.2rem 0 0;
  padding: 0;
  font-size: var(--fs-lg);
  line-height: 1.25;
  max-width: 30ch;
}

.testimonial-signoff {
  margin-top: auto;
}

.testimonial-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: 1;
  letter-spacing: -0.02em;
}

.testimonial-role {
  margin: 0.45rem 0 0;

  font-size: var(--fs-md);
  line-height: 1.25;
  opacity: 0.7;
}

@keyframes testimonials-scroll {
  from {
    transform: translateX(calc(-50% - 0.5rem));
  }

  to {
    transform: translateX(0);
  }
}

.blank-page {
  min-height: 100vh;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.page-topbar {
  margin-bottom: 5rem;
}

.blank-content {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(16, 16, 16, 0.18);
}

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

.hyphen-page {
  min-height: 100svh;
}

.hyphen-page .page-topbar {
  margin-bottom: 2.4rem;
}

.contact-page .page-topbar {
  margin-bottom: 2.4rem;
}

.journal-page .page-topbar {
  margin-bottom: 2.4rem;
}

.hyphen-hero {
  min-height: calc(100svh - 160px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: space-between;
}

.hyphen-title-wrap {
  display: block;
}

.hyphen-mark {
  width: clamp(68px, 12vw, 120px);
  aspect-ratio: 1.45 / 1;
  border-radius: 18px;
  background: #e26dbc;
  padding: clamp(0.55rem, 1.1vw, 0.9rem);
  display: block;
  flex-shrink: 0;
}

.hyphen-mark-core {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #1ac762;
  display: grid;
  place-items: center;
  position: relative;
}

.hyphen-mark-core::before {
  content: "";
  width: 74%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #0e131b;
}

.hyphen-mark-core::after {
  content: "";
  position: absolute;
  width: 40%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #d5ff39;
}

.hyphen-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 0.83;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hyphen-bottom-row {
  margin-top: clamp(4rem, 18vh, 13rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.hyphen-lead {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hyphen-scroll {
  margin: 0;

  font-size: var(--fs-lg);
  color: var(--text);
}

.journal-news {
  margin-top: clamp(2.8rem, 5vw, 4.8rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.journal-news-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.journal-news-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
  letter-spacing: -0.02em;
}

.journal-news-search {
  width: clamp(220px, 22vw, 340px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.55rem;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.28rem;
}

.journal-news-search::before {
  content: "";
  width: 0.86rem;
  height: 0.86rem;
  border: 2px solid var(--muted);
  border-radius: 50%;
  transform: translateY(-0.02rem);
  box-sizing: border-box;
}

.journal-news-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 0;

  font-size: var(--fs-md);
  line-height: 1.3;
}

.journal-news-search input::-webkit-search-cancel-button,
.journal-news-search input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.journal-news-search:focus-within {
  border-bottom-color: var(--accent);
}

.journal-news-search:focus-within::before {
  border-color: var(--accent);
}

.journal-news-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(240px, 26vw, 360px);
  gap: clamp(1.2rem, 2.4vw, 2.6rem);
  align-items: start;
}

.journal-news-columns {
  display: grid;
  grid-template-columns: 170px 170px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.journal-news-columns p {
  margin: 0;
  padding: 0.65rem 0;

  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.journal-news-row {
  display: grid;
  grid-template-columns: 170px 170px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.journal-news-row:hover .journal-news-title,
.journal-news-row:focus-visible .journal-news-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.journal-news-row p {
  margin: 0;
  padding: 0.9rem 0;

  font-size: var(--fs-lg);
  line-height: 1.3;
}

.journal-news-date,
.journal-news-category {
  color: var(--muted);
}

.journal-news-title {
  color: var(--text);
}

.journal-news-empty {
  margin: 0;
  padding: 1rem 0;
  color: var(--muted);

  font-size: var(--fs-lg);
}

.journal-news-preview {
  position: sticky;
  top: 1.2rem;
}

.journal-news-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.journal-news-preview p {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hyphen-overlap {
  margin-top: clamp(2.4rem, 4.2vw, 4rem);
}

.hyphen-section-title {
  margin: clamp(4rem, 8vw, 7rem) 0 clamp(1.2rem, 2.8vw, 2.6rem);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 9.5vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hyphen-overlap-step {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: start;
  padding-top: clamp(2.6rem, 6vh, 4.2rem);
  border-top: 0;
  isolation: isolate;
}

.hyphen-overlap-step::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: var(--bg);
  z-index: -1;
}

.hyphen-overlap-inner {
  display: grid;
  grid-template-columns: clamp(82px, 13vw, 200px) minmax(140px, 220px) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 2.2rem);
  align-items: start;
}

.hyphen-overlap-number {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(7rem, 15vw, 20rem);
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.hyphen-overlap-kicker {
  margin: 0;
  padding-top: 0.45rem;

  font-size: var(--fs-lg);
}

.hyphen-overlap-content h3 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hyphen-overlap-media {
  margin: clamp(1.2rem, 2.6vw, 2.1rem) 0 0;
  width: clamp(300px, 27vw, 500px);
  border-radius: 14px;
  overflow: hidden;
}

.hyphen-overlap-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hyphen-overlap-media--blue {
  background: #1f6fe5;
  aspect-ratio: 16 / 9;
  position: relative;
}

.hyphen-overlap-media--blue span {
  position: absolute;
  inset: 0;
}

.hyphen-overlap-media--blue span::before,
.hyphen-overlap-media--blue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.hyphen-overlap-media--blue span::after {
  width: 64px;
  height: 3px;
}

.hyphen-overlap-content p {
  margin: clamp(1.4rem, 2.4vw, 2rem) 0 0;
  max-width: 54ch;

  font-size: var(--fs-lg);
  line-height: 1.34;
  color: var(--muted);
  padding-bottom: 1.4rem;
  border-bottom: 0;
}

.hyphen-origin {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(2.4rem, 5vw, 4.4rem);
  position: relative;
}

.hyphen-origin-title {
  margin: 0 0 clamp(0.8rem, 1.7vw, 1.3rem);

  font-size: var(--fs-lg);
  font-weight: 500;
  text-transform: lowercase;
}

.hyphen-origin-copy {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.28rem, 2.2vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hyphen-people {
  margin-top: clamp(3.2rem, 7vw, 6rem);
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

.hyphen-people-track {
  display: grid;
  width: min(100%, 70vw);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  justify-content: center;
  gap: 1rem;
  overflow-x: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.hyphen-person-card {
  border-radius: 18px;
  background: transparent;
  border: 0;
  padding: 0.9rem;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.hyphen-person-card--accent {
  background: transparent;
}

.hyphen-person-head {
  padding: 0.3rem 0.2rem 0.9rem;
}

.hyphen-person-tags {
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hyphen-person-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.36rem 0.66rem;
  background: var(--card-bg-soft);
  border: 1px solid var(--line);
  color: var(--text);

  font-size: var(--fs-sm);
  line-height: 1;
}

.hyphen-person-name {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.hyphen-person-copy {
  margin: 0.8rem 0 0;
  color: var(--muted);

  font-size: var(--fs-lg);
  line-height: 1.32;
}

.hyphen-person-card img {
  width: 100%;
  margin-top: auto;
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.hyphen-principles {
  margin-top: clamp(3.2rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  align-items: stretch;
}

.hyphen-principles-media {
  margin: 0;
}

.hyphen-principles-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(480px, 62vw, 820px);
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.hyphen-principles-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 2.9vw, 2.8rem);
  padding: clamp(0.4rem, 1vw, 0.8rem) clamp(0.6rem, 1.3vw, 1rem);
}

.hyphen-principle {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.hyphen-principle-num {
  margin: 0;

  font-size: var(--fs-lg);
  line-height: 1.2;
}

.hyphen-principle-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.28rem, 2.2vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.hyphen-principle-copy {
  margin: 0.7rem 0 0;
  color: var(--muted);

  font-size: var(--fs-lg);
  line-height: 1.34;
}

.hyphen-principles-cta {
  margin-top: auto;
  width: fit-content;
  padding-bottom: 0.2rem;
  font-size: var(--fs-lg);
}

.hyphen-cards {
  margin-top: clamp(3rem, 6vw, 6.2rem);
  padding-bottom: clamp(2rem, 4vw, 3.6rem);
}

.hyphen-cards h2 {
  margin: 0 0 clamp(1.1rem, 2vw, 1.8rem);
}

.hyphen-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.hyphen-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.hyphen-card-title {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.12rem, 1.8vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hyphen-card-copy {
  margin: 0.45rem 0 0;
  color: var(--muted);

  font-size: var(--fs-md);
  line-height: 1.34;
}

.blank-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 10rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.contact-page {
  min-height: 100vh;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.contact-hero {
  min-height: calc(100svh - 160px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: space-between;
}

.contact-title-row {
  display: block;
}

.contact-mini-card {
  margin-top: clamp(0.9rem, 2vw, 2rem);
  width: clamp(128px, 12vw, 200px);
  aspect-ratio: 1.9 / 1;
  border-radius: 10px;
  background: linear-gradient(140deg, #202124, #2b2b2d);
  color: #f3f4f5;
  display: grid;
  place-content: center;
  padding: 0.4rem 0.6rem;
}

.mini-top {
  margin: 0 0 0.2rem;

  font-size: clamp(0.52rem, 0.62vw, 0.78rem);
  opacity: 0.9;
  text-align: center;
}

.mini-mark {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
}

.mini-mark span:nth-child(1) {
  color: #4f8cff;
}

.mini-mark span:nth-child(2) {
  color: #f7c235;
}

.mini-mark span:nth-child(3) {
  color: #2cbc63;
}

.contact-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.8rem, 14vw, 13rem);
  letter-spacing: -0.06em;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-bottom-row {
  margin-top: clamp(4rem, 18vh, 13rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

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

.contact-copy p {
  margin: 0;

  font-size: var(--fs-lg);
  line-height: 1.3;
}

.contact-copy p.approach-copy {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.contact-copy p + p {
  margin-top: 1.5rem;
  color: var(--muted);
}

.contact-scroll {
  margin: 0;

  font-size: var(--fs-lg);
}

.contact-business {
  margin-top: 1.8rem;
}

.contact-business-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
  padding-top: 4.2rem;
}

.contact-business-label {
  margin: 0;

  font-size: var(--fs-lg);
}

.contact-business-main {
  max-width: 820px;
}

.contact-business-main p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.contact-business-main a {
  margin-top: 0.35rem;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
  color: inherit;
  text-decoration: none;
  border-bottom: 4px solid rgba(33, 33, 33, 0.86);
  padding-bottom: 0.12rem;
}

.content-section {
  min-height: 60vh;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  border-top: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 1rem;

  font-size: var(--fs-sm);
  color: var(--accent);
}

.section-title {
  margin: 0;
  max-width: 860px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.site-footer {
  padding-top: 2.6rem;
  padding-bottom: 3rem;
  border-top: 0;
}

.conversation-cta {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.conversation-cta-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.conversation-cta-email {
  justify-self: end;
  margin: 0;

  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 1;
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
  padding-bottom: 0;
}

.pulse-build-section {
  padding-top: clamp(0.6rem, 1.6vw, 1.2rem);
  padding-bottom: clamp(2.6rem, 5vw, 4.4rem);
}

.pulse-build-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(84px, 112px) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  align-items: center;
  column-gap: clamp(0.5rem, 1.1vw, 0.9rem);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 0;
  border-bottom: 0;
  border-radius: 18px;
  background: transparent;
  min-height: clamp(680px, 82vh, 920px);
  padding: clamp(0.8rem, 1.4vw, 1.2rem);
  overflow: hidden;
}

.pulse-build-status {
  position: absolute;
  top: clamp(1rem, 2.2vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.pulse-build-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-build-blink 2s ease-in-out infinite;
}

.pulse-build-status-text {
  margin: 0;

  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pulse-build-info {
  display: none;
  position: absolute;
  top: clamp(1rem, 2.2vw, 2rem);
  right: clamp(1rem, 2.2vw, 2rem);
  text-align: right;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
  z-index: 3;
}

.pulse-build-info.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-build-info-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.pulse-build-info-desc {
  margin: 0.2rem 0 0;

  font-size: var(--fs-md);
  color: var(--muted);
}

.pulse-build-center {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: min(70vh, 720px);
  margin: 0;
  align-self: stretch;
}

.pulse-build-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(52vh, 470px);
  height: min(52vh, 470px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 4px dotted var(--line-strong);
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: width 600ms ease, height 600ms ease, border-color 600ms ease, background 600ms ease;
  animation: none;
  z-index: 2;
}

.pulse-build-core-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 26rem);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  padding: 0 0.9rem;
  text-align: center;
  z-index: 2;
}

.pulse-build-core.has-one {
  width: min(58vh, 530px);
  height: min(58vh, 530px);
  border-color: var(--line-strong);
}

.pulse-build-core.has-two {
  width: min(64vh, 590px);
  height: min(64vh, 590px);
  border-color: var(--line-strong);
  background: transparent;
}

.pulse-build-core-ring {
  display: none;
}

.pulse-build-core-label {
  margin: 0 0 0.04rem;

  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
  text-align: center;
}

.pulse-build-core-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  width: 100%;
  max-width: 90%;
  text-align: center;
}

.pulse-build-core-sub {
  margin: 0.06rem 0 0;

  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.3;
  max-width: 26ch;
  width: 100%;
  text-align: center;
}

.pulse-build-tags {
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  max-width: 28ch;
}

.pulse-build-tag {
  display: none;

  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--accent);
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  opacity: 1;
  transform: none;
}

.pulse-build-tag.is-visible {
  display: inline-block;
}

.pulse-build-node {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2.5px solid var(--line-strong);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: width 500ms ease, height 500ms ease, opacity 500ms ease, border-color 350ms ease, box-shadow 350ms ease;
  will-change: transform;
  z-index: 1;
}

.pulse-build-node.is-dragging {
  cursor: grabbing;
}

@media (min-width: 1025px) {
  .pulse-build-node {
    cursor: grab;
    touch-action: none;
  }
}

.pulse-build-node-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  height: 1.35rem;
  padding: 0 0.5rem;
  border-radius: 999px;

  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230, 57, 70, 0.08);
}

.pulse-build-node-label {
  margin: 0.35rem 0 0;

  font-size: var(--fs-lg);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  line-height: 1.25;
  max-width: 15ch;
}

.pulse-build-node.is-active {
  border-color: var(--accent);
  box-shadow: none;
}

.pulse-build-node.is-absorbed {
  display: none;
}

.pulse-build-timeline {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  margin: clamp(2.4rem, 7vw, 4rem) 0 0;
  width: 100%;
  max-width: 102px;
  height: min(560px, 68vh);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pulse-build-mobile-month {
  display: none;
  margin: 0;
}

.pulse-build-month {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 12px 1fr;
  grid-template-areas:
    "dot label"
    "line event";
  column-gap: 0.42rem;
  row-gap: 0.14rem;
  align-items: start;
}

.pulse-build-month-dot {
  grid-area: dot;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  margin: 0.18rem 0 0;
  justify-self: center;
}

.pulse-build-month-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(230, 57, 70, 0.35);
}

.pulse-build-month-dot.is-passed {
  background: var(--line-strong);
}

.pulse-build-month-line {
  grid-area: line;
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background: var(--line);
  justify-self: center;
}

.pulse-build-month-fill {
  width: 100%;
  height: 0%;
  border-radius: 2px;
  transition: height 180ms linear;
}

.pulse-build-month-fill.is-build {
  background: var(--accent);
}

.pulse-build-month-fill.is-pulse {
  background: var(--line-strong);
}

.pulse-build-month-label {
  grid-area: label;
  margin-top: 0;

  font-size: var(--fs-md);
  color: var(--muted);
}

.pulse-build-month-label.is-active {
  color: var(--text);
  font-weight: 600;
}

.pulse-build-month-event {
  display: none;
}

@keyframes pulse-build-ring {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }

  100% {
    transform: scale(1.95);
    opacity: 0;
  }
}

@keyframes pulse-build-blob-morph {
  0% {
    border-radius: 46% 54% 57% 43% / 39% 42% 58% 61%;
  }

  50% {
    border-radius: 58% 42% 49% 51% / 52% 35% 65% 48%;
  }

  100% {
    border-radius: 41% 59% 52% 48% / 47% 56% 44% 53%;
  }
}

@keyframes pulse-build-blob-morph-small {
  0% {
    border-radius: 58% 42% 51% 49% / 47% 38% 62% 53%;
  }

  100% {
    border-radius: 43% 57% 46% 54% / 58% 49% 51% 42%;
  }
}

@keyframes pulse-build-blob-float-left {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(28px, -18px, 0) rotate(2deg);
  }

  50% {
    transform: translate3d(14px, -42px, 0) rotate(-1deg);
  }

  75% {
    transform: translate3d(34px, -10px, 0) rotate(1.5deg);
  }
}

@keyframes pulse-build-blob-float-right {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(-30px, 14px, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(-18px, 36px, 0) rotate(1deg);
  }

  75% {
    transform: translate3d(-36px, 8px, 0) rotate(-1.5deg);
  }
}

@keyframes pulse-build-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@media (max-width: 640px) {
  .pulse-build-core {
    width: min(62vw, 300px);
    height: min(62vw, 300px);
  }

  .pulse-build-core.has-one {
    width: min(68vw, 330px);
    height: min(68vw, 330px);
  }

  .pulse-build-core.has-two {
    width: min(73vw, 360px);
    height: min(73vw, 360px);
  }

  .pulse-build-node {
    width: 96px;
    height: 96px;
  }

  .pulse-build-node-badge {
    min-width: 2rem;
    height: 1.3rem;
    font-size: var(--fs-sm);
  }

  .pulse-build-node-label {
    font-size: clamp(0.78rem, 3.8vw, 0.9rem);
    max-width: 9.5ch;
  }

}

.footer-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 240px));
  gap: 4rem;
}

.footer-group h4 {
  margin: 0 0 1rem;

  font-size: var(--fs-md);
  font-weight: 500;
}

.footer-group a {
  display: block;
  width: fit-content;
  margin-top: 0.42rem;
  color: var(--muted);
  text-decoration: none;

  font-size: var(--fs-sm);
  line-height: 1.3;
}

.footer-group a:hover {
  color: var(--text);
}

.footer-brand {
  margin: 0;
  line-height: 0;
  flex-shrink: 0;
}

.footer-brand-logo {
  width: clamp(80px, 7vw, 120px);
  height: auto;
  display: block;
}

.footer-brand-logo--dark {
  display: none;
}

body.theme-dark .footer-brand-logo--light {
  display: none;
}

body.theme-dark .footer-brand-logo--dark {
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-top: 2.8rem;
}

.footer-links {
  display: flex;
  align-items: baseline;
  gap: 3rem;
}

.footer-back,
.footer-copy {

  font-size: var(--fs-md);
  margin: 0;
  line-height: 1;
}

.footer-back {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0;
  line-height: 1;
}

@media (min-width: 1025px) {
  .site-footer {
    margin-top: clamp(2.4rem, 5vw, 5.2rem);
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(170px, 230px) minmax(170px, 230px) minmax(300px, 1fr);
    grid-template-rows: auto minmax(80px, 1fr) auto;
    column-gap: clamp(2rem, 4vw, 4.2rem);
    row-gap: 0;
    align-items: start;
  }

  .footer-top {
    grid-column: 1 / 3;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 230px));
    gap: clamp(2.2rem, 3.6vw, 4rem);
  }

  .footer-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    align-items: end;
    gap: clamp(2rem, 3.2vw, 3.6rem);
    margin-top: 0;
  }

  .footer-group:first-child,
  .footer-group:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-brand {
    margin: 0;
    align-self: end;
  }

  .footer-brand-logo {
    width: clamp(150px, 16.5vw, 280px);
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: end;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: clamp(2rem, 3vw, 3.6rem);
    width: auto;
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --m-space-x: 0.8rem;
    --m-space-0-5x: calc(var(--m-space-x) * 0.5);
    --m-space-1-5x: calc(var(--m-space-x) * 1.5);
    --m-space-2x: calc(var(--m-space-x) * 2);
    --m-space-3x: calc(var(--m-space-x) * 3);
    --m-space-4x: calc(var(--m-space-x) * 4);
  }

  /* Pulse + Build mobile overrides (consolidated from separate block) */
  .pulse-build-section {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .pulse-build-shell {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 0.8rem 0.65rem calc(0.8rem + env(safe-area-inset-bottom));
  }

  .pulse-build-status {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .pulse-build-info {
    position: static;
    text-align: center;
    margin-top: 0.85rem;
  }

  .pulse-build-center {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    margin-top: 0.45rem;
  }

  .pulse-build-timeline {
    display: none;
  }

  .pulse-build-mobile-month {
    display: block;
    margin: 0.35rem 0 0;
    text-align: center;
    font-size: clamp(0.96rem, 4.2vw, 1.12rem);
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.01em;
  }

  .pulse-build-core-content {
    width: min(88%, 14.6rem);
    padding: 0 0.65rem;
    transform: translate(-50%, -50%);
  }

  .pulse-build-core-label {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
  }

  .pulse-build-core-price {
    font-size: clamp(1.5rem, 6.8vw, 2rem);
    line-height: 1.04;
    max-width: 85%;
  }

  .pulse-build-core-sub {
    font-size: clamp(0.82rem, 4.2vw, 1.02rem);
    line-height: 1.22;
  }

  .pulse-build-tag {
    font-size: clamp(0.82rem, 4vw, 0.98rem);
  }

  .pulse-build-node-label {
    font-size: clamp(0.84rem, 4vw, 0.96rem);
    line-height: 1.16;
    max-width: 10ch;
  }

  body {
    --fs-sm: clamp(1rem, 3.6vw, 1.14rem);
    --fs-md: clamp(1.1rem, 4vw, 1.24rem);
    --fs-lg: clamp(1.24rem, 4.6vw, 1.5rem);
  }

  html,
  body {
    overflow-x: clip;
  }

  .hero,
  .work-page,
  .project-page,
  .blank-page,
  .contact-page,
  .video-section,
  .approach-section,
  .work-preview,
  .testimonials-section,
  .echo-section,
  .pricing-section,
  .conversation-cta,
  .content-section,
  .site-footer {
    padding-left: var(--page-pad-x-mobile);
    padding-right: var(--page-pad-x-mobile);
  }

  .hero {
    min-height: 86svh;
    grid-template-rows: auto auto 1fr;
    align-content: stretch;
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
    gap: var(--m-space-2x);
  }

  .topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand dot";
    column-gap: 0.9rem;
    row-gap: 0.75rem;
    width: 100%;
  }

  .brand {
    grid-area: brand;
  }

  .dot {
    grid-area: dot;
  }

  .time {
    grid-area: time;
    display: none;
  }

  .menu {
    grid-area: menu;
    display: none;
  }

  .dot {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--text);
  
    font-size: clamp(1.15rem, 5.2vw, 1.55rem);
    font-weight: 500;
  }

  .accent-card {
    position: static;
    margin-top: 0;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 5 / 3;
    transform: none;
    z-index: auto;
  }

  .wordmark {
    font-size: 45cqw;
    white-space: normal;
  }

  .hero-main {
    display: grid;
    align-content: start;
    gap: var(--m-space-2x);
    overflow: clip;
  }

  .bottom-row {
    grid-template-columns: 1fr;
    align-self: end;
    margin-top: var(--m-space-x);
    gap: var(--m-space-x);
  }

  .headline {
    margin-bottom: 0;
  }

  .scroll {
    justify-self: end;
  }

  .video-section {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
    min-height: auto;
  }

  .video-target {
    display: none;
  }

  .approach-section {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
    min-height: auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    margin-top: var(--m-space-3x);
    gap: var(--m-space-2x);
  }

  .approach-meta {
    grid-template-columns: 1fr;
    margin-top: var(--m-space-4x);
    gap: var(--space-title-content);
  }

  .approach-meta > p {
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
    line-height: 1.2;
  }

  .approach-body p {
    font-size: clamp(1.24rem, 4.7vw, 1.52rem);
    line-height: 1.28;
    letter-spacing: -0.01em;
  }

  .approach-learn {
    font-size: clamp(1.2rem, 4.4vw, 1.42rem);
    line-height: 1.22;
  }

  .work-page {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  body.work-loop-page {
    overflow: auto;
  }

  .work-loop-page .work-page {
    min-height: auto;
    height: auto;
    display: block;
    grid-template-rows: none;
    padding-bottom: 0.9rem;
  }

  .work-loop-page .page-topbar {
    padding-left: var(--page-pad-x-mobile);
    padding-right: var(--page-pad-x-mobile);
  }

  .work-loop-page .projects-scroll-section {
    height: auto;
  }

  .projects-scroll-section {
    min-height: auto;
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .projects-sticky {
    position: static;
    min-height: auto;
    display: block;
    padding-top: 0;
  }

  .projects-track-wrap {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .projects-track {
    transform: none;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
  }

  .work-loop-page .projects-track-wrap {
    overflow: visible;
    padding-left: var(--page-pad-x-mobile);
    padding-right: var(--page-pad-x-mobile);
  }

  .work-loop-page .projects-track {
    transform: none;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
  }

  .project-card {
    width: 100%;
  }

  .work-loop-page .project-card {
    width: 100%;
  }

  .work-loop-page .projects-foot {
    padding-left: var(--page-pad-x-mobile);
    padding-right: var(--page-pad-x-mobile);
  }

  .project-card p {
    gap: 0.16rem;
  }

  .project-card-title {
    font-size: clamp(1rem, 4.6vw, 1.3rem);
  }

  .project-card-sub {
    font-size: var(--fs-md);
  }

  .projects-foot {
    margin-top: var(--m-space-2x);
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .projects-foot p {
    font-size: var(--fs-sm);
  }

  .project-page {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .project-page .topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand dot";
    column-gap: 0.9rem;
    row-gap: 0.75rem;
    width: 100%;
  }

  .project-page .time,
  .project-page .menu {
    display: none;
  }

  .project-hero {
    min-height: auto;
    gap: 1.4rem;
  }

  .project-title {
    font-size: clamp(2.8rem, 14.5vw, 5.9rem);
    line-height: 0.92;
  }

  .project-hero-meta {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .project-one-liner {
    font-size: clamp(1.08rem, 5.3vw, 1.68rem);
  }

  .project-scroll {
    display: none;
  }

  .project-media-full {
    width: 100%;
    margin-top: 2rem;
  }

  .project-media-full :is(img, video) {
    aspect-ratio: 16 / 10;
    max-height: min(40svh, 320px);
  }

  .project-split {
    grid-template-columns: 1fr;
    margin-top: 2.6rem;
  }

  .project-split--reverse .project-split-media {
    order: 0;
  }

  .project-split-media :is(img, video) {
    min-height: 280px;
  }

  .project-text-section {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 2.6rem;
    padding-top: 1.5rem;
  }

  .project-back-link {
    margin-top: 2rem;
  }

  .work-hero {
    grid-template-columns: 1fr;
    margin: var(--m-space-4x) 0 var(--m-space-3x);
    gap: var(--m-space-2x);
  }

  .work-title {
    font-size: clamp(5.2rem, 20vw, 8rem);
  }

  .work-lead,
  .work-tag {
    margin: 0;
    max-width: 100%;
    font-size: var(--fs-md);
  }

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

  .work-preview {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .testimonials-section {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
    padding-left: var(--page-pad-x-mobile);
    padding-right: var(--page-pad-x-mobile);
  }

  .echo-section {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .pricing-section {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .pricing-title {
    margin: 0 0 var(--m-space-3x);
    font-size: clamp(4.16rem, 16vw, 6.4rem);
    line-height: 0.86;
  }

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

  .partnership-rows {
    gap: var(--m-space-4x);
  }

  .partnership-row {
    grid-template-columns: 1fr;
    gap: var(--space-title-content);
  }

  .partnership-kicker {
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
    line-height: 1.2;
  }

  .partnership-copy {
    max-width: 100%;
  }

  .partnership-copy p {
    font-size: clamp(1.24rem, 4.7vw, 1.52rem);
    line-height: 1.28;
    letter-spacing: -0.01em;
  }

  .conversation-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--m-space-x);
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .conversation-cta-text {
    font-size: clamp(1.6rem, 9vw, 2.6rem);
  }

  .conversation-cta-email {
    justify-self: start;
    font-size: clamp(1.6rem, 9vw, 2.8rem);
    border-bottom: 0;
  }

  .site-footer {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: var(--m-space-2x);
  }

  .footer-brand {
    line-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--m-space-2x);
  }

  .footer-links {
    gap: var(--m-space-2x);
  }

  .testimonials-head {
    grid-template-columns: 1fr;
    margin-bottom: var(--m-space-2x);
    padding-left: 0;
    padding-right: 0;
  }

  .testimonials-title {
    font-size: clamp(3.6rem, 14vw, 5.8rem);
    line-height: 0.9;
  }

  .testimonials-marquee {
    width: 100%;
    overflow: hidden;
  }

  .testimonials-track--mobile {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    width: 100%;
    gap: var(--m-space-x);
    animation: none;
    transform: translate3d(
      calc((var(--testimonials-mobile-index, 0) * -100%) - (var(--testimonials-mobile-index, 0) * var(--m-space-x))),
      0,
      0
    );
    transition: transform 320ms cubic-bezier(0.22, 0.8, 0.2, 1);
    will-change: transform;
  }

  .testimonials-track--mobile .testimonial-card[aria-hidden="true"],
  .testimonials-track--mobile .testimonial-card--video {
    display: none;
  }

  .testimonials-track--mobile .testimonial-card {
    flex: none;
    border-radius: 18px;
    min-height: min(76vh, 640px);
    padding: clamp(1rem, 3.6vw, 1.35rem);
  }

  .testimonials-track--mobile .testimonial-avatar,
  .testimonials-track--mobile .testimonial-role {
    display: none;
  }

  .testimonials-track--mobile .testimonial-signoff {
    order: -1;
    margin-top: 0;
    margin-bottom: var(--m-space-2x);
  }

  .testimonials-track--mobile .testimonial-name {
    font-size: clamp(1.35rem, 5.2vw, 1.9rem);
    line-height: 1.05;
  }

  .testimonials-track--mobile .testimonial-quote {
    margin: 0;
    font-size: var(--fs-md);
    line-height: 1.28;
    letter-spacing: -0.01em;
  }

  .testimonial-card {
    flex-basis: 86vw;
    padding: var(--m-space-x);
    min-height: 430px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-quote {
    margin: var(--m-space-x) 0 0;
    font-size: var(--fs-sm);
    line-height: 1.35;
  }

  .testimonial-name {
    font-size: var(--fs-lg);
  }

  .testimonial-role {
    font-size: var(--fs-sm);
  }

  .testimonials-link {
    margin-left: 0;
  }

  .testimonials-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--m-space-2x);
    margin-top: var(--m-space-3x);
  }

  .testimonials-mobile-controls[hidden] {
    display: none;
  }

  .testimonials-mobile-count {
    margin: 0;
  
    font-size: clamp(1.1rem, 5vw, 1.65rem);
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .testimonials-mobile-nav {
    display: flex;
    align-items: center;
    gap: var(--m-space-x);
  }

  .testimonials-mobile-btn {
    width: clamp(58px, 18vw, 74px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--text);
  
    font-size: clamp(1.7rem, 7.5vw, 2.3rem);
    line-height: 1;
    padding: 0;
    cursor: pointer;
  }

  .blank-page {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .hyphen-page .page-topbar {
    margin-bottom: var(--m-space-2x);
  }

  .contact-page .page-topbar {
    margin-bottom: var(--m-space-2x);
  }

  .journal-page .page-topbar {
    margin-bottom: var(--m-space-2x);
  }

  .hyphen-hero {
    min-height: auto;
    grid-template-rows: auto auto;
    align-content: start;
    gap: var(--m-space-3x);
  }

  .hyphen-title-wrap {
    display: block;
  }

  .hyphen-mark {
    width: clamp(54px, 18vw, 86px);
    border-radius: 14px;
    padding: 0.45rem;
  }

  .hyphen-title {
    font-size: clamp(5.2rem, 20vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
  }

  .hyphen-bottom-row {
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: var(--m-space-x);
  }

  .hyphen-lead {
    font-size: clamp(1.6rem, 8vw, 2.56rem);
    line-height: 1.04;
  }

  .hyphen-scroll {
    justify-self: end;
    font-size: var(--fs-md);
  }

  .journal-news {
    margin-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .journal-news-head {
    grid-template-columns: 1fr;
  }

  .journal-news-search {
    width: 100%;
  }

  .journal-news-search input {
    width: 100%;
  }

  .journal-news-grid {
    margin-top: var(--m-space-x);
    grid-template-columns: 1fr;
    gap: var(--m-space-1-5x);
  }

  .journal-news-columns,
  .journal-news-row {
    grid-template-columns: 102px 118px minmax(0, 1fr);
  }

  .journal-news-columns p {
    padding: 0.5rem 0;
    font-size: 0.66rem;
  }

  .journal-news-row p {
    padding: 0.74rem 0;
    font-size: var(--fs-sm);
    overflow-wrap: anywhere;
  }

  .journal-news-preview {
    position: static;
  }

  .journal-news-preview img {
    aspect-ratio: 16 / 10;
  }

  .hyphen-overlap {
    margin-top: var(--m-space-2x);
  }

  .hyphen-section-title {
    margin: var(--m-space-3x) 0 var(--m-space-x);
    font-size: clamp(2.2rem, 13vw, 4.2rem);
    line-height: 0.92;
  }

  .hyphen-overlap-step {
    position: static;
    min-height: auto;
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-2x);
  }

  .hyphen-overlap-step::before {
    display: none;
  }

  .hyphen-overlap-inner {
    grid-template-columns: 1fr;
    gap: var(--m-space-x);
  }

  .hyphen-overlap-number {
    font-size: clamp(4.4rem, 24vw, 7.2rem);
    line-height: 0.86;
  }

  .hyphen-overlap-kicker {
    padding-top: 0;
    font-size: var(--fs-md);
  }

  .hyphen-overlap-content h3 {
    max-width: none;
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .hyphen-overlap-media {
    width: min(100%, 460px);
    margin-top: var(--m-space-x);
  }

  .hyphen-overlap-content p {
    margin-top: var(--m-space-x);
    font-size: var(--fs-md);
    max-width: none;
    padding-bottom: var(--m-space-x);
  }

  .hyphen-origin {
    margin-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .hyphen-origin-title {
    margin-bottom: 0.7rem;
    font-size: var(--fs-md);
  }

  .hyphen-origin-copy {
    max-width: none;
    font-size: clamp(1.5rem, 8.2vw, 2.8rem);
    line-height: 1.06;
  }

  .hyphen-people {
    margin-top: var(--m-space-3x);
    padding-bottom: var(--m-space-1-5x);
  }

  .hyphen-people-track {
    width: 100%;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    gap: var(--m-space-x);
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .hyphen-person-card {
    min-height: auto;
    border-radius: 14px;
    padding: 0.7rem;
  }

  .hyphen-person-card img {
    margin-top: var(--m-space-2x);
  }

  .hyphen-person-head {
    padding: 0.2rem 0.1rem 0.7rem;
  }

  .hyphen-person-name {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .hyphen-person-copy {
    font-size: var(--fs-md);
  }

  .hyphen-principles {
    margin-top: var(--m-space-3x);
    grid-template-columns: 1fr;
    gap: var(--m-space-1-5x);
  }

  .hyphen-principles-media img {
    height: auto;
    min-height: 0;
    max-height: 52svh;
    aspect-ratio: 16 / 10;
  }

  .hyphen-principles-list {
    gap: var(--m-space-2x);
    padding: 0;
  }

  .hyphen-principle {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: var(--m-space-x);
  }

  .hyphen-principle-title {
    font-size: clamp(1.08rem, 5.2vw, 1.48rem);
  }

  .hyphen-principle-copy {
    margin-top: var(--m-space-0-5x);
    font-size: var(--fs-md);
  }

  .hyphen-cards {
    margin-top: var(--m-space-3x);
    padding-bottom: var(--m-space-2x);
  }

  .hyphen-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--m-space-x);
  }

  .contact-page {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .contact-hero {
    min-height: calc(100svh - 120px);
    gap: 0;
  }

  .contact-title-row {
    display: block;
  }

  .contact-mini-card {
    width: 160px;
    margin-top: 0;
  }

  .contact-title {
    font-size: clamp(4.2rem, 22vw, 6.8rem);
    line-height: 0.86;
  }

  .contact-bottom-row {
    margin-top: clamp(2rem, 14vh, 5.8rem);
    grid-template-columns: 1fr;
    gap: var(--m-space-x);
  }

  .contact-copy p {
    font-size: var(--fs-md);
  }

  .contact-scroll {
    justify-self: end;
  }

  .contact-business {
    margin-top: var(--m-space-x);
  }

  .contact-business-grid {
    grid-template-columns: 1fr;
    padding-top: var(--m-space-3x);
  }

  .contact-business-label {
    font-size: var(--fs-md);
  }

  .contact-business-main p,
  .contact-business-main a {
    font-size: clamp(2rem, 11vw, 3.6rem);
  }

  .contact-business-main a {
    border-bottom-width: 3px;
  }

  .page-topbar {
    margin-bottom: var(--m-space-3x);
  }

  .blank-content {
    min-height: calc(100vh - 130px);
  }

  .content-section {
    padding-top: var(--m-space-3x);
    padding-bottom: var(--m-space-3x);
  }

  .approach-copy {
    font-size: clamp(1.6rem, 8vw, 2.56rem);
  }

  .work-title {
    font-size: clamp(4.16rem, 16vw, 6.4rem);
  }

  .testimonials-title {
    font-size: clamp(2.88rem, 11.2vw, 4.64rem);
  }

  .conversation-cta-text {
    font-size: clamp(1.28rem, 7.2vw, 2.08rem);
  }

  .conversation-cta-email {
    font-size: clamp(1.28rem, 7.2vw, 2.24rem);
  }
}

@media (max-width: 640px) {
  .project-split-media :is(img, video) {
    min-height: 220px;
  }

  .testimonial-card {
    min-height: 380px;
  }

  .journal-news-columns,
  .journal-news-row {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .journal-news-columns p:nth-child(2),
  .journal-news-row p:nth-child(2) {
    display: none;
  }

  .mobile-menu-nav a {
    font-size: clamp(2.15rem, 13vw, 3.7rem);
  }
}
