:root {
  --dark: #050505;
  --ink: #111111;
  --graphite: #252525;
  --muted: #707070;
  --paper: #f7f7f4;
  --stone: #eeeeea;
  --stone-2: #ffffff;
  --line: #d8d8d2;
  --accent: #8b8378;
  --accent-blue: #2f7ea8;
  --accent-blue-dark: #1f5f88;
  --accent-blue-soft: rgba(47, 126, 168, 0.16);
  --white: #ffffff;
  --shadow: none;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.section[id],
#lead-form {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.52;
}

main {
  display: flex;
  flex-direction: column;
}

main > .hero { order: 1; }
main > .studio-rail { order: 2; }
main > .problem { order: 3; }
main > .unified-team { order: 4; }
main > .solution { order: 5; }
main > .proof { order: 6; }
main > .process { order: 7; }
main > .responsibility { order: 8; }
main > .portfolio { order: 9; }
main > .fit { order: 10; }
main > .diagnostics { order: 11; }
main > .form-section { order: 12; }

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  width: 170px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.main-nav a,
.contact-panel a,
.footer-links a {
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.main-nav a:hover,
.contact-panel a:hover,
.footer-links a:hover {
  color: var(--accent-blue-dark);
}

.site-header .main-nav a:hover {
  color: #70b3d6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark);
  border-radius: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 26px;
  font-weight: 650;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #000;
  border-color: #000;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.button-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 94svh;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.5) 44%, rgba(5, 5, 5, 0.06) 78%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.14) 46%, rgba(5, 5, 5, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 94svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 50px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
}

h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
}

h3 {
  font-size: 20px;
  font-weight: 650;
}

.hero-bottom {
  max-width: 940px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.hero-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-cta {
  display: grid;
  gap: 13px;
  min-width: 255px;
}

.hero-cta span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.studio-rail {
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 35px 0;
}

.rail-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.6vw, 48px);
}

.rail-grid article {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.rail-grid article:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: auto;
  border-radius: 50%;
  background: #70b3d6;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  color: #70b3d6;
}

.item-index {
  display: inline-block;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.unified-principles .item-index {
  color: #70b3d6;
}

.fit-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: start;
}

.problem {
  background: var(--white);
}

.problem-grid {
  display: block;
}

.problem-statement {
  max-width: 990px;
}

.problem-grid > div:last-child {
  margin-top: 38px;
}

.problem-grid .lead {
  max-width: 660px;
}

.lead,
.section-copy p,
.diagnostics-copy p,
.proof-copy p,
.form-intro p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.pain-list {
  list-style: none;
  max-width: 760px;
  margin: 44px 0 0 auto;
  padding: 0;
  border-top: 1px solid var(--line);
}

.pain-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

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

.pain-list .item-index {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.pain-list .item-index::after {
  content: none;
}

.solution {
  background: var(--paper);
}

.unified-team {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.unified-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.78)),
    url("images/hero-interior-mono.jpg") center / cover;
  opacity: 0.72;
}

.unified-team > .container {
  position: relative;
  z-index: 1;
}

.unified-team .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.unified-composition {
  display: grid;
  gap: 48px;
}

.unified-head {
  max-width: 760px;
}

.unified-statement {
  position: relative;
  max-width: 1080px;
  margin: 0;
  padding-left: 30px;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.unified-statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 2px;
  background: var(--accent-blue);
}

.unified-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.unified-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.unified-principles {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.unified-principles > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  max-width: 540px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.unified-principles span {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.unified-principles > div:first-child span {
  color: rgba(255, 255, 255, 0.82);
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.unified-principles > div:nth-child(2) {
  margin: 0;
  max-width: 540px;
}

.unified-principles > div:nth-child(3) {
  margin: 0;
  max-width: 540px;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "copy collage"
    "board board";
  gap: 58px 76px;
  align-items: start;
}

.section-copy {
  max-width: 570px;
}

.solution-layout > .section-copy {
  grid-area: copy;
}

.project-visual {
  grid-area: collage;
}

.project-visual,
.diagnostics-image {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--stone);
  border: 1px solid var(--line);
}

.project-visual img,
.diagnostics-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-visual {
  aspect-ratio: 16 / 9;
}

.project-route {
  grid-area: board;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.92fr 1fr 0.96fr 1.34fr;
  border-top: 1px solid var(--line);
}

.project-route li {
  position: relative;
  min-height: 96px;
  padding: 26px 18px 0 0;
}

.project-route li:nth-child(2),
.project-route li:nth-child(4),
.project-route li:nth-child(6) {
  padding-top: 38px;
}

.project-route li::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 0 5px var(--accent-blue-soft);
}

.project-route small {
  display: block;
  margin-bottom: 13px;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.project-route span {
  color: var(--graphite);
  font-weight: 650;
}

.clean-list,
.dash-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.clean-list li,
.dash-list li {
  position: relative;
  padding-left: 25px;
  color: var(--graphite);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--graphite);
  transform: translateY(-50%) rotate(45deg);
}

.dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73em;
  width: 13px;
  height: 1px;
  background: var(--muted);
}

.fit {
  background: var(--stone);
}

.fit-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.fit-column {
  padding: 8px 0 0 32px;
  border-left: 2px solid var(--accent-blue);
}

.fit-column-muted {
  margin-top: 60px;
  padding: 32px 30px;
  border-left: 0;
  background: rgba(255, 255, 255, 0.58);
}

.process {
  background: var(--white);
  color: var(--ink);
}

.process-head {
  max-width: 820px;
}

.process-head p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.process-head .eyebrow {
  color: var(--muted);
}

.process-timeline {
  max-width: 1040px;
  margin: 62px 0 0 auto;
}

.process-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(205px, 280px) minmax(0, 1fr);
  gap: 20px 30px;
  padding: 0 0 33px;
}

.process-timeline article:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 29px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.process-timeline span {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 3px 10px 5px 0;
  background: var(--white);
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1;
}

.process-timeline h3 {
  padding-top: 0;
  font-size: 21px;
  font-weight: 650;
}

.process-timeline p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.call-points {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.call-points span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.diagnostics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 76px;
  align-items: center;
}

.diagnostics-image {
  aspect-ratio: 1.08 / 1;
}

.diagnostics-tags {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.diagnostics-tags span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 12px;
  color: var(--graphite);
  font-size: 14px;
}

.diagnostics-note {
  margin-top: 22px !important;
  color: var(--graphite) !important;
  font-size: 15px !important;
}

.statement {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 650;
}

.responsibility {
  background: var(--dark);
  color: var(--white);
}

.responsibility .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.responsibility-head {
  max-width: 880px;
  margin-bottom: 52px;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.12fr);
  gap: 82px;
  align-items: start;
}

.responsibility-grid article {
  padding: 13px 0 0;
  color: var(--white);
}

.responsibility-company {
  padding: 16px 0 12px 45px !important;
  border-left: 2px solid #70b3d6;
  color: var(--white);
}

.responsibility-company h3 {
  color: #70b3d6;
}

.responsibility-grid .clean-list li,
.responsibility-company .clean-list li {
  color: rgba(255, 255, 255, 0.82);
}

.responsibility-grid .clean-list li::before,
.responsibility-company .clean-list li::before {
  background: #70b3d6;
}

.proof {
  background: var(--stone);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.08fr);
  grid-template-areas: "copy board";
  gap: 42px 72px;
  align-items: start;
}

.proof-copy {
  grid-area: copy;
}

.object-care-grid {
  grid-area: board;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.object-care-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.object-care-card-featured {
  grid-row: span 2;
  background:
    linear-gradient(135deg, var(--accent-blue-soft), transparent 42%),
    var(--white);
}

.object-care-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.object-care-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.object-care-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.object-care-list li {
  border: 1px solid var(--line);
  background: rgba(247, 247, 244, 0.75);
  padding: 7px 9px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 650;
}

.site-control {
  grid-area: board;
  min-width: 0;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 126, 168, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(247, 247, 244, 0.74), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  color: var(--graphite);
}

.site-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.site-control-head div {
  display: grid;
  gap: 6px;
}

.site-control-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-control-head strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 550;
}

.site-control-head p {
  margin: 0;
  border: 1px solid var(--accent-blue);
  background: var(--accent-blue-soft);
  padding: 9px 12px;
  color: var(--accent-blue-dark);
  font-size: 12px;
  font-weight: 650;
}

.site-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.control-card {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.control-card-main {
  grid-column: span 2;
  background:
    linear-gradient(135deg, var(--accent-blue-soft), transparent 48%),
    var(--white);
}

.control-card-photos {
  grid-column: auto;
}

.control-card-photos,
.control-card-client {
  background: rgba(247, 247, 244, 0.78);
}

.control-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.control-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 0 5px var(--accent-blue-soft);
}

.week-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.week-route span {
  position: relative;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.week-route span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.week-route .is-done::before,
.week-route .is-active::before {
  background: var(--accent-blue);
}

.week-route .is-active {
  color: var(--accent-blue-dark);
}

.control-list-soft {
  margin-top: 26px !important;
}

.control-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.control-photo-grid span {
  display: grid;
  place-items: end start;
  min-height: 104px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(47, 126, 168, 0.12), transparent 40%),
    linear-gradient(160deg, #eeeeea, #d8d8d2);
  border: 1px solid var(--line);
}

.control-photo-grid em {
  color: var(--graphite);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.control-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.control-list li {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-size: 14px;
}

.control-list li:first-child {
  padding-top: 0;
}

.control-list b {
  color: var(--accent-blue-dark);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.proof-tags {
  grid-area: tags;
  list-style: none;
  margin: 0;
  padding: 25px 0 0;
  display: grid;
  gap: 13px;
  border-top: 1px solid var(--line);
}

.proof-tags li {
  position: relative;
  padding: 0 0 0 19px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 650;
}

.proof-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  transform: translateY(-50%);
}

.form-section {
  padding-bottom: 120px;
  background: var(--white);
}

.contact-panel {
  margin-top: 36px;
  display: grid;
  gap: 13px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.form-note {
  margin-top: 16px !important;
  color: var(--graphite) !important;
  font-size: 15px !important;
}

.contact-panel a {
  color: var(--graphite);
  font-weight: 650;
}

.contact-panel .secondary-link {
  color: var(--muted);
  font-weight: 500;
}

.lead-form {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-card-head {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-card-head h3 {
  font-size: 22px;
}

.form-card-head p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 650;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  min-height: 48px;
  padding: 13px 14px;
  outline: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row textarea {
  min-height: 118px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  background: var(--white);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-soft);
}

.form-row input.is-error,
.form-row select.is-error,
.form-row textarea.is-error {
  border-color: #8f3f32;
}

.contact-choice {
  padding: 0;
  border: 0;
}

.contact-choice legend {
  margin-bottom: 8px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 650;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.contact-options label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  cursor: pointer;
}

.contact-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  min-height: 48px;
  background: var(--paper);
  padding: 12px 10px;
  color: var(--graphite);
  font-weight: 650;
  text-align: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.contact-options input:checked + span {
  border-color: var(--accent-blue);
  background: var(--accent-blue-soft);
  color: var(--accent-blue-dark);
  box-shadow: none;
}

.contact-options input:focus-visible + span {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-soft);
}

.form-button {
  width: 100%;
}

.form-policy,
.form-status {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-policy a {
  color: var(--graphite);
  border-bottom: 1px solid rgba(45, 41, 36, 0.34);
}

.form-status {
  min-height: 20px;
  color: var(--graphite);
  font-weight: 650;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
}

.privacy-content {
  max-width: 860px;
}

.privacy-body .site-header {
  position: sticky;
  background: var(--dark);
}

.privacy-body .section {
  padding-top: 86px;
}

.privacy-content h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 58px);
}

.privacy-content h2 {
  margin-top: 42px;
  font-family:
    Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 650;
}

.privacy-content p {
  color: var(--muted);
}

.icons-body {
  background: var(--paper);
}

.icons-header .header-inner {
  justify-content: space-between;
}

.icons-back {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.2s ease;
}

.icons-back:hover {
  color: #70b3d6;
}

.icons-preview {
  padding: 138px 0 88px;
}

.icons-preview h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 66px);
}

.icons-intro {
  max-width: 650px;
  margin: 22px 0 48px;
  color: var(--muted);
  font-size: 18px;
}

.icons-panel {
  margin-top: 18px;
  padding: 42px;
}

.icons-panel h2 {
  margin-bottom: 38px;
  font-size: 28px;
}

.icons-panel-light {
  background: var(--white);
  border: 1px solid var(--line);
}

.icons-panel-dark {
  background: var(--dark);
  color: var(--white);
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 30px;
}

.icons-panel-light .icons-grid figure {
  margin: 0;
  color: var(--accent-blue);
}

.icons-panel-dark .icons-grid figure {
  color: #70b3d6;
}

.icons-grid svg {
  width: 52px;
  height: 52px;
  display: block;
  margin-bottom: 20px;
}

.icons-grid figcaption {
  max-width: 180px;
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .unified-bottom,
  .solution-layout,
  .fit-layout,
  .diagnostics-layout,
  .proof-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .solution-layout {
    grid-template-areas:
      "copy"
      "collage"
      "board";
  }

  .proof-layout {
    grid-template-areas:
      "copy"
      "board";
  }

  .process-timeline {
    margin-left: 0;
  }

  .process-timeline article {
    grid-template-columns: 54px minmax(190px, 260px) minmax(0, 1fr);
  }

  .site-control {
    padding: 24px;
  }

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

@media (max-height: 760px) and (min-width: 761px) {
  .hero-inner {
    padding-top: 118px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(42px, 5vw, 74px);
  }

  .hero-bottom {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .section[id],
  #lead-form {
    scroll-margin-top: 0;
  }

  body {
    font-size: 16px;
  }

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

  .section {
    padding: 72px 0;
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header-phone {
    font-size: 14px;
  }

  .button-small {
    width: 100%;
  }

  .hero {
    min-height: 90svh;
  }

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 11, 10, 0.52), rgba(12, 11, 10, 0.42) 34%, rgba(12, 11, 10, 0.88)),
      linear-gradient(90deg, rgba(12, 11, 10, 0.4), rgba(12, 11, 10, 0.08));
  }

  .hero-inner {
    min-height: 90svh;
    padding: 136px 0 30px;
  }

  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .hero-bottom p,
  .lead,
  .section-copy p,
  .diagnostics-copy p,
  .proof-copy p,
  .form-intro p {
    font-size: 17px;
  }

  .hero-cta {
    min-width: 0;
  }

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

  .fit-columns,
  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .studio-rail {
    padding: 22px 0;
  }

  .rail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .rail-grid article {
    display: grid;
    gap: 8px;
    font-size: 13px;
  }

  .rail-grid article:not(:last-child)::after {
    display: none;
  }

  .pain-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
    font-size: 16px;
  }

  .pain-list {
    margin-top: 32px;
  }

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

  .pain-list .item-index {
    font-size: 11px;
  }

  .unified-composition {
    gap: 38px;
  }

  .unified-statement {
    padding-left: 20px;
    font-size: 28px;
  }

  .unified-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .unified-principles > div:nth-child(2),
  .unified-principles > div:nth-child(3) {
    margin-left: 0;
  }

  .project-route {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--line);
    margin-left: 6px;
    padding-left: 24px;
  }

  .project-route li {
    min-height: auto;
    padding: 0 0 28px;
  }

  .project-route li:nth-child(2),
  .project-route li:nth-child(4),
  .project-route li:nth-child(6) {
    padding-top: 0;
  }

  .project-route li::before {
    left: -30px;
    top: 4px;
  }

  .project-route small {
    margin-bottom: 7px;
  }

  .fit-column {
    padding: 4px 0 0 24px;
  }

  .fit-column-muted {
    margin-top: 30px;
    padding: 26px 24px;
  }

  .process-timeline {
    margin-top: 40px;
  }

  .process-timeline article {
    display: block;
    padding: 0 0 39px 48px;
  }

  .process-timeline article:not(:last-child)::before {
    left: 13px;
    top: 37px;
    bottom: 2px;
  }

  .process-timeline article::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #70b3d6;
  }

  .process-timeline span {
    padding: 0;
    background: transparent;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 760;
  }

  .process-timeline h3 {
    margin-top: 13px;
    padding-top: 0;
    font-size: 20px;
  }

  .process-timeline p {
    margin-top: 10px;
    font-size: 16px;
  }

  .lead-form {
    padding: 24px;
  }

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

  .responsibility-grid {
    gap: 42px;
  }

  .responsibility-grid article {
    padding: 0;
  }

  .responsibility-company {
    padding: 0 0 0 24px !important;
  }

  .diagnostics-image {
    aspect-ratio: 1 / 1.05;
  }

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

  .site-control-grid,
  .control-photo-grid {
    grid-template-columns: 1fr;
  }

  .control-card-main,
  .control-card-photos {
    grid-column: auto;
  }

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

  .icons-preview {
    padding: 126px 0 68px;
  }

  .icons-panel {
    padding: 27px 22px;
  }

  .icons-grid {
    gap: 30px 18px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 27px;
  }

  .button {
    min-height: 52px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.mobile-copy,
.mobile-extra,
.mobile-process-accordion,
.fit-mobile-negative,
.mobile-image-break {
  display: none;
}

.desktop-only {
  display: grid;
}

.mobile-extra summary,
.fit-mobile-negative summary,
.mobile-process-accordion summary {
  cursor: pointer;
  color: var(--graphite);
  font-weight: 650;
}

.unified-statement {
  max-width: 960px;
  font-size: clamp(26px, 2.8vw, 38px);
}

.portfolio {
  background: var(--paper);
}

.portfolio-layout {
  display: grid;
  gap: 42px;
}

.portfolio-empty {
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(47, 126, 168, 0.08), transparent 35%),
    var(--stone-2);
}

.portfolio-empty span {
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.portfolio-empty p {
  max-width: 380px;
  margin: 0;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.35;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  min-width: 0;
  grid-column: span 2;
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
}

.portfolio-card-featured {
  grid-column: span 4;
}

.portfolio-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 100%;
}

.portfolio-cover {
  min-height: 100%;
  margin: 0;
  background: var(--stone);
  border-right: 1px solid var(--line);
}

.portfolio-cover img,
.portfolio-thumbs img,
.portfolio-detail-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portfolio-media {
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(47, 126, 168, 0.12), transparent 36%),
    linear-gradient(160deg, #f2f2ee, #d8d8d2);
  border-bottom: 1px solid var(--line);
}

.portfolio-media span {
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.portfolio-card-body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.portfolio-feature-copy {
  align-content: start;
  padding: 30px;
}

.portfolio-kicker {
  width: max-content;
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  font-size: 21px;
}

.portfolio-card-featured h3 {
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.04em;
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.portfolio-card .portfolio-subtitle {
  color: var(--graphite);
  font-size: 15px;
  font-weight: 650;
}

.portfolio-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 650;
}

.portfolio-flow i {
  width: 14px;
  height: 1px;
  background: var(--accent-blue);
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.portfolio-tags span {
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: var(--graphite);
  font-size: 12px;
}

.portfolio-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.portfolio-thumbs figure {
  aspect-ratio: 1.18 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.portfolio-detail {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.portfolio-card-featured > .portfolio-detail {
  margin-top: 0;
  padding: 24px 30px 30px;
}

.portfolio-detail summary {
  width: max-content;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--ink);
  padding: 10px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: border-color var(--transition), color var(--transition);
}

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

.portfolio-detail summary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.portfolio-detail-content {
  display: grid;
  gap: 26px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.portfolio-detail-text {
  display: grid;
  gap: 14px;
}

.portfolio-detail h4,
.portfolio-detail h5 {
  margin: 0;
  color: var(--ink);
}

.portfolio-detail h4 {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.portfolio-detail h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.portfolio-detail-lists {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio-detail ul,
.portfolio-facts dl {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.portfolio-detail li {
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.5;
}

.portfolio-facts dl {
  grid-template-columns: 110px minmax(0, 1fr);
}

.portfolio-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.portfolio-facts dd {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.45;
}

.portfolio-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portfolio-detail-gallery figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.portfolio-detail-gallery figure:first-child {
  grid-column: 1 / -1;
}

.portfolio-detail-gallery img {
  aspect-ratio: 16 / 10;
  height: auto;
  background: var(--stone);
}

.portfolio-detail-gallery figcaption {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.project-stories {
  display: grid;
  gap: 22px;
}

.project-stories-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.project-story-card,
.process-story-card {
  min-width: 0;
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
}

.project-story-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.project-story-card-compact {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}

.project-story-cover {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
  border-bottom: 1px solid var(--line);
}

.project-story-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-story-media {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  border-right: 1px solid var(--line);
  background: var(--stone);
}

.project-story-main-image,
.project-story-thumbs,
.process-story-media figure {
  margin: 0;
}

.project-story-main-image {
  min-height: 360px;
}

.project-story-main-image img,
.project-story-thumbs img,
.process-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-story-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.project-story-thumbs img {
  aspect-ratio: 1.18 / 1;
  background: var(--stone);
}

.project-story-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
}

.project-story-card-compact .project-story-content {
  grid-template-rows: auto auto auto 1fr auto;
  padding: 24px;
}

.project-story-content h3,
.process-story-content h3 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 42px);
  letter-spacing: -0.04em;
}

.project-story-card-compact .project-story-content h3 {
  font-size: clamp(23px, 2vw, 30px);
  letter-spacing: -0.03em;
}

.project-story-content p,
.process-story-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.project-story-content .portfolio-subtitle,
.process-story-content .portfolio-subtitle {
  color: var(--graphite);
  font-weight: 650;
}

.project-result-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 17px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-result-list li {
  position: relative;
  padding-left: 17px;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.45;
}

.project-result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue);
  transform: translateY(-50%);
}

.project-work-list {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-work-list h4 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-work-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-work-list li {
  position: relative;
  padding-left: 17px;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.42;
}

.project-work-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue);
  transform: translateY(-50%);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags span {
  border: 1px solid var(--line);
  padding: 6px 8px;
  color: var(--graphite);
  font-size: 12px;
}

.project-details {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.project-details summary {
  width: max-content;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--ink);
  padding: 10px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: border-color var(--transition), color var(--transition);
}

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

.project-details summary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.project-details-content {
  display: grid;
  gap: 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.project-details h4,
.project-details h5 {
  margin: 0;
  color: var(--ink);
}

.project-details h4 {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.project-details h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.process-story-card {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  background:
    linear-gradient(135deg, rgba(47, 126, 168, 0.08), transparent 38%),
    var(--white);
}

.process-story-media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.65fr);
  gap: 1px;
  background: var(--line);
  border-right: 1px solid var(--line);
}

.process-story-media figure {
  min-height: 280px;
  background: var(--stone);
}

.process-story-media > div {
  display: grid;
  gap: 1px;
}

.process-story-media img {
  background: var(--stone);
}

.process-story-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 32px;
}

.proof-tags-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-tags-mobile span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 11px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 650;
}

.form-steps {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.form-steps span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-weight: 650;
}

.form-steps span:last-child {
  border-bottom: 1px solid var(--line);
}

.form-steps small {
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.form-consent input.is-error {
  outline: 2px solid #8f3f32;
  outline-offset: 2px;
}

.form-consent a {
  color: var(--graphite);
  border-bottom: 1px solid rgba(45, 41, 36, 0.34);
}

.footer-legal {
  align-items: flex-start;
}

.footer-legal p + p {
  margin-top: 4px;
}

.footer-legal .footer-links {
  max-width: 560px;
  justify-content: flex-end;
}

.check-list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--graphite);
}

.check-list li + li {
  margin-top: 8px;
}

.highlight-text {
  margin-top: 34px;
  color: var(--graphite) !important;
  font-weight: 650;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .desktop-copy,
  .desktop-only,
  .desktop-fit-negative,
  .process-timeline {
    display: none !important;
  }

  .mobile-copy,
  .mobile-extra,
  .mobile-process-accordion,
  .fit-mobile-negative,
  .mobile-image-break {
    display: block;
  }

  .site-header {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.22));
    border-bottom: 0;
  }

  .logo-image {
    width: 146px;
    height: 46px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-inner {
    min-height: 84svh;
    padding-top: 112px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(38px, 10vw, 46px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  h3 {
    font-size: 19px;
  }

  .hero-bottom {
    gap: 16px;
    margin-top: 20px;
  }

  .hero-bottom p {
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-cta {
    gap: 10px;
  }

  .rail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .rail-grid article {
    gap: 8px;
    font-size: 14px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .problem-grid > div:last-child {
    margin-top: 26px;
  }

  .pain-list {
    margin: 28px 0 0;
  }

  .pain-list-extra {
    margin-top: 15px;
  }

  .mobile-extra summary {
    margin-top: 18px;
    color: var(--accent-blue-dark);
  }

  .mobile-image-break {
    position: relative;
    min-height: 320px;
    background-position: center;
    background-size: cover;
    color: var(--white);
  }

  .image-break-diagnostics {
    background-image: url("images/diagnostics-object-mono.jpg");
  }

  .image-break-overlay {
    min-height: 320px;
    display: grid;
    align-content: end;
    gap: 20px;
    padding: 28px 20px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.78));
  }

  .image-break-overlay p {
    max-width: 340px;
    margin: 0;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 550;
  }

  .image-break-overlay .button {
    width: max-content;
  }

  .unified-statement {
    font-size: 26px;
    line-height: 1.16;
  }

  .unified-principles > div {
    max-width: none;
  }

  .portfolio-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-cards {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-card-featured {
    grid-column: 1;
  }

  .portfolio-feature-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-cover {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .portfolio-feature-copy {
    padding: 24px 20px;
  }

  .portfolio-card-featured h3 {
    font-size: 30px;
  }

  .portfolio-media {
    min-height: 220px;
  }

  .portfolio-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .portfolio-thumbs figure {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }

  .portfolio-detail summary {
    width: 100%;
    text-align: center;
  }

  .portfolio-card-featured > .portfolio-detail {
    padding: 20px;
  }

  .portfolio-detail-lists,
  .portfolio-detail-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-facts dl {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .project-stories {
    gap: 18px;
  }

  .project-stories-compact {
    grid-template-columns: 1fr;
  }

  .project-story-card,
  .process-story-card {
    grid-template-columns: 1fr;
  }

  .project-story-media,
  .process-story-media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-story-media {
    grid-template-rows: auto auto;
  }

  .project-story-main-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-story-thumbs {
    display: flex;
    gap: 1px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .project-story-thumbs img {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }

  .project-story-content,
  .process-story-content {
    padding: 24px 20px;
  }

  .project-story-content h3,
  .process-story-content h3 {
    font-size: 30px;
  }

  .project-story-card-compact .project-story-content h3 {
    font-size: 27px;
  }

  .project-details summary {
    width: 100%;
    text-align: center;
  }

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

  .process-story-media figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .process-story-media > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-story-media > div img {
    aspect-ratio: 1 / 1;
  }

  .portfolio-empty {
    min-height: 250px;
    padding: 26px 22px;
  }

  .portfolio-empty p {
    font-size: 18px;
  }

  .fit-mobile-negative {
    margin-top: 24px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.58);
  }

  .mobile-process-accordion {
    margin-top: 34px;
    border-top: 1px solid var(--line);
  }

  .mobile-process-accordion details {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .mobile-process-accordion summary {
    color: var(--graphite);
    list-style: none;
  }

  .mobile-process-accordion summary::-webkit-details-marker {
    display: none;
  }

  .mobile-process-accordion summary span {
    margin-right: 12px;
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.12em;
  }

  .mobile-process-accordion p {
    margin: 12px 0 0 37px;
    color: var(--muted);
  }

  .site-control {
    padding: 22px 18px;
  }

  .site-control-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-control-head strong {
    font-size: 20px;
  }

  .site-control-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .object-care-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .object-care-card,
  .control-card {
    padding: 18px;
  }

  .object-care-card-featured {
    grid-row: auto;
  }

  .control-card-main {
    grid-column: auto;
  }

  .control-card-photos {
    grid-column: auto;
  }

  .week-route,
  .control-photo-grid {
    grid-template-columns: 1fr;
  }

  .proof-tags-mobile span {
    font-size: 13px;
  }

  .contact-panel {
    gap: 10px;
  }

  .lead-form {
    padding: 22px 18px;
  }

  .form-card-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .form-card-head h3 {
    font-size: 20px;
  }

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

  .contact-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-options span {
    padding: 13px 10px;
    font-size: 14px;
  }

  .form-consent {
    font-size: 12px;
  }

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

  .privacy-content h1 {
    font-size: 34px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta a {
    min-height: 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 650;
  }

  .mobile-sticky-cta a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-sticky-cta a:nth-child(2) {
    color: #70b3d6;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

  .hero-inner {
    padding-top: 118px;
  }
}
