:root {
  --orange: #a94f0e;
  --orange-dark: #783300;
  --orange-bright: #eb7b1f;
  --green: #d4f194;
  --green-deep: #87af30;
  --ink: #3e5153;
  --body: #333;
  --muted: #5f6664;
  --soft: #f5f5f1;
  --line: #e9e9e9;
  --white: #fff;
  --shadow: 0 18px 50px rgb(62 81 83 / 12%);
  --radius: 2px;
  --page-width: 1300px;
  --font-sans: Lato, "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
}

body.menu-lock {
  overflow: hidden;
}

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

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--orange);
}

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.page-width {
  width: min(calc(100% - 42px), var(--page-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgb(255 255 255 / 80%);
  border-bottom: 1px solid rgb(255 255 255 / 65%);
  backdrop-filter: blur(8px);
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  background: rgb(255 255 255 / 5%);
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  min-height: 115px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0 0;
  border-bottom: 3px solid var(--orange);
}

.site-logo {
  display: inline-flex;
  width: 252px;
  flex: 0 0 252px;
  align-items: center;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgb(62 81 83 / 20%);
  border-radius: 2px;
  background: rgb(255 255 255 / 75%);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  content: "";
}

.menu-toggle__icon::before {
  transform: translateY(-6px);
}

.menu-toggle__icon::after {
  transform: translateY(6px);
}

.site-menu {
  align-self: stretch;
}

.site-nav,
.site-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  justify-content: flex-end;
}

.site-nav > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.site-nav > li > a,
.site-nav > li > .submenu-toggle {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.site-nav > li > a:hover,
.site-nav > li > a[aria-current="page"],
.site-nav > li > .submenu-toggle:hover,
.site-nav > li > .submenu-toggle[aria-expanded="true"] {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.submenu-toggle__chevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.site-nav .submenu {
  position: absolute;
  z-index: 10;
  top: calc(100% - 2px);
  left: 0;
  min-width: 210px;
  padding: 8px 0;
  background: var(--white);
  box-shadow: 0 12px 28px rgb(62 81 83 / 15%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav li.is-open > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .submenu a {
  display: block;
  padding: 8px 18px;
  color: var(--ink);
  font-size: 14px;
}

.site-nav .submenu a:hover,
.site-nav .submenu a[aria-current="page"] {
  color: var(--orange);
  background: var(--soft);
}

.site-header--overlay .site-nav > li > a,
.site-header--overlay .site-nav > li > .submenu-toggle {
  color: var(--ink);
}

.site-header--overlay .site-nav > li > a:hover,
.site-header--overlay .site-nav > li > a[aria-current="page"],
.site-header--overlay .site-nav > li > .submenu-toggle:hover,
.site-header--overlay .site-nav > li > .submenu-toggle[aria-expanded="true"] {
  color: var(--orange);
}

.page-banner {
  display: flex;
  min-height: 248px;
  align-items: flex-end;
  padding: 58px 0 42px;
  background: var(--green) url("assets/images/bg-general.png") center 35% / cover no-repeat;
  border-bottom: 3px solid var(--orange);
}

.page-banner__inner {
  width: min(calc(100% - 42px), var(--page-width));
  margin-inline: auto;
}

.page-banner__eyebrow,
.section-kicker {
  margin: 0 0 9px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-banner h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.hero {
  position: relative;
  min-height: clamp(560px, 54vw, 770px);
  overflow: hidden;
  background: #f7f7f4;
}

.hero-slide::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 96%) 0%, rgb(255 255 255 / 74%) 29%, rgb(255 255 255 / 17%) 66%, rgb(255 255 255 / 40%) 100%);
  pointer-events: none;
  content: "";
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.63) brightness(1.2);
}

.hero-slide:nth-child(2) .hero-image {
  object-position: center 46%;
}

.hero-slide:nth-child(3) .hero-image {
  object-position: center 48%;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(21px, calc((100% - var(--page-width)) / 2));
  width: min(520px, calc(100% - 42px));
  transform: translateY(-50%);
}

.hero-copy__eyebrow {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--orange);
  font-size: clamp(31px, 4vw, 58px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.hero-copy p {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  bottom: 38px;
  left: max(21px, calc((100% - var(--page-width)) / 2));
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(62 81 83 / 35%);
  border-radius: 50%;
  background: rgb(255 255 255 / 58%);
  font-size: 19px;
  line-height: 1;
}

.hero-arrow:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.hero-dots {
  display: flex;
  gap: 7px;
  margin-left: 8px;
}

.hero-dot {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  color: rgb(62 81 83 / 55%);
  background: transparent;
}

.hero-dot::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.hero-dot.is-active {
  color: var(--orange);
  transform: scale(1.25);
}

.hero-dot:hover {
  color: var(--orange);
}

.hero-pause {
  min-width: 76px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgb(62 81 83 / 35%);
  border-radius: 20px;
  background: rgb(255 255 255 / 58%);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-pause:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.services-preview {
  position: relative;
  z-index: 5;
  margin-top: -82px;
  padding-bottom: 92px;
}

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

.service-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card__body {
  min-height: 260px;
  padding: 30px 30px 22px;
  color: var(--white);
  background: var(--orange);
}

.service-card__body h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.14;
}

.service-card__body h2 a,
.service-card__body p {
  color: inherit;
}

.service-card__body h2 a:hover {
  color: var(--ink);
}

.service-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.54;
}

.service-card__image {
  width: 100%;
  aspect-ratio: 548 / 365;
  object-fit: cover;
}

.offer-band {
  padding: 47px 0 42px;
  color: var(--white);
  background: var(--green) url("assets/images/bg-general.png") center / cover no-repeat;
}

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

.offer-band p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
}

.button,
.button--outline {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button:hover {
  color: var(--white);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}

.button--outline {
  color: var(--orange);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--orange);
}

.content-section {
  padding: 88px 0 104px;
}

.content-section--compact {
  padding-top: 70px;
}

.content-section--soft {
  background: var(--soft);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  gap: clamp(42px, 7vw, 105px);
  align-items: start;
}

.content-grid--reverse {
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
}

.content-copy {
  max-width: 760px;
}

.content-copy h1,
.content-copy h2 {
  margin: 0 0 25px;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.content-copy h1 {
  font-size: clamp(35px, 4vw, 56px);
}

.content-copy h2 {
  margin-top: 40px;
  font-size: 32px;
}

.content-copy h3 {
  margin: 28px 0 10px;
  color: var(--orange-dark);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.content-copy p {
  margin: 0 0 17px;
}

.content-copy p:last-child {
  margin-bottom: 0;
}

.content-copy strong {
  font-weight: 700;
}

.content-copy ul {
  padding-left: 1.2rem;
  margin: 0 0 24px;
}

.content-copy li::marker {
  color: var(--orange);
}

.content-image {
  width: 100%;
  margin: 0;
  border-top: 5px solid var(--orange);
  box-shadow: 12px 12px 0 var(--green);
}

.content-image img {
  width: 100%;
  height: auto;
}

.content-image figcaption {
  padding: 9px 12px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.1;
}

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

.service-overview {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-top: 4px solid var(--orange);
  background: var(--white);
  box-shadow: 0 8px 26px rgb(62 81 83 / 9%);
}

.service-overview img {
  width: 100%;
  aspect-ratio: 548 / 365;
  object-fit: cover;
}

.service-overview__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 27px 28px;
}

.service-overview h3 {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}

.service-overview p {
  flex: 1;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.58;
}

.text-link {
  align-self: flex-start;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link::after {
  padding-left: 7px;
  content: "→";
}

.text-link:hover {
  color: var(--ink);
}

.contact-intro {
  margin-bottom: clamp(38px, 5vw, 60px);
  font-size: 18px;
}

.contact-intro h2 {
  margin: 0 0 18px;
}

.contact-intro > p:last-child {
  margin-bottom: 0;
}

.contact-intro .contact-note {
  margin-top: 26px;
}

.contact-map__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 14px;
  text-align: center;
}

.map-consent h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 300;
}

.map-consent p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.map-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-consent .button {
  margin-top: 6px;
}

.contact-map__meta {
  margin: 14px 0 0;
  font-size: 14px;
}

.contact-map__meta a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-layout,
.career-layout {
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.contact-layout {
  align-items: center;
}

.contact-card {
  padding: 30px 30px 30px 0;
  color: var(--ink);
}

.contact-card h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
}

.contact-card p {
  margin: 0 0 14px;
  line-height: 1.5;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgb(62 81 83 / 55%);
  text-underline-offset: 3px;
}

.contact-card a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions .button--outline {
  color: var(--ink);
  border-color: var(--ink);
}

.contact-actions .button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.contact-note {
  padding: 20px 22px;
  background: var(--soft);
}

.contact-note p {
  margin: 0;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy table {
  width: 100%;
  max-width: 560px;
  margin: 12px 0 32px;
  border-collapse: collapse;
}

.legal-copy td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.legal-copy td:first-child {
  width: 34%;
  color: var(--muted);
  font-weight: 700;
}

.career-intro {
  margin-bottom: 28px;
}

.career-intro ul {
  columns: 2;
  column-gap: 35px;
}

.career-form-wrap {
  padding: clamp(24px, 4vw, 42px);
  background: var(--soft);
  border-top: 4px solid var(--orange);
}

.career-form-wrap h2 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 300;
  line-height: 1.2;
}

.form-note {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label,
.form-checkbox label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.required-mark {
  color: var(--orange-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d6d6d0;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.form-field input[type="file"] {
  min-height: 44px;
  padding: 7px;
  font-size: 13px;
}

.form-field input[aria-invalid="true"] {
  border-color: var(--orange-dark);
}

.form-error {
  display: none;
  margin: 0;
  color: var(--orange-dark);
  font-size: 12px;
}

.form-field.has-error .form-error {
  display: block;
}

.form-checkbox.has-error .form-error {
  display: block;
}

.form-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px 0 2px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.form-checkbox p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
}

.form-status {
  display: none;
  padding: 13px 15px;
  margin: 18px 0 0;
  color: var(--ink);
  background: var(--green);
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.form-submit {
  margin-top: 20px;
}

.site-footer {
  background: #e9e9e9;
}

.footer-main {
  padding: 72px 0 54px;
  text-align: center;
}

.footer-main__title {
  margin: 0 0 27px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #888;
  font-size: 19px;
  line-height: 1.5;
}

.footer-contact a {
  color: #888;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 18px;
  padding: 20px 0 0;
  margin: 35px 0 0;
  border-top: 1px solid rgb(62 81 83 / 12%);
  list-style: none;
  font-size: 13px;
}

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

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

.copyright {
  padding: 14px 0 17px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  text-align: center;
}

.copyright span + span::before {
  padding: 0 8px;
  content: "|";
}

.back-top {
  position: fixed;
  z-index: 15;
  right: 17px;
  bottom: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 7px 18px rgb(62 81 83 / 18%);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-nav > li > a,
  .site-nav > li > .submenu-toggle {
    padding-inline: 11px;
    font-size: 12px;
  }

  .site-logo {
    width: 210px;
    flex-basis: 210px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 91px;
    padding: 10px 0;
  }

  .site-logo {
    width: 190px;
    flex-basis: 190px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 9px 21px 20px;
    background: rgb(255 255 255 / 98%);
    box-shadow: 0 16px 30px rgb(62 81 83 / 12%);
  }

  .site-menu.is-open {
    display: block;
  }

  .site-nav {
    display: block;
  }

  .site-nav > li {
    display: block;
  }

  .site-nav > li > a,
  .site-nav > li > .submenu-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding-inline: 7px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .site-nav .submenu {
    position: static;
    min-width: 0;
    padding: 0 0 5px 15px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .submenu a {
    padding-block: 7px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .site-nav li:not(.is-open) > .submenu {
    display: none;
  }

  .site-nav li.is-open > .submenu {
    display: block;
  }

  .hero {
    min-height: 610px;
  }

  .services-preview {
    margin-top: -50px;
  }

  .service-grid,
  .service-overview-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

  .service-card__body {
    min-height: 0;
  }

  .content-grid,
  .content-grid--reverse,
  .contact-layout,
  .career-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .contact-map__frame {
    aspect-ratio: 3 / 2;
    min-height: 0;
  }

  .content-grid--reverse .content-copy {
    order: -1;
  }

  .content-image {
    max-width: 660px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .page-width,
  .page-banner__inner {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .header-inner {
    min-height: 78px;
  }

  .site-logo {
    width: 155px;
    flex-basis: 155px;
  }

  .site-menu {
    padding-inline: 16px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-slide::after {
    background: linear-gradient(90deg, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 71%) 69%, rgb(255 255 255 / 36%) 100%);
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-copy {
    top: 47%;
    width: calc(100% - 32px);
    transform: translateY(-50%);
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(31px, 10vw, 43px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-controls {
    bottom: 20px;
    left: 16px;
  }

  .services-preview {
    padding-bottom: 56px;
    margin-top: -25px;
  }

  .service-card__body {
    padding: 24px 22px 19px;
  }

  .offer-band {
    padding: 35px 0;
  }

  .offer-band__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .offer-band p {
    font-size: 17px;
  }

  .page-banner {
    min-height: 190px;
    padding: 39px 0 28px;
  }

  .page-banner h1 {
    font-size: 41px;
  }

  .content-section {
    padding: 56px 0 68px;
  }

  .content-copy h1 {
    font-size: 38px;
  }

  .content-copy h2 {
    font-size: 28px;
  }

  .content-image {
    box-shadow: 7px 7px 0 var(--green);
  }

  .career-intro ul {
    columns: 1;
  }

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

  .form-field--wide {
    grid-column: auto;
  }

  .career-form-wrap {
    padding: 22px 17px 27px;
  }

  .legal-copy table {
    font-size: 14px;
  }

  .legal-copy td:first-child {
    width: 40%;
  }

  .footer-main {
    padding: 50px 0 40px;
  }

  .footer-contact {
    font-size: 16px;
  }

  .copyright {
    padding-inline: 16px;
    font-size: 12px;
  }
}

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

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

@media print {
  .site-header,
  .hero-controls,
  .back-top,
  .footer-links,
  .offer-band,
  .menu-toggle {
    display: none !important;
  }

  .content-section,
  .footer-main {
    padding: 20px 0;
  }

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