:root {
  --ink: #17201d;
  --ink-soft: #34403b;
  --muted: #67716c;
  --paper: #ffffff;
  --canvas: #f6f7f3;
  --canvas-deep: #eef1ec;
  --line: #d7dcd6;
  --line-strong: #b9c1ba;
  --blue: #2858d6;
  --blue-deep: #173b8f;
  --blue-soft: #eaf0ff;
  --lime: #cbff58;
  --lime-soft: #f0ffd1;
  --coral: #ff7864;
  --coral-soft: #fff0ea;
  --yellow-soft: #fff6ce;
  --radius: 6px;
  --shadow: 0 18px 48px rgba(23, 32, 29, 0.09);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: 58px;
}

h2 {
  max-width: 760px;
  font-size: 38px;
}

h3 {
  font-size: 23px;
  line-height: 1.2;
}

h4 {
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}

p {
  margin-bottom: 0;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.15em;
}

li + li {
  margin-top: 7px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

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

.nav {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 72px;
  border-bottom: 1px solid rgba(23, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 750;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 4px;
  background: var(--paper);
  object-fit: cover;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  position: relative;
  padding: 23px 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-mobile-contact {
  display: none;
}

.top-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.top-action,
.button-primary {
  color: #fff;
  background: var(--blue);
}

.top-action:hover,
.button-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.nav-open .menu-toggle-lines {
  background: transparent;
}

.nav-open .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.section,
.share-band,
.photo-enquiry-band {
  padding-block: 80px;
}

.section-header,
.services-heading-row,
.refined-section-heading,
.photo-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 42px;
}

.section-header > div:first-child,
.services-heading-row > div:first-child,
.refined-section-heading > div:first-child,
.photo-page-heading > div:first-child {
  display: grid;
  gap: 22px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-kicker::before,
.eyebrow::before {
  width: 24px;
  height: 2px;
  flex: 0 0 24px;
  background: var(--blue);
  content: "";
}

.lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.55;
}

.text-link,
.photo-portfolio-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-weight: 730;
  line-height: 1.35;
}

.text-link:hover,
.photo-portfolio-link:hover {
  color: var(--blue-deep);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
}

.subhero {
  padding-block: 88px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.subhero-inner {
  display: grid;
  align-content: center;
  gap: 28px;
}

.subhero-inner h1 {
  max-width: 780px;
  font-size: 50px;
}

.subhero-inner > p {
  max-width: 720px;
  font-size: 18px;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

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

/* Home */
.refined-hero {
  --hero-gutter: max(28px, calc((100vw - var(--max)) / 2));
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 58%) minmax(0, 42%);
  grid-template-rows: 626px 74px;
  min-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}

.refined-hero-inner {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  width: min(680px, calc(100% - var(--hero-gutter)));
  min-height: 626px;
  margin-left: var(--hero-gutter);
  align-content: center;
  gap: 24px;
}

.refined-hero h1 {
  max-width: 680px;
  font-size: 54px;
  color: var(--ink);
}

.refined-hero-inner > p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-work-field {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: 72px minmax(0, 1fr);
  min-height: 626px;
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.hero-work-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-inline: 28px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-work-head strong {
  font-size: 11px;
}

.hero-work-list {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.hero-work-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 14px 28px;
}

.hero-work-item:last-child {
  border-bottom: 0;
}

.hero-work-item > div:nth-child(2) {
  display: grid;
  gap: 5px;
}

.hero-work-item span,
.hero-work-item em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-work-item strong {
  font-size: 19px;
}

.hero-work-thumb {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--canvas);
}

.hero-work-thumb img {
  display: block;
  max-width: none;
}

.hero-work-thumb-app img {
  width: 58px;
  height: 58px;
  border-radius: 4px;
}

.hero-work-thumb-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42);
}

.hero-work-thumb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero-work-thumb-writing img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.work-shot,
.work-tile {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work-shot:hover img {
  transform: scale(1.025);
}

.work-shot-portrait img {
  object-position: 50% 35%;
}

.work-shot-event img {
  object-position: 54% 48%;
}

.work-shot-product img {
  object-position: 50% 50%;
}

.work-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  padding: 30px;
}

.work-tile span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.work-tile strong {
  font-size: 30px;
  line-height: 1;
}

.work-tile-app {
  position: relative;
  background: var(--paper);
}

.work-tile-app img {
  width: 42%;
  max-width: 145px;
  aspect-ratio: 1;
  margin-bottom: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.work-tile-pulse,
.work-tile-writing {
  position: relative;
  background: var(--paper);
}

.work-tile-pulse img,
.work-tile-writing img {
  width: 58%;
  aspect-ratio: 1;
  margin: 0 auto auto;
  border-radius: 4px;
  object-fit: cover;
}

.work-tile-pulse img {
  width: 70%;
  transform: scale(1.45);
}

.work-tile-writing {
  background: var(--lime-soft);
}

.work-tile-writing img {
  box-shadow: 0 12px 30px rgba(23, 32, 29, 0.09);
}

.work-tile-writing strong {
  font-size: 22px;
}

.work-tile-design {
  color: var(--ink);
  background: var(--lime);
}

.work-tile-design strong {
  font-size: 43px;
}

.refined-service-rail {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(calc(100% - 56px), var(--max));
  min-height: 74px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.refined-service-rail a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.refined-service-rail a:last-child {
  border-right: 0;
}

.refined-service-rail a:hover {
  color: var(--blue-deep);
  background: var(--lime-soft);
}

.refined-service-rail span {
  color: var(--blue);
  font-size: 10px;
}

.refined-intro {
  background: var(--paper);
}

.refined-intro-grid,
.refined-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: 88px;
}

.refined-intro-grid > div,
.refined-cta-grid > div {
  display: grid;
  gap: 24px;
}

.refined-services {
  background: var(--canvas);
}

.service-directory {
  border-top: 1px solid var(--line-strong);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1.2fr) minmax(230px, 0.65fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 174px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition: background-color 180ms ease, padding 180ms ease;
}

.service-row:hover {
  padding-inline: 22px;
  background: var(--paper);
}

.service-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--blue);
  background: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.service-row:nth-child(2) .service-index {
  color: var(--ink);
  background: var(--lime);
}

.service-row:nth-child(3) .service-index {
  color: var(--ink);
  background: var(--coral-soft);
}

.service-row:nth-child(4) .service-index {
  background: var(--blue-soft);
}

.service-row:nth-child(5) .service-index {
  color: var(--ink);
  background: var(--yellow-soft);
}

.service-row > div {
  display: grid;
  gap: 12px;
}

.service-row h3 {
  font-size: 25px;
}

.service-professional {
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-professional span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-action {
  margin-top: 34px;
}

.refined-proof {
  background: var(--paper);
}

.refined-proof-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 76px;
}

.proof-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.proof-visual::before,
.proof-visual::after {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(40, 88, 214, 0.18);
  border-radius: 50%;
  content: "";
}

.proof-visual::after {
  width: 104%;
}

.proof-visual img {
  position: relative;
  z-index: 1;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-visual > span {
  position: absolute;
  bottom: 26px;
  left: 28px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.proof-copy {
  display: grid;
  align-content: center;
  gap: 28px;
}

.product-update {
  border-block: 1px solid var(--line);
  background: var(--canvas);
}

.product-update-grid,
.product-release-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 76px;
}

.product-update-art,
.product-release-icon {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #15181e;
}

.product-update-art img,
.product-release-icon img {
  width: min(68%, 300px);
  aspect-ratio: 1;
  border-radius: 8px;
}

.product-update-art span {
  position: absolute;
  bottom: 24px;
  left: 26px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-update-copy,
.product-release-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.product-release {
  border-block: 1px solid var(--line);
  background: var(--blue-soft);
}

.product-release-icon {
  min-height: 360px;
}

.proof-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
}

.proof-facts > div {
  display: grid;
  gap: 7px;
  padding: 20px 18px 20px 0;
}

.proof-facts > div + div {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.proof-facts span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.work-feed {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.work-feed-grid {
  border-top: 1px solid var(--line-strong);
}

.work-feed-card {
  display: grid;
  grid-template-columns: 42px 250px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  min-width: 0;
  min-height: 228px;
  border-bottom: 1px solid var(--line);
  padding-block: 28px;
  background: var(--paper);
}

.work-feed-index {
  align-self: start;
  padding-top: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.work-feed-media {
  display: grid;
  width: 250px;
  height: 168px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--canvas);
}

.work-feed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.work-feed-app .work-feed-media {
  background: var(--canvas);
}

.work-feed-app .work-feed-media img {
  width: 112px;
  height: 112px;
  border-radius: 6px;
}

.work-feed-app:hover .work-feed-media img {
  transform: scale(1.018);
}

.work-feed-design .work-feed-media img {
  transform: scale(1.38);
}

.work-feed-design:hover .work-feed-media img {
  transform: scale(1.4);
}

.work-feed-photo .work-feed-media img {
  object-position: 50% 44%;
}

.work-feed-writing .work-feed-media {
  background: var(--canvas);
}

.work-feed-writing .work-feed-media img {
  width: 126px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 4px;
}

.work-feed-writing:hover .work-feed-media img {
  transform: scale(1.018);
}

.work-feed-copy {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 32px;
}

.work-feed-copy h3 {
  font-size: 25px;
}

.work-feed-copy p {
  max-width: 52ch;
}

.work-feed-title {
  display: grid;
  gap: 10px;
}

.work-feed-label,
.work-feed-route span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-feed-route {
  display: grid;
  gap: 10px;
}

.work-feed-route strong {
  font-size: 16px;
  line-height: 1.45;
}

.visual-work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.visual-work-grid a,
.visual-work-grid figure {
  min-width: 0;
  margin: 0;
}

.visual-work-grid figure {
  position: relative;
  height: 510px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.visual-work-grid a:nth-child(2) figure,
.visual-work-grid a:nth-child(3) figure {
  height: 420px;
  margin-top: 90px;
}

.visual-work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.visual-work-grid a:hover img {
  transform: scale(1.025);
}

.visual-work-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 2px;
  border-radius: 4px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.94);
}

.visual-work-grid figcaption span {
  color: var(--muted);
  font-size: 12px;
}

.refined-process {
  background: var(--paper);
}

.refined-process-grid,
.pricing-route,
.design-process-grid,
.photo-process-grid,
.delivery-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}

.refined-process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.refined-process-grid article,
.pricing-route article,
.design-process-grid article,
.photo-process-grid article,
.delivery-model-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 28px 28px 28px 0;
}

.refined-process-grid article + article,
.pricing-route article + article,
.design-process-grid article + article,
.photo-process-grid article + article,
.delivery-model-grid article + article {
  padding-left: 28px;
}

.refined-process-grid article:last-child,
.pricing-route article:last-child,
.design-process-grid article:last-child,
.photo-process-grid article:last-child,
.delivery-model-grid article:last-child {
  border-right: 0;
}

.refined-process-grid article > span,
.pricing-route article > span,
.design-process-grid article > span,
.photo-process-grid article > span,
.delivery-model-grid article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.refined-final-cta,
.services-final-cta,
.app-final-cta,
.photo-enquiry-band {
  background: var(--lime-soft);
}

/* Service overview */
.services-hero,
.app-subhero,
.design-hero {
  background: var(--paper);
}

.services-hero-grid,
.app-hero-grid,
.design-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: stretch;
  gap: 76px;
}

.project-brief-board,
.app-idea-board,
.design-proof-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.project-board-head,
.app-idea-head,
.design-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.project-brief-board dl {
  display: grid;
  margin: 0;
}

.project-brief-board dl > div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 17px 22px;
}

.project-brief-board dl > div:last-child {
  border-bottom: 0;
}

.project-brief-board dt {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 750;
}

.project-brief-board dd {
  margin: 0;
  font-size: 14px;
}

.services-model,
.app-reality-section,
.design-scope-section,
.photo-scope-section {
  background: var(--canvas-deep);
}

.delivery-model-grid article {
  min-height: 270px;
}

.delivery-model-core {
  background: var(--lime-soft);
}

.service-map-section,
.design-categories-section,
.photo-package-section {
  background: var(--paper);
}

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

.scope-service {
  border-bottom: 1px solid var(--line-strong);
}

.scope-service > summary {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-block: 31px;
  cursor: pointer;
  list-style: none;
}

.scope-service > summary::-webkit-details-marker {
  display: none;
}

.scope-service > summary > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--blue);
  background: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.scope-service:nth-child(2) > summary > span {
  color: var(--ink);
  background: var(--lime-soft);
}

.scope-service:nth-child(3) > summary > span {
  color: var(--ink);
  background: var(--coral-soft);
}

.scope-service:nth-child(4) > summary > span {
  background: var(--blue-soft);
}

.scope-service:nth-child(5) > summary > span {
  color: var(--ink);
  background: var(--yellow-soft);
}

.scope-service > summary > div {
  display: grid;
  gap: 5px;
}

.scope-service > summary small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.scope-service > summary h3 {
  font-size: 29px;
}

.scope-service > summary p {
  max-width: 820px;
  color: var(--muted);
  font-size: 15px;
}

.scope-service > summary > strong {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 13px;
}

.scope-service > summary > strong::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  content: "+";
  font-size: 18px;
  font-weight: 500;
}

.scope-service[open] {
  padding-bottom: 48px;
}

.scope-service[open] > summary {
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.scope-service[open] > summary > strong::after {
  content: "\2212";
}

.scope-service > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.scope-service > header > div {
  display: grid;
  gap: 7px;
}

.scope-service > header span,
.scope-service > footer span,
.scope-start span,
.specialist-reference span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.scope-service > header h3 {
  font-size: 37px;
}

.scope-intro {
  max-width: 850px;
  margin-bottom: 35px;
  font-size: 19px;
}

.scope-service-body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  gap: 64px;
}

.scope-service-body h4 {
  margin-bottom: 18px;
  color: var(--muted);
}

.scope-writing-visual {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0 0 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--lime-soft);
}

.scope-writing-visual img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.scope-writing-visual figcaption {
  display: grid;
  gap: 7px;
  padding: 20px 24px 20px 0;
}

.scope-writing-visual figcaption strong {
  font-size: 20px;
}

.scope-writing-visual figcaption span {
  max-width: 34ch;
  color: var(--muted);
}

.scope-category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  padding: 0;
  list-style: none;
}

.scope-category-list li {
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
  padding-block: 16px;
}

.scope-category-list li + li {
  margin-top: 0;
}

.scope-category-list span {
  color: var(--muted);
  font-size: 14px;
}

.scope-driver-panel {
  border-radius: var(--radius);
  padding: 26px;
  background: var(--blue-soft);
}

.scope-driver-panel ul {
  color: var(--ink-soft);
  font-size: 14px;
}

.scope-driver-panel .text-link {
  display: inline-block;
  margin-top: 22px;
}

.scope-start {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  border-top: 1px solid rgba(40, 88, 214, 0.2);
  padding-top: 18px;
}

.scope-service > footer {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 13px;
}

.specialist-reference {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  border-radius: var(--radius);
  padding: 20px;
  background: var(--yellow-soft);
}

.specialist-reference a {
  width: fit-content;
  border-bottom: 1px solid;
  color: var(--blue);
  font-weight: 700;
}

.scope-pricing-section {
  background: var(--canvas);
}

.pricing-route article strong {
  margin-top: auto;
  color: var(--blue-deep);
  font-size: 13px;
}

/* App development */
.app-idea-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app-idea-list > div {
  display: grid;
  min-height: 175px;
  align-content: start;
  gap: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  background: rgba(255, 255, 255, 0.55);
}

.app-idea-list > div:nth-child(even) {
  border-right: 0;
}

.app-idea-list > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.app-idea-list span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.app-idea-list p {
  font-size: 14px;
}

.app-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.app-type-grid article,
.design-category-grid article,
.photo-service-package,
.service-card {
  display: grid;
  align-content: start;
  gap: 17px;
  min-height: 285px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
}

.app-type-grid article > span,
.design-category-grid article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.app-type-grid article strong {
  margin-top: auto;
  color: var(--blue-deep);
  font-size: 13px;
}

.app-cost-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-block: 1px solid var(--line-strong);
}

.app-cost-ledger > div {
  display: grid;
  gap: 9px;
  border-right: 1px solid var(--line);
  padding: 24px 22px;
}

.app-cost-ledger > div:last-child {
  border-right: 0;
}

.app-cost-ledger span,
.package-top span,
.photo-package-top span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.app-cost-ledger p {
  font-size: 13px;
}

.app-package-grid,
.photo-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.app-package {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--paper);
}

.package-top,
.photo-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.app-package .service-list {
  color: var(--muted);
}

.app-package .button,
.photo-service-package .button {
  width: fit-content;
  margin-top: auto;
}

.package-highlight {
  border-color: rgba(40, 88, 214, 0.35);
  background: var(--blue-soft);
}

.package-dark {
  color: var(--ink);
  background: var(--lime-soft);
}

.package-note {
  max-width: 880px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
}

.app-proof-section {
  background: var(--blue-soft);
}

.app-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 72px;
}

.app-proof > div:first-child {
  display: grid;
  gap: 23px;
}

.app-proof-mark {
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.app-proof-mark img {
  width: 112px;
  border-radius: 6px;
}

.app-proof-mark > div {
  display: grid;
  gap: 5px;
}

.app-proof-mark strong {
  font-size: 28px;
}

.app-proof-mark span {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 720;
}

.faq-grid details p {
  margin-top: 16px;
}

.share-band {
  padding-block: 34px;
  background: var(--blue);
}

.share-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
}

.share-inner > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.share-inner strong,
.share-inner span,
.share-inner a {
  color: #fff;
}

.share-inner a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

/* Design */
.design-proof-main,
.design-proof-secondary {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.design-proof-main img,
.design-proof-secondary img {
  width: 82px;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: cover;
}

.design-proof-main > div,
.design-proof-secondary > div {
  display: grid;
  gap: 5px;
}

.design-proof-main span,
.design-proof-secondary span,
.design-output-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.design-proof-main strong,
.design-proof-secondary strong {
  font-size: 20px;
}

.design-output-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px 20px;
  background: var(--lime-soft);
}

.design-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.design-category-grid article:nth-child(1) {
  background: var(--blue-soft);
}

.design-category-grid article:nth-child(2) {
  background: var(--lime-soft);
}

.design-category-grid article:nth-child(3) {
  background: var(--coral-soft);
}

.design-category-grid article:nth-child(4) {
  background: var(--yellow-soft);
}

.design-category-grid ul {
  color: var(--muted);
  font-size: 14px;
}

.design-cost-list {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.design-cost-list > div {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.design-cost-list dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.design-cost-list dd {
  margin: 0;
}

.design-process-section {
  background: var(--paper);
}

/* Photography */
.photo-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.photo-hero-media {
  position: absolute;
  inset: 0 0 0 52%;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 548px;
  align-content: center;
  gap: 27px;
  padding-right: 54%;
}

.photo-hero-inner h1 {
  color: var(--ink);
  font-size: 50px;
}

.photo-hero-inner > p {
  color: var(--muted);
  font-size: 20px;
}

.photo-hero .button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
}

.photo-hero-routes {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 72px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.photo-hero-routes span {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
}

.photo-work-section {
  color: var(--ink);
  background: var(--canvas);
}

.photo-work-section h2,
.photo-work-section .lead,
.photo-work-section .section-kicker,
.photo-work-section strong {
  color: var(--ink);
}

.photo-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.photo-carousel-top,
.photo-tabs,
.photo-credit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.photo-carousel-top {
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.photo-carousel-controls {
  display: flex;
  gap: 7px;
}

.photo-carousel-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.photo-carousel-controls button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.photo-tabs {
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
}

.photo-tabs button {
  position: relative;
  border: 0;
  padding: 17px 5px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.photo-tabs button + button {
  margin-left: 24px;
}

.photo-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
  opacity: 0;
}

.photo-tabs button.active {
  color: var(--ink);
}

.photo-tabs button.active::after {
  opacity: 1;
}

.photo-slide {
  display: grid;
  grid-template-columns: 0.65fr 1.3fr 0.85fr 0.85fr;
  min-height: 570px;
  gap: 10px;
  padding: 10px;
}

.photo-slide > div {
  display: grid;
  align-content: end;
  gap: 9px;
  border-radius: 4px;
  padding: 26px;
  background: var(--blue-soft);
}

.photo-slide > div span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.photo-slide figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--canvas-deep);
}

.photo-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slide .editorial-cover {
  background: #292521;
}

.photo-slide .editorial-cover img {
  object-fit: contain;
  object-position: center;
}

.photo-slide figure:nth-of-type(1) img {
  object-position: center 30%;
}

.photo-slide figure.editorial-cover img {
  object-position: center;
}

.event-slide figure:nth-of-type(1) img,
.hospitality-slide figure:nth-of-type(1) img {
  object-position: center;
}

.event-slide .event-dj-photo img {
  object-position: 72% center;
}

.photo-slide figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 4px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 700;
}

.photo-credit-row {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.photo-scope-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-scope-factors article {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line-strong);
  padding: 24px 0;
}

.photo-scope-factors article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.photo-service-package {
  min-height: 490px;
}

.photo-service-package ul {
  color: var(--muted);
}

.photo-service-featured {
  background: var(--lime-soft);
}

.photo-process-section {
  color: var(--ink);
  background: var(--blue-soft);
}

.photo-process-section h2,
.photo-process-section h3,
.photo-process-section p,
.photo-process-section .section-kicker {
  color: inherit;
}

.photo-portfolio-link {
  color: var(--blue);
}

/* About, work, history, legal and contact */
.about-grid,
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-panel,
.venture-card,
.contact-block,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--paper);
}

.about-panel {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 360px;
  overflow: hidden;
}

.about-panel:first-child {
  background: var(--blue-soft);
}

.about-panel:nth-child(2) {
  background: var(--lime-soft);
}

.about-panel > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about-panel::after {
  position: absolute;
  right: 26px;
  bottom: 18px;
  color: rgba(40, 88, 214, 0.08);
  content: "A4T";
  font-size: 104px;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
}

.about-panel:nth-child(2)::after {
  color: rgba(23, 32, 29, 0.07);
  content: "ASK";
}

.section-contrast {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.venture {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.venture-copy {
  display: grid;
  gap: 22px;
}

.venture-card {
  display: grid;
  gap: 22px;
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.venture-card > p {
  display: grid;
  gap: 10px;
}

.venture-card > p strong {
  font-size: 22px;
}

.venture-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.venture-appicon {
  width: 84px;
  aspect-ratio: 1;
  border-radius: 6px;
}

.venture-name {
  display: grid;
}

.venture-name strong {
  font-size: 25px;
}

.venture-name span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.venture-actions {
  display: grid;
  gap: 12px;
}

.venture-primary-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border-radius: 4px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.venture-actions .button {
  width: fit-content;
}

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

.case-study-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 250px;
}

.service-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.service-card:nth-child(2) {
  background: var(--lime-soft);
}

.service-card:nth-child(3) {
  background: var(--coral-soft);
}

.service-card:nth-child(4) {
  background: var(--yellow-soft);
}

.history-main {
  background: var(--canvas);
}

.history-hero {
  padding-block: 80px 54px;
  background: transparent;
}

.history-hero > div {
  display: grid;
  max-width: 880px;
  gap: 24px;
}

.history-hero h1 {
  font-size: 50px;
}

.timeline-section {
  padding-bottom: 100px;
}

.timeline-track {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline-track::before {
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 34px;
  width: 2px;
  background: var(--line-strong);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
}

.timeline-marker {
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue);
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
}

.timeline-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--paper);
}

.timeline-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.timeline-card-highlight {
  border-color: rgba(40, 88, 214, 0.35);
  background: var(--blue-soft);
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  border: 0;
  padding: 0;
  background: transparent;
}

.contact-block > div:first-child {
  display: grid;
  align-content: start;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--blue-soft);
}

.contact-block + * {
  margin-top: 0;
}

.contact-brief-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-brief-list > div {
  display: grid;
  grid-template-columns: 34px 120px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-block: 17px;
}

.contact-brief-list span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--paper);
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--canvas);
  outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 88, 214, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-status,
.contact-email-note {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
}

.legal-main {
  padding-block: 80px 100px;
  background: var(--canvas);
}

.legal-card {
  max-width: 920px;
  margin-inline: auto;
}

.legal-card-hero {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
  background: transparent;
}

.legal-card h1 {
  font-size: 46px;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 25px;
}

@media (prefers-reduced-motion: no-preference) {
  main > :first-child {
    animation: page-settle 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .motion-ready .motion-section {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 440ms ease, transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .motion-ready .motion-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .scope-service[open] .scope-service-body,
  .photo-slide.active {
    animation: content-reveal 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .nav-links[data-open="true"] {
    animation: menu-reveal 180ms ease both;
  }

  @keyframes page-settle {
    from { transform: translateY(7px); }
    to { transform: translateY(0); }
  }

  @keyframes content-reveal {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes menu-reveal {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

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

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

@media (max-width: 1100px) {
  h1 {
    font-size: 50px;
  }

  .refined-hero h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 35px;
  }

  .nav-links {
    gap: 17px;
  }

  .top-action {
    padding-inline: 15px;
  }

  .service-row {
    grid-template-columns: 50px minmax(0, 1fr) minmax(190px, 0.55fr) auto;
    gap: 22px;
  }

  .services-hero-grid,
  .app-hero-grid,
  .design-hero-grid {
    gap: 42px;
  }

  .photo-slide {
    grid-template-columns: 0.55fr 1.2fr 0.8fr 0.8fr;
    min-height: 510px;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 36px, var(--max));
  }

  .nav {
    height: 68px;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .top-action {
    display: none;
  }

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

  .nav-links {
    position: fixed;
    z-index: 49;
    top: 68px;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    height: calc(100dvh - 68px);
    align-content: start;
    justify-content: stretch;
    overflow: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--line);
    padding: 18px;
    background: var(--paper);
  }

  .nav-links[data-open="true"] {
    display: grid;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 56px;
    border-bottom: 1px solid var(--line);
    padding: 12px 2px;
    font-size: 20px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-mobile-contact {
    display: flex !important;
    justify-content: center;
    margin-top: 12px;
    border: 0 !important;
    border-radius: 4px;
    color: #fff !important;
    background: var(--blue);
    font-size: 16px !important;
  }

  .section,
  .share-band,
  .photo-enquiry-band {
    padding-block: 68px;
  }

  .section-header,
  .services-heading-row,
  .refined-section-heading,
  .photo-page-heading,
  .refined-intro-grid,
  .refined-cta-grid,
  .split,
  .services-hero-grid,
  .app-hero-grid,
  .design-hero-grid,
  .refined-proof-grid,
  .product-update-grid,
  .product-release-grid,
  .app-proof,
  .venture,
  .scope-service-body,
  .contact-block {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-header,
  .services-heading-row,
  .refined-section-heading,
  .photo-page-heading {
    align-items: start;
  }

  .subhero-inner h1,
  .photo-hero-inner h1 {
    font-size: 44px;
  }

  .refined-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .refined-hero-inner {
    order: 1;
    min-height: auto;
    width: min(100% - 36px, var(--max));
    margin-inline: auto;
    padding-block: 82px 58px;
  }

  .hero-work-field {
    position: relative;
    inset: auto;
    order: 2;
    height: auto;
    min-height: 0;
  }

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

  .hero-work-item {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 132px;
    padding: 18px 22px;
  }

  .hero-work-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .hero-work-item > .hero-work-thumb {
    grid-row: 1 / 3;
  }

  .hero-work-item em {
    display: block;
    grid-column: 2;
    font-size: 8px;
    line-height: 1.3;
  }

  .hero-work-thumb {
    width: 66px;
    height: 66px;
  }

  .refined-service-rail {
    position: relative;
    order: 3;
    width: 100%;
  }

  .product-update-art,
  .product-release-icon {
    min-height: 400px;
  }

  .service-row {
    grid-template-columns: 48px 1fr auto;
  }

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

  .app-type-grid {
    grid-template-columns: 1fr 1fr;
  }

  .app-cost-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .app-cost-ledger > div:nth-child(2) {
    border-right: 0;
  }

  .app-cost-ledger > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .work-feed-card {
    grid-template-columns: 36px 210px minmax(0, 1fr);
    gap: 22px;
  }

  .work-feed-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .work-feed-media {
    width: 210px;
    height: 148px;
  }

  .visual-work-grid a:first-child {
    grid-column: 1 / -1;
  }

  .visual-work-grid a:nth-child(2) figure,
  .visual-work-grid a:nth-child(3) figure {
    height: 360px;
    margin-top: 0;
  }

  .photo-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .photo-hero-inner {
    order: 1;
    width: 100%;
    min-height: auto;
    padding-block: 74px 52px;
    padding-right: 0;
  }

  .photo-hero-media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: 480px;
  }

  .photo-hero-routes {
    position: relative;
    order: 3;
  }

  .photo-slide {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 420px 300px;
  }

  .photo-slide > div {
    grid-column: 1 / -1;
  }

  .photo-slide figure:nth-of-type(1) {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: calc(100% - 30px);
  }

  h1,
  .refined-hero h1,
  .subhero-inner h1,
  .photo-hero-inner h1,
  .legal-card h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 21px;
  }

  .lead,
  .subhero-inner > p,
  .photo-hero-inner > p,
  .refined-hero-inner > p {
    font-size: 17px;
  }

  .section,
  .share-band,
  .photo-enquiry-band {
    padding-block: 56px;
  }

  .subhero {
    padding-block: 62px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .refined-hero-inner {
    width: calc(100% - 30px);
    gap: 20px;
    padding-block: 42px 30px;
  }

  .hero-work-field {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 52px auto;
  }

  .hero-work-head {
    padding-inline: 15px;
  }

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

  .hero-work-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px;
    min-height: 98px;
    padding: 12px 14px;
  }

  .hero-work-item strong {
    font-size: 14px;
  }

  .hero-work-item span {
    font-size: 7px;
  }

  .hero-work-thumb {
    width: 48px;
    height: 48px;
  }

  .hero-work-thumb-app img {
    width: 38px;
    height: 38px;
  }

  .hero-work-thumb-writing img {
    width: 42px;
    height: 42px;
  }

  .product-update-art,
  .product-release-icon {
    min-height: 300px;
  }

  .work-tile {
    justify-content: center;
    padding: 9px;
  }

  .work-tile strong {
    font-size: 14px;
  }

  .work-tile-design strong {
    font-size: 17px;
  }

  .work-tile-app img {
    width: 70%;
    margin: 0 auto 7px;
  }

  .work-tile-pulse img,
  .work-tile-writing img {
    width: 72%;
    margin: 0 auto 7px;
  }

  .work-tile-pulse img {
    transform: scale(1.22);
  }

  .work-tile-writing strong {
    font-size: 12px;
  }

  .work-tile span {
    font-size: 7px;
  }

  .refined-service-rail {
    grid-template-columns: repeat(5, 1fr);
  }

  .refined-service-rail a {
    min-width: 0;
    min-height: 72px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 8px 3px;
    font-size: 9px;
    line-height: 1.15;
    text-align: center;
  }

  .refined-service-rail a:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .refined-service-rail a:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .service-row {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding-block: 28px;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .service-row > .text-link,
  .service-professional {
    grid-column: 2;
  }

  .visual-work-grid,
  .work-feed-grid,
  .about-grid,
  .service-grid,
  .case-study-grid,
  .app-type-grid,
  .app-package-grid,
  .photo-service-grid,
  .design-category-grid,
  .photo-scope-factors,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .work-feed-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px 14px;
    padding-block: 24px;
  }

  .work-feed-index {
    grid-row: 1 / 3;
  }

  .work-feed-media {
    grid-column: 2;
    width: 100%;
    height: 210px;
  }

  .work-feed-copy {
    grid-column: 2;
  }

  .work-feed-copy h3 {
    font-size: 24px;
  }

  .visual-work-grid a:first-child {
    grid-column: auto;
  }

  .visual-work-grid figure,
  .visual-work-grid a:nth-child(2) figure,
  .visual-work-grid a:nth-child(3) figure {
    height: 420px;
  }

  .refined-process-grid,
  .pricing-route,
  .design-process-grid,
  .photo-process-grid,
  .delivery-model-grid {
    grid-template-columns: 1fr;
  }

  .refined-process-grid article,
  .pricing-route article,
  .design-process-grid article,
  .photo-process-grid article,
  .delivery-model-grid article,
  .refined-process-grid article + article,
  .pricing-route article + article,
  .design-process-grid article + article,
  .photo-process-grid article + article,
  .delivery-model-grid article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .proof-visual {
    min-height: 380px;
  }

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

  .proof-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .services-hero-grid,
  .app-hero-grid,
  .design-hero-grid {
    grid-template-columns: 1fr;
  }

  .services-hero,
  .app-subhero,
  .design-hero {
    padding-block: 38px;
  }

  .services-hero-grid,
  .app-hero-grid,
  .design-hero-grid {
    gap: 24px;
  }

  .project-brief-board dl {
    grid-template-columns: 1fr 1fr;
  }

  .project-brief-board dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 64px;
    align-content: center;
    border-right: 1px solid var(--line);
    padding: 11px 13px;
  }

  .project-brief-board dl > div:nth-child(even) {
    border-right: 0;
  }

  .project-brief-board dl > div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .project-board-head {
    min-height: 44px;
    padding: 9px 13px;
  }

  .app-idea-list {
    grid-template-columns: 1fr 1fr;
  }

  .app-idea-list > div,
  .app-idea-list > div:nth-child(even),
  .app-idea-list > div:nth-last-child(-n + 2) {
    min-height: 126px;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }

  .app-idea-list > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .app-idea-list > div:nth-child(even) {
    border-right: 0;
  }

  .app-idea-list > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .app-subhero .app-idea-list > div {
    min-height: 72px;
    align-content: center;
    gap: 4px;
    padding: 12px 14px;
  }

  .app-subhero .app-idea-list p {
    display: none;
  }

  .design-hero .design-proof-main,
  .design-hero .design-proof-secondary {
    gap: 10px;
    padding: 6px 12px;
  }

  .design-hero .design-board-head {
    min-height: 40px;
    padding: 9px 14px;
  }

  .design-hero .design-proof-main img,
  .design-hero .design-proof-secondary img {
    width: 40px;
  }

  .design-hero .design-output-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 12px 10px;
    text-align: center;
  }

  .design-hero .design-output-strip span {
    font-size: 9px;
  }

  .app-cost-ledger {
    grid-template-columns: 1fr;
  }

  .app-cost-ledger > div,
  .app-cost-ledger > div:nth-child(2),
  .app-cost-ledger > div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scope-service {
    padding-block: 0;
  }

  .scope-service > summary {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px 18px;
    padding-block: 25px;
  }

  .scope-service > summary > span {
    width: 40px;
    height: 40px;
  }

  .scope-service > summary h3 {
    font-size: 25px;
  }

  .scope-service > summary p {
    font-size: 14px;
  }

  .scope-service > summary > strong {
    grid-column: 2;
    justify-self: start;
  }

  .scope-service[open] {
    padding-bottom: 38px;
  }

  .scope-service[open] > summary {
    margin-bottom: 28px;
  }

  .scope-service > header {
    align-items: start;
    flex-direction: column;
  }

  .scope-service > header h3 {
    font-size: 31px;
  }

  .scope-category-list {
    grid-template-columns: 1fr;
  }

  .scope-service > footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .scope-driver-panel,
  .contact-form,
  .about-panel,
  .legal-card {
    padding: 24px;
  }

  .scope-writing-visual {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
  }

  .scope-writing-visual img {
    width: 108px;
    height: 128px;
  }

  .scope-writing-visual figcaption {
    padding: 16px 14px 16px 0;
  }

  .scope-writing-visual figcaption strong {
    font-size: 17px;
  }

  .scope-writing-visual figcaption span {
    font-size: 13px;
  }

  .contact-block {
    padding: 0;
  }

  .contact-block > div:first-child {
    padding: 24px;
  }

  .package-top,
  .photo-package-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-package,
  .photo-service-package {
    min-height: auto;
    padding: 24px;
  }

  .app-proof-mark {
    align-items: flex-start;
    flex-direction: column;
  }

  .share-inner,
  .share-inner > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-hero-inner {
    gap: 20px;
    padding-block: 42px 30px;
  }

  .photo-hero-media {
    height: 210px;
  }

  .photo-hero-routes {
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-hero-routes span {
    min-width: 0;
    justify-content: center;
    padding: 10px 3px;
    font-size: 9px;
    line-height: 1.15;
    text-align: center;
  }

  .photo-tabs {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px;
  }

  .photo-tabs button + button {
    margin-left: 0;
  }

  .photo-slide {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 130px 330px 230px;
  }

  .photo-credit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .design-output-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .case-study-page .subhero {
    padding-block: 38px;
  }

  .case-study-page .subhero .split {
    gap: 24px;
  }

  .case-study-page .subhero-inner {
    gap: 20px;
  }

  .case-study-page .venture-card {
    gap: 14px;
    padding: 20px;
  }

  .case-study-page .venture-card > p {
    display: none;
  }

  .case-study-page .venture-appicon {
    width: 64px;
  }

  .history-hero {
    padding-block: 62px 48px;
  }

  .history-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .timeline-track::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .timeline-marker {
    width: 46px;
    height: 46px;
  }

  .timeline-card {
    padding: 22px;
  }

  .contact-brief-list > div {
    grid-template-columns: 28px 1fr;
  }

  .contact-brief-list > div > p {
    grid-column: 2;
  }

  .submit-row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    justify-content: center;
    padding-block: 34px;
  }

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

/* Professional network */
.professionals-page main {
  background: var(--paper);
}

.professional-hero {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.professional-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.75fr);
  min-height: 660px;
  align-items: center;
  gap: 96px;
  padding-block: 90px;
}

.professional-hero-copy {
  display: grid;
  align-content: center;
  gap: 28px;
}

.professional-hero-copy h1 {
  max-width: 720px;
  font-size: 62px;
  line-height: 1.04;
}

.professional-hero-copy > p {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

.professional-types {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.professional-types span {
  padding: 18px 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.professional-types span + span {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.professional-route-board {
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--canvas);
}

.professional-route-head {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 24px 26px;
}

.professional-route-head span,
.professional-route-board small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.professional-route-head strong {
  font-size: 18px;
}

.professional-route-board ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.professional-route-board li {
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 116px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 24px 26px;
}

.professional-route-board li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.professional-route-board li > div {
  display: grid;
  gap: 7px;
}

.professional-route-board li strong {
  max-width: 290px;
  font-size: 15px;
  line-height: 1.45;
}

.professional-route-board > p {
  padding: 20px 26px;
  color: var(--muted);
  font-size: 12px;
}

.professional-categories {
  background: var(--canvas);
}

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

.professional-category-row {
  display: grid;
  grid-template-columns: 42px minmax(240px, 0.8fr) minmax(360px, 1.2fr);
  min-height: 150px;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.professional-category-row > span,
.professional-process-list article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.professional-category-row > div {
  display: grid;
  gap: 9px;
}

.professional-category-row h3 {
  font-size: 24px;
}

.professional-category-row > div p {
  font-size: 14px;
}

.professional-category-row > p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.professional-process {
  border-block: 1px solid var(--line);
  background: var(--blue-soft);
}

.professional-process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}

.professional-process-list article {
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 18px;
  border-right: 1px solid var(--line);
  padding: 30px 30px 30px 0;
}

.professional-process-list article + article {
  padding-left: 30px;
}

.professional-process-list article:last-child {
  border-right: 0;
}

.professional-process-list h3 {
  font-size: 20px;
}

.professional-process-list p {
  max-width: 260px;
  font-size: 15px;
}

.professional-standard {
  background: var(--paper);
}

.professional-standard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 90px;
}

.professional-standard-grid > div:first-child {
  display: grid;
  align-content: start;
  gap: 22px;
}

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

.professional-standard-list p {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
  font-size: 15px;
}

.professional-standard-list strong {
  color: var(--ink);
}

.professional-apply {
  border-top: 1px solid var(--line);
  background: var(--canvas);
  scroll-margin-top: 72px;
}

.professional-apply-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 80px;
}

.professional-apply-copy {
  position: sticky;
  top: 112px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.professional-apply-copy > p {
  max-width: 480px;
  font-size: 17px;
}

.professional-privacy-note {
  display: grid;
  gap: 8px;
  border-block: 1px solid var(--line);
  padding-block: 22px;
}

.professional-privacy-note p {
  font-size: 14px;
  line-height: 1.6;
}

.professional-form {
  gap: 24px;
}

.professional-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.professional-form-heading span {
  font-size: 18px;
  font-weight: 760;
}

.professional-form-heading strong {
  color: var(--muted);
  font-size: 11px;
}

.professional-form-grid,
.professional-category-fields > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.professional-category-fields {
  margin: 0;
  border: 0;
  padding: 0;
}

.professional-category-fields legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.professional-category-fields > div {
  gap: 8px;
}

.professional-category-fields label {
  display: flex !important;
  min-height: 50px;
  align-items: center;
  gap: 10px !important;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  color: var(--ink-soft) !important;
  background: var(--canvas);
  font-size: 12px !important;
  font-weight: 650 !important;
  cursor: pointer;
}

.professional-category-fields label:has(input:checked) {
  border-color: var(--blue);
  color: var(--ink) !important;
  background: var(--blue-soft);
}

.professional-category-fields input,
.professional-file-field input {
  width: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.professional-category-fields input {
  width: 17px !important;
  height: 17px;
  flex: 0 0 17px;
  accent-color: var(--blue);
}

.professional-file-field {
  display: grid !important;
  gap: 10px !important;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 18px;
  background: var(--blue-soft);
}

.professional-file-field > span {
  font-size: 13px;
  font-weight: 720;
}

.professional-file-field input {
  max-width: 100%;
  color: var(--ink-soft);
  font-size: 13px;
}

.professional-file-field input::file-selector-button {
  margin-right: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.professional-file-field strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

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

.professional-form .button:disabled {
  cursor: wait;
  opacity: 0.6;
  transform: none;
}

.professional-form .form-status[data-state="success"] {
  color: #176c45;
  font-weight: 700;
}

.professional-form .form-status[data-state="error"] {
  color: #a02b2b;
  font-weight: 700;
}

.home-network {
  border-top: 1px solid var(--line);
  padding-block: 92px;
  background: var(--paper);
}

.home-network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.home-network-grid > div {
  display: grid;
  gap: 20px;
}

.home-network-grid h2 {
  max-width: 680px;
  font-size: 40px;
}

.home-network-grid p {
  max-width: 520px;
  font-size: 17px;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .nav-inner {
    gap: 18px;
  }

  .nav-links {
    gap: 13px;
  }

  .nav-links a {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .professional-hero-grid,
  .professional-standard-grid,
  .professional-apply-grid,
  .home-network-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .professional-hero-grid {
    min-height: 0;
    padding-block: 80px;
  }

  .professional-hero-copy h1 {
    font-size: 50px;
  }

  .professional-route-board {
    max-width: 620px;
  }

  .professional-category-row {
    grid-template-columns: 36px minmax(210px, 0.75fr) minmax(0, 1.25fr);
    gap: 24px;
  }

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

  .professional-process-list article:nth-child(2) {
    border-right: 0;
  }

  .professional-process-list article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .professional-apply-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .professional-hero-grid {
    gap: 38px;
    padding-block: 62px;
  }

  .professional-hero-copy {
    gap: 22px;
  }

  .professional-hero-copy h1 {
    font-size: 39px;
    line-height: 1.08;
  }

  .professional-hero-copy > p {
    font-size: 17px;
  }

  .professional-types {
    display: grid;
  }

  .professional-types span,
  .professional-types span + span {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    padding: 12px 0;
  }

  .professional-route-board li {
    min-height: 104px;
    padding: 20px;
  }

  .professional-category-row {
    grid-template-columns: 28px 1fr;
    min-height: 0;
    gap: 8px 14px;
    padding-block: 26px;
  }

  .professional-category-row > p {
    grid-column: 2;
  }

  .professional-category-row h3 {
    font-size: 21px;
  }

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

  .professional-process-list article,
  .professional-process-list article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .professional-process-list article:last-child {
    border-bottom: 0;
  }

  .professional-standard-list p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .professional-form-grid,
  .professional-category-fields > div {
    grid-template-columns: 1fr;
  }

  .professional-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .home-network {
    padding-block: 62px;
  }

  .home-network-grid {
    gap: 28px;
  }

  .home-network-grid h2 {
    font-size: 32px;
  }
}

/* Simplified home */
.home-index main {
  overflow: hidden;
}

.title-short {
  display: none;
}

.home-hero {
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}

.home-hero-inner {
  display: grid;
  min-height: 600px;
  align-content: center;
  gap: 26px;
  padding-block: 84px;
}

.home-hero h1 {
  max-width: 960px;
  font-size: 64px;
}

.home-hero-inner > p {
  max-width: 710px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.5;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.home-services,
.home-process,
.home-final {
  padding-block: 96px;
}

.home-services {
  background: var(--paper);
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 46px;
}

.home-section-head > div {
  display: grid;
  gap: 20px;
}

.home-section-head > p {
  max-width: 440px;
  font-size: 18px;
}

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

.home-service {
  display: grid;
  grid-template-columns: 48px minmax(220px, 0.8fr) minmax(300px, 1.2fr) 24px;
  min-height: 122px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
  transition: background-color 180ms ease, padding 180ms ease;
}

.home-service:hover {
  padding-inline: 20px;
  background: var(--blue-soft);
}

.home-service > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.home-service h3 {
  font-size: 24px;
}

.home-service p {
  max-width: 560px;
  font-size: 16px;
}

.home-service > strong {
  color: var(--blue);
  font-size: 22px;
  text-align: right;
}

.home-services-link {
  margin-top: 34px;
}

.home-proof {
  border-block: 1px solid var(--line);
  padding-block: 96px;
  background: var(--canvas);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 96px;
}

.home-proof-visual {
  display: grid;
  min-height: 480px;
  place-items: center;
  border: 1px solid #cad6f7;
  background: var(--blue-soft);
}

.home-proof-visual img {
  width: min(210px, 46%);
  aspect-ratio: 1;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.home-proof-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.home-proof-copy h2 {
  max-width: 650px;
  font-size: 46px;
}

.home-proof-copy > p {
  max-width: 620px;
  font-size: 18px;
}

.home-process {
  background: var(--paper);
}

.home-process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-strong);
}

.home-process-list article {
  display: grid;
  min-height: 235px;
  align-content: start;
  gap: 18px;
  border-right: 1px solid var(--line);
  padding: 34px;
}

.home-process-list article:first-child {
  padding-left: 0;
}

.home-process-list article:last-child {
  border-right: 0;
  padding-right: 0;
}

.home-process-list span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.home-process-list h3 {
  font-size: 27px;
}

.home-process-list p {
  max-width: 300px;
}

.home-network {
  border-block: 1px solid var(--line);
  padding-block: 92px;
  background: var(--blue-soft);
}

.home-network-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.home-network-grid .button {
  justify-self: start;
  background: var(--paper);
}

.home-final {
  background: var(--paper);
}

.home-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 90px;
}

.home-final-grid h2 {
  font-size: 46px;
}

.home-final-grid > div {
  display: grid;
  gap: 22px;
}

.home-final-grid p {
  max-width: 520px;
  font-size: 18px;
}

@media (max-width: 900px) {
  .home-hero-inner {
    min-height: 540px;
  }

  .home-hero h1 {
    font-size: 52px;
  }

  .home-section-head,
  .home-proof-grid,
  .home-final-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-service {
    grid-template-columns: 36px minmax(190px, 0.85fr) minmax(240px, 1.15fr) 20px;
    gap: 20px;
  }

  .home-proof-grid {
    gap: 56px;
  }

  .home-proof-visual {
    min-height: 420px;
  }

  .home-network-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .responsive-title {
    max-width: 100%;
    font-size: 30px !important;
    line-height: 1.1;
    white-space: nowrap;
  }

  .title-full {
    display: none;
  }

  .title-short {
    display: inline;
  }

  .professional-apply-grid > *,
  .professional-form,
  .professional-form-grid,
  .professional-category-fields,
  .professional-category-fields > div,
  .professional-file-field {
    min-width: 0;
  }

  .professional-form input,
  .professional-form select,
  .professional-form textarea {
    min-width: 0;
  }

  .home-hero-inner {
    min-height: 520px;
    gap: 22px;
    padding-block: 64px;
  }

  .home-hero h1 {
    font-size: 42px;
    line-height: 1.06;
  }

  .home-hero-inner > p {
    font-size: 17px;
  }

  .home-services,
  .home-proof,
  .home-process,
  .home-final {
    padding-block: 68px;
  }

  .home-section-head {
    gap: 22px;
    margin-bottom: 32px;
  }

  .home-section-head > p {
    font-size: 16px;
  }

  .home-service {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    min-height: 0;
    gap: 8px 14px;
    padding-block: 24px;
  }

  .home-service:hover {
    padding-inline: 0;
    background: transparent;
  }

  .home-service h3 {
    font-size: 20px;
  }

  .home-service p {
    grid-column: 2 / 4;
    font-size: 14px;
  }

  .home-service > strong {
    grid-column: 3;
    grid-row: 1;
  }

  .home-proof-grid {
    gap: 38px;
  }

  .home-proof-visual {
    min-height: 320px;
  }

  .home-proof-visual img {
    width: 142px;
  }

  .home-proof-copy h2,
  .home-final-grid h2 {
    font-size: 34px;
  }

  .home-proof-copy > p,
  .home-final-grid p {
    font-size: 16px;
  }

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

  .home-process-list article,
  .home-process-list article:first-child,
  .home-process-list article:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .home-process-list article:last-child {
    border-bottom: 0;
  }

  .home-final-grid {
    gap: 28px;
  }
}

@media (max-width: 360px) {
  .responsive-title {
    font-size: 28px !important;
  }
}
