@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/bebas-neue-latin.woff2") format("woff2");
}

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

:root {
  --paper: #f5f7f4;
  --surface: #ffffff;
  --ink: #171c19;
  --muted: #5e6c64;
  --line: #dce4df;
  --green: #004f2d;
  --green-dark: #004f2d;
  --green-black: #08241a;
  --green-soft: #e5f0e9;
  --red: #d94a3c;
  --blue: #0a66c2;
  --radius: 8px;
  --shadow: 0 18px 54px rgba(10, 35, 25, 0.12);
  --header-height: 108px;
  --display: "Bebas Neue", sans-serif;
  --body: "Inter", sans-serif;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body.is-dialog-open,
body.is-chat-open,
body.is-menu-open {
  overflow: hidden;
}

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

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

a,
button,
input,
select,
textarea {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 79, 45, 0.16);
}

button {
  border: 0;
  cursor: pointer;
}

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

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #f2b134;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 64px), 1280px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 104px;
  scroll-margin-top: var(--header-height);
}

.section--paper {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(0, 79, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 79, 45, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #b9e6ce;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 0.98;
}

h3 {
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background-color: var(--green-dark);
  background-image:
    linear-gradient(rgba(0, 79, 45, 0.92), rgba(0, 79, 45, 0.92)),
    url("./assets/imagegen/header-blueprint-texture-imagegen.webp");
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 36px rgba(0, 34, 20, 0.18);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 25, 15, 0.3);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  position: relative;
  display: block;
  flex: 0 0 330px;
  width: 330px;
  height: 66px;
  overflow: hidden;
}

.brand__full {
  position: absolute;
  top: -29px;
  left: 0;
  width: 330px;
  max-width: none;
  height: 127px;
  object-fit: fill;
  object-position: left top;
  filter: grayscale(1) brightness(0) invert(1);
}

.brand__symbol {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-end: 34px;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  padding-block: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: #b9e6ce;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.primary-nav a.is-active {
  color: #fff;
}

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

.menu-toggle,
.menu-close,
.menu-backdrop {
  display: none;
}

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: 600px;
  height: min(600px, calc(100svh - 150px));
  overflow: hidden;
  background: var(--green-black);
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 20, 14, 0.9) 0%, rgba(5, 20, 14, 0.64) 44%, rgba(5, 20, 14, 0.2) 75%),
    linear-gradient(0deg, rgba(4, 18, 12, 0.36), transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 92px;
  line-height: 0.92;
}

.hero h1 span {
  color: #b9e6ce;
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 24px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: #004f2d;
  color: #fff;
}

.button--primary:hover {
  background: #003e25;
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--quiet {
  border-color: var(--line);
  background: var(--surface);
  color: var(--green-dark);
}

.button--quiet:hover {
  border-color: var(--green);
  color: var(--green);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.metrics {
  position: relative;
  overflow: hidden;
  background-color: #062419;
  background-image:
    linear-gradient(rgba(95, 180, 132, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 180, 132, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
}

.metrics__grid {
  min-height: 164px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.metrics article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  color: #69d29b;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:not(.eyebrow),
.section-heading > div > p:not(.eyebrow) {
  margin-bottom: 0;
}

.section-heading--wide {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 56px;
}

.section-heading--wide > p {
  margin: 0 0 7px;
}

.section-heading--action {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.section-heading--action > div {
  max-width: 850px;
}

.section-heading--action .button {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.about-region {
  padding-bottom: 120px;
}

.about-region__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.58fr) minmax(300px, 0.88fr);
  align-items: start;
  gap: 28px;
}

.about-region__copy {
  padding: 10px 28px 0 0;
}

.about-region__copy > p:first-child {
  margin-top: 0;
}

.about-region__copy strong {
  color: var(--ink);
}

.about-facts {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts dt {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.button-row--dark {
  margin-top: 32px;
}

.about-region__portrait {
  margin: 0;
}

.about-region__portrait img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-region__portrait figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.region-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(20, 42, 31, 0.08);
}

.region-panel__map {
  aspect-ratio: 2.5 / 1;
  overflow: hidden;
  background: var(--green-black);
}

.region-panel__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-panel > .eyebrow,
.region-panel > h3,
.region-panel > p,
.region-states {
  margin-right: 24px;
  margin-left: 24px;
}

.region-panel > .eyebrow {
  margin-top: 24px;
}

.region-panel h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
}

.region-panel > p:not(.eyebrow) {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.6;
}

.region-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-top: 20px;
  margin-bottom: 26px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.region-states li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.region-states li span {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.team-section {
  background: #fff;
}

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

.team-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(10, 35, 25, 0.08);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-origin: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-card:hover,
.team-card.is-hovering {
  z-index: 2;
  border-color: rgba(0, 79, 45, 0.5);
  box-shadow: 0 28px 70px rgba(7, 43, 27, 0.18);
  transform: perspective(1000px) translateY(-8px) scale(1.025) rotateX(var(--rx)) rotateY(var(--ry));
}

.team-card__media,
.team-card__placeholder {
  aspect-ratio: 4 / 4.65;
  overflow: hidden;
  background: var(--green-soft);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 280ms ease;
}

.team-card:hover .team-card__media img {
  transform: scale(1.035);
}

.team-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 79, 45, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 79, 45, 0.08) 1px, transparent 1px),
    #edf4ef;
  background-size: 28px 28px;
}

.team-card__placeholder span {
  color: var(--green);
  font-family: var(--display);
  font-size: 82px;
}

.team-card__placeholder small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.team-card__body {
  min-height: 244px;
  padding: 24px;
}

.team-card__body > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 10px 0 4px;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
}

.team-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.team-card p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.method-board {
  padding: 0;
  background: transparent;
}

.method-board__heading {
  max-width: 900px;
}

.method-board__heading h2 {
  margin-bottom: 32px;
}

.method-board__track {
  display: none;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.method-grid article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  background: #004f2d;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.method-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.46);
  background: var(--green-dark);
}

.method-index {
  display: block;
  color: #b9e6ce;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-grid h3 {
  margin: 42px 0 8px;
  font-family: var(--display);
  font-size: 54px;
  font-weight: 400;
  color: #fff;
}

.method-grid strong {
  color: #b9e6ce;
  font-size: 12px;
  text-transform: uppercase;
}

.method-grid p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.portfolio-section {
  background: #fff;
}

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

.project-card {
  position: relative;
  grid-column: span 4;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-black);
  box-shadow: 0 18px 48px rgba(12, 31, 22, 0.14);
}

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

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

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

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 20, 14, 0.92), rgba(5, 20, 14, 0.04) 68%);
}

.project-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px;
}

.project-card span {
  color: #aee0c4;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 620px;
  margin: 8px 0 4px;
  color: #fff;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
}

.project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.process-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(10, 35, 25, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.process-card:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow: 0 26px 66px rgba(10, 35, 25, 0.15);
}

.process-card__image {
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #edf1ee;
}

.process-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
}

.process-card > div:last-child {
  min-height: 216px;
  padding: 22px;
}

.process-card span {
  color: var(--green);
  font-family: var(--display);
  font-size: 32px;
}

.process-card h3 {
  margin: 26px 0 8px;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 400;
}

.process-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services-preview article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--green);
  padding: 28px;
  background: var(--paper);
}

.services-preview span {
  color: #c7d9cf;
  font-family: var(--display);
  font-size: 68px;
  line-height: 1;
}

.services-preview h3 {
  margin: auto 0 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.services-preview p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.differentiators__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 80px;
}

.differentiator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.differentiator-grid article {
  min-height: 200px;
  border-radius: var(--radius);
  padding: 28px;
  background: var(--green);
  color: #fff;
}

.differentiator-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.differentiator-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.expectation-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
}

.expectation-grid h3 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
}

.expectation-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 88px;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
}

.faq-item button span {
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  font-size: 15px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.contact-section {
  overflow: hidden;
  background-color: var(--green-black);
  background-image:
    linear-gradient(rgba(0, 43, 25, 0.7), rgba(0, 43, 25, 0.86)),
    url("./assets/imagegen/header-blueprint-texture-imagegen.webp");
  background-position: center;
  background-size: cover;
}

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

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.contact-details a,
.contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.contact-details > * > span {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #83d1a6;
  font-size: 11px;
  font-weight: 800;
}

.contact-details small {
  display: block;
  margin-bottom: 2px;
  color: #83d1a6;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details > div > p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  box-shadow: 0 28px 74px rgba(0, 16, 9, 0.26);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f9fbf9;
  color: var(--ink);
  outline: 0;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 79, 45, 0.1);
}

.contact-form__wide,
.contact-form__footer {
  grid-column: 1 / -1;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-form__footer .button {
  background: var(--green);
  color: #fff;
}

.contact-form__footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.site-footer {
  padding: 68px 0 24px;
  background: #07150f;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 0.9fr 0.65fr;
  gap: 52px;
}

.site-footer__grid > div:first-child img {
  width: 336px;
  height: 60px;
  object-fit: cover;
  object-position: left 42%;
  filter: grayscale(1) brightness(0) invert(1);
}

.site-footer strong {
  display: block;
  margin-bottom: 16px;
  color: #b9e6ce;
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer nav,
.site-footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer nav > a,
.site-footer__grid > div:not(:first-child) > a {
  min-height: 28px;
  padding-block: 3px;
}

.site-footer a:hover {
  color: #fff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 13px;
  color: #fff !important;
  font-size: 0 !important;
  line-height: 1;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.38),
    inset 0 -4px 8px rgba(0, 0, 0, 0.2),
    0 8px 14px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.46),
    inset 0 -4px 8px rgba(0, 0, 0, 0.18),
    0 12px 20px rgba(0, 0, 0, 0.32);
}

.social-link span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent !important;
  color: #fff;
}

.social-link span svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.22));
}

.social-links {
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links > strong {
  flex-basis: 100%;
  margin-bottom: 2px;
}

.social-link--linkedin {
  background: linear-gradient(145deg, #2e8fe8, #0a66c2 58%, #064883);
}

.social-link--instagram {
  background: linear-gradient(145deg, #feda75 0%, #fa7e1e 28%, #d62976 59%, #4f5bd5 100%);
}

.social-link--instagram span svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link--instagram span svg circle:last-child {
  fill: currentColor;
}

.social-link--facebook {
  background: linear-gradient(145deg, #4b9cff, #1877f2 58%, #0d4caa);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 11px;
}

/* Internal pages */

.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: var(--green-black);
  background-image:
    linear-gradient(90deg, rgba(4, 26, 16, 0.94), rgba(4, 26, 16, 0.5)),
    url("./assets/imagegen/header-blueprint-texture-imagegen.webp");
  background-position: center;
  background-size: cover;
}

.inner-hero--media {
  min-height: 620px;
}

.inner-hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
  padding-block: 70px;
}

.inner-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 82px;
  font-weight: 400;
  line-height: 0.94;
}

.inner-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.inner-hero__copy .button-row {
  margin-top: 30px;
}

.inner-hero__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 82px;
}

.page-intro-grid .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.page-intro-copy p:first-child {
  margin-top: 0;
}

.principle-grid,
.role-grid,
.deliverable-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle-grid {
  margin-top: 48px;
}

.principle-grid article,
.role-grid article,
.deliverable-grid article,
.audience-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
}

.principle-grid h3,
.role-grid h3,
.deliverable-grid h3,
.audience-grid h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.principle-grid p,
.role-grid p,
.deliverable-grid p,
.audience-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.profile-list {
  display: grid;
  gap: 28px;
  margin-top: 52px;
}

.detail-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.detail-profile:nth-child(even) {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.detail-profile:nth-child(even) .detail-profile__media {
  order: 2;
}

.detail-profile__media,
.detail-profile__placeholder {
  min-height: 520px;
  background: var(--green-soft);
}

.detail-profile__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.detail-profile__placeholder {
  display: grid;
  place-items: center;
  color: var(--green);
  font-family: var(--display);
  font-size: 120px;
  background:
    linear-gradient(rgba(0, 79, 45, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 79, 45, 0.07) 1px, transparent 1px),
    var(--green-soft);
  background-size: 32px 32px;
}

.detail-profile__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.detail-profile__copy h2 {
  margin-bottom: 6px;
  font-size: 58px;
}

.detail-profile__role {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.responsibility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.responsibility-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.responsibility-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.workflow-band {
  background: var(--green-black);
  color: #fff;
}

.workflow-band h2,
.workflow-band h3 {
  color: #fff;
}

.workflow-band p {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.16);
}

.workflow-steps article {
  min-height: 220px;
  padding: 26px;
  background: var(--green-black);
}

.workflow-steps span {
  color: #7bd4a5;
  font-family: var(--display);
  font-size: 40px;
}

.workflow-steps h3 {
  margin-top: 48px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.workflow-steps p {
  font-size: 13px;
}

.process-detail-list {
  display: grid;
  gap: 26px;
  margin-top: 52px;
}

.process-detail {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 34px;
  border-top: 1px solid var(--line);
  padding: 38px 0 10px;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.process-detail__number {
  color: #66816f;
  font-family: var(--display);
  font-size: 98px;
  line-height: 0.9;
}

.process-detail h2 {
  font-size: 50px;
}

.process-detail__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.process-detail__details article {
  border-left: 2px solid var(--green);
  padding-left: 18px;
}

.process-detail__details h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 14px;
}

.process-detail__details p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 13px 0 13px 30px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 2px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.portfolio-toolbar button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.portfolio-toolbar button:hover,
.portfolio-toolbar button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

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

.portfolio-project {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.portfolio-project[hidden] {
  display: none;
}

.portfolio-project__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #eef2ef;
}

.portfolio-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.portfolio-project__media:hover img {
  transform: scale(1.025);
}

.portfolio-project__copy {
  padding: 28px;
}

.portfolio-project__copy > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-project__copy h2 {
  margin: 10px 0;
  font-size: 43px;
}

.portfolio-project__copy p {
  margin-bottom: 0;
  font-size: 14px;
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.gallery-modal {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2, 12, 8, 0.86);
  backdrop-filter: blur(14px);
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100svh - 56px);
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.gallery-dialog__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.gallery-dialog__top h2 {
  margin: 0;
  font-size: 42px;
}

.gallery-close,
.gallery-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 24px;
}

.gallery-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  background: #e8ece9;
}

.gallery-stage img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-arrow--prev {
  left: 18px;
}

.gallery-arrow--next {
  right: 18px;
}

.gallery-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 24px;
}

.gallery-meta p {
  margin: 0;
  font-size: 13px;
}

.gallery-thumbs {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.gallery-thumbs button {
  flex: 0 0 82px;
  width: 82px;
  height: 62px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 0;
}

.gallery-thumbs button.is-active {
  border-color: var(--green);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-media {
  aspect-ratio: 4 / 3;
}

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

.service-detail {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: #fff;
}

.service-detail > span {
  color: #66816f;
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
}

.service-detail h2 {
  margin: auto 0 14px;
  font-size: 45px;
}

.service-detail p {
  margin-bottom: 0;
  font-size: 14px;
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-detail li {
  color: var(--muted);
  font-size: 12px;
}

.cta-band {
  padding-block: 76px;
  background: var(--green);
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-band h2 {
  max-width: 800px;
  margin: 0;
  color: #fff;
}

/* Contact orbit */

.contact-orbit {
  position: fixed;
  z-index: 1180;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
}

.contact-orbit__toggle {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 57, 33, 0.3);
}

.contact-orbit__toggle::before,
.contact-orbit__toggle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.contact-orbit__toggle::before {
  inset: -8px;
  border: 1px dashed rgba(0, 79, 45, 0.5);
  animation: contact-spin 8s linear infinite;
}

.contact-orbit__toggle::after {
  inset: -2px;
  border: 2px solid rgba(86, 218, 148, 0.45);
  animation: contact-pulse 2.4s ease-out infinite;
}

.contact-orbit__toggle svg,
.contact-orbit__action svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-orbit__actions {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-orbit__action {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 12px 30px rgba(0, 28, 16, 0.18);
  opacity: 0;
  transform: translate(0, 0) scale(0.75);
  pointer-events: none;
  transition: transform 220ms ease, opacity 180ms ease;
}

.contact-orbit__action span {
  position: absolute;
  right: 56px;
  width: max-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(0, 28, 16, 0.12);
}

.contact-orbit__action--whatsapp {
  --tx: -22px;
  --ty: -104px;
  color: #25d366;
}

.contact-orbit__action--message {
  --tx: -84px;
  --ty: -76px;
  color: #007aff;
}

.contact-orbit__action--call {
  --tx: -112px;
  --ty: -17px;
  color: var(--red);
}

.contact-orbit__action--email {
  --tx: -90px;
  --ty: 44px;
  color: #f4a000;
}

.contact-orbit.is-open .contact-orbit__action {
  opacity: 1;
  transform: translate(var(--tx), var(--ty)) scale(1);
  pointer-events: auto;
}

.contact-orbit.is-open .contact-orbit__actions {
  pointer-events: auto;
}

@keyframes contact-spin {
  to { transform: rotate(360deg); }
}

@keyframes contact-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70%, 100% { transform: scale(1.3); opacity: 0; }
}

/* Chat */

.chat-widget {
  position: fixed;
  z-index: 1200;
  right: 104px;
  bottom: 24px;
}

.chat-launcher {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 14px 38px rgba(0, 48, 28, 0.22);
}

.chat-launcher svg,
.chat-send svg,
.chat-mic svg,
.chat-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 380px;
  height: min(590px, calc(100svh - 140px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(0, 78, 45, 0.2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 28, 16, 0.28);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chat-widget.is-open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background-color: var(--green-dark);
  background-image: linear-gradient(rgba(0, 45, 26, 0.45), rgba(0, 45, 26, 0.45)), url("./assets/imagegen/header-blueprint-texture-imagegen.webp");
  background-size: cover;
  color: #fff;
}

.chat-header strong {
  display: block;
  font-size: 14px;
}

.chat-header small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.chat-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.chat-messages {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--paper);
}

.chat-message {
  max-width: 86%;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.chat-message--assistant {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.chat-message--user {
  align-self: flex-end;
  background: var(--green);
  color: #fff;
}

.chat-compose {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chat-compose textarea {
  min-height: 46px;
  max-height: 110px;
  resize: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  outline: 0;
  font-size: 13px;
}

.chat-mic,
.chat-send {
  align-self: end;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.chat-mic {
  background: var(--green-soft);
  color: var(--green-dark);
}

.chat-mic.is-listening {
  background: #ffe5e2;
  color: var(--red);
  animation: contact-pulse 1.5s ease infinite;
}

.chat-send {
  background: var(--green);
  color: #fff;
}

.chat-send:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.hero [data-reveal],
.inner-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1120px) {
  :root {
    --header-height: 96px;
  }

  .container {
    width: min(calc(100% - 40px), 1100px);
  }

  .brand {
    flex-basis: 270px;
    width: 270px;
    height: 56px;
  }

  .brand__full {
    width: 270px;
    height: 104px;
    top: -22px;
  }

  .primary-nav {
    gap: 20px;
  }

  h2 {
    font-size: 56px;
  }

  .about-region__grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
  }

  .region-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding-right: 24px;
  }

  .region-panel__map {
    grid-row: 1 / 6;
    height: 100%;
    min-height: 280px;
  }

  .region-states {
    margin-right: 0;
  }

  .process-grid,
  .services-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }

  .site-footer__grid .social-links {
    grid-column: 2 / 4;
  }

  .inner-hero__grid {
    gap: 44px;
  }

  .inner-hero__copy h1 {
    font-size: 70px;
  }

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

  .process-detail {
    grid-template-columns: 100px 0.85fr 1.15fr;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    gap: 24px;
  }

  .brand {
    flex-basis: 220px;
    width: 220px;
    height: 50px;
  }

  .brand__full {
    width: 220px;
    height: 85px;
    top: -18px;
  }

  .primary-nav {
    max-width: calc(100vw - 280px);
    overflow-x: auto;
    gap: 18px;
    margin-inline-end: 0;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding-block: 82px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .section-heading--wide,
  .section-heading--action,
  .differentiators__layout,
  .faq-layout,
  .contact-layout,
  .page-intro-grid,
  .readiness-layout {
    grid-template-columns: 1fr;
    display: grid;
    gap: 36px;
  }

  .section-heading--action .button {
    width: fit-content;
  }

  .about-region__grid {
    grid-template-columns: 1fr 0.66fr;
  }

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

  .method-board {
    padding: 0;
  }

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

  .method-board__track {
    display: none;
  }

  .method-grid article {
    min-height: 0;
  }

  .method-grid h3 {
    margin-top: 36px;
  }

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

  .project-card,
  .project-card--wide {
    grid-column: auto;
    min-height: 380px;
  }

  .differentiator-grid,
  .expectation-grid,
  .principle-grid,
  .role-grid,
  .deliverable-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-intro-grid .section-heading {
    position: static;
  }

  .inner-hero__grid {
    grid-template-columns: 1fr;
  }

  .inner-hero__media {
    max-height: 420px;
  }

  .detail-profile,
  .detail-profile:nth-child(even) {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .detail-profile:nth-child(even) .detail-profile__media {
    order: 0;
  }

  .detail-profile__copy {
    padding: 34px;
  }

  .detail-profile__copy h2 {
    font-size: 48px;
  }

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

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

  .process-detail {
    grid-template-columns: 80px 1fr;
  }

  .process-detail__details {
    grid-column: 2;
  }

  .portfolio-page-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .inner-hero {
    background-image:
      linear-gradient(90deg, rgba(4, 26, 16, 0.94), rgba(4, 26, 16, 0.5)),
      url("./assets/optimized/header-blueprint-texture-mobile.webp");
  }

  .inner-hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  :root {
    --header-height: 64px;
  }

  .site-header {
    background-image:
      linear-gradient(rgba(0, 79, 45, 0.92), rgba(0, 79, 45, 0.92)),
      url("./assets/optimized/header-blueprint-texture-mobile.webp");
  }

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

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
  }

  .brand {
    grid-column: 2;
    width: 50px;
    height: 50px;
    overflow: hidden;
  }

  .brand__full {
    display: none;
  }

  .brand__symbol {
    position: absolute;
    top: -9px;
    left: -29px;
    display: block;
    width: 230px !important;
    height: 89px !important;
    max-width: none;
    object-fit: fill;
    filter: grayscale(1) brightness(0) invert(1);
  }

  .menu-toggle {
    z-index: 1003;
    grid-column: 3;
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 35, 20, 0.28);
    color: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .menu-backdrop {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    padding: 0;
    border: 0;
    background: rgba(3, 19, 11, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .primary-nav {
    position: fixed;
    z-index: 1002;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: auto;
    display: flex;
    width: min(62vw, 244px);
    min-height: 0;
    max-height: calc(100dvh - var(--header-height) - 12px);
    max-width: none;
    padding: 10px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 0;
    border-radius: 0 0 0 18px;
    background-color: var(--green);
    background-image: linear-gradient(rgba(0, 79, 45, 0.08), rgba(0, 79, 45, 0.08)), url("./assets/optimized/header-blueprint-texture-mobile.webp");
    background-position: center;
    background-size: cover;
    box-shadow: -16px 18px 42px rgba(0, 20, 12, 0.22);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 180ms ease, transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-header.is-menu-open .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

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

  body.is-menu-open .contact-orbit,
  body.is-menu-open .chat-widget {
    opacity: 0;
    pointer-events: none;
  }

  .menu-close {
    display: none;
  }

  .menu-close span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
  }

  .menu-close span:first-child {
    transform: translateY(0.75px) rotate(45deg);
  }

  .menu-close span:last-child {
    transform: translateY(-0.75px) rotate(-45deg);
  }

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--body);
    font-size: clamp(15px, 4.3vw, 18px);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.3;
    text-transform: none;
  }

  .primary-nav a::after {
    right: auto;
    bottom: -1px;
    width: 52px;
  }

  .primary-nav a:active,
  .primary-nav a.is-active {
    color: #fff;
  }

  .section {
    padding-block: 68px;
  }

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

  h2 {
    font-size: 44px;
  }

  p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero {
    min-height: 580px;
    height: calc(100svh - 118px);
    max-height: 760px;
  }

  .hero__video {
    object-position: center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(4, 18, 12, 0.92), rgba(4, 18, 12, 0.18) 78%);
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero__lead {
    margin: 18px 0 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .metrics__grid {
    min-height: 174px;
    grid-template-columns: 1fr 1fr;
  }

  .metrics article {
    min-height: 87px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .metrics article:nth-child(even) {
    border-right: 0;
  }

  .metrics article:nth-child(n+3) {
    border-bottom: 0;
  }

  .metrics strong {
    font-size: 40px;
  }

  .metrics span {
    margin-top: 3px;
    font-size: 8px;
  }

  .section-heading--wide,
  .section-heading--action {
    margin-bottom: 34px;
  }

  .about-region__grid {
    grid-template-columns: 1fr;
  }

  .about-region__copy {
    padding-right: 0;
  }

  .about-region__portrait {
    width: 72%;
  }

  .region-panel {
    display: block;
    padding-right: 0;
  }

  .region-panel__map {
    min-height: 0;
  }

  .region-states {
    margin-right: 24px;
  }

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

  .team-card {
    min-width: 0;
  }

  .team-card__media,
  .team-card__placeholder {
    aspect-ratio: 4 / 5;
  }

  .team-card__placeholder span {
    font-size: 48px;
  }

  .team-card__body {
    min-height: 154px;
    padding: 14px 12px;
  }

  .team-card__body > span {
    font-size: 8px;
  }

  .team-card h3 {
    margin-top: 7px;
    font-size: 27px;
    overflow-wrap: anywhere;
  }

  .team-card strong {
    font-size: 10px;
    line-height: 1.3;
  }

  .team-card p {
    display: none;
  }

  .team-card:hover,
  .team-card.is-hovering {
    transform: none;
  }

  .method-board {
    padding: 0;
  }

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

  .method-grid article {
    padding: 22px;
  }

  .method-grid h3 {
    font-size: 46px;
  }

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

  .project-card,
  .project-card--wide {
    min-height: 340px;
  }

  .project-card h3 {
    font-size: 34px;
  }

  .process-grid,
  .services-preview,
  .differentiator-grid,
  .expectation-grid,
  .principle-grid,
  .role-grid,
  .deliverable-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .process-card__image {
    aspect-ratio: auto;
    min-height: 230px;
  }

  .process-card > div:last-child {
    min-height: 230px;
    padding: 16px;
  }

  .process-card h3 {
    margin-top: 28px;
    font-size: 29px;
  }

  .process-card p {
    font-size: 11px;
  }

  .faq-item button {
    min-height: 70px;
    font-size: 14px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-form__wide,
  .contact-form__footer {
    grid-column: auto;
  }

  .contact-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__footer p {
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid .social-links {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .inner-hero,
  .inner-hero--media {
    min-height: 0;
  }

  .inner-hero__grid {
    gap: 34px;
    padding-block: 62px;
  }

  .inner-hero__copy h1 {
    font-size: 58px;
  }

  .inner-hero__copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .detail-profile,
  .detail-profile:nth-child(even) {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .detail-profile__media,
  .detail-profile__placeholder {
    min-height: 430px;
  }

  .detail-profile__copy {
    padding: 24px 18px;
  }

  .detail-profile__copy h2 {
    font-size: 38px;
  }

  .detail-profile__role {
    font-size: 10px;
  }

  .detail-profile__copy > p:not(.detail-profile__role) {
    font-size: 12px;
    line-height: 1.55;
  }

  .responsibility-list li {
    font-size: 10px;
  }

  .workflow-steps {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-steps article {
    min-height: 190px;
    padding: 18px;
  }

  .workflow-steps h3 {
    margin-top: 24px;
    font-size: 24px;
  }

  .workflow-steps p {
    font-size: 11px;
  }

  .process-detail {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .process-detail__number {
    font-size: 60px;
  }

  .process-detail h2 {
    font-size: 38px;
  }

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

  .portfolio-project__copy h2,
  .service-detail h2 {
    font-size: 38px;
  }

  .gallery-modal {
    padding: 10px;
  }

  .gallery-dialog {
    max-height: calc(100svh - 20px);
  }

  .gallery-stage {
    min-height: 360px;
  }

  .contact-orbit {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .contact-orbit__toggle {
    width: 54px;
    height: 54px;
  }

  .contact-orbit__action {
    right: 4px;
    bottom: 4px;
    width: 46px;
    height: 46px;
  }

  .contact-orbit__action--whatsapp { --tx: 0; --ty: -74px; }
  .contact-orbit__action--message { --tx: 0; --ty: -130px; }
  .contact-orbit__action--call { --tx: 0; --ty: -186px; }
  .contact-orbit__action--email { --tx: 0; --ty: -242px; }

  .contact-orbit__action span {
    right: 54px;
  }

  .chat-widget {
    right: 80px;
    bottom: 14px;
  }

  .chat-launcher {
    width: 54px;
    height: 54px;
  }

  .chat-panel {
    position: fixed;
    right: 10px;
    bottom: 78px;
    left: 10px;
    width: auto;
    height: min(610px, calc(100svh - 96px));
    transform-origin: bottom center;
  }
}

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

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

  .hero__video {
    display: none;
  }

  .hero {
    background-image: url("./assets/hero/hero-nestlab-house-desktop-poster.webp");
    background-position: center;
    background-size: cover;
  }

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

/* Internal-page layout corrections */
.inner-hero > .container {
  width: min(calc(100% - 64px), 1280px);
  margin-inline: auto;
}

@media (max-width: 1120px) {
  .inner-hero > .container {
    width: min(calc(100% - 40px), 1100px);
  }
}

@media (max-width: 640px) {
  .inner-hero > .container {
    width: min(calc(100% - 28px), 560px);
  }

  .detail-profile,
  .detail-profile:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .detail-profile:nth-child(even) .detail-profile__media {
    order: 0;
  }

  .detail-profile__media,
  .detail-profile__placeholder {
    min-height: 360px;
  }
}

/* Mobile system parity with the landing page */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: clip;
  }

  .section {
    padding-block: 48px;
  }

  .section-heading,
  .section-heading--wide,
  .section-heading--action {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .page-intro-grid h2,
  .cta-band h2 {
    font-size: clamp(36px, 10.5vw, 42px);
    line-height: 0.96;
  }

  .section-heading > p:not(.eyebrow),
  .page-intro-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .inner-hero__grid {
    gap: 20px;
    padding-block: 36px;
  }

  .inner-hero__copy h1 {
    font-size: clamp(42px, 12.2vw, 48px);
    line-height: 0.92;
  }

  .inner-hero__copy p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .inner-hero__copy .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .inner-hero__copy .button {
    width: 100%;
    min-height: 42px;
    height: auto;
    padding: 8px 10px;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }

  .inner-hero__media,
  .services-hero-media {
    max-height: none;
    border-radius: 7px;
  }

  .page-intro-grid,
  .readiness-layout {
    gap: 18px;
  }

  .principle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
  }

  .principle-grid article {
    min-height: 176px;
    padding: 14px 11px;
  }

  .principle-grid h3 {
    font-size: 24px;
    line-height: 0.98;
  }

  .principle-grid p {
    font-size: 9px;
    line-height: 1.45;
  }

  .profile-list {
    gap: 12px;
    margin-top: 28px;
  }

  .detail-profile,
  .detail-profile:nth-child(even) {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  }

  .detail-profile:nth-child(even) .detail-profile__media {
    order: 0;
  }

  .detail-profile__media,
  .detail-profile__placeholder {
    min-height: 100%;
  }

  .detail-profile__copy {
    justify-content: flex-start;
    padding: 15px 12px;
  }

  .detail-profile__copy .eyebrow {
    font-size: 8px;
  }

  .detail-profile__copy h2 {
    margin-top: 5px;
    font-size: clamp(27px, 8vw, 32px);
    line-height: 0.94;
  }

  .detail-profile__role {
    margin-bottom: 12px;
    font-size: 8px;
    line-height: 1.3;
  }

  .detail-profile__copy > p:not(.detail-profile__role) {
    font-size: 10px;
    line-height: 1.45;
  }

  .responsibility-list {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .responsibility-list li {
    padding-left: 11px;
    font-size: 8.5px;
    line-height: 1.35;
  }

  .responsibility-list li::before {
    top: 4px;
    width: 4px;
    height: 4px;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .workflow-steps article {
    min-height: 142px;
    padding: 14px;
  }

  .workflow-steps article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .workflow-steps span {
    font-size: 32px;
  }

  .workflow-steps h3 {
    margin-top: 20px;
    font-size: 22px;
    line-height: 0.98;
  }

  .workflow-steps p {
    font-size: 9px;
    line-height: 1.45;
  }

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

  .method-grid article {
    min-width: 0;
    padding: 14px 11px;
  }

  .method-grid h3 {
    font-size: 32px;
  }

  .method-grid strong,
  .method-grid p {
    font-size: 9px;
    line-height: 1.4;
  }

  .process-detail-list {
    gap: 14px;
    margin-top: 28px;
  }

  .process-detail {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0 6px;
  }

  .process-detail__number {
    font-size: 48px;
  }

  .process-detail h2 {
    font-size: 32px;
  }

  .process-detail > div > p {
    font-size: 11px;
    line-height: 1.5;
  }

  .process-detail__details {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .process-detail__details article {
    padding-left: 10px;
  }

  .process-detail__details h3 {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .process-detail__details p {
    font-size: 9px;
    line-height: 1.45;
  }

  .portfolio-toolbar {
    gap: 6px;
    margin-bottom: 20px;
  }

  .portfolio-toolbar button {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 9px;
  }

  .portfolio-page-grid,
  .services-detail-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .portfolio-project__copy {
    padding: 13px 11px;
  }

  .portfolio-project__copy > span {
    font-size: 8px;
  }

  .portfolio-project__copy h2,
  .service-detail h2 {
    margin-block: 7px;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 0.96;
  }

  .portfolio-project__copy p,
  .service-detail p {
    font-size: 9.5px;
    line-height: 1.45;
  }

  .project-facts {
    gap: 5px 9px;
    margin-top: 10px;
    padding-top: 9px;
    font-size: 8px;
    line-height: 1.35;
  }

  .service-detail {
    min-height: 340px;
    padding: 14px 12px;
  }

  .service-detail > span {
    font-size: 42px;
  }

  .service-detail h2 {
    margin-top: auto;
  }

  .service-detail ul {
    gap: 5px 8px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .service-detail li {
    font-size: 8px;
    line-height: 1.35;
  }

  .audience-grid article {
    min-height: 170px;
    padding: 14px 12px;
  }

  .audience-grid h3 {
    font-size: 25px;
    line-height: 0.98;
  }

  .audience-grid p {
    font-size: 9.5px;
    line-height: 1.45;
  }

  .cta-band {
    padding-block: 34px;
  }

  .cta-band__inner {
    gap: 18px;
  }

  .site-footer {
    padding-block: 28px 18px;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.22fr) minmax(0, 0.96fr);
    gap: 20px 8px;
    text-align: center;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
  }

  .site-footer__grid > div:first-child img {
    width: 210px;
    height: 43px;
    object-position: center 42%;
  }

  .site-footer__grid > div:first-child p {
    max-width: 330px;
    margin-bottom: 0;
  }

  .site-footer strong {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 9px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .site-footer nav,
  .site-footer__grid > div:not(:first-child) {
    min-width: 0;
    align-items: center;
  }

  .site-footer nav > a,
  .site-footer__grid > div:not(:first-child) > a {
    min-height: 24px;
    justify-content: center;
    padding-block: 2px;
  }

  .site-footer__grid .social-links {
    grid-column: auto;
    justify-content: center;
    gap: 4px;
  }

  .social-link {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .social-link span,
  .social-link span svg {
    width: 16px;
    height: 16px;
  }

  .site-footer__bottom {
    align-items: center;
    gap: 3px;
    margin-top: 20px;
    padding-top: 13px;
    text-align: center;
  }

  .site-footer__bottom p {
    width: 100%;
    font-size: 9px;
  }
}

/* Process page mobile compactness and centered reading flow */
@media (max-width: 640px) {
  body[data-page="process"] .inner-hero__grid {
    gap: 12px;
    padding-block: 22px;
  }

  body[data-page="process"] .inner-hero__copy {
    text-align: center;
  }

  body[data-page="process"] .inner-hero__copy .eyebrow {
    font-size: 9px;
  }

  body[data-page="process"] .inner-hero__copy h1 {
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(37px, 10.3vw, 41px);
    line-height: 0.94;
  }

  body[data-page="process"] .inner-hero__copy p:not(.eyebrow) {
    max-width: 340px;
    margin: 12px auto 0;
    font-size: 12px;
    line-height: 1.45;
  }

  body[data-page="process"] .inner-hero__copy .button-row {
    width: min(100%, 320px);
    gap: 6px;
    margin: 14px auto 0;
  }

  body[data-page="process"] .inner-hero__copy .button {
    min-height: 36px;
    padding: 6px 8px;
    font-size: 9px;
  }

  body[data-page="process"] .inner-hero__media {
    aspect-ratio: 16 / 9;
  }

  body[data-page="process"] main > section:not(.inner-hero),
  body[data-page="process"] main > section:not(.inner-hero) h2,
  body[data-page="process"] main > section:not(.inner-hero) h3,
  body[data-page="process"] main > section:not(.inner-hero) p,
  body[data-page="process"] .page-intro-copy,
  body[data-page="process"] .checklist li {
    text-align: center;
  }

  body[data-page="process"] .page-intro-grid,
  body[data-page="process"] .readiness-layout {
    justify-items: center;
  }

  body[data-page="process"] .section-heading {
    width: 100%;
    margin-inline: auto;
  }

  body[data-page="process"] .process-detail {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 10px;
  }

  body[data-page="process"] .process-detail__number {
    font-size: 46px;
  }

  body[data-page="process"] .process-detail > div {
    width: 100%;
  }

  body[data-page="process"] .process-detail__details {
    grid-column: 1;
    width: 100%;
  }

  body[data-page="process"] .process-detail__details article {
    border-top: 2px solid var(--green);
    border-left: 0;
    padding: 10px 6px 0;
  }

  body[data-page="process"] .checklist {
    width: 100%;
  }

  body[data-page="process"] .checklist li {
    padding-inline: 30px;
  }

  body[data-page="process"] .deliverable-grid article,
  body[data-page="process"] .workflow-steps article {
    text-align: center;
  }

  body[data-page="process"] .cta-band__inner {
    align-items: center;
    text-align: center;
  }
}
