:root {
  --paper: #f6f7f5;
  --cream: #e3e2de;
  --powder: #cadce7;
  --powder-deep: #e0ebf1;
  --blush: #d9e1e5;
  --blush-deep: #b7c7d1;
  --coral: #7898aa;
  --coral-dark: #5e8da6;
  --raspberry: #4f6876;
  --ink: #322d27;
  --ink-soft: #5d6265;
  --white: #ffffff;
  --line: rgba(50, 45, 39, 0.12);
  --shadow: 0 24px 80px rgba(50, 45, 39, 0.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --content: 1440px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(202, 220, 231, 0.64), transparent 26rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 5.25rem;
  padding: 0.9rem var(--page-pad);
  background: rgba(246, 247, 245, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: min-height 240ms ease, border-color 240ms ease, background 240ms ease;
}

.site-header.scrolled {
  min-height: 4.4rem;
  background: rgba(246, 247, 245, 0.94);
  border-color: var(--line);
}

.brand-mark,
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark svg,
.footer-mark svg {
  width: 1.65rem;
  color: var(--raspberry);
  fill: currentColor;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-mark:hover svg {
  transform: rotate(22deg) scale(1.1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav > a:not(.nav-email) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-email)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.nav-email):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--coral);
  border: 1px solid var(--coral-dark);
  border-radius: 999px 999px 999px 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(94, 141, 166, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.nav-email:hover {
  background: var(--raspberry);
  box-shadow: 0 12px 26px rgba(79, 104, 118, 0.24);
  transform: translateY(-2px) rotate(-1deg);
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.25rem 0;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

.section {
  position: relative;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--raspberry);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--coral-dark);
}

.hero-role {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  color: var(--raspberry);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-role span {
  color: var(--coral-dark);
}

.hero-role {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  color: var(--raspberry);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-role span {
  color: var(--coral-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(29rem, 0.96fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  max-width: var(--content);
  min-height: 54rem;
  margin: 0 auto;
  padding: 9rem var(--page-pad) 6.5rem;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.section-heading h2,
.process-copy h2,
.about-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.65rem, 6.7vw, 7.5rem);
}

.hero h1 em,
.section-heading h2 em,
.process-copy h2 em,
.about-copy h2 em,
.contact-section h2 em {
  color: var(--coral-dark);
  font-weight: 500;
}

.hero h1 em {
  display: block;
  margin-top: 0.18em;
}

.hero-intro {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.availability-line {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  padding-left: 0.9rem;
  color: var(--ink);
  border-left: 3px solid var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.availability-line {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  padding-left: 0.9rem;
  color: var(--ink);
  border-left: 3px solid var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.hero-work-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  color: var(--white);
  background: var(--coral);
  border: 1px solid var(--coral-dark);
  border-radius: 999px 999px 999px 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(94, 141, 166, 0.2);
  transition: gap 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.hero-work-cta svg {
  width: 2rem;
  height: 2rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-work-cta:hover {
  gap: 1.5rem;
  box-shadow: 0 20px 44px rgba(79, 104, 118, 0.26);
  transform: translateY(-3px) rotate(-0.6deg);
}

.hero-email-cta {
  position: relative;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-email-cta::after {
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform-origin: left;
  transition: transform 220ms ease;
}

.hero-email-cta:hover::after {
  transform: scaleX(0.45);
}

.hero-stage {
  position: relative;
  min-height: 38rem;
  transform-style: preserve-3d;
}

.hero-stage::before {
  position: absolute;
  top: 7%;
  right: 2%;
  width: 89%;
  height: 82%;
  background: var(--powder);
  border: 1px solid rgba(50, 45, 39, 0.08);
  border-radius: 48% 52% 42% 58% / 56% 36% 64% 44%;
  box-shadow: var(--shadow);
  content: "";
  transform: rotate(5deg);
}

.stage-card {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 8px solid var(--white);
  box-shadow: 0 22px 55px rgba(50, 45, 39, 0.16);
}

.stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-card figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.75rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0.7rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.stage-card-main {
  top: 5%;
  right: 4%;
  width: 73%;
  height: 20rem;
  border-radius: 1.75rem 1.75rem 1.75rem 0.55rem;
  transform: rotate(2deg);
}

.stage-card-tall {
  bottom: 3%;
  left: 6%;
  width: 32%;
  height: 20rem;
  border-radius: 5rem 5rem 1.2rem 1.2rem;
  transform: rotate(-4deg);
}

.signal-card {
  position: absolute;
  right: 2%;
  bottom: 4%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 16rem;
  padding: 1.35rem;
  background: var(--blush);
  border: 1px solid rgba(94, 141, 166, 0.2);
  border-radius: 1.5rem 0.5rem 1.5rem 1.5rem;
  box-shadow: 0 18px 40px rgba(79, 104, 118, 0.16);
  transform: rotate(3deg);
}

.signal-card-label {
  align-self: flex-start;
  padding: 0.25rem 0.55rem;
  color: var(--white);
  background: var(--raspberry);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-card strong {
  margin-top: 0.65rem;
  font-family: var(--serif);
  font-size: 3.6rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.signal-card > span:not(.signal-card-label) {
  font-size: 0.8rem;
  font-weight: 700;
}

.signal-card small {
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.4;
}

.stage-note {
  position: absolute;
  z-index: 4;
  padding: 0.5rem 0.8rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
  box-shadow: 0 8px 20px rgba(50, 45, 39, 0.09);
}

.stage-note-top {
  top: 1%;
  left: 9%;
  transform: rotate(-7deg);
}

.stage-note-bottom {
  right: 12%;
  bottom: -3%;
  transform: rotate(4deg);
}

.stage-bloom {
  position: absolute;
  bottom: 2%;
  left: 34%;
  z-index: 5;
  width: 6rem;
  height: 6rem;
  animation: breathe 5s ease-in-out infinite;
}

.stage-bloom span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.3rem;
  height: 3.5rem;
  background: var(--coral);
  border-radius: 100% 0 100% 0;
  transform-origin: 0 0;
}

.stage-bloom span:nth-child(1) { transform: rotate(0deg) translate(-0.15rem, -0.15rem); }
.stage-bloom span:nth-child(2) { transform: rotate(72deg) translate(-0.15rem, -0.15rem); }
.stage-bloom span:nth-child(3) { transform: rotate(144deg) translate(-0.15rem, -0.15rem); }
.stage-bloom span:nth-child(4) { transform: rotate(216deg) translate(-0.15rem, -0.15rem); }
.stage-bloom span:nth-child(5) { transform: rotate(288deg) translate(-0.15rem, -0.15rem); }

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(94, 141, 166, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.hero-orbit-one {
  top: 12%;
  left: -18%;
  width: 38rem;
  height: 38rem;
}

.hero-orbit-one::before { top: 6rem; right: 5rem; }
.hero-orbit-one::after { right: 1rem; bottom: 9rem; background: var(--powder-deep); }

.hero-orbit-two {
  right: -8%;
  bottom: 2%;
  width: 23rem;
  height: 23rem;
}

.hero-orbit-two::before { bottom: 3rem; left: 1rem; background: var(--raspberry); }

.proof-strip {
  display: grid;
  grid-template-columns: 0.72fr repeat(4, 1fr);
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  overflow: hidden;
  background: var(--powder);
  border: 1px solid rgba(50, 45, 39, 0.09);
  border-radius: 1.5rem;
  box-shadow: 0 14px 36px rgba(50, 45, 39, 0.08);
}

.proof-intro,
.proof-item {
  min-height: 9rem;
  padding: 1.4rem;
  border-right: 1px solid rgba(50, 45, 39, 0.1);
}

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

.proof-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--raspberry);
}

.proof-intro span {
  font-size: 1.4rem;
}

.proof-intro p {
  max-width: 8rem;
  margin: 0.4rem 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.proof-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-item strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.proof-item span {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.45;
}

.career-ribbon {
  max-width: calc(var(--content) - (2 * var(--page-pad)));
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.5rem, 4vw, 4rem);
  color: var(--white);
  background: var(--ink);
  border-radius: 1.4rem 1.4rem 0.4rem 1.4rem;
  box-shadow: var(--shadow);
}

.career-ribbon p {
  max-width: 70rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.career-ribbon strong {
  color: var(--powder);
  font-style: italic;
  font-weight: 500;
}

.career-ribbon {
  max-width: calc(var(--content) - (2 * var(--page-pad)));
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.5rem, 4vw, 4rem);
  color: var(--white);
  background: var(--ink);
  border-radius: 1.4rem 1.4rem 0.4rem 1.4rem;
  box-shadow: var(--shadow);
}

.career-ribbon p {
  max-width: 70rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.career-ribbon strong {
  color: var(--powder);
  font-style: italic;
  font-weight: 500;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  column-gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.process-copy h2,
.about-copy h2,
.contact-section h2 {
  font-size: clamp(3rem, 5.8vw, 6.4rem);
}

.section-heading > p:last-child {
  max-width: 32rem;
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
}

.section-heading.compact {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
}

.case {
  display: grid;
  grid-template-columns: minmax(20rem, 0.86fr) minmax(27rem, 1.14fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: 46rem;
  margin-bottom: clamp(5rem, 10vw, 10rem);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.case:last-child {
  margin-bottom: 0;
}

.case:nth-of-type(even) .case-copy {
  order: 2;
}

.case:nth-of-type(even) .case-media {
  order: 1;
}

.case-boomboom {
  background: linear-gradient(135deg, rgba(217, 225, 229, 0.94), rgba(246, 247, 245, 0.58));
}

.case-effydesk {
  background: linear-gradient(135deg, rgba(202, 220, 231, 0.98), rgba(246, 247, 245, 0.62));
}

.case-gut {
  background: linear-gradient(135deg, rgba(202, 220, 231, 0.96), rgba(224, 235, 241, 0.52));
}

.case-venice {
  background: linear-gradient(135deg, rgba(227, 226, 222, 0.94), rgba(217, 225, 229, 0.62));
}

.case-scratch {
  background: linear-gradient(135deg, rgba(224, 235, 241, 0.98), rgba(202, 220, 231, 0.72));
}

.study-video-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  padding: clamp(1.3rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.42), transparent 18rem),
    var(--powder-deep);
}

.study-phone {
  position: relative;
  z-index: 2;
  flex: 0 1 13.5rem;
  width: min(13.5rem, 46%);
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 1.65rem;
  box-shadow: 0 22px 48px rgba(50, 45, 39, 0.18);
}

.study-phone-left {
  transform: translateY(-1.2rem) rotate(-2deg);
}

.study-phone-right {
  transform: translateY(1.2rem) rotate(2deg);
}

.study-phone video {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  object-fit: cover;
}

.study-phone figcaption {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0.75rem 0.8rem;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.35;
}

.study-phone figcaption small {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.performance-badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  min-width: 8.5rem;
  padding: 0.85rem;
  color: var(--white);
  background: var(--raspberry);
  border-radius: 1rem 1rem 0.25rem 1rem;
  box-shadow: 0 14px 34px rgba(50, 45, 39, 0.18);
}

.performance-badge span,
.performance-badge small {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-badge strong {
  margin: 0.2rem 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.supporting-study {
  display: grid;
  grid-template-columns: minmax(20rem, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: clamp(-4rem, -3vw, -2rem) 0 clamp(6rem, 10vw, 10rem);
  padding: clamp(1.6rem, 4vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 2rem 2rem 0.55rem 2rem;
  box-shadow: var(--shadow);
}

.supporting-study .eyebrow {
  color: var(--powder);
}

.supporting-study h3 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.supporting-study-copy > p:not(.eyebrow) {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.supporting-study .case-method span {
  color: var(--powder);
  background: rgba(255, 255, 255, 0.1);
}

.supporting-study .evidence-label {
  border-color: var(--coral);
  font-size: 0.64rem;
}

.supporting-videos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.compact-phone {
  flex-basis: 10rem;
  width: min(10rem, 48%);
}

.compact-phone:first-child {
  transform: rotate(-2deg);
}

.compact-phone:last-child {
  transform: translateY(1.2rem) rotate(2deg);
}

.case-copy {
  padding: clamp(1rem, 3vw, 3rem);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.case-meta span {
  padding: 0.32rem 0.58rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-meta span:first-child {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.case h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.25vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.case-lead {
  margin: 1.5rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.case-copy > .case-method {
  margin-top: 1.65rem;
}

.case-decision {
  margin: 1.35rem 0 0;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(50, 45, 39, 0.09);
  border-radius: 0.9rem;
  font-size: 0.78rem;
  line-height: 1.55;
}

.case-decision strong {
  color: var(--raspberry);
}

.case-artifact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.case-artifact-link span {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--white);
  background: var(--raspberry);
  border-radius: 50%;
  transition: transform 220ms ease;
}

.case-artifact-link:hover span {
  transform: translateX(4px);
}

.case-decision {
  margin: 1.35rem 0 0;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(50, 45, 39, 0.09);
  border-radius: 0.9rem;
  font-size: 0.78rem;
  line-height: 1.55;
}

.case-decision strong {
  color: var(--raspberry);
}

.case-artifact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.case-artifact-link span {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--white);
  background: var(--raspberry);
  border-radius: 50%;
  transition: transform 220ms ease;
}

.case-artifact-link:hover span {
  transform: translateX(4px);
}

.case-findings {
  display: grid;
  gap: 0.7rem;
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}

.case-findings li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.84rem;
  line-height: 1.55;
}

.case-findings li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--coral);
  border-radius: 50% 0 50% 50%;
  content: "";
  transform: rotate(45deg);
}

.case-findings strong {
  color: var(--raspberry);
}

.case-details {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

.case-details summary::-webkit-details-marker {
  display: none;
}

.case-details summary span {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  color: var(--white);
  background: var(--raspberry);
  border-radius: 50%;
  font-size: 1rem;
  transition: transform 220ms ease;
}

.case-details[open] summary span {
  transform: rotate(45deg);
}

.case-details-body {
  padding: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.case-method,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.case-method span,
.mini-tags span {
  padding: 0.3rem 0.6rem;
  color: var(--raspberry);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
}

.evidence-label {
  margin: 1rem 0 0;
  padding-left: 0.8rem;
  border-left: 2px solid var(--coral);
  font-size: 0.67rem;
  font-style: italic;
}

.case-media {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border: 1px solid rgba(50, 45, 39, 0.12);
  border-radius: 1.7rem;
  box-shadow: var(--shadow);
}

.boomboom-media {
  background:
    linear-gradient(145deg, rgba(94, 141, 166, 0.12), transparent 60%),
    var(--blush);
}

.media-window {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px rgba(50, 45, 39, 0.14);
}

.media-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.media-window-wide {
  top: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 24rem;
  border-radius: 1.15rem;
  transform: rotate(-1.5deg);
}

.media-phone,
.gut-frame {
  position: absolute;
  z-index: 2;
  width: 9.2rem;
  height: 17rem;
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 1.45rem;
  box-shadow: 0 18px 44px rgba(50, 45, 39, 0.18);
}

.media-phone img,
.gut-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-phone-one {
  bottom: 1.6rem;
  left: 14%;
  transform: rotate(-6deg);
}

.media-phone-two {
  right: 15%;
  bottom: 1.3rem;
  transform: rotate(6deg);
}

.media-sticker {
  position: absolute;
  right: 1.5rem;
  bottom: 12rem;
  z-index: 4;
  padding: 0.7rem 0.85rem;
  color: var(--white);
  background: var(--raspberry);
  border-radius: 1rem 1rem 0.2rem 1rem;
  font-family: var(--serif);
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.3;
  transform: rotate(5deg);
}

.media-sticker strong {
  font-size: 1.1rem;
}

.gut-media {
  background:
    radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.8), transparent 19rem),
    var(--powder);
}

.video-shell {
  position: absolute;
  top: 2rem;
  left: 50%;
  z-index: 3;
  width: min(17rem, 43%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--ink);
  border: 7px solid var(--white);
  border-radius: 2.25rem;
  box-shadow: 0 26px 65px rgba(50, 45, 39, 0.22);
  transform: translateX(-50%);
}

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

.video-shell::before {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  z-index: 4;
  width: 4rem;
  height: 0.95rem;
  background: var(--ink);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.video-toggle {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  transform: translateX(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.video-toggle:hover {
  background: var(--blush);
  transform: translateX(-50%) scale(1.04);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-left: 0.45rem solid var(--raspberry);
}

.video-toggle.is-playing .play-icon {
  width: 0.42rem;
  height: 0.55rem;
  border: 0;
  border-right: 2px solid var(--raspberry);
  border-left: 2px solid var(--raspberry);
}

.gut-frame-one {
  top: 5rem;
  left: 1.4rem;
  width: 8.2rem;
  height: 14rem;
  transform: rotate(-7deg);
}

.gut-frame-two {
  right: 1.2rem;
  bottom: 2rem;
  width: 8.5rem;
  height: 15rem;
  transform: rotate(7deg);
}

.script-slip {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  z-index: 4;
  width: 15rem;
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.35rem 1.2rem 1.2rem;
  box-shadow: 0 15px 34px rgba(50, 45, 39, 0.13);
  transform: rotate(-3deg);
}

.script-slip span {
  color: var(--raspberry);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.script-slip strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.25;
}

.venice-media {
  padding: 1rem;
  background: var(--cream);
}

.account-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #5e8da6;
}

.status-dot::before {
  width: 0.45rem;
  height: 0.45rem;
  background: #5e8da6;
  border-radius: 50%;
  content: "";
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.account-card {
  display: flex;
  flex-direction: column;
  min-height: 9.8rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.account-card:last-child {
  grid-column: 1 / -1;
}

.account-card span,
.outcome-card span,
.workflow-title span {
  color: var(--coral-dark);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.account-card strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.account-card small {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  line-height: 1.45;
}

.account-alert {
  background: var(--blush);
  border-color: rgba(94, 141, 166, 0.2);
}

.rebuild-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.8rem 0;
  padding: 0.9rem;
  color: var(--ink-soft);
  background: var(--powder);
  border-radius: 1rem;
  font-size: 0.54rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rebuild-path i {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink-soft) 0 4px, transparent 4px 8px);
}

.outcome-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 1.2rem 1.2rem 1.2rem 0.3rem;
}

.outcome-card span { color: var(--blush-deep); }

.outcome-card strong {
  margin-top: 0.6rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.outcome-card small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
}

.scratch-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: clamp(1.3rem, 3vw, 2.5rem);
  background:
    linear-gradient(rgba(50, 45, 39, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 45, 39, 0.025) 1px, transparent 1px),
    #e0ebf1;
  background-size: 24px 24px;
}

.scratch-clips {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.scratch-phone {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

.scratch-phone:first-child {
  transform: translateY(-0.8rem) rotate(-2deg);
}

.scratch-phone:last-child {
  transform: translateY(0.8rem) rotate(2deg);
}

.scratch-media .workflow-title,
.scratch-media .workflow-foot {
  grid-column: 1;
}

.workflow-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.workflow-title strong {
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.workflow-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.4rem;
  align-items: center;
  margin-top: 3rem;
}

.workflow-node {
  display: flex;
  flex-direction: column;
  min-height: 8rem;
  padding: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(50, 45, 39, 0.07);
}

.workflow-node b {
  color: var(--raspberry);
  font-size: 0.58rem;
}

.workflow-node span {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.workflow-node small {
  color: var(--ink-soft);
  font-size: 0.55rem;
}

.workflow-arrow {
  color: var(--coral-dark);
}

.capture-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.capture-stack > div {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  min-height: 8.5rem;
  padding: 0.8rem;
  background: var(--blush);
  border-radius: 1rem;
}

.capture-stack > div:nth-child(2) { background: var(--powder); }
.capture-stack > div:nth-child(3) { background: var(--cream); }

.capture-stack span {
  width: 100%;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.capture-stack i {
  width: 2.6rem;
  height: 3.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50% 50% 0.7rem 0.7rem;
}

.workflow-foot {
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capabilities-section {
  max-width: none;
  background: var(--powder);
}

.capabilities-section > .section-heading,
.capability-grid {
  max-width: calc(var(--content) - (2 * var(--page-pad)));
  margin-right: auto;
  margin-left: auto;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.capability-card {
  position: relative;
  min-height: 23rem;
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid rgba(50, 45, 39, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 12px 35px rgba(50, 45, 39, 0.07);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 260ms ease;
}

.capability-card:hover {
  box-shadow: 0 22px 50px rgba(50, 45, 39, 0.13);
  transform: translateY(-6px);
}

.capability-research,
.capability-systems {
  grid-column: span 7;
}

.capability-performance,
.capability-creative {
  grid-column: span 5;
}

.capability-number {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
}

.capability-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--raspberry);
  background: var(--blush);
  border-radius: 50% 50% 50% 0.4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.capability-performance .capability-icon { color: #5e8da6; background: var(--powder); }
.capability-creative .capability-icon { color: var(--coral-dark); background: var(--cream); }
.capability-systems .capability-icon { color: #857c71; background: var(--powder-deep); }

.capability-card h3 {
  max-width: 15ch;
  margin: 2.8rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.capability-card p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.mini-tags {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
}

.mini-chart {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 5rem;
}

.mini-chart i {
  flex: 1;
  height: 30%;
  background: var(--powder-deep);
  border-radius: 0.45rem 0.45rem 0 0;
}

.mini-chart i:nth-child(2) { height: 54%; }
.mini-chart i:nth-child(3) { height: 39%; }
.mini-chart i:nth-child(4) { height: 76%; background: var(--coral); }
.mini-chart i:nth-child(5) { height: 100%; background: var(--raspberry); }

.capability-card blockquote {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  margin: 0;
  padding: 1rem;
  color: var(--coral-dark);
  background: var(--cream);
  border-radius: 1rem 1rem 0.2rem 1rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.system-dots {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
}

.system-dots span {
  width: 1rem;
  height: 1rem;
  background: #857c71;
  border-radius: 50%;
}

.system-dots span:nth-child(2) { background: var(--powder-deep); }
.system-dots span:nth-child(3) { background: var(--blush-deep); }
.system-dots span:nth-child(4) { background: var(--coral); }

.tool-ribbon {
  width: calc(100% + (2 * var(--page-pad)));
  margin: clamp(5rem, 8vw, 8rem) calc(-1 * var(--page-pad)) calc(-1 * clamp(6rem, 10vw, 10rem));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: max-content;
  padding: 1.1rem 0;
  animation: marquee 28s linear infinite;
}

.tool-track span {
  font-family: var(--serif);
  font-size: 1.05rem;
  white-space: nowrap;
}

.tool-track i {
  color: var(--coral);
  font-style: normal;
}

.process-section {
  display: block;
}

.process-copy {
  position: static;
  max-width: 68rem;
}

.process-copy h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.process-copy > p:not(.eyebrow) {
  max-width: 62rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.process-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.8rem 0.95rem 0.8rem 1.15rem;
  color: var(--ink);
  background: var(--powder);
  border: 1px solid var(--powder-deep);
  border-radius: 0.45rem 999px 999px 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease;
}

.process-cta span {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transition: transform 400ms ease;
}

.process-cta:hover {
  background: var(--blush);
  transform: translateX(4px);
}

.process-cta:hover span {
  transform: rotate(160deg);
}

.process-path {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-path::before {
  position: absolute;
  top: 3.3rem;
  bottom: 3.3rem;
  left: 2rem;
  width: 1px;
  background: var(--line);
  content: "";
}

.process-path li {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-path li:first-child {
  border-top: 1px solid var(--line);
}

.process-path li > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--white);
  background: var(--ink);
  border: 5px solid var(--paper);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
}

.process-path li:nth-child(2) > span { background: #5e8da6; }
.process-path li:nth-child(3) > span { background: var(--raspberry); }
.process-path li:nth-child(4) > span { background: var(--coral); }
.process-path li:nth-child(5) > span { background: #857c71; }

.process-path strong {
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.7vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.process-path p {
  grid-column: 2;
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.58fr) minmax(25rem, 1.42fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
  max-width: none;
  background: var(--blush);
}

.about-signal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-flower {
  position: relative;
  width: clamp(14rem, 27vw, 24rem);
  aspect-ratio: 1;
  animation: slowRotate 26s linear infinite;
}

.about-flower::before,
.about-flower::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(94, 141, 166, 0.22);
  border-radius: 50%;
  content: "";
}

.about-flower::after {
  inset: -5%;
  border-style: dashed;
}

.about-flower span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 48%;
  background: linear-gradient(145deg, var(--coral), var(--blush-deep));
  border: 1px solid rgba(94, 141, 166, 0.2);
  border-radius: 100% 0 100% 0;
  transform-origin: 0 0;
}

.about-flower span:nth-child(1) { transform: rotate(0deg); }
.about-flower span:nth-child(2) { transform: rotate(72deg); }
.about-flower span:nth-child(3) { transform: rotate(144deg); }
.about-flower span:nth-child(4) { transform: rotate(216deg); }
.about-flower span:nth-child(5) { transform: rotate(288deg); }

.about-flower i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 18%;
  height: 18%;
  background: var(--ink);
  border: 6px solid var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-signal p {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.about-copy {
  max-width: 53rem;
}

.about-copy h2 {
  font-size: clamp(3rem, 5.6vw, 6.1rem);
}

.about-lead {
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  color: var(--ink-soft);
}

.about-stamps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.about-stamps > div {
  display: flex;
  flex-direction: column;
  min-height: 7rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(94, 141, 166, 0.14);
  border-radius: 1rem;
}

.about-stamps strong {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.about-stamps span {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 0.63rem;
  line-height: 1.4;
}

.experience-line {
  display: grid;
  gap: 0;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(50, 45, 39, 0.14);
}

.experience-line > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(50, 45, 39, 0.14);
}

.experience-line span {
  color: var(--raspberry);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-line strong {
  font-size: 0.76rem;
}

.experience-line {
  display: grid;
  gap: 0;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(50, 45, 39, 0.14);
}

.experience-line > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(50, 45, 39, 0.14);
}

.experience-line span {
  color: var(--raspberry);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-line strong {
  font-size: 0.76rem;
}

.evidence-note {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(20rem, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  max-width: calc(var(--content) - (2 * var(--page-pad)));
  margin: clamp(5rem, 10vw, 9rem) auto;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--ink);
  border-radius: 2rem 2rem 0.5rem 2rem;
  box-shadow: var(--shadow);
}

.evidence-note > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.evidence-star {
  color: var(--coral);
  font-size: 2rem;
}

.evidence-note h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.evidence-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(6rem, 12vw, 12rem) var(--page-pad);
  overflow: hidden;
  text-align: center;
}

.contact-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(82vw, 74rem);
  aspect-ratio: 1.8 / 1;
  background: var(--powder);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-4deg);
}

.contact-section .eyebrow {
  justify-content: center;
}

.contact-section h2 {
  max-width: 14ch;
}

.contact-section > p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
}

.contact-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 3rem;
  align-items: center;
  min-width: min(90vw, 34rem);
  margin-top: 2.4rem;
  padding: 1.2rem 1.3rem 1.2rem 1.6rem;
  color: var(--white);
  background: var(--raspberry);
  border: 1px solid #405763;
  border-radius: 1rem 999px 999px 1rem;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(79, 104, 118, 0.24);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.contact-ribbon span {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.contact-ribbon small {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
}

.contact-ribbon b {
  grid-row: 1 / 3;
  grid-column: 2;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  color: var(--raspberry);
  background: var(--white);
  border-radius: 50%;
  transition: transform 320ms ease;
}

.contact-ribbon:hover {
  box-shadow: 0 28px 60px rgba(79, 104, 118, 0.3);
  transform: translateY(-5px) rotate(-0.5deg);
}

.contact-ribbon:hover b {
  transform: rotate(45deg);
}

.contact-flower {
  position: absolute;
  top: 15%;
  right: 15%;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  color: var(--raspberry);
  background: var(--blush);
  border: 1px solid var(--blush-deep);
  border-radius: 50% 35% 50% 35%;
  font-size: 1.4rem;
  transform: rotate(12deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem var(--page-pad);
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer > a {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer > a {
  font-weight: 700;
  text-decoration: none;
}

[data-reveal] {
  transition: filter 700ms ease;
}

[data-reveal].is-near {
  filter: saturate(1.025);
}

@keyframes breathe {
  0%, 100% { transform: scale(0.95) rotate(-4deg); }
  50% { transform: scale(1.04) rotate(4deg); }
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-44%); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr 0.82fr;
    gap: 2rem;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .stage-card-main {
    width: 88%;
  }

  .signal-card {
    width: 13rem;
  }

  .proof-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-intro {
    display: none;
  }

  .proof-item:nth-last-child(1) {
    border-right: 0;
  }

  .case {
    grid-template-columns: minmax(19rem, 0.88fr) minmax(23rem, 1.12fr);
    gap: 2rem;
  }

  .case-media {
    min-height: 36rem;
  }

  .workflow-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    cursor: pointer;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: min(82vw, 26rem);
    height: 100dvh;
    padding: 6rem 2rem 2rem;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -25px 0 70px rgba(50, 45, 39, 0.15);
    transform: translateX(110%);
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav > a:not(.nav-email) {
    padding: 0.65rem 0;
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 8.5rem;
  }

  .hero h1 {
    max-width: 10.5ch;
  }

  .hero-stage {
    min-height: 41rem;
  }

  .stage-card-main {
    right: 5%;
    width: 78%;
    height: 22rem;
  }

  .stage-card-tall {
    width: 29%;
  }

  .section-heading,
  .section-heading.compact,
  .process-section,
  .about-section,
  .evidence-note,
  .supporting-study {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .case,
  .case:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .case:nth-of-type(even) .case-copy,
  .case:nth-of-type(even) .case-media {
    order: initial;
  }

  .case-copy {
    padding: 1rem;
  }

  .case-media {
    min-height: 39rem;
  }

  .supporting-videos {
    max-width: 28rem;
    margin: 0 auto;
  }

  .capability-card,
  .capability-research,
  .capability-systems,
  .capability-performance,
  .capability-creative {
    grid-column: span 6;
  }

  .process-copy {
    position: static;
  }

  .about-section {
    gap: 3rem;
  }

  .about-signal {
    order: 2;
  }

  .evidence-note {
    margin-right: var(--page-pad);
    margin-left: var(--page-pad);
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 1.15rem;
  }

  .site-header {
    min-height: 4.7rem;
  }

  .brand-mark span {
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .hero-stage {
    min-height: 32rem;
  }

  .hero-stage::before {
    top: 7%;
    right: -8%;
    width: 105%;
  }

  .stage-card-main {
    top: 1rem;
    right: 0;
    width: 88%;
    height: 16rem;
  }

  .stage-card-tall {
    bottom: 1.5rem;
    left: 0;
    width: 35%;
    height: 14rem;
  }

  .signal-card {
    right: 0;
    bottom: 1rem;
    width: 13.5rem;
  }

  .stage-bloom {
    bottom: 13rem;
    left: 7%;
    width: 4rem;
    height: 4rem;
  }

  .stage-bloom span {
    width: 1.55rem;
    height: 2.35rem;
  }

  .proof-strip {
    display: flex;
    margin: 0 1rem;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .proof-item {
    flex: 0 0 75%;
    min-height: 8rem;
    scroll-snap-align: start;
  }

  .proof-item strong {
    font-size: 2.6rem;
  }

  .section-heading h2,
  .process-copy h2,
  .about-copy h2,
  .contact-section h2 {
    font-size: clamp(2.9rem, 13vw, 4.5rem);
  }

  .case {
    min-height: 0;
    margin-bottom: 3.5rem;
    padding: 0.75rem;
    border-radius: 1.45rem;
  }

  .case h3 {
    font-size: 2.55rem;
  }

  .case-media {
    min-height: 30rem;
  }

  .study-video-media {
    min-height: 32rem;
    padding: 1rem;
  }

  .study-phone {
    border-width: 4px;
  }

  .performance-badge {
    right: 0.5rem;
    bottom: 0.5rem;
    min-width: 7rem;
  }

  .supporting-study {
    margin-top: -1rem;
    padding: 1.25rem;
    border-radius: 1.45rem 1.45rem 0.4rem 1.45rem;
  }

  .supporting-videos {
    gap: 0.5rem;
  }

  .compact-phone {
    width: 48%;
  }

  .media-window-wide {
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 18rem;
  }

  .media-phone,
  .gut-frame {
    width: 7.2rem;
    height: 13rem;
  }

  .media-phone-one { left: 7%; }
  .media-phone-two { right: 7%; }
  .media-sticker { right: 0.8rem; bottom: 9rem; }

  .video-shell {
    width: 13.5rem;
  }

  .gut-frame-one {
    top: 3rem;
    left: -0.3rem;
    width: 6rem;
    height: 10rem;
  }

  .gut-frame-two {
    right: -0.3rem;
    bottom: 1rem;
    width: 6rem;
    height: 10.5rem;
  }

  .script-slip {
    bottom: 1rem;
    left: 0.5rem;
    width: 11rem;
    padding: 0.8rem;
  }

  .script-slip strong {
    font-size: 0.8rem;
  }

  .venice-media {
    min-height: 37rem;
  }

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

  .account-card:last-child {
    grid-column: auto;
  }

  .account-card {
    min-height: 7.5rem;
  }

  .rebuild-path {
    flex-wrap: wrap;
  }

  .scratch-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .scratch-clips,
  .scratch-media .workflow-title,
  .scratch-media .workflow-track,
  .scratch-media .workflow-foot {
    grid-row: auto;
    grid-column: 1;
  }

  .scratch-clips {
    max-width: 24rem;
    margin: 0 auto 1rem;
  }

  .workflow-track {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }

  .workflow-node {
    min-height: 6.7rem;
  }

  .capture-stack {
    grid-template-columns: 1fr 1fr;
  }

  .capture-stack > div:last-child {
    grid-column: 1 / -1;
    min-height: 6rem;
  }

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

  .capability-card,
  .capability-research,
  .capability-systems,
  .capability-performance,
  .capability-creative {
    grid-column: auto;
    min-height: 21rem;
  }

  .process-path li {
    grid-template-columns: 3.5rem 1fr;
  }

  .about-stamps {
    grid-template-columns: 1fr;
  }

  .about-stamps > div {
    min-height: 5.5rem;
  }

  .evidence-note {
    padding: 1.6rem;
    border-radius: 1.5rem 1.5rem 0.4rem 1.5rem;
  }

  .evidence-note > div {
    align-items: flex-start;
  }

  .contact-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .contact-section::before {
    width: 130vw;
    aspect-ratio: 1 / 1;
  }

  .contact-flower {
    top: 7%;
    right: 4%;
    width: 3.5rem;
    height: 3.5rem;
  }

  .contact-ribbon {
    min-width: 0;
    width: 100%;
    column-gap: 1rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  [data-reveal],
  [data-reveal].is-near {
    filter: none;
  }
}

.capability-ai {
  grid-column: span 12;
  min-height: 0;
  background: linear-gradient(120deg, rgba(202, 220, 231, 0.4), rgba(255, 255, 255, 0.88));
}

.capability-ai .capability-icon {
  color: var(--raspberry);
  background: var(--powder);
}

.capability-ai p {
  max-width: 48ch;
  margin-bottom: 0;
}

/* Two columns on desktop so the full-width band doesn't leave dead space
   on the right; collapses to a single stack below 900px. */
@media (min-width: 901px) {
  .capability-ai {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    column-gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }

  .capability-ai .capability-icon,
  .capability-ai h3,
  .capability-ai p {
    grid-column: 1;
  }

  .capability-ai .ai-ledger {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    margin-top: 0;
  }

  .capability-ai .case-artifact-link {
    grid-column: 1;
  }
}

.ai-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ai-ledger > div {
  flex: 1 1 12rem;
}

.ai-ledger > div {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(50, 45, 39, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
}

.ai-ledger span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--raspberry);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-ledger strong {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
}

.capability-ai .case-artifact-link {
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .capability-ai {
    grid-column: span 6;
  }
}

/* Decorative hero orbits bleed past the viewport edge and created a ~100px
   horizontal scroll. `clip` contains them without making .hero a scroll
   container, so the sticky header keeps working. */
.hero {
  overflow-x: clip;
}
