@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 800;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

:root {
  color-scheme: dark;
  --ink: #0b0c0f;
  --ink-soft: #111318;
  --paper: #f1efe9;
  --paper-soft: #d3d0c8;
  --muted: #95979f;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --blue: #6a8cff;
  --blue-bright: #aebeff;
  --orange: #ff8b5c;
  --shell: min(1320px, calc(100vw - 96px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--blue);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-left: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 12, 15, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
  text-decoration: none;
}

.brand img {
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  color: #b8bac1;
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--paper);
}

.site-nav .nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--paper);
}

.nav-cta span,
.project-link span,
.submit-button span:last-child {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 180ms ease;
}

.nav-cta:hover span,
.project-link:hover span,
.submit-button:hover span:last-child {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  --hero-scroll: 0;
  position: relative;
  display: grid;
  min-height: min(960px, 100svh);
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  border-bottom: 1px solid var(--line);
  background: #090a0c;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(104, 130, 225, 0.075), transparent 28%),
    linear-gradient(to bottom, rgba(9, 10, 12, 0.04) 45%, rgba(9, 10, 12, 0.76) 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.54), transparent 18%, transparent 82%, rgba(9, 10, 12, 0.54)),
    linear-gradient(to bottom, rgba(9, 10, 12, 0.34), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-paths {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: calc(min(960px, 100svh) - var(--header-height) - 7rem);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  transform: translate3d(0, calc(var(--hero-scroll) * -24px), 0);
  opacity: calc(1 - var(--hero-scroll) * 0.18);
  will-change: transform, opacity;
}

.hero-copy .eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero-copy .eyebrow span {
  margin: 0;
}

.hero h1,
.section-intro h2,
.about-title h2,
.contact-heading h2 {
  margin: 0;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 1120px;
  margin: clamp(2.2rem, 5vw, 4.75rem) auto 0;
  font-size: clamp(4.5rem, 8.4vw, 8.5rem);
  font-weight: 450;
}

.hero h1 em,
.section-intro h2 em,
.about-title h2 em,
.contact-heading h2 em {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}

.hero h1 em {
  display: block;
  color: var(--blue-bright);
}

.hero-footer {
  display: grid;
  margin-top: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-end;
  gap: 2rem;
}

.hero-footer p {
  max-width: 500px;
  margin: 0;
  color: #b4b6bd;
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  padding-bottom: 0.35rem;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--blue-bright);
  font-size: 1rem;
}

.work-section,
.concepts-section,
.archive-section,
.capabilities-section,
.service-area-section,
.toolkit-section,
.about-section,
.faq-section {
  padding-block: clamp(8rem, 12vw, 12rem);
}

.work-section,
.concepts-section,
.archive-section,
.capabilities-section,
.service-area-section,
.toolkit-section,
.about-section,
.faq-section,
.inline-link {
  color: var(--paper-soft);
  text-decoration-color: var(--blue-bright);
  text-underline-offset: 0.3em;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #090a0c;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3.5rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq-heading > p:last-child {
  max-width: 510px;
  margin: 2rem 0 0;
  color: #9fa1a8;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.7rem 3rem 1.7rem 0;
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 1px;
  background: var(--blue-bright);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 760px;
  margin: -0.35rem 0 1.8rem;
  color: #9fa1a8;
  line-height: 1.8;
}

.contact-section {
  padding: clamp(6rem, 11vw, 11rem) 0;
}

.section-intro {
  display: grid;
  margin-bottom: clamp(6rem, 10vw, 10rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7rem);
}

.section-intro h2,
.about-title h2 {
  margin-top: 1.6rem;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 450;
}

.section-intro h2 em,
.about-title h2 em {
  color: var(--blue-bright);
}

.section-intro > p,
.contact-heading > p {
  max-width: 500px;
  margin: 0;
  color: #a9abb2;
  font-size: 1rem;
  line-height: 1.85;
}

.case-study {
  display: grid;
  padding: clamp(6rem, 9vw, 9rem) 0;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
}

.case-study--featured {
  display: block;
  padding-top: 0;
  border-top: 0;
}

.case-study--featured .case-content {
  display: grid;
  max-width: 1080px;
  margin-top: clamp(4.5rem, 7vw, 7rem);
  margin-left: auto;
  grid-template-columns: 88px 1fr;
}

.case-study--reverse .case-visual {
  order: 2;
}

.case-study--reverse .case-content {
  order: 1;
}

.case-visual {
  position: relative;
  padding: 0 5.8% 8% 0;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #17191f;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34);
}

.browser-bar {
  display: flex;
  height: 42px;
  padding: 0 1rem;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #17191f;
  color: #70737b;
  font-size: 0.64rem;
  letter-spacing: 0.03em;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #53565e;
}

.browser-dots i:first-child {
  background: #ff8b72;
}

.browser-dots i:nth-child(2) {
  background: #e8bd61;
}

.browser-dots i:nth-child(3) {
  background: #68ba87;
}

.desktop-capture {
  width: 100%;
  height: auto;
  aspect-ratio: 1.44;
  object-fit: cover;
}

.phone-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 23%;
  min-width: 120px;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: clamp(18px, 2.2vw, 34px);
  background: #090a0d;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.58);
}

.phone-frame img {
  width: 100%;
  border-radius: calc(clamp(18px, 2.2vw, 34px) - 7px);
}

.phone-speaker {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 50%;
  width: 26%;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(-50%);
}

.case-content {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
}

.case-index {
  padding-top: 0.35rem;
  color: #777a83;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.9rem;
}

.case-category {
  margin: 0 0 1rem;
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.case-caption {
  max-width: 720px;
  margin: 1.6rem 0 0;
  color: var(--paper);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.case-description {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: #a3a5ac;
  font-size: 0.92rem;
  line-height: 1.85;
}

.feature-list {
  display: flex;
  margin: 2rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.feature-list li {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #bfc1c7;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.project-link {
  display: inline-flex;
  margin-top: 2.2rem;
  padding-bottom: 0.4rem;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.capabilities-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 100% 122px;
}

.section-intro--compact {
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  padding: 2.3rem 0;
  grid-template-columns: 70px minmax(210px, 0.55fr) minmax(280px, 0.85fr) auto;
  align-items: baseline;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, border-color 200ms ease;
}

.capability:hover {
  padding-inline: 1rem;
  border-color: var(--line-strong);
}

.capability span {
  color: var(--muted);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.85rem;
}

.capability h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 450;
}

.capability p {
  max-width: 600px;
  margin: 0;
  color: #9fa1a8;
  font-size: 0.9rem;
  line-height: 1.8;
}

.capability-link {
  display: inline-flex;
  padding-bottom: 0.35rem;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper-soft);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.capability-link span {
  color: var(--blue-bright);
  font-family: inherit;
  font-size: 0.9rem;
}

.service-area-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 54%, rgba(106, 140, 255, 0.09), transparent 28%),
    #090a0c;
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.service-area-grid h2,
.faq-heading h2 {
  max-width: 830px;
  margin: 1.5rem 0 0;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  font-weight: 450;
  letter-spacing: -0.058em;
  line-height: 0.94;
}

.service-area-grid h2 em,
.faq-heading h2 em {
  color: var(--blue-bright);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}

.service-area-grid > div:last-child > p {
  margin: 0 0 2rem;
  color: #a6a8af;
  line-height: 1.85;
}

.about-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 54%, rgba(106, 140, 255, 0.075), transparent 26%),
    #0b0c0f;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8.5rem);
}

.about-portrait {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 4 / 5.35;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #111216;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.44);
}

.about-portrait__image {
  position: absolute;
  inset: 0;
}

.about-portrait__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 8, 10, 0.76), transparent 34%),
    linear-gradient(to right, rgba(7, 8, 10, 0.12), transparent 35%);
  content: "";
}

.about-portrait img {
  width: 100%;
  height: 104%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.025);
}

.about-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.about-portrait figcaption span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
}

.about-portrait figcaption small {
  max-width: 150px;
  color: #b7b9bf;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.about-story {
  max-width: 820px;
}

.about-title h2 {
  max-width: 760px;
}

.about-copy {
  max-width: 690px;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.about-copy p {
  margin: 0;
  color: #9fa1a8;
  line-height: 1.85;
}

.about-copy .about-lead {
  margin-bottom: 2rem;
  color: var(--paper);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.tool-line {
  display: flex;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tool-line span {
  color: var(--muted);
  font-size: 0.7rem;
}

.tool-line span:not(:last-child)::after {
  margin-left: 0.65rem;
  color: var(--blue);
  content: "•";
}

.contact-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 75%, rgba(106, 140, 255, 0.13), transparent 25%),
    #0e1015;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.contact-heading h2 {
  margin: 1.6rem 0 2.2rem;
  font-size: clamp(3.2rem, 5.7vw, 6.7rem);
  font-weight: 450;
}

.contact-heading h2 em {
  color: var(--blue-bright);
}

.direct-contact {
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
  gap: 0.7rem;
}

.direct-contact a {
  width: fit-content;
  color: #c6c8ce;
  font-size: 0.85rem;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 5px;
}

.contact-location {
  max-width: 520px;
  color: #9fa1a8;
  font-size: 0.82rem;
  line-height: 1.75;
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 2.7rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  margin-bottom: 1.6rem;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  color: #c8cad0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.field input {
  height: 48px;
}

.field textarea {
  min-height: 130px;
  padding: 0.7rem 0;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-bright);
}

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

.form-footer {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-status {
  margin: 0;
  color: var(--paper-soft);
  font-size: 0.76rem;
}

.form-status.is-error {
  color: #ff9c8b;
}

.form-status.is-success {
  color: #88d9aa;
}

.form-privacy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.65;
}

.form-privacy a {
  color: var(--paper-soft);
}

.submit-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--paper);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.submit-button:hover {
  background: transparent;
  color: var(--paper);
}

.submit-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #08090c;
}

.footer-inner {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner > p {
  margin: 0;
  color: #797c84;
  font-size: 0.68rem;
}

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

.home-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.home-footer-links a {
  color: var(--muted);
  font-size: 0.68rem;
  text-decoration: none;
}

.home-footer-links a:hover {
  color: var(--paper);
}

.brand--footer small {
  text-transform: none;
}

.back-to-top {
  color: #aeb0b7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-to-top span {
  margin-left: 0.4rem;
  color: var(--blue-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.21, 0.8, 0.31, 1), transform 700ms cubic-bezier(0.21, 0.8, 0.31, 1);
}

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

.work-expansion {
  --visual-width: min(92vw, 1440px);
  --visual-height: 76vh;
  --visual-radius: 12px;
  --side-opacity: 0.16;
  --left-shift: -120px;
  --right-shift: 120px;
  --support-opacity: 1;
  --support-lift: 0px;
  --detail-lift: 0px;
  --detail-scale: 1;
  --content-opacity: 1;
  --content-lift: 0px;
  --overlay-opacity: 0.15;
  --dominant-left: 2%;
  --dominant-top: 2%;
  --dominant-width: 60%;
  --dominant-height: 96%;
  position: relative;
  z-index: 1;
  height: 170svh;
  border-bottom: 1px solid var(--line);
  background: #08090c;
}

.work-expansion.is-enhanced {
  --visual-width: 340px;
  --visual-height: 480px;
  --visual-radius: 28px;
  --side-opacity: 1;
  --left-shift: 0px;
  --right-shift: 0px;
  --support-opacity: 0;
  --support-lift: 24px;
  --detail-lift: 18px;
  --detail-scale: 0.94;
  --content-opacity: 0;
  --content-lift: 24px;
  --overlay-opacity: 0.42;
  --dominant-left: 0%;
  --dominant-top: 0%;
  --dominant-width: 100%;
  --dominant-height: 100%;
}

.work-expansion__sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  overflow: clip;
  place-items: center;
  isolation: isolate;
}

.split-word {
  position: absolute;
  z-index: 0;
  top: 50%;
  margin: 0;
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(4.8rem, 9vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
  opacity: var(--side-opacity);
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform, opacity;
}

.split-word--left {
  right: calc(50% + 158px);
  transform: translate3d(var(--left-shift), -50%, 0);
}

.split-word--right {
  left: calc(50% + 158px);
  transform: translate3d(var(--right-shift), -50%, 0);
}

.split-word--mobile {
  display: none;
}

.showreel-frame {
  position: relative;
  z-index: 2;
  width: var(--visual-width);
  max-width: calc(100vw - 32px);
  height: var(--visual-height);
  max-height: 820px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--visual-radius);
  background: #111318;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
  transition: box-shadow 180ms ease;
  will-change: width, height, border-radius;
}

.showreel-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: #17191f;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
  opacity: var(--support-opacity);
  transform: translateY(var(--support-lift));
  transition: border-color 180ms ease;
  will-change: opacity, transform;
}

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

.showreel-card--dominant {
  z-index: 1;
  top: var(--dominant-top);
  left: var(--dominant-left);
  width: var(--dominant-width);
  height: var(--dominant-height);
  border: 0;
  border-radius: max(7px, calc(var(--visual-radius) - 3px));
  opacity: 1;
  transform: none;
}

.showreel-card--dominant img {
  object-position: center;
}

.showreel-card--secondary {
  z-index: 2;
  top: 3%;
  left: 64%;
  width: 33%;
  height: 42%;
}

.showreel-card--mobile-one {
  z-index: 3;
  top: 47%;
  left: 64%;
  width: 15%;
  height: 50%;
}

.showreel-card--mobile-two {
  z-index: 3;
  top: 47%;
  left: 81%;
  width: 16%;
  height: 50%;
}

.showreel-card--detail {
  z-index: 4;
  top: 5%;
  left: 36%;
  width: 22%;
  height: 27%;
  transform: translateY(var(--detail-lift)) scale(var(--detail-scale));
}

.showreel-shade {
  position: absolute;
  z-index: 5;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.82), transparent 56%),
    linear-gradient(0deg, rgba(4, 5, 7, 0.68), transparent 48%),
    rgba(5, 6, 8, var(--overlay-opacity));
  pointer-events: none;
}

.showreel-copy {
  position: absolute;
  z-index: 6;
  bottom: clamp(1.4rem, 5vh, 3.5rem);
  left: clamp(1.4rem, 4vw, 4rem);
  width: min(520px, 46%);
  opacity: var(--content-opacity);
  transform: translateY(var(--content-lift));
  pointer-events: none;
  will-change: opacity, transform;
}

.showreel-copy h2 {
  margin: 0.7rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.showreel-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 1rem 0 0;
  color: #d0d2d8;
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  line-height: 1.7;
}

.showreel-copy a {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.72rem 1rem;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.58);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  pointer-events: auto;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.ciarra-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(260px, 0.64fr);
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.ciarra-showcase figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #17191f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.ciarra-showcase__main {
  grid-row: 1 / 3;
}

.ciarra-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concepts-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(116, 144, 255, 0.09), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(29, 154, 130, 0.07), transparent 27%),
    #0a0c0f;
}

.concept-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(5rem, 8vw, 9rem) 1.5rem;
}

.concept-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  grid-column: span 5;
}

.concept-card--wide {
  grid-column: span 7;
}

.concept-visual {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: #111318;
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.28);
}

.concept-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.concept-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 500ms ease, transform 750ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.concept-visual > span {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  padding: 0.7rem 0.9rem;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.76);
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.concept-visual:hover img {
  filter: saturate(1.06);
  transform: scale(1.018);
}

.concept-visual:hover > span {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(25, 27, 33, 0.9);
  transform: translateY(-2px);
}

.concept-body {
  display: grid;
  min-width: 0;
  margin-top: 1.65rem;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
}

.concept-body > div {
  min-width: 0;
}

.concept-index {
  padding-top: 0.2rem;
  color: #7f828b;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.concept-body h3 {
  max-width: 100%;
  margin: 0.42rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.concept-body h3 a {
  max-width: 100%;
  color: inherit;
  text-decoration-color: var(--blue-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.concept-body > div > p:not(.case-category) {
  width: 100%;
  max-width: 620px;
  margin: 1.05rem 0 0;
  color: #a5a7ae;
  font-size: 0.88rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.concept-tags {
  display: flex;
  margin: 1.25rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.concept-tags li {
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #bdc0c7;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-section {
  border-top: 1px solid var(--line);
  background: #0d0f13;
}

.archive-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.archive-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #14161b;
}

.archive-card--wide {
  grid-column: span 8;
}

.archive-card--tall {
  min-height: 420px;
}

.archive-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 500ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.archive-card::after,
.archive-card > a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.9), transparent 60%);
  content: "";
  pointer-events: none;
}

.archive-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.archive-card > span,
.archive-card > a > span {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.archive-card small {
  color: #b0b2b9;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: right;
}

.toolkit-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 50%, rgba(106, 140, 255, 0.13), transparent 30%),
    #0d0f13;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(560px, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.toolkit-copy h2 {
  margin: 1.4rem 0 0;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.toolkit-copy h2 em {
  color: var(--blue-bright);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}

.toolkit-copy > p:not(.eyebrow, .toolkit-instruction) {
  max-width: 510px;
  margin: 2rem 0 0;
  color: #9fa1a8;
  font-size: 0.94rem;
  line-height: 1.85;
}

.toolkit-instruction {
  margin: 2rem 0 0;
  color: var(--paper-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toolkit-instruction span {
  margin-right: 0.7rem;
  color: var(--blue-bright);
  font-size: 1rem;
}

.tool-orbit {
  --tool-radius: clamp(190px, 23vw, 310px);
  position: relative;
  height: clamp(500px, 56vw, 680px);
  cursor: grab;
  perspective: 1200px;
  touch-action: pan-y;
  user-select: none;
}

.tool-orbit:active {
  cursor: grabbing;
}

.tool-orbit__track,
.tool-orbit__ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.tool-orbit__track {
  transform: rotateX(-5deg);
}

.tool-orbit__ring {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-orbit__core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(174, 190, 255, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 140, 255, 0.3), rgba(14, 16, 22, 0.88) 68%);
  box-shadow: 0 0 80px rgba(106, 140, 255, 0.2);
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.tool-orbit__core span {
  color: var(--blue-bright);
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.9;
}

.tool-orbit__core small {
  margin-top: 0.45rem;
  color: var(--paper-soft);
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tool-orbit__ring li {
  --tool-position: var(--tool-angle);
  --tool-counter-position: calc(0deg - var(--tool-angle));
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  margin: -52px 0 0 -52px;
  transform: rotateY(var(--tool-position)) translateZ(var(--tool-radius));
  transform-style: preserve-3d;
}

.tool-orbit__ring li > div {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(24, 27, 34, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  place-content: center;
  transform: rotateY(var(--tool-counter-position));
  transform-style: preserve-3d;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.tool-orbit__ring li > div:hover {
  border-color: rgba(174, 190, 255, 0.46);
  background: rgba(35, 39, 49, 0.96);
}

.tool-orbit__ring img {
  width: 50px;
  height: 50px;
  margin-inline: auto;
  object-fit: contain;
}

.tool-orbit__ring li span {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.84);
  color: #c4c6cc;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.custom-cursor {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  overflow: visible;
  pointer-events: none;
}

.custom-cursor__ring,
.custom-cursor__dot,
.custom-cursor__trail {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.custom-cursor__ring {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.14);
  mix-blend-mode: difference;
  backdrop-filter: blur(2px);
  transition: width 180ms ease, height 180ms ease, margin 180ms ease, border-color 180ms ease, opacity 160ms ease;
}

.custom-cursor__dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.75);
  mix-blend-mode: difference;
  transition: width 180ms ease, height 180ms ease, margin 180ms ease, opacity 160ms ease;
}

.custom-cursor__trail {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: opacity 200ms ease;
}

.custom-cursor__trail--one {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
}

.custom-cursor__trail--two {
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
}

.custom-cursor__trail--three {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
}

.custom-cursor__trail--four {
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
}

.custom-cursor.is-visible .custom-cursor__ring,
.custom-cursor.is-visible .custom-cursor__dot {
  opacity: 1;
}

.custom-cursor.is-visible.is-moving .custom-cursor__trail--one {
  opacity: 0.18;
}

.custom-cursor.is-visible.is-moving .custom-cursor__trail--two {
  opacity: 0.13;
}

.custom-cursor.is-visible.is-moving .custom-cursor__trail--three {
  opacity: 0.1;
}

.custom-cursor.is-visible.is-moving .custom-cursor__trail--four {
  opacity: 0.08;
}

.custom-cursor.is-interactive .custom-cursor__ring {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-color: rgba(255, 255, 255, 0.92);
}

.custom-cursor.is-interactive .custom-cursor__dot,
.custom-cursor.is-down .custom-cursor__dot {
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 821px) and (prefers-reduced-motion: no-preference) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }

  html.has-custom-cursor .custom-cursor {
    display: block;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 56px, 980px);
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 6.4rem);
  }

  .capability {
    grid-template-columns: 60px minmax(210px, 0.55fr) minmax(0, 1fr);
  }

  .capability-link {
    grid-column: 2 / -1;
    width: fit-content;
  }

  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study--reverse .case-visual,
  .case-study--reverse .case-content {
    order: initial;
  }

  .case-content {
    max-width: 760px;
  }

  .ciarra-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .ciarra-showcase__main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .concept-card,
  .concept-card--wide {
    grid-column: span 6;
  }

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

  .toolkit-copy {
    max-width: 780px;
  }

  .tool-orbit {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .service-area-grid,
  .faq-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: relative;
    top: auto;
  }

  .footer-inner--expanded {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .home-footer-links {
    justify-content: flex-start;
  }

  .about-portrait {
    width: min(100%, 500px);
  }

  .contact-heading {
    max-width: 800px;
  }

  .contact-heading > p {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 0.5rem 0;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    display: grid;
    width: 22px;
    gap: 6px;
  }

  .menu-toggle__lines i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 0;
    display: flex;
    width: 100%;
    max-width: 100vw;
    height: calc(100dvh - var(--header-height));
    padding:
      clamp(2.25rem, 7vh, 4rem)
      max(20px, env(safe-area-inset-right))
      calc(2.5rem + env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.9rem;
    background:
      radial-gradient(circle at 92% 14%, rgba(106, 140, 255, 0.09), transparent 30%),
      #0b0c0f;
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: min(100%, 680px);
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--line);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.25rem, 8vw, 4rem);
    font-weight: 450;
  }

  .site-nav .nav-cta {
    width: auto;
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line-strong);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.78rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    border-color: var(--line);
    background: #0b0c0f;
  }

  .hero {
    min-height: min(860px, 100svh);
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 3rem;
  }

  .hero-inner {
    min-height: calc(min(860px, 100svh) - var(--header-height) - 7rem);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 3rem;
  }

  .hero-copy {
    transform: none;
    opacity: 1;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4rem, 12vw, 6.5rem);
  }

  .work-expansion {
    height: 130svh;
  }

  .split-word--left,
  .split-word--right {
    display: none;
  }

  .split-word--mobile {
    top: 9%;
    left: 50%;
    display: block;
    width: calc(100% - 40px);
    font-size: clamp(3.5rem, 14vw, 7rem);
    opacity: var(--side-opacity);
    text-align: center;
    transform: translateX(-50%);
    white-space: normal;
  }

  .showreel-frame {
    max-width: none;
    max-height: none;
  }

  .showreel-card--dominant {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--mobile-dominant-height, 60%) !important;
  }

  .showreel-card--secondary,
  .showreel-card--detail {
    display: none;
  }

  .showreel-card--mobile-one {
    top: 62%;
    left: 0;
    width: 49%;
    height: 38%;
  }

  .showreel-card--mobile-two {
    top: 62%;
    left: 51%;
    width: 49%;
    height: 38%;
  }

  .showreel-copy {
    right: 1.4rem;
    bottom: 41%;
    left: 1.4rem;
    width: auto;
  }

  .showreel-copy h2 {
    font-size: clamp(2.5rem, 10vw, 4.4rem);
  }

  .showreel-copy > p:not(.eyebrow) {
    max-width: 540px;
  }

  .hero-footer,
  .section-intro {
    display: block;
  }

  .hero-footer p {
    max-width: 640px;
  }

  .hero-footer .text-link {
    margin-top: 2rem;
  }

  .section-intro > p {
    margin-top: 2rem;
  }

  .case-study--featured .case-content {
    grid-template-columns: 52px 1fr;
  }

  .archive-card {
    grid-column: span 6;
  }

  .archive-card--wide {
    grid-column: span 12;
  }

  .tool-orbit {
    --tool-radius: clamp(190px, 36vw, 275px);
    height: 620px;
  }

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

  .capability p,
  .capability-link {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 2.5rem;
  }

  .hero-inner {
    min-height: calc(100svh - var(--header-height) - 6rem);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
    letter-spacing: -0.062em;
  }

  .hero-copy .eyebrow {
    display: block;
  }

  .eyebrow span {
    display: block;
    margin: 0.4rem 0 0;
  }

  .hero-footer {
    display: block;
    margin-top: 0;
  }

  .hero-footer .text-link {
    margin-top: 2rem;
  }

  .about-portrait {
    width: 100%;
  }

  .about-portrait figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .about-portrait figcaption small {
    max-width: 130px;
  }

  .work-section,
  .concepts-section,
  .archive-section,
  .capabilities-section,
  .service-area-section,
  .toolkit-section,
  .about-section,
  .faq-section,
  .contact-section {
    padding-block: 6.5rem;
  }

  .work-expansion {
    height: 125svh;
  }

  .split-word--mobile {
    top: 11%;
    width: calc(100% - 32px);
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .showreel-copy {
    right: 1rem;
    left: 1rem;
  }

  .showreel-copy .eyebrow {
    display: none;
  }

  .showreel-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .showreel-copy > p:not(.eyebrow) {
    margin-top: 0.65rem;
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .showreel-copy a {
    margin-top: 0.8rem;
    padding: 0.58rem 0.78rem;
    font-size: 0.6rem;
  }

  .section-intro {
    margin-bottom: 5rem;
  }

  .section-intro h2,
  .about-title h2 {
    font-size: clamp(2.9rem, 13vw, 4.5rem);
  }

  .case-study,
  .case-study--featured {
    display: block;
    padding-block: 5.5rem;
  }

  .case-study--featured {
    padding-top: 0;
  }

  .ciarra-showcase {
    gap: 0.6rem;
  }

  .case-visual {
    display: block;
    padding: 0;
  }

  .browser-bar {
    height: 34px;
    padding-inline: 0.7rem;
    font-size: 0.54rem;
  }

  .browser-bar > span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .phone-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(52%, 190px);
    min-width: 0;
    margin: -3rem 1rem 0 auto;
  }

  .case-study--featured .case-content,
  .case-content {
    display: block;
    margin-top: 2.8rem;
  }

  .case-index {
    margin-bottom: 1rem;
  }

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

  .case-caption {
    font-size: 1.05rem;
  }

  .concept-grid {
    width: 100%;
    grid-auto-flow: row;
    grid-template-columns: minmax(0, 1fr);
    gap: 4.5rem;
  }

  .concept-card,
  .concept-card--wide {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-column: 1;
  }

  .concept-visual {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 7px;
  }

  .concept-visual img {
    object-fit: contain;
  }

  .concept-visual > span {
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.55rem 0.68rem;
    font-size: 0.54rem;
  }

  .concept-body {
    display: block;
    margin-top: 1.25rem;
  }

  .concept-index {
    display: block;
    margin-bottom: 0.75rem;
  }

  .concept-body h3 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .concept-body > div > p:not(.case-category) {
    max-width: 100%;
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .concept-tags {
    width: 100%;
    max-width: 100%;
  }

  .archive-card,
  .archive-card--wide {
    min-height: 260px;
    grid-column: span 12;
  }

  .archive-card--tall {
    min-height: 300px;
  }

  .archive-card > span,
  .archive-card > a > span {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .archive-card strong {
    font-size: 1.35rem;
  }

  .toolkit-instruction {
    display: none;
  }

  .tool-orbit {
    width: 100%;
    height: auto;
    overflow: hidden;
    cursor: default;
    perspective: none;
    touch-action: pan-x;
  }

  .tool-orbit__track,
  .tool-orbit__ring {
    position: relative;
    inset: auto;
    transform: none !important;
  }

  .tool-orbit__core {
    display: none;
  }

  .tool-orbit__ring {
    display: flex;
    overflow-x: auto;
    padding: 1rem 1rem 2.4rem;
    gap: 0.8rem;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .tool-orbit__ring li {
    position: relative;
    top: auto;
    left: auto;
    width: 112px;
    height: 112px;
    margin: 0;
    flex: 0 0 112px;
    scroll-snap-align: start;
    transform: none !important;
    opacity: 1 !important;
  }

  .tool-orbit__ring li > div {
    transform: none !important;
  }

  .capability {
    display: block;
    padding-block: 1.8rem;
  }

  .capability span {
    display: block;
    margin-bottom: 0.6rem;
  }

  .capability h3 {
    font-size: 2rem;
  }

  .capability p {
    margin-top: 0.8rem;
  }

  .capability-link {
    width: fit-content;
    margin-top: 1rem;
  }

  .capability-link span {
    display: inline;
    margin: 0;
  }

  .about-grid,
  .contact-grid {
    gap: 3rem;
  }

  .about-copy {
    padding-top: 0;
  }

  .contact-heading h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .contact-form {
    padding: 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-status:empty {
    display: none;
  }

  .submit-button {
    width: 100%;
  }

  .footer-inner {
    padding-block: 2.5rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
}

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

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

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

  .hero-copy {
    transform: none;
    opacity: 1;
  }

  .work-expansion,
  .work-expansion.is-enhanced {
    --visual-width: min(92vw, 1440px);
    --visual-height: min(76vh, 760px);
    --visual-radius: 12px;
    --side-opacity: 0.16;
    --left-shift: -80px;
    --right-shift: 80px;
    --support-opacity: 1;
    --support-lift: 0px;
    --detail-lift: 0px;
    --detail-scale: 1;
    --content-opacity: 1;
    --content-lift: 0px;
    --overlay-opacity: 0.15;
    --dominant-left: 2%;
    --dominant-top: 2%;
    --dominant-width: 60%;
    --dominant-height: 96%;
    height: auto;
    padding: 5rem 0;
  }

  .work-expansion__sticky {
    position: relative;
    height: min(820px, 86svh);
    min-height: 640px;
  }

  .tool-orbit {
    cursor: default;
  }
}
