:root {
  --orange: #ff6b00;
  --orange-dark: #bf4300;
  --graphite: #1d1e20;
  --graphite-soft: #292b2d;
  --paper: #f2f3f0;
  --white: #ffffff;
  --ink: #17191a;
  --muted: #5f625f;
  --green: #1c5a43;
  --line: rgba(29, 30, 32, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --content: 1240px;
  --gutter: 64px;
  --header-height: 76px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(29, 30, 32, 0.94);
  color: var(--white);
  transition: background-color 220ms ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, calc(var(--content) + (2 * var(--gutter))));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand img {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 9px 16px;
  background: var(--orange);
  color: var(--graphite) !important;
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--graphite);
}

.button-primary:hover {
  background: #ff7b1f;
}

.button-light {
  background: var(--white);
  color: var(--graphite);
}

.button-light:hover {
  background: var(--paper);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  color: var(--white);
}

.section-shell {
  width: min(100%, calc(var(--content) + (2 * var(--gutter))));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 47%;
}

.hero-scrim {
  background: rgba(14, 16, 16, 0.62);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 72px;
  width: min(100%, calc(var(--content) + (2 * var(--gutter))));
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) var(--gutter) 54px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 24px;
  font-size: 4.75rem;
  font-weight: 600;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 57ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-lead strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link svg {
  width: 18px;
}

.verified-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.verified-line svg {
  width: 18px;
  color: var(--orange);
}

.profile-experience {
  justify-self: end;
  width: 100%;
  max-width: 470px;
}

.profile-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.profile-heading p {
  margin: 0;
}

.profile-heading span {
  color: var(--white);
  text-align: right;
}

.orbit-menu {
  position: relative;
  width: 430px;
  height: 430px;
  margin-inline: auto;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring-outer {
  width: 340px;
  height: 340px;
}

.orbit-ring-outer::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
  transform-origin: 175px 0;
  animation: orbit-dot 8s linear infinite;
}

.orbit-ring-inner {
  width: 230px;
  height: 230px;
  border-color: rgba(255, 107, 0, 0.34);
}

@keyframes orbit-dot {
  to {
    transform: rotate(360deg);
  }
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--graphite);
  color: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 107, 0, 0.12);
}

.orbit-center img {
  width: 104px;
  height: auto;
}

.profile-option {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 104px;
  min-height: 88px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.profile-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(29, 30, 32, 0.72);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease),
    border-color 220ms ease;
}

.profile-icon svg {
  width: 23px;
  height: 23px;
}

.profile-option:hover .profile-icon,
.profile-option.is-active .profile-icon {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--graphite);
  transform: scale(1.08);
}

.profile-option.is-active {
  color: var(--white);
}

.profile-home {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.profile-business {
  right: 3px;
  bottom: 20px;
}

.profile-industry {
  bottom: 20px;
  left: 3px;
}

.profile-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.profile-note span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.5;
}

.profile-note small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 132px;
  background: var(--orange);
  color: var(--graphite);
}

.audience-strip > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(29, 30, 32, 0.2);
  padding: 26px max(24px, calc((100vw - var(--content)) / 6));
}

.audience-strip > div:last-child {
  border-right: 0;
}

.audience-strip span {
  margin-bottom: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.audience-strip strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
}

.decision-band {
  padding: 128px 0;
  background: var(--white);
}

.motif-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.motif-stage::after {
  flex: 1;
  height: 1px;
  margin-left: 12px;
  background: var(--line);
  content: "";
}

.motif-stage span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--graphite);
  font-weight: 800;
}

.motif-stage strong {
  font-size: inherit;
}

.motif-stage-dark {
  color: var(--orange);
}

.motif-stage-dark::after {
  background: var(--line-light);
}

.motif-stage-cta {
  position: relative;
  z-index: 2;
  color: var(--graphite);
}

.motif-stage-cta::after {
  background: rgba(29, 30, 32, 0.25);
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 100px;
  align-items: end;
}

.section-intro h2 {
  max-width: 17ch;
}

.decision-copy {
  border-left: 3px solid var(--orange);
  padding-left: 32px;
}

.decision-profile {
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-copy {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.decision-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.decision-facts span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  color: var(--graphite);
  font-size: 0.75rem;
  font-weight: 600;
}

.process-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--graphite);
  color: var(--white);
}

.process-band::before {
  position: absolute;
  top: 0;
  left: 7%;
  width: 1px;
  height: 100%;
  background: var(--line-light);
  content: "";
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 78px;
}

.process-heading h2 {
  max-width: 14ch;
}

.process-heading > p {
  max-width: 45ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-line::before {
  position: absolute;
  top: 32px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-light);
  content: "";
}

.process-line li {
  position: relative;
  min-height: 276px;
  border-right: 1px solid var(--line-light);
  padding: 88px 30px 20px 0;
}

.process-line li:not(:first-child) {
  padding-left: 30px;
}

.process-line li:last-child {
  border-right: 0;
}

.process-index {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--graphite);
  font-size: 0.65rem;
  font-weight: 800;
}

.process-line li:not(:first-child) .process-index {
  left: 30px;
}

.process-line svg {
  width: 27px;
  height: 27px;
  margin-bottom: 42px;
  color: var(--orange);
}

.process-line h3 {
  margin-bottom: 12px;
}

.process-line p {
  max-width: 25ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.projects-band {
  padding: 76px 0 112px;
  background: var(--paper);
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 32px;
}

.projects-heading h2 {
  max-width: 17ch;
}

.projects-heading > p {
  margin: 0;
  color: var(--muted);
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.view-switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px;
  background: var(--white);
}

.view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 2px;
  padding: 8px 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.view-button svg {
  width: 17px;
  height: 17px;
}

.view-button.is-active {
  background: var(--graphite);
  color: var(--white);
}

.gallery-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-navigation[hidden] {
  display: none;
}

.gallery-counter {
  min-width: 64px;
  color: var(--muted);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  text-align: center;
}

.gallery-arrow {
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-arrow:hover {
  border-color: var(--graphite);
}

.project-gallery {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: min-height 380ms var(--ease);
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--graphite);
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms var(--ease);
}

.project-card.brand-proof img {
  object-position: center 72%;
}

.project-card:hover img {
  transform: scale(1.02);
}

.project-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 52px 22px 20px;
  background: linear-gradient(transparent, rgba(15, 17, 17, 0.88));
}

.project-caption small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-caption strong {
  max-width: 28ch;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  text-align: right;
}

.project-gallery.mode-stack .project-card {
  --stack-index: 0;
  --stack-offset: calc(var(--stack-index) * 22px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: calc(10 - var(--stack-index));
  width: min(74%, 820px);
  height: 500px;
  opacity: calc(1 - (var(--stack-index) * 0.1));
  transform:
    translate(
      calc(-50% + var(--stack-offset)),
      calc(-50% + (var(--stack-index) * 8px))
    )
    rotate(calc((var(--stack-index) - 1) * 0.7deg));
  transition:
    transform 380ms var(--ease),
    opacity 280ms ease;
}

.project-gallery.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 0;
  padding: 20px 0;
  overflow: visible;
}

.project-gallery.mode-grid .project-card {
  min-height: 250px;
  aspect-ratio: 4 / 3;
}

.project-gallery.mode-grid .project-caption {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  padding: 46px 14px 14px;
}

.project-gallery.mode-grid .project-caption strong {
  font-size: 0.82rem;
  text-align: left;
}

.project-gallery.mode-focus {
  min-height: 610px;
  padding: 26px 0;
}

.project-gallery.mode-focus .project-card {
  display: none;
  width: 100%;
  height: 558px;
}

.project-gallery.mode-focus .project-card.is-active {
  display: block;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.proof-rail > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 12px;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.proof-rail > div:first-child {
  padding-left: 0;
}

.proof-rail > div:last-child {
  border-right: 0;
}

.proof-rail svg {
  grid-row: 1 / 3;
  width: 24px;
  color: var(--orange-dark);
}

.proof-rail span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.proof-rail strong {
  font-size: 0.94rem;
}

.faq-band {
  padding: 128px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-heading h2 {
  max-width: 12ch;
  margin-bottom: 24px;
}

.faq-heading > p:last-child {
  max-width: 40ch;
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 20px 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  width: 22px;
  color: var(--orange-dark);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 60ch;
  margin: -6px 0 28px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--orange);
  color: var(--graphite);
}

.cta-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 100px;
  align-items: end;
}

.cta-layout h2 {
  max-width: 15ch;
  font-size: 3.6rem;
}

.cta-band .eyebrow {
  color: var(--graphite);
}

.cta-copy p {
  max-width: 44ch;
  margin-bottom: 22px;
}

.cta-copy .button {
  margin-right: 18px;
}

.email-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.cta-orbit {
  position: absolute;
  top: 50%;
  right: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(29, 30, 32, 0.24);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta-orbit span {
  position: absolute;
  inset: 76px;
  border: 1px solid rgba(29, 30, 32, 0.24);
  border-radius: 50%;
}

.cta-orbit svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 64px var(--gutter) 32px;
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand img {
  width: 180px;
  margin-bottom: 18px;
}

.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.prototype-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.46);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --gutter: 40px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 30px;
  }

  .orbit-menu {
    width: 390px;
    height: 390px;
  }

  .orbit-ring-outer {
    width: 310px;
    height: 310px;
  }

  .orbit-ring-outer::after {
    transform-origin: 160px 0;
  }

  .decision-layout,
  .faq-layout,
  .cta-layout {
    gap: 64px;
  }

  .project-gallery.mode-stack .project-card {
    width: 80%;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 24px;
    --header-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 14px var(--gutter) 22px;
    background: var(--graphite);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }

  .hero {
    min-height: 740px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 34px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-copy {
    max-width: 680px;
  }

  h1 {
    max-width: 12ch;
    margin-bottom: 18px;
    font-size: 3.3rem;
  }

  .hero-lead {
    margin-bottom: 22px;
  }

  .verified-line {
    margin-top: 18px;
  }

  .profile-experience {
    max-width: none;
  }

  .profile-heading {
    margin-bottom: 10px;
  }

  .orbit-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    height: auto;
  }

  .orbit-ring,
  .orbit-center {
    display: none;
  }

  .profile-option {
    position: static;
    flex-direction: row;
    justify-content: center;
    min-width: 0;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 4px;
    padding: 6px 10px;
    transform: none;
  }

  .profile-icon {
    width: 36px;
    height: 36px;
  }

  .profile-icon svg {
    width: 18px;
    height: 18px;
  }

  .profile-option.is-active {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.12);
  }

  .profile-note {
    grid-template-columns: 104px 1fr;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .profile-note p {
    font-size: 0.78rem;
  }

  .profile-note small {
    display: none;
  }

  .audience-strip {
    min-height: 110px;
  }

  .audience-strip > div {
    padding: 18px 20px;
  }

  .decision-band,
  .projects-band,
  .faq-band {
    padding: 96px 0;
  }

  .process-band,
  .cta-band {
    padding: 96px 0;
  }

  .decision-layout,
  .process-heading,
  .projects-heading,
  .faq-layout,
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-heading,
  .projects-heading {
    margin-bottom: 48px;
  }

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

  .process-line::before {
    display: none;
  }

  .process-line li,
  .process-line li:not(:first-child) {
    min-height: 230px;
    border-top: 1px solid var(--line-light);
    padding: 56px 24px 28px 0;
  }

  .process-line li:nth-child(2n) {
    border-right: 0;
    padding-left: 24px;
  }

  .process-line li:not(:first-child) .process-index,
  .process-line li:nth-child(2n) .process-index {
    top: 14px;
    left: 24px;
  }

  .process-line li:nth-child(2n + 1) .process-index {
    left: 0;
  }

  .process-line svg {
    margin-bottom: 26px;
  }

  .project-gallery.mode-stack .project-card {
    width: 78%;
    height: 480px;
  }

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

  .proof-rail {
    grid-template-columns: 1fr;
  }

  .proof-rail > div,
  .proof-rail > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

  .faq-heading {
    position: static;
  }

  .cta-layout h2 {
    font-size: 3rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  .brand img {
    width: 145px;
  }

  .hero {
    min-height: 732px;
  }

  .hero-inner {
    justify-content: flex-start;
    gap: 22px;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.67rem;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 1;
  }

  h2,
  .cta-layout h2 {
    font-size: 2.25rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1;
    padding-inline: 14px;
  }

  .text-link {
    display: none;
  }

  .verified-line {
    align-items: flex-start;
    font-size: 0.73rem;
  }

  .profile-heading {
    font-size: 0.64rem;
  }

  .profile-heading span {
    max-width: 14ch;
  }

  .profile-option {
    flex-direction: column;
    gap: 3px;
    min-height: 68px;
    padding: 5px 3px;
    font-size: 0.67rem;
  }

  .profile-icon {
    width: 32px;
    height: 32px;
  }

  .audience-strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .audience-strip > div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 30, 32, 0.2);
    padding: 16px var(--gutter);
  }

  .audience-strip > div:last-child {
    border-bottom: 0;
  }

  .decision-band,
  .projects-band,
  .faq-band,
  .process-band,
  .cta-band {
    padding: 78px 0;
  }

  .decision-layout,
  .process-heading,
  .projects-heading,
  .faq-layout,
  .cta-layout {
    gap: 34px;
  }

  .decision-copy {
    padding-left: 20px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line li,
  .process-line li:not(:first-child),
  .process-line li:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    padding: 54px 0 28px 52px;
  }

  .process-line li:not(:first-child) .process-index,
  .process-line li:nth-child(2n) .process-index,
  .process-line li:nth-child(2n + 1) .process-index {
    top: 18px;
    left: 0;
  }

  .process-line svg {
    position: absolute;
    top: 56px;
    left: 0;
    width: 24px;
  }

  .process-line p {
    max-width: none;
  }

  .gallery-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .view-button {
    padding-inline: 8px;
  }

  .gallery-navigation {
    justify-content: flex-end;
  }

  .project-gallery {
    min-height: 470px;
  }

  .project-gallery.mode-stack .project-card {
    width: 82%;
    height: 390px;
  }

  .project-gallery.mode-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery.mode-grid .project-card {
    min-height: 220px;
  }

  .project-gallery.mode-focus {
    min-height: 470px;
    padding: 18px 0;
  }

  .project-gallery.mode-focus .project-card {
    height: 432px;
  }

  .project-caption {
    align-items: start;
    flex-direction: column;
    gap: 4px;
    padding: 46px 16px 16px;
  }

  .project-caption strong {
    text-align: left;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 1rem;
  }

  .cta-copy .button {
    width: 100%;
    margin: 0 0 12px;
  }

  .email-link {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px var(--gutter) 28px;
  }

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
