:root {
  --ink: #101214;
  --ink-2: #2b3034;
  --muted: #666f76;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #d9ddd8;
  --red: #c61724;
  --gold: #c99a42;
  --teal: #28736d;
  --group-green: #173f35;
  --forest: var(--group-green);
  --shadow: 0 24px 70px rgba(16, 18, 20, 0.16);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
}

body.nav-open {
  overflow: auto;
}

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

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

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

.container {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  color: var(--white);
  background: rgba(16, 18, 20, 0.98);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(16, 18, 20, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

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

.brand-logo {
  width: 96px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: rgba(16, 18, 20, 0.28);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 680px;
  max-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 132px 0 112px;
}

.hero-slideshow,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slideshow {
  overflow: hidden;
  background: #07090a;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  animation: heroSlideFade 24s infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 8s;
}

.hero-slide:nth-child(3) {
  animation-delay: 16s;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 11, 13, 0.9), rgba(10, 11, 13, 0.6) 42%, rgba(10, 11, 13, 0.24)),
    linear-gradient(0deg, rgba(10, 11, 13, 0.58), rgba(10, 11, 13, 0.1) 52%, rgba(10, 11, 13, 0.28));
}

@keyframes heroSlideFade {
  0%,
  29% {
    opacity: 1;
    transform: scale(1.02);
  }

  37%,
  92% {
    opacity: 0;
    transform: scale(1.07);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  max-width: 1180px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  width: 100%;
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 72px;
  font-weight: 900;
  overflow-wrap: break-word;
  text-wrap: balance;
}

#heroTitle {
  max-width: none;
  color: var(--red);
  font-size: 82px;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
  text-wrap: nowrap;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.44);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  font-weight: 600;
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.map-link:hover,
.map-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(198, 23, 36, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a8121e;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(900px, calc(100% - 40px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-strip a {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-right: 1px solid rgba(16, 18, 20, 0.1);
}

.hero-strip a:last-child {
  border-right: 0;
}

.hero-strip a:hover,
.hero-strip a:focus-visible {
  background: #f0f2ee;
  outline: none;
}

.hero-strip span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.hero-strip strong {
  font-size: 15px;
}

.overview {
  padding: 22px 0 44px;
  background: var(--paper);
}

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

.overview article {
  display: grid;
  gap: 3px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.overview strong {
  color: var(--red);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.overview span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.section {
  padding: 90px 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.split,
.capability-layout,
.portfolio-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section-heading h2,
.portfolio-copy h2,
.contact-copy h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 42px;
}

.intro-copy {
  color: var(--ink-2);
  font-size: 19px;
}

.intro-copy p:last-child,
.contact-copy p:last-of-type {
  margin-bottom: 0;
}

.company-section {
  padding-top: 18px;
}

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

.company-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 18, 20, 0.08);
}

.company-card:nth-child(even) {
  grid-template-columns: none;
}

.company-card:nth-child(even) .company-media {
  order: initial;
}

.company-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e8ebe7;
  overflow: hidden;
}

.company-media img,
.company-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.04);
}

.company-video {
  background: #050505;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.company-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}

.company-logo {
  width: min(250px, 100%);
  max-height: 82px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.company-role {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-body h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 25px;
}

.company-body p {
  max-width: 560px;
  font-size: 16px;
  color: var(--ink-2);
}

.company-body ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.company-body li {
  position: relative;
  padding-left: 18px;
}

.company-body li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.text-link,
.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, color 160ms ease;
}

.text-link::after,
.map-link::after {
  content: ">";
  margin-left: 9px;
}

.projects-section {
  background: var(--paper);
  padding-top: 56px;
}

.projects-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.projects-heading p:not(.eyebrow),
.section-lead {
  max-width: 680px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.72;
}

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

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 18, 20, 0.08);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.project-content {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.project-content span {
  color: var(--group-green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-content h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.project-content dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.project-content div {
  display: grid;
  gap: 2px;
}

.project-content dt {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-content dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.62;
}

.capability-section {
  background: var(--group-green);
  color: var(--white);
}

.capability-section .eyebrow {
  color: #e0b45e;
}

.capability-list {
  display: grid;
  gap: 18px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 0.4fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-list span {
  color: #e0b45e;
  font-weight: 900;
}

.capability-list h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.capability-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.68;
}

.portfolio-section {
  background: #eef1ed;
}

.portfolio-copy p {
  max-width: 560px;
  color: var(--ink-2);
  font-size: 18px;
}

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

.focus-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
}

.focus-grid article:nth-child(2) {
  border-top-color: var(--teal);
}

.focus-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.focus-grid article:nth-child(4) {
  border-top-color: var(--forest);
}

.focus-grid strong {
  font-size: 18px;
}

.focus-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

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

.leadership-layout,
.confidence-layout,
.downloads-layout {
  display: grid;
  gap: 30px;
}

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

.leader-grid {
  grid-template-columns: minmax(0, 720px);
}

.leader-card,
.testimonial-card,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 18, 20, 0.07);
}

.leader-card {
  padding: 28px;
}

.leader-card span,
.testimonial-card span,
.download-card span {
  color: var(--group-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-card h3 {
  margin: 10px 0 12px;
  font-size: 28px;
}

.leader-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
}

.confidence-section {
  background: #eef1ed;
}

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

.testimonial-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-top: 4px solid var(--group-green);
}

.testimonial-card p {
  font-family: Montserrat, Inter, sans-serif;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
}

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

.downloads-section .eyebrow {
  color: var(--gold);
}

.downloads-section .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

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

.download-card {
  display: grid;
  gap: 10px;
  min-height: 142px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: transform 160ms ease, background 160ms ease;
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.download-card span {
  color: var(--gold);
}

.download-card strong {
  font-size: 18px;
}

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

.contact-copy p {
  max-width: 580px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.72;
}

address {
  display: grid;
  gap: 9px;
  margin: 26px 0 12px;
  font-style: normal;
  color: var(--ink-2);
  font-weight: 750;
  font-size: 16px;
}

address span:first-child {
  color: var(--ink);
  font-weight: 900;
}

address a {
  width: fit-content;
  color: var(--red);
}

.email-directory {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--group-green);
  border-radius: 8px;
  background: #f7f8f5;
}

.email-directory strong {
  color: var(--group-green);
}

.email-directory p,
.email-directory span,
.email-directory a {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.email-directory a {
  width: fit-content;
  font-weight: 760;
  transition: color 160ms ease;
}

.email-directory a:hover,
.email-directory a:focus-visible {
  color: var(--red);
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(16, 18, 20, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd1cc;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198, 23, 36, 0.12);
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #1f9d55;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(31, 157, 85, 0.26);
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-logo {
  width: 180px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 6px;
}

.footer-brand p {
  max-width: 320px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 9px;
  align-content: start;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    padding-inline: 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: static;
    order: 3;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(16, 18, 20, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  h1 {
    font-size: 52px;
  }

  #heroTitle {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .overview-grid,
  .split,
  .capability-layout,
  .portfolio-layout,
  .contact-layout,
  .company-grid,
  .featured-project-grid,
  .testimonial-grid,
  .download-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .company-media img,
  .company-media video {
    min-height: 0;
  }

  .capability-list article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .capability-list p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .container,
  .hero-inner {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-logo {
    width: 92px;
    height: auto;
  }

  .hero {
    height: auto;
    min-height: min(84svh, 840px);
    max-height: none;
    padding: 112px 0 138px;
  }

  h1 {
    font-size: 40px;
    max-width: 350px;
  }

  #heroTitle {
    max-width: none;
    font-size: 34px;
  }

  .hero-lead {
    max-width: 350px;
    font-size: 18px;
  }

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

  .floating-whatsapp {
    right: 14px;
    left: auto;
    bottom: 14px;
    width: 118px;
    min-width: 118px;
  }

  .hero-strip {
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .hero-strip a {
    grid-template-columns: 34px 1fr;
    align-items: center;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 18, 20, 0.1);
  }

  .hero-strip a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .portfolio-copy h2,
  .contact-copy h2 {
    max-width: 340px;
    font-size: 30px;
    text-wrap: balance;
  }

  .company-body {
    padding: 24px 20px 28px;
  }

  .company-body h3 {
    font-size: 24px;
  }

  .company-logo {
    width: min(220px, 100%);
    max-height: 70px;
  }

  .focus-grid,
  .contact-form,
  .leader-grid,
  .testimonial-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    padding-inline: 14px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 82px;
    height: auto;
  }

  .footer-brand {
    display: grid;
  }

  .footer-logo {
    width: 170px;
  }

  h1 {
    max-width: 310px;
    font-size: 32px;
  }

  #heroTitle {
    max-width: none;
    font-size: 27px;
  }

  .hero-lead,
  .intro-copy,
  .portfolio-copy p,
  .contact-copy p {
    max-width: 310px;
    font-size: 16px;
  }

  .section-heading h2,
  .portfolio-copy h2,
  .contact-copy h2 {
    max-width: 310px;
    font-size: 27px;
  }

  .intro-copy p,
  .portfolio-copy p,
  .contact-copy p,
  .projects-heading p,
  .section-lead,
  .company-body p,
  .company-body li,
  .project-content dd,
  .leader-card p,
  .testimonial-card p,
  .email-directory span {
    max-width: 300px;
    overflow-wrap: break-word;
  }

  .company-body h3 {
    font-size: 22px;
  }

  .overview article,
  .focus-grid article,
  .leader-card,
  .testimonial-card,
  .download-card,
  .contact-form {
    padding: 18px;
  }
}

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