@font-face {
  font-family: "Lora";
  src: url("assets/fonts/lora-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("assets/fonts/lora-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("assets/fonts/lora-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("assets/fonts/lora-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #ffffff;
  --color-neutral-lightest: #f2f2f2;
  --color-neutral-lighter: #d9d9d9;
  --color-neutral-light: #b4b3b3;
  --color-neutral: #828180;
  --color-neutral-dark: #504f4d;
  --color-neutral-darker: #1e1d1b;
  --color-neutral-darkest: #050402;
  --color-white-20: color-mix(in srgb, var(--color-white), transparent 80%);
  --color-neutral-darkest-15: color-mix(
    in srgb,
    var(--color-neutral-darkest),
    transparent 85%
  );
  --color-eden-lightest: #e6eeed;
  --color-eden-lighter: #cedddc;
  --color-eden-light: #558a85;
  --color-eden: #0d5951;
  --color-eden-dark: #0a4740;
  --color-eden-darker: #052320;
  --color-eden-darkest: #031a18;
  --color-aqua-squeeze-lightest: #fbfdfd;
  --color-aqua-squeeze-lighter: #f8fcfc;
  --color-aqua-squeeze-light: #e9f5f4;
  --color-aqua-squeeze: #e0f1f0;
  --color-aqua-squeeze-dark: #b3c0c0;
  --color-aqua-squeeze-darker: #596060;
  --color-aqua-squeeze-darkest: #434848;
  --color-wild-sand-lightest: #fefefe;
  --color-wild-sand-lighter: #fdfdfd;
  --color-wild-sand-light: #f8f8f8;
  --color-wild-sand: #f6f6f6;
  --color-wild-sand-dark: #c4c4c4;
  --color-wild-sand-darker: #626262;
  --color-wild-sand-darkest: #494949;
  --color-quincy-lightest: #eeece9;
  --color-quincy-lighter: #dedad4;
  --color-quincy-light: #8b8069;
  --color-quincy: #5a4a2a;
  --color-quincy-dark: #483b21;
  --color-quincy-darker: #241d10;
  --color-quincy-darkest: #1b160c;
  --color-dark-fern-lightest: #e6eee7;
  --color-dark-fern-lighter: #ceddd0;
  --color-dark-fern-light: #568a5c;
  --color-dark-fern: #0e5917;
  --color-dark-fern-dark: #0b4712;
  --color-dark-fern-darker: #052309;
  --color-dark-fern-darkest: #041a06;
  --font-heading: "Lora", serif;
  --font-body: "Inter", sans-serif;
  --text-h1: 3rem;
  --text-h2: 2.75rem;
  --text-h3: 2rem;
  --text-h4: 1.5rem;
  --text-h5: 1.25rem;
  --text-h6: 1.125rem;
  --text-large: 1.125rem;
  --text-medium: 1rem;
  --text-regular: 0.875rem;
  --text-small: 0.75rem;
  --text-tiny: 0.625rem;
  --radius-button: 0.75rem;
  --radius-card: 1rem;
  --radius-image: 1rem;
  --container-xxl: 80rem;
  --spacing-18: 4.5rem;
  --spacing-30: 7.5rem;
  --ease-clean: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-reveal: cubic-bezier(0.2, 0.7, 0.2, 1);
  --motion-fast: 180ms;
  --motion-smooth: 520ms;
}

@media (min-width: 992px) {
  :root {
    --text-h1: 5.25rem;
    --text-h2: 3.75rem;
    --text-h3: 3rem;
    --text-h4: 2.5rem;
    --text-h5: 2rem;
    --text-h6: 1.625rem;
    --text-large: 1.625rem;
    --text-medium: 1.25rem;
    --text-regular: 1.125rem;
    --text-small: 1rem;
    --text-tiny: 0.75rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-neutral-darkest);
  font-family: var(--font-body);
  font-size: var(--text-regular);
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 640ms ease,
    transform 720ms var(--ease-reveal);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-scheme-text);
  overflow-wrap: break-word;
}

h1 {
  font-size: var(--text-h1);
  line-height: 1.1;
}

h2 {
  font-size: var(--text-h2);
  line-height: 1.2;
}

h3 {
  font-size: var(--text-h5);
  line-height: 1.3;
}

.scheme-1 {
  --color-scheme-background: var(--color-white);
  --color-scheme-foreground: var(--color-white);
  --color-scheme-text: var(--color-neutral-darkest);
  --color-scheme-border: var(--color-neutral-darkest-15);
  --color-scheme-btn-text: var(--color-white);
  background: var(--color-scheme-background);
  color: var(--color-scheme-text);
}

.scheme-2 {
  --color-scheme-background: var(--color-eden-lightest);
  --color-scheme-foreground: var(--color-eden-lightest);
  --color-scheme-text: var(--color-neutral-darkest);
  --color-scheme-border: var(--color-neutral-darkest-15);
  --color-scheme-btn-text: var(--color-white);
  background: var(--color-scheme-background);
  color: var(--color-scheme-text);
}

.scheme-3 {
  --color-scheme-background: var(--color-wild-sand);
  --color-scheme-foreground: var(--color-wild-sand);
  --color-scheme-text: var(--color-neutral-darkest);
  --color-scheme-border: var(--color-neutral-darkest-15);
  --color-scheme-btn-text: var(--color-white);
  background: var(--color-scheme-background);
  color: var(--color-scheme-text);
}

.scheme-4 {
  --color-scheme-background: var(--color-aqua-squeeze-light);
  --color-scheme-foreground: var(--color-aqua-squeeze-light);
  --color-scheme-text: var(--color-neutral-darkest);
  --color-scheme-border: var(--color-neutral-darkest-15);
  --color-scheme-btn-text: var(--color-white);
  background: var(--color-scheme-background);
  color: var(--color-scheme-text);
}

.container {
  width: 100%;
  margin-inline: auto;
}

.section-padding {
  padding: 4rem 5%;
}

.text-medium {
  font-size: var(--text-medium);
  line-height: 1.5;
}

.eyebrow {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-heading {
  width: 100%;
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1.25rem;
}

.section-heading h1 {
  margin-bottom: 1.25rem;
}

.page-hero__content {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9375rem;
  margin-bottom: 0.25rem;
  padding: 0.625rem 1.5rem;
  border: 1.5px solid var(--color-eden-dark);
  border-radius: var(--radius-button);
  background: var(--color-eden);
  box-shadow: 0 3px 0 0 var(--color-eden-dark);
  color: var(--color-scheme-btn-text);
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  transition:
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-clean),
    box-shadow var(--motion-fast) var(--ease-clean);
}

.button:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.button:focus-visible,
.navbar__toggle:focus-visible,
a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-eden), transparent 25%);
  outline-offset: 4px;
}

.button--secondary {
  border-color: var(--color-scheme-border);
  background: transparent;
  box-shadow: 0 3px 0 0 var(--color-scheme-border);
  color: var(--color-scheme-text);
}

.button--secondary:hover {
  border-color: color-mix(in srgb, var(--color-neutral-darkest), transparent 72%);
  background: color-mix(in srgb, var(--color-neutral-darkest), transparent 97%);
}

.button--small {
  min-height: 2.375rem;
  padding: 0.375rem 1.25rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition:
    opacity var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-clean);
}

.button-link img {
  width: 1rem;
  height: 1rem;
  transition: transform var(--motion-fast) var(--ease-clean);
}

.icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.navbar {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 4.5rem;
  padding-inline: 5%;
}

.navbar__inner {
  width: 100%;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar__brand img {
  width: clamp(13.5rem, 18vw, 18.5rem);
  max-height: 3.1rem;
  object-fit: contain;
  object-position: left center;
}

.footer__brand img {
  width: clamp(14.5rem, 20vw, 20rem);
  max-height: 3.35rem;
  object-fit: contain;
  object-position: left center;
}

.navbar__brand img,
.footer__brand img {
  height: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 1rem;
}

.navbar__menu > a:not(.button),
.footer__links a,
.footer__bottom a {
  position: relative;
  transition:
    color var(--motion-fast) ease,
    opacity var(--motion-fast) ease;
}

.navbar__menu [aria-current="page"] {
  font-weight: 600;
}

.navbar__menu > a:not(.button)::after,
.footer__links a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-clean);
}

.navbar__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  margin-right: -0.5rem;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-clean),
    box-shadow var(--motion-fast) var(--ease-clean);
}

.navbar__toggle span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  margin: 0.1875rem auto;
  background: var(--color-scheme-text);
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.hero__intro {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero__content {
  max-width: 56rem;
  text-align: center;
}

.hero h1 {
  max-width: 56rem;
  margin: 0 auto 1.5rem;
}

.hero .text-medium {
  max-width: 45rem;
  margin-inline: auto;
}

.hero__media {
  width: 100%;
  overflow: hidden;
}

.image-frame {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-image);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  translate: 0 0;
  transform: scale(1);
  transition:
    translate 700ms var(--ease-reveal),
    transform var(--motion-smooth) var(--ease-clean),
    filter var(--motion-smooth) ease;
}

.hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  translate: 0 0;
  transform: scale(1);
  transition:
    translate 700ms var(--ease-reveal),
    transform var(--motion-smooth) var(--ease-clean),
    filter var(--motion-smooth) ease;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
  gap: 4rem 3rem;
}

.service {
  width: 100%;
  text-align: center;
  transition:
    transform 300ms var(--ease-clean),
    opacity 300ms ease;
}

.service .icon {
  margin: 0 auto 1.5rem;
  transition: transform 300ms var(--ease-clean);
}

.service h3 {
  margin-bottom: 1.5rem;
  font-size: var(--text-h4);
  line-height: 1.3;
}

.service p,
.timeline__copy p,
.benefit p {
  font-size: var(--text-regular);
  line-height: 1.5;
}

.feature-list__intro {
  width: 100%;
  max-width: 48rem;
  margin-bottom: 4.5rem;
}

.feature-list__intro h2 {
  margin-bottom: 1.5rem;
}

.feature-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
  gap: 4rem 3rem;
}

.feature-tile {
  transition: transform 300ms var(--ease-clean);
}

.feature-tile .icon {
  margin-bottom: 1.5rem;
  transition: transform 300ms var(--ease-clean);
}

.feature-tile h3 {
  max-width: 24rem;
  font-size: var(--text-h4);
  line-height: 1.3;
}

.feature-split__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 5rem;
  min-width: 0;
}

.feature-split__copy {
  max-width: 40rem;
  min-width: 0;
}

.feature-split__copy h2 {
  margin-bottom: 1.5rem;
}

.feature-split__copy p + p {
  margin-top: 1.5rem;
}

.feature-split--flush {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: 80vh;
  min-width: 0;
}

.feature-split--flush .feature-split__media {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 80vh;
  border-radius: 0;
}

.feature-split--flush .feature-split__copy {
  width: min(90%, 40rem);
  margin-right: 5vw;
  margin-left: 5rem;
}

.check-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-list img {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 5rem;
}

.process__intro h2 {
  margin-bottom: 1.5rem;
}

.timeline {
  position: relative;
}

.timeline__line {
  position: absolute;
  top: 10%;
  bottom: 15%;
  left: 2.4375rem;
  width: 0.125rem;
  background: var(--color-scheme-border);
}

.timeline__line span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--color-neutral-darkest);
  transition: height 120ms linear;
}

.timeline__item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 2.5rem;
  transition: transform 300ms var(--ease-clean);
}

.timeline__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem;
  background: var(--color-scheme-background);
}

.timeline__icon .icon {
  transition: transform 300ms var(--ease-clean);
}

.timeline__copy {
  padding-block: 2.5rem;
}

.timeline__copy h3 {
  margin-bottom: 1rem;
  font-size: var(--text-h6);
  line-height: 1.4;
}

.benefits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 5rem;
}

.benefits__image img {
  width: 100%;
  border-radius: var(--radius-image);
  object-fit: cover;
  translate: 0 0;
  transform: scale(1);
  transition:
    translate 700ms var(--ease-reveal),
    transform var(--motion-smooth) var(--ease-clean),
    filter var(--motion-smooth) ease;
}

.benefits__image {
  overflow: hidden;
  border-radius: var(--radius-image);
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  padding-block: 0.5rem;
}

.benefit .icon {
  margin-bottom: 1rem;
  transition: transform 300ms var(--ease-clean);
}

.benefit h3 {
  margin-bottom: 1rem;
}

.benefit {
  transition: transform 300ms var(--ease-clean);
}

.faq-container {
  max-width: 48rem;
}

.faq-list {
  border-top: 1px solid var(--color-scheme-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-scheme-border);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  background: transparent;
  text-align: left;
  font-size: var(--text-medium);
  cursor: pointer;
}

.faq-question span {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-question span::before,
.faq-question span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 220ms var(--ease-clean);
}

.faq-question span::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question span::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 300ms var(--ease-clean),
    padding-bottom 300ms var(--ease-clean);
}

.faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 1.5rem;
}

.faq-bottom {
  max-width: 35rem;
  margin: 5rem auto 0;
  text-align: center;
}

.faq-bottom h3 {
  margin-bottom: 1rem;
  font-size: var(--text-h4);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 2rem;
}

.case-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 300ms var(--ease-clean);
}

.case-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 1.5rem;
}

.case-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: var(--text-small);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-badge);
  background: color-mix(in srgb, var(--color-neutral-darkest), transparent 92%);
  font-weight: 600;
}

.case-card h2 {
  margin-bottom: 0.75rem;
  font-size: var(--text-h5);
}

.case-card p {
  margin-bottom: 1.5rem;
}

.testimonial__inner {
  max-width: 48rem;
  text-align: center;
}

.testimonial__inner > img {
  max-width: 9rem;
  max-height: 4rem;
  object-fit: contain;
  margin: 0 auto 2rem;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  line-height: 1.3;
}

.testimonial__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.testimonial__avatar {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform 300ms var(--ease-clean);
}

.contact-card .icon {
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
  font-size: var(--text-h4);
}

.contact-card a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.cta__copy {
  justify-self: end;
  width: 100%;
  padding: 7rem 0;
}

.cta__inner {
  width: min(90%, 35rem);
  margin-left: 5vw;
  margin-right: 5rem;
}

.cta h2 {
  margin-bottom: 1.5rem;
}

.cta__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 36rem;
  overflow: hidden;
}

.cta__image.image-frame {
  border-radius: 0;
}

.cta__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  translate: 0 0;
  transform: scale(1);
  transition:
    translate 700ms var(--ease-reveal),
    transform var(--motion-smooth) var(--ease-clean),
    filter var(--motion-smooth) ease;
}

@media (min-width: 992px) {
  .home-preview-narrow {
    --home-preview-content: min(calc(100vw - clamp(5rem, 13vw, 20rem)), 70rem);
  }

  .home-preview-narrow .hero__content {
    max-width: 50rem;
  }

  .home-preview-narrow .hero h1 {
    max-width: 50rem;
  }

  .home-preview-narrow .hero .text-medium {
    max-width: 39rem;
  }

  .home-preview-narrow .hero__media {
    width: var(--home-preview-content);
    margin-inline: auto;
    border-radius: var(--radius-image);
  }

  .home-preview-narrow .hero__image {
    aspect-ratio: 16 / 8;
    object-position: center 38%;
  }

  .home-preview-narrow .services > .container,
  .home-preview-narrow .process > .container,
  .home-preview-narrow .footer > .container {
    max-width: 70rem;
  }

  .home-preview-narrow .benefits > .container {
    max-width: var(--container-xxl);
  }

  .home-preview-narrow .services__grid {
    gap: 3.25rem 2.5rem;
  }

  .home-preview-narrow .service h3 {
    font-size: clamp(1.25rem, 1.55vw, 1.45rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .home-preview-narrow .process__grid,
  .home-preview-narrow .benefits__grid {
    gap: 4rem;
  }

  .home-preview-narrow .process__intro {
    position: sticky;
    top: 7rem;
    align-self: start;
  }

  .home-preview-narrow .timeline {
    padding-block: 8vh;
  }

  .home-preview-narrow .timeline__line {
    top: 8vh;
    bottom: 8vh;
  }

  .home-preview-narrow .timeline__item {
    min-height: min(54vh, 32rem);
    align-items: center;
    opacity: 0.38;
    transform: translateY(1rem);
  }

  .home-preview-narrow .timeline__item.is-active {
    opacity: 1;
    transform: translateY(0);
  }

  .home-preview-narrow .timeline__icon,
  .home-preview-narrow .timeline__copy {
    padding-block: 0;
  }

  .home-preview-narrow .benefits__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5rem;
  }

  .home-preview-narrow .benefit h3 {
    font-size: clamp(1.125rem, 1.45vw, 1.35rem);
    line-height: 1.2;
  }

  .home-preview-narrow .benefit {
    display: grid;
    grid-template-rows: 3rem 3.25rem auto;
    align-content: start;
  }

  .home-preview-narrow .benefit .icon {
    align-self: start;
  }

  .home-preview-narrow .benefit h3 {
    align-self: start;
  }

  .home-preview-narrow .cta__grid {
    width: var(--home-preview-content);
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }

  .home-preview-narrow .cta__copy {
    justify-self: stretch;
  }

  .home-preview-narrow .cta__inner {
    width: auto;
    max-width: 31rem;
    margin-inline: 0;
    padding-right: 2rem;
  }

  .home-preview-narrow .cta__image {
    min-height: 30rem;
    border-radius: var(--radius-image);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-preview-narrow .benefits__grid {
    gap: 3rem;
  }
}

.footer {
  padding: 5rem 5% 1rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.25fr;
  align-items: center;
  justify-content: space-between;
  justify-items: center;
  gap: 1rem 4vw;
  padding-bottom: 5rem;
}

.footer__brand {
  justify-self: start;
}

.footer__links {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: start;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 600;
}

.footer__social {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  justify-self: end;
  gap: 0.75rem;
}

.footer__social a,
.footer__social svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer__social svg {
  fill: var(--color-scheme-text);
  transition:
    opacity var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-clean);
}

.footer__rule {
  width: 100%;
  height: 1px;
  background: var(--color-scheme-border);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  font-size: var(--text-small);
}

.footer__bottom a {
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .footer__top {
    grid-template-columns: minmax(16rem, 0.45fr) auto minmax(10.5rem, 0.35fr);
  }
}

@media (max-width: 1279px) {
  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
    padding-bottom: 3rem;
  }

  .footer__brand,
  .footer__social {
    justify-self: center;
  }

  .footer__brand img {
    width: clamp(14.5rem, 34vw, 18rem);
    max-height: 3.1rem;
    object-position: center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .navbar__menu > a:not(.button):hover::after,
  .footer__links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .footer__bottom a:hover {
    opacity: 0.68;
  }

  .hero__media:hover .hero__image,
  .benefits__image:hover img,
  .cta__image:hover img,
  .image-frame:hover img {
    transform: scale(1.018);
    filter: saturate(1.015) contrast(1.01);
  }

  .service:hover {
    transform: translateY(-0.125rem);
  }

  .service:hover .icon,
  .benefit:hover .icon,
  .timeline__item:hover .timeline__icon .icon {
    transform: translateY(-0.075rem);
  }

  .benefit:hover,
  .timeline__item:hover,
  .feature-tile:hover,
  .case-card:hover,
  .contact-card:hover {
    transform: translateY(-0.125rem);
  }

  .feature-tile:hover .icon {
    transform: translateY(-0.075rem);
  }

  .button-link:hover {
    opacity: 0.72;
    transform: translateY(-0.0625rem);
  }

  .button-link:hover img {
    transform: translateX(0.1875rem);
  }

  .footer__social a:hover svg {
    opacity: 0.7;
    transform: translateY(-0.125rem);
  }
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-heading {
    margin-bottom: 4.5rem;
  }
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .hero__intro {
    padding-top: 8.75rem;
    padding-bottom: 11.75rem;
  }

  .section-heading {
    margin-bottom: 5rem;
  }

  .services {
    min-height: 54.75rem;
  }

  .process {
    min-height: 105.375rem;
  }

  .benefits {
    min-height: 57.9375rem;
  }

  .cta {
    min-height: 37.5625rem;
  }

  .footer {
    min-height: 23.125rem;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding-inline: 0;
  }

  .navbar__inner {
    display: block;
  }

  .navbar__brand {
    min-height: 4rem;
    padding-inline: 5%;
  }

  .navbar__brand img {
    width: clamp(12rem, 62vw, 14.75rem);
    max-height: 2.7rem;
  }

  .navbar__toggle {
    position: absolute;
    top: 0.5rem;
    right: 5%;
    z-index: 31;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-right: 0;
    border: 1px solid color-mix(in srgb, var(--color-neutral-darkest), transparent 86%);
    background: color-mix(in srgb, var(--color-white), transparent 5%);
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
    -webkit-tap-highlight-color: transparent;
  }

  .navbar__toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 1rem 2.25rem rgba(0, 0, 0, 0.1);
  }

  .navbar__toggle span {
    position: absolute;
    width: 1.125rem;
    height: 0.125rem;
    margin: 0;
    border-radius: 999px;
    background: var(--color-neutral-darkest);
  }

  .navbar__toggle span:nth-child(1) {
    transform: translateY(-0.375rem);
  }

  .navbar__toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .navbar__toggle span:nth-child(3) {
    transform: translateY(0.375rem);
  }

  .navbar__toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .navbar__toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .navbar__toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .navbar__menu {
    display: grid;
    position: fixed;
    z-index: 30;
    top: 4rem;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
    overflow: hidden;
    align-content: start;
    gap: 0.15rem;
    padding: 1.75rem 5% 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid color-mix(in srgb, var(--color-neutral-darkest), transparent 92%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    visibility: hidden;
    transition:
      opacity 240ms ease,
      transform 320ms var(--ease-clean),
      visibility 240ms ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .navbar__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .navbar__menu a {
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding: 0.875rem 0;
  }

  .navbar__menu > a:not(.button) {
    width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--color-neutral-darkest), transparent 90%);
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 7.5vw, 2.75rem);
    line-height: 1.1;
    transform: translateX(-0.25rem);
    opacity: 0;
    transition:
      opacity 320ms ease,
      transform 420ms var(--ease-clean),
      color var(--motion-fast) ease;
  }

  .navbar__menu.is-open > a:not(.button) {
    transform: translateX(0);
    opacity: 1;
  }

  .navbar__menu.is-open > a:nth-child(2) {
    transition-delay: 45ms;
  }

  .navbar__menu.is-open > a:nth-child(3) {
    transition-delay: 90ms;
  }

  .navbar__menu.is-open > a:nth-child(4) {
    transition-delay: 135ms;
  }

  .navbar__menu .button {
    width: 100%;
    min-height: 3.5rem;
    margin-top: 1.75rem;
    margin-bottom: 0;
    border-color: var(--color-eden-dark);
    border-radius: 0.875rem;
    background: var(--color-eden);
    box-shadow: 0 0.25rem 0 0 var(--color-eden-dark);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(0.5rem);
    opacity: 0;
    transition:
      opacity 320ms ease 170ms,
      transform 420ms var(--ease-clean) 170ms,
      box-shadow var(--motion-fast) var(--ease-clean),
      background-color var(--motion-fast) ease;
  }

  .navbar__menu.is-open .button {
    transform: translateY(0);
    opacity: 1;
  }

  .process__grid,
  .benefits__grid,
  .cta__grid,
  .feature-split__inner,
  .feature-split--flush {
    grid-template-columns: 1fr;
  }

  .process__grid,
  .benefits__grid {
    gap: 3rem;
  }

  .cta__copy {
    justify-self: stretch;
    padding: 4rem 0;
  }

  .feature-split--flush {
    min-height: auto;
    padding-top: 4rem;
  }

  .feature-split--flush .feature-split__media {
    order: 2;
    min-height: auto;
    border-radius: 0;
  }

  .feature-split--flush .feature-split__copy {
    width: 90%;
    margin-inline: auto;
  }

  .cta__inner {
    width: 90%;
    margin-inline: auto;
  }

  .cta__image {
    min-height: auto;
  }

  .cta__image img {
    position: static;
    width: 100%;
    height: auto;
  }

  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
    padding-bottom: 3rem;
  }

  .footer__brand,
  .footer__social {
    justify-self: center;
  }

  .footer__brand img {
    width: clamp(14.5rem, 78vw, 18rem);
    max-height: 3.1rem;
    object-position: center;
  }

  .footer__bottom {
    flex-wrap: wrap;
  }
}

@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;
  }
}

@media (max-width: 767px) {
  .services__grid,
  .benefits__list,
  .feature-list__grid,
  .case-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-list__intro {
    margin-bottom: 3rem;
  }

  .hero__intro {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .timeline__item {
    gap: 1.5rem;
  }

  .timeline__line {
    left: 2rem;
  }

  .timeline__icon {
    padding-inline: 0.5rem;
  }

  .footer__links {
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
