:root {
  --ink: #202326;
  --charcoal: #202426;
  --charcoal-deep: #171a1c;
  --accent: #ff4b38;
  --accent-dark: #e33122;
  --soft-blue: #dcecef;
  --soft-blue-2: #edf5f6;
  --paper: #f7f7f5;
  --white: #ffffff;
  --muted: #6f777d;
  --line: #e6e6e1;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  padding-bottom: 68px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 75, 56, 0.48);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 9px 12px;
  color: var(--white);
  background: var(--accent);
  font-weight: 800;
}

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

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 680px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100%, 1280px);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

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

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #34383c;
  font-size: 0.85rem;
  font-weight: 800;
}

.primary-nav a {
  padding: 10px 0;
}

.primary-nav a:hover,
.primary-nav .is-active {
  color: var(--accent);
}

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

.consult-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.consult-link span:last-child {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--accent);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: var(--accent);
  border: 0;
}

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

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: grid;
  padding: 8px 24px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.mobile-nav a {
  min-height: 44px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 52px;
  background: var(--white);
}

.hero-shell {
  position: relative;
}

.hero-copy {
  max-width: 660px;
  margin-left: 150px;
}

.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 900;
}

.label-chip span {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  margin-bottom: 0;
  font-size: 3.6rem;
}

h1 span,
.section-kicker,
.stats-list dt {
  color: var(--accent);
}

.client-pill {
  position: absolute;
  top: 94px;
  right: 252px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 10px;
  min-width: 190px;
  padding: 9px 16px 9px 10px;
  background: var(--soft-blue-2);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(32, 35, 38, 0.12);
}

.avatar-row {
  display: flex;
  grid-row: span 2;
}

.avatar-row img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.avatar-row img + img {
  margin-left: -10px;
}

.client-pill strong {
  color: var(--accent);
  font-size: 0.82rem;
  line-height: 1;
}

.client-pill span {
  color: #596268;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.orbit-link,
.media-orbit {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  color: var(--white);
  background: var(--charcoal);
  border: 10px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.orbit-link {
  position: absolute;
  top: 142px;
  right: 86px;
  z-index: 4;
  width: 154px;
  height: 154px;
}

.orbit-link span,
.media-orbit span {
  display: block;
  max-width: 94px;
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-link strong,
.media-orbit strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 7px 0;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.35rem;
}

.orbit-link small {
  font-size: 0.66rem;
  font-weight: 800;
}

.hero-image {
  margin: 42px 42px 0;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  max-width: 960px;
  margin: 58px auto 0;
}

.intro-grid article {
  min-width: 0;
}

.intro-grid p,
.section-kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-grid h2 {
  margin: 0;
  color: #5e676d;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.section {
  padding: 76px 0;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-row h2,
.centered-title,
.strength-copy h2,
.testimonial-heading h2,
.article-heading h2 {
  margin-bottom: 0;
  font-size: 2.1rem;
}

.section-row h2 {
  max-width: 460px;
}

.arrow-controls,
.project-buttons {
  display: flex;
  gap: 8px;
}

.arrow-controls button,
.arrow-controls a,
.project-buttons button,
.project-dots button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
}

.arrow-controls button:hover,
.arrow-controls a:hover,
.project-buttons button:hover {
  color: var(--white);
  background: var(--accent);
}

.service-rail {
  display: grid;
  grid-auto-columns: 260px;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 10px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.service-rail::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  min-width: 0;
  padding: 0 0 22px;
  background: var(--soft-blue);
  scroll-snap-align: start;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card .mini-button {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.service-card p {
  min-height: 76px;
  margin-bottom: 16px;
  color: #566268;
  font-size: 0.82rem;
}

.service-icon {
  position: absolute;
  top: 132px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-button,
.accent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  color: var(--white);
  background: var(--charcoal);
  border: 0;
  font-size: 0.72rem;
  font-weight: 900;
}

.accent-button {
  background: var(--accent);
}

.strategy-section {
  color: var(--white);
  background: var(--charcoal);
}

.strategy-grid {
  position: relative;
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 86px;
  align-items: center;
  min-height: 660px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.strategy-media {
  position: relative;
  width: min(100%, 360px);
  margin-left: 42px;
}

.strategy-media::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: -3px;
  width: 68%;
  height: 46%;
  border-left: 6px solid var(--accent);
  border-bottom: 6px solid var(--accent);
  pointer-events: none;
}

.strategy-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.media-orbit {
  position: absolute;
  left: -62px;
  top: 52px;
  width: 122px;
  height: 122px;
  border-width: 7px;
}

.media-orbit strong {
  width: 34px;
  height: 34px;
  margin: 5px 0;
  font-size: 1rem;
}

.strategy-copy {
  max-width: 540px;
}

.strategy-copy h2 {
  margin-bottom: 22px;
  font-size: 2.25rem;
}

.strategy-copy p {
  margin-bottom: 18px;
  color: #ced2d3;
}

.since-mark {
  position: absolute;
  right: 24px;
  bottom: 62px;
  margin: 0;
  color: transparent;
  font-family: "Space Grotesk", Inter, Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.18;
  -webkit-text-stroke: 1px var(--white);
}

.cta-strip {
  background:
    linear-gradient(rgba(255, 75, 56, 0.92), rgba(255, 75, 56, 0.92)),
    url("assets/template-hero.jpg") center/cover;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 146px;
}

.cta-inner h2 {
  max-width: 320px;
  margin: 0;
  font-size: 1.75rem;
}

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

.cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
}

.cta-actions a:nth-child(2) {
  color: var(--charcoal);
  background: var(--white);
}

.benefits-section {
  background: var(--white);
}

.centered {
  text-align: center;
}

.centered-title {
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.benefit-grid article {
  min-width: 0;
  padding: 24px 20px 22px;
  background: var(--soft-blue);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
}

.benefit-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefit-grid p {
  min-height: 92px;
  margin-bottom: 16px;
  color: #59656b;
  font-size: 0.82rem;
}

.strengths-section {
  padding-top: 34px;
  background: var(--white);
}

.strengths-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 270px 260px;
  gap: 42px;
  align-items: center;
}

.strength-copy p {
  max-width: 500px;
  color: #5f686f;
}

.strength-copy ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.strength-copy li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--accent);
}

.strength-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.stats-list {
  display: grid;
  gap: 20px;
  margin: 0;
}

.stats-list div {
  min-width: 0;
}

.stats-list dt {
  font-family: "Space Grotesk", Inter, Arial, Helvetica, sans-serif;
  font-size: 3.55rem;
  font-weight: 700;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}

.stats-list dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.project-section {
  overflow: hidden;
  padding: 86px 0 80px;
  color: var(--white);
  background: var(--charcoal);
}

.project-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.project-top h2 {
  max-width: 420px;
  margin: 0;
  font-size: 2.05rem;
}

.project-buttons button {
  width: auto;
  min-width: 68px;
  height: 36px;
  padding: 0 18px;
  color: var(--charcoal);
  background: var(--white);
  border-radius: 0;
  font-size: 0.7rem;
}

.project-stage {
  position: relative;
}

.project-stage img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.06);
}

.project-note {
  position: absolute;
  left: 78px;
  bottom: -38px;
  width: min(100% - 132px, 330px);
  padding: 24px 28px;
  color: var(--ink);
  background: var(--white);
  border-left: 6px solid var(--accent);
}

.project-note p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-note h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.project-view {
  position: absolute;
  top: 96px;
  right: 100px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.project-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 58px;
}

.project-dots button {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.44);
}

.project-dots .is-active {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.95fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.testimonial-heading h2 {
  margin-bottom: 28px;
}

.quote-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--accent);
}

.quote-card::before {
  content: "''";
  display: block;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-family: "Space Grotesk", Inter, Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.8;
}

.quote-card blockquote {
  margin: 0 0 18px;
  color: #4c5358;
  font-size: 0.92rem;
}

.quote-card figcaption {
  display: grid;
  gap: 2px;
}

.quote-card strong {
  font-size: 0.86rem;
}

.quote-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.team-section {
  padding-top: 26px;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 860px;
  margin-top: 30px;
}

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

.team-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  z-index: 2;
  width: 92px;
  height: 24px;
  transform: translateX(-50%);
  background: var(--charcoal);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.team-card div {
  position: relative;
  z-index: 3;
  width: 80%;
  min-height: 74px;
  margin: -34px auto 0;
  padding: 15px 16px;
  background: var(--white);
  border-top: 4px solid var(--accent);
}

.team-card-featured div {
  border-top-color: var(--charcoal);
}

.team-card h3 {
  margin-bottom: 3px;
  font-size: 0.98rem;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 75, 56, 0.94), rgba(255, 75, 56, 0.94)),
    url("assets/project-wide.jpg") center/cover;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(32, 35, 38, 0.28);
  pointer-events: none;
}

.contact-section::before {
  left: -80px;
  bottom: -90px;
  width: 300px;
  height: 230px;
}

.contact-section::after {
  right: -40px;
  top: 36px;
  width: 210px;
  height: 310px;
}

.contact-shell {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.contact-shell .section-kicker {
  color: var(--white);
}

.contact-shell h2 {
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.contact-shell p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 430px;
  margin: 0 auto;
}

.contact-form label {
  display: grid;
  gap: 4px;
  text-align: left;
}

.contact-form span {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.72);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: center;
  grid-column: 1 / -1;
  min-height: 38px;
  min-width: 92px;
  padding: 0 18px;
  color: var(--white);
  background: var(--charcoal);
  border: 0;
  font-size: 0.76rem;
  font-weight: 900;
}

.articles-section {
  background: var(--white);
}

.article-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.article-heading a {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.article-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-width: 0;
}

.article-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.article-body time {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.article-body h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.article-body p {
  margin-bottom: 16px;
  color: #626b72;
  font-size: 0.86rem;
}

.site-footer {
  color: var(--white);
  background: var(--charcoal-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-brand {
  padding: 0;
  background: transparent;
}

.footer-brand img {
  width: 190px;
}

.site-footer address {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  margin: 0;
  color: #cdd4d6;
  font-style: normal;
  font-size: 0.82rem;
}

.site-footer a {
  font-weight: 900;
}

.mobile-callbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--white);
  background: #168b4e;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  font-weight: 900;
}

@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .mobile-callbar {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    margin-left: 72px;
  }

  .client-pill {
    right: 190px;
  }

  .orbit-link {
    right: 40px;
  }

  .intro-grid {
    gap: 34px;
  }

  .strategy-grid {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 54px;
  }

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

  .strengths-grid {
    grid-template-columns: 1fr 250px;
  }

  .stats-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 66px;
    gap: 14px;
    padding: 0 18px;
  }

  .primary-nav,
  .consult-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy {
    margin-left: 0;
  }

  h1 {
    font-size: 2.8rem;
  }

  .client-pill,
  .orbit-link {
    position: static;
    margin-top: 22px;
  }

  .client-pill {
    display: inline-grid;
  }

  .orbit-link {
    width: 132px;
    height: 132px;
  }

  .hero-image {
    margin: 30px 0 0;
  }

  .hero-image img {
    height: 330px;
  }

  .intro-grid,
  .strategy-grid,
  .strengths-grid,
  .testimonial-grid,
  .team-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    margin-top: 34px;
  }

  .section {
    padding: 58px 0;
  }

  .section-row,
  .project-top,
  .article-heading,
  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-row h2,
  .centered-title,
  .strength-copy h2,
  .testimonial-heading h2,
  .article-heading h2,
  .project-top h2 {
    font-size: 1.85rem;
  }

  .strategy-grid {
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .strategy-media {
    width: min(100%, 430px);
    margin-left: 36px;
  }

  .strategy-copy h2,
  .contact-shell h2 {
    font-size: 1.9rem;
  }

  .since-mark {
    position: static;
    margin-top: 18px;
    font-size: 3.1rem;
  }

  .cta-inner {
    justify-content: center;
    min-height: 172px;
  }

  .strength-image {
    max-width: 360px;
  }

  .project-stage img {
    height: 300px;
  }

  .project-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 34px);
    margin: -38px 17px 0;
  }

  .project-view {
    top: 28px;
    right: 28px;
  }

  .project-dots {
    margin-top: 28px;
  }

  .team-grid {
    max-width: 420px;
  }

  .site-footer address {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .shell,
  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .label-chip {
    font-size: 0.68rem;
  }

  .hero-image img {
    height: 250px;
  }

  .intro-grid,
  .benefit-grid,
  .stats-list {
    grid-template-columns: 1fr;
  }

  .service-rail {
    grid-auto-columns: minmax(230px, 82vw);
  }

  .strategy-media {
    margin-left: 0;
  }

  .strategy-media img {
    height: 420px;
  }

  .media-orbit {
    left: 14px;
    top: 14px;
  }

  .cta-actions,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    display: grid;
    width: 100%;
  }

  .contact-form label,
  .contact-form button,
  .full-field {
    grid-column: 1;
  }

  .project-section {
    padding: 62px 0;
  }

  .project-stage img {
    height: 230px;
  }

  .project-view {
    top: 18px;
    right: 18px;
  }

  .article-card img {
    height: 210px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 116px;
  }

  h1 {
    font-size: 1.9rem;
  }

  .section-row h2,
  .centered-title,
  .strength-copy h2,
  .testimonial-heading h2,
  .article-heading h2,
  .project-top h2 {
    font-size: 1.55rem;
  }

  .stats-list dt {
    font-size: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
