:root {
  --paper: #efeee8;
  --paper-soft: #f8f7f2;
  --paper-mid: #d9d7ce;
  --ink: #11120f;
  --muted: #686963;
  --accent: #f2552c;
  --line: rgba(17, 18, 15, 0.2);
  --header-h: 74px;
  --gutter: clamp(20px, 2.8vw, 44px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page {
  min-height: 100svh;
  border-inline: 1px solid var(--line);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 3fr 2fr 4fr auto;
  align-items: stretch;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(239, 238, 232, 0.96);
}

.brand,
.header-note,
.desktop-nav,
.header-cta {
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
}

.brand {
  position: relative;
  gap: 7px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 240ms var(--ease);
}

.brand:hover::before,
.brand:focus-visible::before { transform: scaleY(1); }

.brand__name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand__index {
  align-self: flex-start;
  margin-top: 19px;
  font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.header-note {
  margin: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font: 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  gap: clamp(24px, 3vw, 48px);
  justify-content: flex-end;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  gap: 22px;
  justify-content: space-between;
  min-width: 224px;
  border-left: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-cta svg,
.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 220ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent);
  color: var(--ink);
}

.header-cta:hover svg,
.header-cta:focus-visible svg,
.button:hover svg,
.button:focus-visible svg { transform: translateX(5px); }

.menu-toggle,
.mobile-menu { display: none; }

.hero__top {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: min(560px, calc(100svh - var(--header-h) - 128px));
}

.hero__heading {
  grid-column: 1 / 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(28px, 3.6vw, 54px) var(--gutter) clamp(38px, 4.5vw, 70px);
  border-right: 1px solid var(--line);
}

.hero__eyebrow,
.hero__audience,
.benefits__heading > p {
  margin: 0;
  color: var(--muted);
  font: 10px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin: 58px 0 0;
  font-size: clamp(64px, 8.5vw, 148px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: visible;
}

.title-line > span {
  display: block;
  transform: none;
  animation: none;
}

.title-line--accent { color: var(--accent); }

.title-line--serif {
  padding-right: 0.04em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  text-align: right;
  text-transform: none;
}

.hero__pitch {
  grid-column: 9 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 3.6vw, 54px) var(--gutter) clamp(32px, 4vw, 58px);
  background: var(--paper-soft);
  scroll-margin-top: 0;
}

.hero__pitch h2 {
  max-width: 20ch;
  margin: 34px 0 22px;
  font-size: clamp(23px, 2.15vw, 36px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero__description {
  max-width: 38ch;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.button--primary {
  min-width: 270px;
  background: var(--ink);
  color: var(--paper);
}

.benefits {
  display: grid;
  grid-template-columns: 3.5fr 8.5fr;
  background: var(--ink);
  color: var(--paper);
  scroll-margin-top: 0;
}

.benefits__heading {
  padding: clamp(32px, 3vw, 46px) var(--gutter);
  border-right: 1px solid rgba(239, 238, 232, 0.22);
}

.benefits__heading > p { color: rgba(239, 238, 232, 0.58); }

.benefits__heading h2 {
  max-width: 12ch;
  margin: 24px 0 0;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.benefits ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 280px;
  padding: clamp(32px, 3vw, 46px) clamp(24px, 2.8vw, 44px);
  border-right: 1px solid rgba(239, 238, 232, 0.22);
}

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

.benefits li::before {
  content: "";
  width: 52px;
  height: 4px;
  background: var(--accent);
}

.benefits h3 {
  max-width: 14ch;
  margin: 0 0 18px;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.benefits li p {
  max-width: 27ch;
  margin: 0;
  color: rgba(239, 238, 232, 0.66);
  font-size: 15px;
  line-height: 1.5;
}

.services {
  background: var(--paper-soft);
  scroll-margin-top: 0;
}

.services__header {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: clamp(310px, 34vw, 520px);
  border-bottom: 1px solid var(--line);
}

.services__header > div {
  padding: clamp(48px, 6vw, 92px) var(--gutter);
}

.services__header > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.services__header h2 {
  max-width: 8ch;
  margin: 56px 0 0;
  font-size: clamp(62px, 8vw, 136px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.services__intro {
  align-self: end;
}

.services__intro p {
  max-width: 39ch;
  margin: 0;
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.services__intro p + p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}

.services__group {
  display: grid;
  grid-template-columns: 2.5fr 9.5fr;
  border-bottom: 1px solid var(--line);
}

.services__group-title {
  margin: 0;
  padding: 38px var(--gutter);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font: 10px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services__group--growth {
  background: var(--paper);
}

.services__group--growth .services__group-title {
  color: var(--accent);
}

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

.service-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 140px 166px;
  gap: clamp(18px, 2.4vw, 38px);
  align-items: start;
  padding: clamp(32px, 3.4vw, 52px) var(--gutter);
  border-top: 1px solid var(--line);
}

.service-row:first-child { border-top: 0; }

.service-row__index,
.service-row__scope,
.service-row__price span {
  color: var(--muted);
  font: 10px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-row__main h3 {
  margin: 0 0 13px;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.service-row__main p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.service-row__scope {
  margin: 5px 0 0;
}

.service-row__price {
  margin: 0;
  color: var(--accent);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.service-row__price span {
  display: block;
  margin-bottom: 8px;
}

.services__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px var(--gutter);
  background: var(--accent);
}

.services__note p {
  max-width: 64ch;
  margin: 0;
  font-size: 14px;
}

.services__note a {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.works {
  background: var(--paper);
  scroll-margin-top: 0;
}

.works__header {
  display: grid;
  grid-template-columns: 8fr 4fr;
  min-height: clamp(270px, 28vw, 430px);
  border-bottom: 1px solid var(--line);
}

.works__header > div,
.works__intro {
  padding: clamp(48px, 6vw, 92px) var(--gutter);
}

.works__header > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.section-kicker,
.work__eyebrow,
.work__visual span,
.work__spec dt {
  margin: 0;
  color: var(--muted);
  font: 10px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.works__header h2 {
  margin: 56px 0 0;
  font-size: clamp(68px, 10vw, 172px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.works__intro {
  align-self: end;
  margin: 0;
  font-size: clamp(19px, 1.65vw, 27px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.work--featured {
  display: grid;
  grid-template-columns: 8fr 4fr;
  border-bottom: 1px solid var(--line);
}

.work__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: clamp(390px, 52vw, 760px);
  padding: 22px var(--gutter);
  overflow: hidden;
  background: var(--paper-mid);
}

.work__visual::before,
.work__visual::after {
  content: "";
  position: absolute;
  background: rgba(17, 18, 15, 0.18);
}

.work__visual::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.work__visual::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.work__visual span {
  position: relative;
  z-index: 1;
  color: rgba(17, 18, 15, 0.56);
}

.work__visual--image {
  padding: 0;
  background: var(--paper-mid);
}

.work__visual--image::before,
.work__visual--image::after {
  display: none;
}

.work__visual--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(36px, 4vw, 62px) var(--gutter);
  border-left: 1px solid var(--line);
}

.work__content h3 {
  max-width: 10ch;
  margin: auto 0 22px;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.work__summary {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.work__spec {
  width: 100%;
  margin: 44px 0 0;
}

.work__spec div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.work__spec dd {
  margin: 0;
  text-align: right;
}

.work__meta {
  width: 100%;
  margin: 30px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 10px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.work__link::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.work__link:hover::after,
.work__link:focus-visible::after {
  width: 52px;
}

.work__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

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

.work--featured .work__visual {
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.work--compact:first-child {
  border-right: 1px solid var(--line);
}

.work--compact .work__visual {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.work--compact .work__content {
  min-height: 360px;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.work--compact .work__content h3 {
  margin-top: auto;
  font-size: clamp(34px, 3.4vw, 54px);
}

.process {
  background: var(--ink);
  color: var(--paper);
  scroll-margin-top: 0;
}

.process .section-kicker {
  color: rgba(239, 238, 232, 0.56);
}

.process__header {
  display: grid;
  grid-template-columns: 8fr 4fr;
  min-height: clamp(330px, 38vw, 580px);
  border-top: 1px solid rgba(239, 238, 232, 0.2);
  border-bottom: 1px solid rgba(239, 238, 232, 0.2);
}

.process__header > div,
.process__header > p {
  padding: clamp(48px, 6vw, 92px) var(--gutter);
}

.process__header > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(239, 238, 232, 0.2);
}

.process__header h2 {
  margin: 54px 0 0;
  font-size: clamp(64px, 9vw, 154px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.process__header > p {
  align-self: end;
  max-width: 34ch;
  margin: 0;
  color: rgba(239, 238, 232, 0.76);
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

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

.process__list li {
  display: grid;
  grid-template-columns: 54px 3.2fr 4.4fr 2.4fr;
  gap: clamp(18px, 2.6vw, 42px);
  align-items: start;
  padding: clamp(30px, 3.5vw, 54px) var(--gutter);
  border-bottom: 1px solid rgba(239, 238, 232, 0.2);
}

.process__index,
.process__result {
  color: rgba(239, 238, 232, 0.56);
  font: 10px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process__list h3 {
  margin: -4px 0 0;
  font-size: clamp(27px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.process__list p {
  max-width: 48ch;
  margin: 0;
  color: rgba(239, 238, 232, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

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

.process__next {
  display: grid;
  grid-template-columns: 2.5fr minmax(280px, 6fr) auto;
  gap: 32px;
  align-items: center;
  padding: 32px var(--gutter);
  background: var(--accent);
  color: var(--ink);
}

.process__next .section-kicker {
  color: rgba(17, 18, 15, 0.62);
}

.process__next > p {
  max-width: 56ch;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.button--light {
  min-width: 230px;
  border-color: var(--ink);
  background: var(--paper-soft);
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.team {
  background: var(--paper);
  scroll-margin-top: 0;
}

.team__header {
  display: grid;
  grid-template-columns: 8fr 4fr;
  min-height: clamp(320px, 36vw, 550px);
  border-bottom: 1px solid var(--line);
}

.team__header > div,
.team__header > p {
  padding: clamp(48px, 6vw, 92px) var(--gutter);
}

.team__header > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.team__header h2 {
  max-width: 12ch;
  margin: 56px 0 0;
  font-size: clamp(62px, 8.4vw, 142px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.team__header > p {
  align-self: end;
  max-width: 37ch;
  margin: 0;
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

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

.team__member {
  display: grid;
  grid-template-columns: 58px 3fr 2.5fr 4.5fr;
  gap: clamp(20px, 2.7vw, 44px);
  align-items: start;
  padding: clamp(34px, 4vw, 62px) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.team__index,
.team__role {
  color: var(--muted);
  font: 10px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team__member h3 {
  margin: -6px 0 0;
  font-size: clamp(36px, 4.1vw, 68px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.team__role {
  margin: 3px 0 0;
  color: var(--accent);
}

.team__description {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.faq {
  background: var(--paper-soft);
  scroll-margin-top: 0;
}

.faq__header {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: clamp(280px, 31vw, 470px);
  border-bottom: 1px solid var(--line);
}

.faq__header > div,
.faq__header > p {
  padding: clamp(48px, 6vw, 92px) var(--gutter);
}

.faq__header > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.faq__header h2 {
  max-width: 10ch;
  margin: 54px 0 0;
  font-size: clamp(54px, 7.2vw, 122px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.faq__header > p {
  align-self: end;
  max-width: 33ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 32px;
  gap: clamp(18px, 2.7vw, 44px);
  align-items: center;
  min-height: 104px;
  padding: 24px var(--gutter);
  cursor: pointer;
  list-style: none;
}

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

.faq__item summary span {
  color: var(--muted);
  font: 10px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
}

.faq__item summary strong {
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq__item summary::after {
  content: "+";
  justify-self: end;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -4px;
}

.faq__answer {
  padding: 0 calc(var(--gutter) + 32px) 34px calc(var(--gutter) + 58px + clamp(18px, 2.7vw, 44px));
}

.faq__answer p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact {
  background: var(--accent);
  color: var(--ink);
  scroll-margin-top: 0;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr);
  min-height: clamp(600px, 58vw, 860px);
}

.contact__heading,
.contact__form {
  padding: clamp(48px, 6vw, 92px) var(--gutter);
}

.contact__heading {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(17, 18, 15, 0.36);
}

.contact__heading .section-kicker {
  color: rgba(17, 18, 15, 0.62);
}

.contact__heading h2 {
  max-width: 11ch;
  margin: auto 0 34px;
  font-size: clamp(58px, 7vw, 118px);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.contact__heading > p:last-child {
  max-width: 35ch;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.contact__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 28px;
  align-content: center;
}

.contact__field {
  display: grid;
  gap: 12px;
}

.contact__field--wide {
  grid-column: 1 / -1;
}

.contact__field > span,
.contact__note {
  color: rgba(17, 18, 15, 0.62);
  font: 10px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 12px 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(17, 18, 15, 0.55);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
}

.contact__field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(17, 18, 15, 0.48);
}

.contact__field input:focus-visible,
.contact__field select:focus-visible,
.contact__field textarea:focus-visible {
  border-bottom-color: var(--ink);
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.button--contact {
  align-self: end;
  min-width: 240px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.button--contact:hover,
.button--contact:focus-visible {
  background: var(--paper-soft);
  color: var(--ink);
}

.button--contact:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact__note {
  align-self: center;
  max-width: 34ch;
  margin: 0;
  text-transform: none;
}

.contact__note.is-success { color: #1d6b43; }
.contact__note.is-error { color: #a6382f; }

.site-footer {
  display: grid;
  grid-template-columns: 2fr 3fr 5fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px var(--gutter);
  border-top: 1px solid rgba(239, 238, 232, 0.2);
  background: var(--ink);
  color: var(--paper);
}

.site-footer__brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.site-footer__brand span {
  margin-left: 5px;
  vertical-align: top;
  font: 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.site-footer > p {
  margin: 0;
  color: rgba(239, 238, 232, 0.58);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 40px);
}

.site-footer nav a,
.site-footer__top {
  font-size: 12px;
  text-decoration: none;
}

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

@keyframes line-in { to { transform: translateY(0); } }

@media (max-width: 1100px) {
  :root { --header-h: 68px; }

  .site-header { grid-template-columns: 2fr 1.25fr 3fr auto; }
  .desktop-nav { gap: 22px; }
  .header-cta { min-width: 190px; }

  .hero__heading { grid-column: 1 / 8; }
  .hero__pitch { grid-column: 8 / -1; }

  .hero__title {
    font-size: clamp(60px, 8.6vw, 100px);
    line-height: 0.9;
  }

  .benefits { grid-template-columns: 3fr 9fr; }

  .services__group { grid-template-columns: 2fr 10fr; }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr) 110px 145px;
    gap: 22px;
  }

  .process__list li {
    grid-template-columns: 42px 3fr 4fr 2fr;
    gap: 24px;
  }

  .team__member {
    grid-template-columns: 44px 2.8fr 2.4fr 4.8fr;
    gap: 24px;
  }

  .contact__layout {
    grid-template-columns: 5.5fr 6.5fr;
  }

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

  .contact__field--wide { grid-column: auto; }

  .site-footer {
    grid-template-columns: 1.5fr 2.5fr 4fr auto;
    gap: 22px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 62px;
    --gutter: 18px;
  }

  .page { border-inline: 0; }

  .hero__pitch,
  .benefits,
  .services,
  .works,
  .process,
  .team,
  .faq,
  .contact {
    scroll-margin-top: var(--header-h);
  }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto auto;
    min-height: var(--header-h);
  }

  .brand { border-right: 0; }
  .brand__index { margin-top: 16px; }
  .header-note, .desktop-nav { display: none; }

  .header-cta {
    min-width: 0;
    padding-inline: 16px;
    border-right: 1px solid rgba(239, 238, 232, 0.24);
  }

  .header-cta svg { display: none; }

  .menu-toggle {
    position: relative;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 60px;
    padding: 0;
    border: 0;
    background: var(--ink);
    color: var(--paper);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 15;
    inset: var(--header-h) 0 0;
    display: grid;
    align-items: end;
    padding: 24px var(--gutter) 42px;
    background: var(--accent);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms;
  }

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

  .mobile-menu nav { display: grid; }

  .mobile-menu a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 18, 15, 0.55);
    font-size: clamp(30px, 9vw, 46px);
    font-weight: 700;
    letter-spacing: -0.05em;
    text-decoration: none;
  }

  .mobile-menu a span {
    font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  }

  .hero__top { display: block; }

  .hero__heading {
    min-height: auto;
    padding: 22px var(--gutter) 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__title {
    margin-top: 48px;
    font-size: clamp(52px, 16.2vw, 78px);
    line-height: 0.9;
  }

  .title-line--serif {
    margin-top: 0.05em;
    font-size: 0.75em;
    text-align: left;
  }

  .hero__pitch {
    justify-content: flex-start;
    padding: 26px var(--gutter) 32px;
  }

  .hero__pitch h2 {
    max-width: 24ch;
    margin: 28px 0 16px;
    font-size: 26px;
  }

  .hero__description {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .button,
  .button--primary {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }

  .benefits {
    display: block;
    padding: 0 var(--gutter);
  }

  .benefits__heading {
    padding: 38px 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 238, 232, 0.22);
  }

  .benefits__heading h2 {
    max-width: 16ch;
    margin-top: 24px;
    font-size: 34px;
  }

  .benefits ol { display: block; }

  .benefits li {
    display: flex;
    gap: 34px;
    min-height: 0;
    padding: 34px 0 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 238, 232, 0.22);
  }

  .benefits li:last-child { border-bottom: 0; }

  .benefits h3 {
    max-width: 16ch;
    font-size: 27px;
  }

  .benefits li p {
    max-width: 34ch;
    font-size: 15px;
  }

  .services__header {
    display: block;
    min-height: 0;
  }

  .services__header > div {
    padding: 44px var(--gutter);
  }

  .services__header > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services__header h2 {
    max-width: 7ch;
    margin-top: 58px;
    font-size: clamp(56px, 16.5vw, 78px);
    line-height: 0.86;
  }

  .services__intro p {
    font-size: 21px;
  }

  .services__intro p + p {
    margin-top: 24px;
    font-size: 15px;
  }

  .services__group {
    display: block;
  }

  .services__group-title {
    padding: 24px var(--gutter);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-row {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 18px 10px;
    padding: 30px var(--gutter) 32px;
  }

  .service-row__index {
    grid-column: 1;
    grid-row: 1;
  }

  .service-row__main {
    grid-column: 2 / -1;
    grid-row: 1;
  }

  .service-row__main h3 {
    margin-bottom: 14px;
    font-size: 31px;
  }

  .service-row__scope {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin: 0;
  }

  .service-row__price {
    grid-column: 3;
    grid-row: 2;
    font-size: 21px;
    text-align: right;
  }

  .service-row__price span {
    display: inline;
    margin: 0 4px 0 0;
  }

  .services__note {
    display: block;
    padding: 26px var(--gutter) 30px;
  }

  .services__note a {
    display: inline-block;
    margin-top: 22px;
  }

  .works__header {
    display: block;
    min-height: 0;
  }

  .works__header > div,
  .works__intro {
    padding: 44px var(--gutter);
  }

  .works__header > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .works__header h2 {
    margin-top: 60px;
    font-size: clamp(58px, 18vw, 86px);
    line-height: 0.88;
  }

  .works__intro {
    font-size: 21px;
  }

  .work--featured {
    display: block;
  }

  .work__visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 16px var(--gutter);
  }

  .work__content {
    min-height: 330px;
    padding: 34px var(--gutter) 40px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .work__content h3 {
    margin-top: auto;
    font-size: 44px;
  }

  .works__secondary {
    display: block;
  }

  .work--compact:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work--compact .work__content {
    min-height: 260px;
  }

  .process__header {
    display: block;
    min-height: 0;
  }

  .process__header > div,
  .process__header > p {
    padding: 44px var(--gutter);
  }

  .process__header > div {
    border-right: 0;
    border-bottom: 1px solid rgba(239, 238, 232, 0.2);
  }

  .process__header h2 {
    margin-top: 58px;
    max-width: 100%;
    font-size: clamp(30px, 12.2vw, 82px);
    line-height: 0.84;
    white-space: nowrap;
  }

  .process__header > p {
    max-width: none;
    font-size: 21px;
  }

  .process__list li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px 18px;
    padding: 30px var(--gutter) 34px;
  }

  .process__index {
    grid-column: 1;
    grid-row: 1;
  }

  .process__list h3,
  .process__list p,
  .process__result {
    grid-column: 2;
  }

  .process__list h3 {
    margin: -5px 0 8px;
    font-size: 30px;
  }

  .process__result {
    margin-top: 8px;
  }

  .process__next {
    display: block;
    padding: 32px var(--gutter) 36px;
  }

  .process__next > p {
    margin: 22px 0 26px;
    font-size: 19px;
  }

  .button--light {
    width: 100%;
    min-width: 0;
  }

  .team__header,
  .faq__header {
    display: block;
    min-height: 0;
  }

  .team__header > div,
  .team__header > p,
  .faq__header > div,
  .faq__header > p {
    padding: 44px var(--gutter);
  }

  .team__header > div,
  .faq__header > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team__header h2,
  .faq__header h2 {
    margin-top: 58px;
    font-size: clamp(54px, 16vw, 78px);
    line-height: 0.86;
  }

  .team__header h2 {
    font-size: clamp(50px, 14.5vw, 70px);
  }

  .team__header > p,
  .faq__header > p {
    max-width: none;
    font-size: 21px;
  }

  .team__member {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px 18px;
    padding: 30px var(--gutter) 34px;
  }

  .team__index {
    grid-column: 1;
    grid-row: 1;
  }

  .team__member h3,
  .team__role,
  .team__description {
    grid-column: 2;
  }

  .team__member h3 {
    margin: -6px 0 5px;
    font-size: 43px;
  }

  .team__role { margin: 0 0 8px; }

  .faq__item summary {
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    gap: 14px 18px;
    min-height: 0;
    padding: 28px var(--gutter);
  }

  .faq__item summary strong {
    font-size: 25px;
    line-height: 1.1;
  }

  .faq__item summary::after {
    font-size: 26px;
  }

  .faq__answer {
    padding: 0 calc(var(--gutter) + 24px) 30px calc(var(--gutter) + 50px);
  }

  .faq__answer p {
    font-size: 15px;
  }

  .contact__layout {
    display: block;
    min-height: 0;
  }

  .contact__heading,
  .contact__form {
    padding: 44px var(--gutter);
  }

  .contact__heading {
    min-height: 480px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 18, 15, 0.36);
  }

  .contact__heading h2 {
    margin: auto 0 30px;
    font-size: clamp(44px, 12vw, 58px);
    line-height: 0.84;
  }

  .contact__heading > p:last-child {
    font-size: 19px;
  }

  .contact__form {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact__field--wide { grid-column: auto; }

  .button--contact {
    width: 100%;
    min-width: 0;
  }

  .contact__note {
    max-width: none;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px 18px;
    padding: 32px var(--gutter) 36px;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    gap: 14px 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(239, 238, 232, 0.2);
  }

  .site-footer__top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 390px) {
  .header-cta span {
    max-width: 80px;
    font-size: 11px;
    line-height: 1.05;
  }

  .hero__title { font-size: 16vw; }
}

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

  .title-line > span { transform: none; }
}
