:root {
  --forest-green: #243b2e;
  --deep-olive: #3a4a36;
  --olive-light: #687052;
  --graphite: #1f2327;
  --gunmetal: #343a40;
  --silver: #b7bdc3;
  --light-gray: #e3e6e8;
  --ink: #071014;
  --ink-soft: #0a1317;
  --surface: #0d171b;
  --surface-light: #111c20;
  --line: rgb(183 189 195 / 16%);
  --muted: rgb(227 230 232 / 66%);
  --header-height: clamp(4rem, 6vw, 5.25rem);
  --page-gutter: clamp(1.25rem, 5vw, 5.75rem);
  --section-space: clamp(5.5rem, 10vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--light-gray);
  background: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.svg-filters {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--light-gray);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 2px solid #9aa171;
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgb(183 189 195 / 10%);
  background: linear-gradient(180deg, rgb(5 14 18 / 98%), rgb(6 15 19 / 92%));
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgb(5 13 17 / 96%);
  box-shadow: 0 0.8rem 2.2rem rgb(0 0 0 / 24%);
  backdrop-filter: blur(16px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(104 112 82 / 32%), transparent);
}

.site-header__inner {
  display: flex;
  width: 100%;
  max-width: 96rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.55rem, 1vw, 0.85rem);
}

.brand__mark {
  display: block;
  width: clamp(2.1rem, 3.3vw, 3rem);
  aspect-ratio: 0.8;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: url("#remove-white");
}

.brand__name {
  display: flex;
  align-items: center;
  gap: clamp(0.22rem, 0.42vw, 0.45rem);
  color: var(--light-gray);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(0.88rem, 1.35vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__star {
  color: var(--olive-light);
  font-size: 0.72em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.35rem);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(0.72rem, 0.85vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-nav > a:not(.site-nav__cta) {
  position: relative;
  padding: 0.75rem 0;
  color: rgb(227 230 232 / 78%);
  transition: color 180ms ease;
}

.site-nav > a:not(.site-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--olive-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.site-nav__cta):hover,
.site-nav > a:not(.site-nav__cta):focus-visible {
  color: #fff;
}

.site-nav > a:not(.site-nav__cta):hover::after,
.site-nav > a:not(.site-nav__cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__cta {
  min-width: clamp(7rem, 10vw, 8.8rem);
  padding: 0.85rem 1.2rem;
  border: 1px solid rgb(104 112 82 / 35%);
  border-radius: 0.18rem;
  color: #f0f1eb;
  background: linear-gradient(135deg, #3f4c34, #313c2d);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%), 0 0.5rem 2rem rgb(0 0 0 / 15%);
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  border-color: rgb(183 189 195 / 45%);
  background: linear-gradient(135deg, #4c5a3d, #384632);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.72rem;
  border: 1px solid rgb(183 189 195 / 24%);
  border-radius: 0.2rem;
  color: var(--light-gray);
  background: rgb(31 35 39 / 55%);
  cursor: pointer;
}

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

.menu-toggle span + span {
  margin-top: 0.35rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-color: #10181a;
  background-image: url("assets/hero-veteran.png");
  background-position: center center;
  background-size: cover;
}

.hero__video {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(3 11 14 / 85%) 0%, rgb(4 12 15 / 70%) 28%, rgb(6 12 13 / 24%) 58%, rgb(4 9 11 / 13%) 100%),
    linear-gradient(0deg, rgb(2 8 10 / 42%) 0%, transparent 44%, rgb(2 7 9 / 8%) 100%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 38%, rgb(79 91 67 / 8%), transparent 33%),
    repeating-linear-gradient(117deg, transparent 0 4px, rgb(255 255 255 / 0.007) 4px 5px);
  mix-blend-mode: soft-light;
}

.hero__shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 10rem rgb(0 0 0 / 26%);
}

.hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  max-width: 96rem;
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(1.6rem, 4vh, 4rem)) var(--page-gutter)
    clamp(2rem, 5vh, 4.5rem);
  align-items: center;
}

.hero__content {
  width: min(49rem, 57vw);
  animation: hero-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: #899267;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--hero {
  margin-bottom: 1rem;
  color: rgb(185 194 144 / 82%);
  text-shadow: 0 0.15rem 0.7rem rgb(0 0 0 / 82%);
}

.hero h1 {
  margin: 0;
  color: #f0f1f1;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 5.55vw, 5.85rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 0.16rem 0 rgb(0 0 0 / 55%), 0 0.75rem 2.4rem rgb(0 0 0 / 32%);
}

.hero__rule {
  width: clamp(12rem, 27vw, 25rem);
  height: 0.2rem;
  margin: clamp(1.1rem, 2.2vw, 2rem) 0 clamp(0.85rem, 1.5vw, 1.35rem);
  background: linear-gradient(90deg, #7b8458, #526044 72%, transparent);
  box-shadow: 0 1px 0 rgb(0 0 0 / 40%);
}

.hero__copy {
  max-width: 37rem;
  margin: 0;
  color: rgb(227 230 232 / 88%);
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  line-height: 1.65;
  text-shadow: 0 0.15rem 0.7rem rgb(0 0 0 / 82%);
}

.hero__actions {
  display: flex;
  margin-top: clamp(1.35rem, 2.5vw, 2.25rem);
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  min-width: clamp(8.3rem, 12vw, 10.25rem);
  min-height: 3rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(0.8rem, 0.9vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

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

.button--primary {
  border-color: rgb(104 112 82 / 45%);
  color: #f4f4ef;
  background: linear-gradient(135deg, #4a583b, #34422f);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%), 0 0.65rem 1.8rem rgb(0 0 0 / 20%);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #596946, #3e4c36);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%), 0 0.8rem 2rem rgb(0 0 0 / 28%);
}

.button--secondary {
  border-color: rgb(183 189 195 / 52%);
  color: #e9ebec;
  background: rgb(8 15 17 / 23%);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 25%);
  backdrop-filter: blur(3px);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgb(227 230 232 / 82%);
  background: rgb(52 58 64 / 42%);
}

.hero__chevrons {
  position: absolute;
  z-index: 4;
  top: 53%;
  right: -1.5%;
  width: min(42vw, 42rem);
  height: min(74vh, 39rem);
  overflow: visible;
  pointer-events: none;
  transform: translateY(-45%);
}

.hero__chevrons polyline {
  fill: none;
  stroke: #7a825d;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.hero__chevrons polyline:nth-child(1) {
  opacity: 0.34;
}

.hero__chevrons polyline:nth-child(2) {
  opacity: 0.56;
}

.hero__chevrons polyline:nth-child(3) {
  opacity: 0.78;
}

.video-control {
  position: absolute;
  z-index: 8;
  right: var(--page-gutter);
  bottom: 2rem;
  display: inline-flex;
  min-height: 2.35rem;
  padding: 0 0.85rem;
  border: 1px solid rgb(183 189 195 / 26%);
  border-radius: 999px;
  align-items: center;
  gap: 0.6rem;
  color: rgb(227 230 232 / 72%);
  background: rgb(5 13 16 / 52%);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.video-control:hover,
.video-control:focus-visible {
  border-color: rgb(137 146 103 / 70%);
  color: #fff;
}

.video-control__pause {
  position: relative;
  width: 0.58rem;
  height: 0.72rem;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.video-control[aria-pressed="true"] .video-control__pause {
  width: 0;
  height: 0;
  border-top: 0.38rem solid transparent;
  border-right: 0;
  border-bottom: 0.38rem solid transparent;
  border-left: 0.58rem solid currentColor;
}

.hero__scroll {
  position: absolute;
  z-index: 8;
  bottom: 1.65rem;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: rgb(227 230 232 / 54%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 2rem;
  overflow: hidden;
  background: rgb(183 189 195 / 26%);
}

.hero__scroll i::after {
  display: block;
  width: 1px;
  height: 60%;
  content: "";
  background: #8e966a;
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-line {
  from {
    transform: translateY(-110%);
  }

  to {
    transform: translateY(180%);
  }
}

.section-shell {
  width: min(100% - (var(--page-gutter) * 2), 84rem);
  margin-inline: auto;
}

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

.section h2 {
  margin: 0;
  color: #edf0f0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.03;
  text-transform: uppercase;
}

.section h3 {
  color: #edf0f0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading--split > p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.creed {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid rgb(183 189 195 / 14%);
  background:
    linear-gradient(90deg, transparent, rgb(58 74 54 / 15%) 50%, transparent),
    #081115;
}

.creed::before,
.creed::after {
  position: absolute;
  top: 0;
  width: 18rem;
  height: 100%;
  content: "";
  opacity: 0.16;
  background: repeating-linear-gradient(135deg, transparent 0 9px, #7e8760 9px 10px);
}

.creed::before {
  left: -9rem;
}

.creed::after {
  right: -9rem;
}

.creed__inner {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.2vw, 3.2rem);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.creed__star {
  color: #6e7753;
}

.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 15%, rgb(49 68 56 / 24%), transparent 30rem),
    var(--ink-soft);
}

.services::before {
  position: absolute;
  top: -15rem;
  right: -9rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgb(104 112 82 / 9%);
  content: "";
  transform: rotate(45deg);
}

.service-grid {
  display: grid;
  margin-top: clamp(3.2rem, 6vw, 5.5rem);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 31rem;
  padding: clamp(1.7rem, 3.3vw, 3rem);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgb(17 29 33 / 68%), rgb(8 17 21 / 48%));
  transition: background 240ms ease, transform 240ms ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4.5rem;
  height: 1px;
  content: "";
  background: #737b59;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.service-card:hover {
  z-index: 1;
  background: linear-gradient(150deg, rgb(28 43 43 / 88%), rgb(11 22 25 / 82%));
  transform: translateY(-0.35rem);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__top {
  display: flex;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
  align-items: flex-start;
  justify-content: space-between;
}

.service-card__number {
  color: rgb(183 189 195 / 38%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  fill: none;
  stroke: #77805d;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.25;
}

.service-card h3 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  letter-spacing: 0.02em;
}

.service-card > p {
  min-height: 6.8rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.service-card ul {
  display: grid;
  margin: 1.6rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgb(183 189 195 / 10%);
  gap: 0.65rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  color: rgb(227 230 232 / 72%);
  font-size: 0.76rem;
}

.service-card li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  content: "";
  background: #747d59;
  transform: rotate(45deg);
}

.about {
  overflow: hidden;
  background: #0c1519;
}

.about::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.018) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(25rem, 1.15fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 9rem);
}

.about__visual {
  position: relative;
  display: grid;
  min-height: 39rem;
  border: 1px solid rgb(183 189 195 / 14%);
  place-items: center;
  background:
    radial-gradient(circle, rgb(80 95 67 / 25%), transparent 60%),
    linear-gradient(145deg, rgb(31 45 43 / 38%), transparent);
}

.about__visual::before,
.about__visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(122 130 93 / 24%);
  transform: rotate(45deg);
}

.about__visual::before {
  width: 17rem;
  height: 17rem;
}

.about__visual::after {
  width: 11rem;
  height: 11rem;
}

.about__mark {
  position: relative;
  z-index: 2;
  width: min(48%, 13rem);
  aspect-ratio: 0.8;
  overflow: hidden;
  filter: drop-shadow(0 1.4rem 2rem rgb(0 0 0 / 35%));
}

.about__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: url("#remove-white");
}

.about__coordinates {
  position: absolute;
  right: 1.6rem;
  bottom: 1.4rem;
  left: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgb(227 230 232 / 42%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about__coordinates i {
  height: 1px;
  flex: 1;
  background: rgb(183 189 195 / 14%);
}

.about__content h2 {
  max-width: 42rem;
}

.about__content > p {
  max-width: 39rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.about__content .about__lead {
  margin-top: 2rem;
  color: rgb(227 230 232 / 88%);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.62;
}

.principles {
  display: grid;
  margin: 2.5rem 0 2.25rem;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.principles > div {
  padding: 1.35rem 1rem 1.35rem 0;
}

.principles > div + div {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}

.principles strong,
.principles span {
  display: block;
}

.principles strong {
  color: #dfe3e3;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principles span {
  margin-top: 0.4rem;
  color: rgb(227 230 232 / 50%);
  font-size: 0.7rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #dfe3dd;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  color: #899267;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.35rem);
}

.impact {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(7 16 20 / 98%) 0 43%, rgb(7 16 20 / 70%)),
    url("assets/hero-veteran.png") center 44% / cover no-repeat;
}

.impact::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, #081115, transparent 24%, transparent 70%, #081115);
  pointer-events: none;
}

.impact__texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(117deg, transparent 0 7px, rgb(255 255 255 / 0.025) 7px 8px);
}

.impact .section-shell {
  position: relative;
  z-index: 2;
}

.impact__intro {
  max-width: 49rem;
}

.impact__intro > p:last-child {
  max-width: 39rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.impact-path {
  display: grid;
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(183 189 195 / 25%);
  list-style: none;
}

.impact-path li {
  position: relative;
  display: grid;
  min-height: 15rem;
  padding: 2.2rem clamp(1rem, 3vw, 2.5rem) 2rem 0;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
}

.impact-path li + li {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid rgb(183 189 195 / 18%);
}

.impact-path li::before {
  position: absolute;
  top: -0.22rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: #858d65;
  transform: rotate(45deg);
}

.impact-path li + li::before {
  left: clamp(1rem, 3vw, 2.5rem);
}

.impact-path__number {
  padding-top: 0.4rem;
  color: #7b845e;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.impact-path h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
}

.impact-path p {
  max-width: 19rem;
  margin: 0;
  color: rgb(227 230 232 / 62%);
  font-size: 0.83rem;
  line-height: 1.7;
}

.impact-quote {
  position: relative;
  display: grid;
  max-width: 48rem;
  margin: 2rem 0 0 auto;
  padding: 2.3rem 2.5rem 2.3rem 6rem;
  border: 1px solid rgb(122 130 93 / 28%);
  background: rgb(7 16 20 / 58%);
  backdrop-filter: blur(7px);
}

.impact-quote > span {
  position: absolute;
  top: 1rem;
  left: 2rem;
  color: #7c845f;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}

.impact-quote p {
  margin: 0;
  color: #dfe2e0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.resources {
  background:
    radial-gradient(circle at 15% 85%, rgb(47 65 53 / 20%), transparent 28rem),
    #0b1418;
}

.resources__media {
  position: relative;
  min-height: 23rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  overflow: hidden;
  border: 1px solid rgb(183 189 195 / 16%);
}

.resources__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(5 14 17 / 90%) 0%, rgb(5 14 17 / 54%) 42%, transparent 73%),
    linear-gradient(0deg, rgb(5 14 17 / 48%), transparent 52%);
}

.resources__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
  object-position: center center;
}

.resources__media figcaption {
  position: absolute;
  z-index: 1;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  max-width: 25rem;
}

.resources__media figcaption span {
  color: #899267;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resources__media figcaption p {
  margin: 0.65rem 0 0;
  color: #e8ebea;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.resources__media + .resource-grid {
  margin-top: 1rem;
}

.resource-grid {
  display: grid;
  margin-top: clamp(3.2rem, 6vw, 5.5rem);
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.resource-card {
  position: relative;
  display: flex;
  min-height: 25rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  flex-direction: column;
  background:
    linear-gradient(135deg, transparent 0 72%, rgb(83 96 67 / 9%) 72%),
    #0e191d;
  transition: border-color 220ms ease, transform 220ms ease;
}

.resource-card:hover {
  border-color: rgb(122 130 93 / 48%);
  transform: translateY(-0.35rem);
}

.resource-card--featured {
  border-color: rgb(122 130 93 / 42%);
  background:
    linear-gradient(135deg, transparent 0 69%, rgb(104 112 82 / 18%) 69%),
    linear-gradient(145deg, #1a2826, #101b1e);
}

.resource-card__type {
  color: #7f8861;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resource-card h3 {
  max-width: 18rem;
  margin: 4rem 0 1.2rem;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  letter-spacing: 0.015em;
  line-height: 1.18;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.resource-card a {
  display: flex;
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgb(183 189 195 / 12%);
  align-items: center;
  justify-content: space-between;
  color: #dfe2df;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card a span {
  color: #899267;
  font-size: 1.1rem;
}

.contact {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgb(19 34 32 / 78%), transparent 50%),
    #081216;
}

.contact::before {
  position: absolute;
  top: -13rem;
  left: -10rem;
  width: 37rem;
  height: 37rem;
  border: 1px solid rgb(104 112 82 / 11%);
  content: "";
  transform: rotate(45deg);
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1fr);
  gap: clamp(4rem, 10vw, 9rem);
}

.contact__content > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact__meta {
  display: flex;
  margin-top: 2.3rem;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact__meta span {
  padding: 0.6rem 0.75rem;
  border: 1px solid rgb(183 189 195 / 16%);
  color: rgb(227 230 232 / 58%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgb(183 189 195 / 19%);
  background: rgb(13 24 27 / 82%);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 15%);
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form label > span {
  color: rgb(227 230 232 / 68%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(183 189 195 / 26%);
  border-radius: 0;
  color: #f1f3f3;
  background: rgb(5 14 17 / 46%);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input {
  height: 3.25rem;
  padding: 0 0.85rem;
}

.contact-form textarea {
  min-height: 7.5rem;
  padding: 0.85rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8d956a;
  background: rgb(5 14 17 / 74%);
}

.contact-form__footer {
  display: flex;
  min-height: 3rem;
  margin-top: 0.35rem;
  align-items: center;
  gap: 1rem;
}

.contact-form__footer .button {
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: rgb(227 230 232 / 64%);
  font-size: 0.72rem;
  line-height: 1.5;
}

.site-footer {
  padding: 3.5rem 0 1.6rem;
  border-top: 1px solid var(--line);
  background: #050d11;
}

.site-footer__main,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand--footer .brand__mark {
  width: 2.6rem;
}

.brand--footer .brand__name {
  font-size: 0.94rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.7vw, 2.5rem);
  color: rgb(227 230 232 / 58%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgb(183 189 195 / 10%);
  color: rgb(227 230 232 / 36%);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-grid .reveal:nth-child(2),
.impact-path .reveal:nth-child(2),
.resource-grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.service-grid .reveal:nth-child(3),
.impact-path .reveal:nth-child(3),
.resource-grid .reveal:nth-child(3) {
  transition-delay: 200ms;
}

.evaluation {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 15%, rgb(63 81 62 / 25%), transparent 27rem),
    #0a1418;
}

.evaluation::before {
  position: absolute;
  right: -12rem;
  bottom: -19rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgb(104 112 82 / 10%);
  content: "";
  transform: rotate(45deg);
}

.evaluation__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(36rem, 1.32fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 8rem);
}

.evaluation__content > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.7rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.evaluation__assurances {
  display: grid;
  margin: 2.3rem 0 0;
  padding: 0;
  gap: 0.85rem;
  list-style: none;
}

.evaluation__assurances li {
  position: relative;
  padding-left: 1.35rem;
  color: rgb(227 230 232 / 72%);
  font-size: 0.78rem;
}

.evaluation__assurances li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid #8a9368;
  content: "";
  transform: rotate(45deg);
}

.evaluation-form {
  display: grid;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgb(183 189 195 / 20%);
  background:
    linear-gradient(145deg, rgb(36 51 48 / 38%), transparent 50%),
    rgb(13 24 28 / 90%);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 18%);
  gap: 1.35rem;
}

.evaluation-form label {
  display: grid;
  gap: 0.55rem;
}

.evaluation-form label > span {
  color: rgb(227 230 232 / 68%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evaluation-form label small {
  color: rgb(227 230 232 / 35%);
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}

.evaluation-form input,
.evaluation-form select,
.evaluation-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(183 189 195 / 26%);
  border-radius: 0;
  color: #f1f3f3;
  background: rgb(5 14 17 / 48%);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.evaluation-form input,
.evaluation-form select {
  height: 3.25rem;
  padding: 0 0.85rem;
}

.evaluation-form textarea {
  min-height: 7.5rem;
  padding: 0.85rem;
  resize: vertical;
}

.evaluation-form select {
  color-scheme: dark;
}

.evaluation-form input:focus,
.evaluation-form select:focus,
.evaluation-form textarea:focus {
  border-color: #8d956a;
  background: rgb(5 14 17 / 78%);
}

.evaluation-form input:user-invalid,
.evaluation-form select:user-invalid,
.evaluation-form textarea:user-invalid {
  border-color: #a16a63;
}

.evaluation-progress {
  display: grid;
  margin-bottom: 0.7rem;
  gap: 0.75rem;
}

.evaluation-progress__labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.evaluation-progress__labels span {
  color: rgb(227 230 232 / 47%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evaluation-progress__labels span:last-child {
  color: #929b70;
}

.evaluation-progress__track {
  position: relative;
  height: 0.18rem;
  overflow: hidden;
  background: rgb(183 189 195 / 13%);
}

.evaluation-progress__track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, #6f7956, #9da77a);
  transition: width 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.evaluation-panel {
  display: grid;
  min-height: 22rem;
  align-content: start;
  gap: 1.25rem;
}

.evaluation-panel[hidden],
.evaluation-form [hidden] {
  display: none;
}

.evaluation-panel__heading {
  display: flex;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgb(183 189 195 / 12%);
  align-items: flex-start;
  gap: 1rem;
}

.evaluation-panel__heading > span {
  padding-top: 0.35rem;
  color: #7e8760;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.evaluation-panel__heading p,
.evaluation-panel__heading h3 {
  margin: 0;
}

.evaluation-panel__heading p {
  margin-bottom: 0.25rem;
  color: rgb(227 230 232 / 42%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.evaluation-panel__heading h3 {
  color: #edf0ef;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  letter-spacing: 0.02em;
}

.condition-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.condition-fieldset legend {
  margin-bottom: 0.7rem;
  color: rgb(227 230 232 / 68%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.condition-fieldset legend small {
  margin-left: 0.35rem;
  color: rgb(227 230 232 / 35%);
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.evaluation-form .condition-grid label {
  display: flex;
  min-height: 2.85rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgb(183 189 195 / 12%);
  align-items: center;
  color: rgb(227 230 232 / 67%);
  background: rgb(5 14 17 / 36%);
  cursor: pointer;
  gap: 0.65rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.evaluation-form .condition-grid label:has(input:checked) {
  border-color: rgb(132 143 98 / 55%);
  color: #edf0e9;
  background: rgb(59 74 53 / 42%);
}

.evaluation-form .condition-grid input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  accent-color: #7e8760;
}

.evaluation-form .condition-grid span {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
}

.evaluation-form__footer {
  display: flex;
  min-height: 3rem;
  margin-top: 0.1rem;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.evaluation-form__footer .button {
  min-width: 9rem;
  cursor: pointer;
}

.evaluation-form__privacy {
  margin: -0.55rem 0 0;
  color: rgb(227 230 232 / 34%);
  font-size: 0.59rem;
  line-height: 1.55;
  text-align: right;
}

.evaluation-form .form-status {
  min-height: 1.2rem;
  margin: 0;
  color: #aab28b;
  font-size: 0.65rem;
  line-height: 1.55;
  text-align: right;
}

.service-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid--four .service-card {
  min-height: 29rem;
  padding: clamp(1.5rem, 2.5vw, 2.35rem);
}

.service-grid--four .service-card__top {
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.service-grid--four .service-card > p {
  min-height: 0;
}

.process {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(7 16 20 / 98%) 0 44%, rgb(7 16 20 / 72%)),
    url("assets/process-consultation.png") center 44% / cover no-repeat;
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, #081115, transparent 22%, transparent 72%, #081115);
  pointer-events: none;
}

.process__texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(
    117deg,
    transparent 0 7px,
    rgb(255 255 255 / 0.025) 7px 8px
  );
}

.process .section-shell {
  position: relative;
  z-index: 2;
}

.process__intro {
  max-width: 52rem;
}

.process__intro > p:last-child {
  max-width: 39rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-path {
  display: grid;
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(183 189 195 / 25%);
  list-style: none;
}

.process-path li {
  position: relative;
  display: grid;
  min-height: 15rem;
  padding: 2.2rem clamp(1rem, 3vw, 2.5rem) 2rem 0;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
}

.process-path li + li {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid rgb(183 189 195 / 18%);
}

.process-path li::before {
  position: absolute;
  top: -0.22rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: #858d65;
  transform: rotate(45deg);
}

.process-path li + li::before {
  left: clamp(1rem, 3vw, 2.5rem);
}

.process-path__number {
  padding-top: 0.4rem;
  color: #7b845e;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.process-path h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  letter-spacing: 0.02em;
}

.process-path p {
  max-width: 19rem;
  margin: 0;
  color: rgb(227 230 232 / 62%);
  font-size: 0.83rem;
  line-height: 1.7;
}

.process__cta {
  display: flex;
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  border-block: 1px solid rgb(183 189 195 / 15%);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.process__cta p {
  margin: 0;
  color: rgb(227 230 232 / 60%);
  font-size: 0.82rem;
}

.calculator {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgb(52 72 59 / 22%), transparent 28rem),
    #0b1519;
}

.calculator::after {
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgb(104 112 82 / 11%);
  content: "";
  transform: rotate(45deg);
}

.calculator__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(29rem, 1fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 9rem);
}

.calculator__content {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.calculator__content > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.7rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.calculator__note {
  display: grid;
  margin: 2rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 2px solid #7e8760;
  background: rgb(23 37 38 / 58%);
  gap: 0.35rem;
}

.calculator__note strong {
  color: #dfe3e1;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator__note span {
  color: rgb(227 230 232 / 56%);
  font-size: 0.7rem;
  line-height: 1.6;
}

.calculator__links {
  display: grid;
  justify-items: start;
  gap: 0.85rem;
}

.calculator__content .rating-result {
  margin: 2rem 0;
}

.rating-calculator {
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border: 1px solid rgb(183 189 195 / 20%);
  background:
    linear-gradient(145deg, rgb(41 56 53 / 34%), transparent 50%),
    #0c171b;
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 20%);
}

.rating-calculator__header {
  display: flex;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgb(183 189 195 / 13%);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rating-calculator__header div > span,
.rating-calculator__header small {
  display: block;
}

.rating-calculator__header div > span {
  color: #e7eae9;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating-calculator__header small {
  margin-top: 0.25rem;
  color: rgb(227 230 232 / 42%);
  font-size: 0.62rem;
}

.rating-calculator__header .rate-year {
  padding: 0.5rem 0.65rem;
  border: 1px solid rgb(122 130 93 / 44%);
  color: #aeb691;
  background: rgb(58 74 54 / 24%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rating-calculator__live {
  display: grid;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgb(122 130 93 / 24%);
  background: linear-gradient(110deg, rgb(64 78 55 / 30%), rgb(31 46 42 / 18%));
  gap: 1rem;
}

.rating-calculator__live p {
  display: grid;
  margin: 0;
  color: rgb(227 230 232 / 42%);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  gap: 0.25rem;
}

.rating-calculator__live p + p {
  padding-left: 1rem;
  border-left: 1px solid rgb(255 255 255 / 9%);
}

.rating-calculator__live strong {
  color: #e8ebdf;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0;
}

.rating-list {
  display: grid;
  margin: 1.5rem 0;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.rating-row {
  position: relative;
  display: grid;
  padding: 0.75rem;
  grid-template-columns: minmax(0, 1fr) 6.8rem 1.9rem;
  border: 1px solid rgb(183 189 195 / 12%);
  align-items: end;
  background: rgb(5 14 17 / 34%);
  gap: 0.65rem;
}

.rating-row:focus-within {
  z-index: 20;
}

.rating-row__condition {
  min-width: 0;
}

.rating-row label {
  display: grid;
  gap: 0.45rem;
}

.rating-row label > span {
  color: rgb(227 230 232 / 52%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating-row label > span small {
  margin-left: 0.25rem;
  color: rgb(227 230 232 / 27%);
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.rating-row input,
.rating-row select {
  width: 100%;
  height: 3.2rem;
  padding: 0 0.75rem;
  border: 1px solid rgb(183 189 195 / 19%);
  color: #edf0ef;
  background: #081317;
  font: inherit;
  color-scheme: dark;
}

.rating-row input::placeholder {
  color: rgb(227 230 232 / 27%);
}

.condition-picker {
  position: relative;
}

.condition-picker > input {
  padding-right: 2.8rem;
}

.condition-picker__toggle {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: grid;
  width: 2.6rem;
  height: 3.2rem;
  padding: 0;
  border: 0;
  place-items: center;
  color: #aeb598;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}

.condition-picker__toggle:hover,
.condition-picker__toggle:focus-visible {
  color: #f0f2ea;
  background: rgb(75 91 64 / 24%);
}

.condition-picker__menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 0.35rem);
  left: 0;
  width: min(22rem, calc(100vw - 5rem));
  min-width: 100%;
  max-height: min(22rem, 45vh);
  overflow-y: auto;
  border: 1px solid rgb(132 143 98 / 52%);
  background: #091519;
  box-shadow: 0 1.5rem 3.5rem rgb(0 0 0 / 55%);
  overscroll-behavior: contain;
}

.condition-picker__menu[hidden] {
  display: none;
}

.condition-picker__option {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-bottom: 1px solid rgb(183 189 195 / 9%);
  color: rgb(237 240 239 / 82%);
  background: transparent;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: left;
}

.condition-picker__option:last-child {
  border-bottom: 0;
}

.condition-picker__option:hover,
.condition-picker__option:focus-visible,
.condition-picker__option.is-highlighted {
  color: #fff;
  background: rgb(70 85 59 / 72%);
}

.condition-picker__empty {
  margin: 0;
  padding: 0.9rem;
  color: rgb(227 230 232 / 50%);
  font-size: 0.65rem;
  line-height: 1.5;
}

.rating-row__remove {
  display: grid;
  width: 1.9rem;
  height: 3.2rem;
  padding: 0;
  border: 1px solid transparent;
  place-items: center;
  color: rgb(227 230 232 / 38%);
  background: rgb(255 255 255 / 2%);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.rating-row__remove:hover {
  border-color: rgb(161 106 99 / 45%);
  color: #d6aaa4;
  background: rgb(111 54 50 / 18%);
}

.rating-calculator__add {
  display: flex;
  width: 100%;
  min-height: 3rem;
  border: 1px dashed rgb(122 130 93 / 42%);
  align-items: center;
  justify-content: center;
  color: #adb497;
  background: rgb(58 74 54 / 13%);
  cursor: pointer;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  gap: 0.45rem;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.rating-calculator__add:hover {
  border-color: rgb(139 150 101 / 72%);
  color: #e4e8dd;
  background: rgb(58 74 54 / 28%);
}

.rating-calculator__add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.household {
  min-width: 0;
  margin: 1.5rem 0;
  padding: 1.2rem;
  border: 1px solid rgb(183 189 195 / 13%);
  background: rgb(10 24 26 / 48%);
}

.household legend {
  padding: 0 0.4rem;
  color: #dfe3e1;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.household > p {
  margin: 0 0 1rem;
  color: rgb(227 230 232 / 38%);
  font-size: 0.59rem;
  line-height: 1.55;
}

.household__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.household__grid label {
  display: grid;
  gap: 0.4rem;
}

.household__grid label > span {
  color: rgb(227 230 232 / 52%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.household__grid input,
.household__grid select {
  width: 100%;
  height: 2.9rem;
  padding: 0 0.7rem;
  border: 1px solid rgb(183 189 195 / 19%);
  color: #edf0ef;
  background: #081317;
  font: inherit;
  font-size: 0.72rem;
  color-scheme: dark;
}

.household__check {
  display: flex;
  margin-top: 1rem;
  align-items: center;
  color: rgb(227 230 232 / 58%);
  font-size: 0.65rem;
  gap: 0.55rem;
}

.household__check input {
  width: 1rem;
  height: 1rem;
  accent-color: #7e8760;
}

.household__check:has(input:disabled) {
  opacity: 0.36;
}

.rating-calculator__calculate {
  width: 100%;
  margin-bottom: 1rem;
}

.rating-result {
  display: grid;
  padding: 1.6rem;
  background:
    linear-gradient(110deg, rgb(64 78 55 / 54%), rgb(31 46 42 / 38%)),
    #14211f;
  gap: 1rem;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.rating-result.is-updated {
  box-shadow: 0 0 0 1px rgb(151 162 112 / 52%), 0 1rem 3rem rgb(0 0 0 / 14%);
  transform: translateY(-0.12rem);
}

.rating-result__rating {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.rating-result__rating > span {
  max-width: 8rem;
  color: rgb(227 230 232 / 64%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.rating-result__rating > strong {
  color: #edf0ea;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 500;
  line-height: 0.85;
}

.rating-result__details {
  display: grid;
  padding-top: 0.85rem;
  grid-template-columns: 0.7fr 1.3fr;
  border-top: 1px solid rgb(255 255 255 / 10%);
  gap: 1rem;
}

.rating-result__details p {
  display: grid;
  margin: 0;
  color: rgb(227 230 232 / 46%);
  font-size: 0.65rem;
  gap: 0.32rem;
}

.rating-result__details p > span,
.rating-result__details p > strong {
  color: rgb(227 230 232 / 78%);
}

.rating-result__details p > strong {
  color: #e6eadd;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.rating-result__effective {
  margin: 0;
  color: rgb(227 230 232 / 34%);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rating-calculator__disclaimer {
  margin: 0.75rem 0 0;
  color: rgb(227 230 232 / 30%);
  font-size: 0.56rem;
  line-height: 1.6;
}

.faq {
  background:
    radial-gradient(circle at 10% 85%, rgb(49 67 55 / 22%), transparent 26rem),
    #091317;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(30rem, 1fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 9rem);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq__intro > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid rgb(183 189 195 / 18%);
}

.faq-list details {
  border-bottom: 1px solid rgb(183 189 195 / 18%);
}

.faq-list summary {
  position: relative;
  padding: 1.65rem 3rem 1.65rem 0;
  color: #e6e9e8;
  cursor: pointer;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.02em;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 1rem;
  height: 1px;
  content: "";
  background: #858d65;
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  max-width: 43rem;
  margin: 0;
  padding: 0 3rem 1.7rem 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(rgb(7 16 20 / 68%), rgb(7 16 20 / 84%)),
    url("assets/final-veterans-overlook.png") center 56% / cover no-repeat;
}

.final-cta::before {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgb(122 130 93 / 20%);
  content: "";
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 57rem;
  justify-items: center;
}

.final-cta__inner p:not(.eyebrow) {
  max-width: 41rem;
  margin: 1.5rem 0 2.2rem;
  color: rgb(227 230 232 / 72%);
  line-height: 1.7;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.site-footer__identity > p {
  margin: 1.2rem 0 0;
  color: rgb(227 230 232 / 38%);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(.site-footer__identity) {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.site-footer__grid h3 {
  margin: 0 0 0.55rem;
  color: #7f8861;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(.site-footer__identity) a {
  color: rgb(227 230 232 / 53%);
  font-size: 0.72rem;
  line-height: 1.45;
}

.site-footer__grid > div:not(.site-footer__identity) a:hover {
  color: #fff;
}

.site-footer__disclaimer {
  max-width: 63rem;
  margin-top: 3.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(183 189 195 / 10%);
}

.site-footer__disclaimer p {
  margin: 0;
  color: rgb(227 230 232 / 34%);
  font-size: 0.62rem;
  line-height: 1.65;
}

.site-footer__bottom a {
  color: inherit;
}

.mobile-cta {
  display: none;
}

@media (max-width: 68rem) {
  .site-header__inner {
    gap: 1rem;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .site-nav__cta {
    min-width: 6.8rem;
    padding-inline: 0.9rem;
  }

  .service-card {
    min-height: 33rem;
  }

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

  .service-grid--four .service-card {
    min-height: 25rem;
  }

  .evaluation__grid {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(27rem, 1.3fr);
    gap: 3rem;
  }

  .about__grid {
    gap: 4rem;
  }

  .about__visual {
    min-height: 34rem;
  }

  .contact__grid {
    gap: 4rem;
  }

  .calculator__grid,
  .faq__grid {
    gap: 4rem;
  }

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

@media (max-width: 44rem) {
  .menu-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    padding: 1rem var(--page-gutter) 1.35rem;
    border-bottom: 1px solid rgb(104 112 82 / 38%);
    background: rgb(5 14 18 / 98%);
    box-shadow: 0 1rem 2.5rem rgb(0 0 0 / 28%);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

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

  .site-nav > a:not(.site-nav__cta) {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgb(183 189 195 / 8%);
  }

  .site-nav > a:not(.site-nav__cta)::after {
    display: none;
  }

  .site-nav__cta {
    margin-top: 1rem;
  }

  .hero {
    background-position: 64% center;
  }

  .hero__video {
    object-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgb(3 11 14 / 90%) 0%, rgb(4 12 15 / 72%) 54%, rgb(5 11 13 / 24%) 100%),
      linear-gradient(0deg, rgb(2 8 10 / 55%) 0%, transparent 52%, rgb(2 7 9 / 12%) 100%);
  }

  .hero__content {
    width: min(34rem, 72vw);
  }

  .hero__chevrons {
    right: -15%;
    width: 58vw;
    opacity: 0.68;
  }

  .hero__scroll {
    display: none;
  }

  .video-control {
    right: var(--page-gutter);
    bottom: 1.1rem;
  }

  .section-heading--split,
  .about__grid,
  .contact__grid,
  .evaluation__grid,
  .calculator__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 1.5rem;
  }

  .section-heading--split > p {
    max-width: 37rem;
  }

  .service-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card__top {
    margin-bottom: 3.5rem;
  }

  .service-card > p {
    min-height: auto;
  }

  .about__visual {
    min-height: 27rem;
  }

  .about__grid {
    gap: 3.5rem;
  }

  .impact-path {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-path {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-path li,
  .process-path li + li {
    min-height: auto;
    padding: 2rem 0;
    border-top: 1px solid rgb(183 189 195 / 20%);
    border-left: 0;
  }

  .process-path li::before,
  .process-path li + li::before {
    top: -0.22rem;
    left: 0;
  }

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

  .impact-path li,
  .impact-path li + li {
    min-height: auto;
    padding: 2rem 0;
    border-top: 1px solid rgb(183 189 195 / 20%);
    border-left: 0;
  }

  .impact-path li::before,
  .impact-path li + li::before {
    top: -0.22rem;
    left: 0;
  }

  .impact-quote {
    margin-top: 2rem;
  }

  .resource-card {
    min-height: 22rem;
  }

  .contact__grid {
    gap: 3rem;
  }

  .evaluation__grid,
  .calculator__grid,
  .faq__grid {
    gap: 3.5rem;
  }

  .faq__intro {
    position: static;
  }

  .calculator__content {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .site-footer__identity {
    grid-column: 1 / -1;
  }

  body {
    padding-bottom: 4.6rem;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    right: 0.8rem;
    bottom: 0.75rem;
    left: 0.8rem;
    display: flex;
    min-height: 3.15rem;
    border: 1px solid rgb(122 130 93 / 55%);
    border-radius: 0.18rem;
    align-items: center;
    justify-content: center;
    color: #f3f4ef;
    background: linear-gradient(135deg, #526043, #34412f);
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 52%);
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 1rem));
  }
}

@media (max-width: 38rem) {
  :root {
    --header-height: 4rem;
  }

  .brand__name {
    font-size: clamp(0.72rem, 3vw, 0.92rem);
    gap: 0.2rem;
  }

  .brand__mark {
    width: 2rem;
  }

  .hero {
    background-position: 68% center;
  }

  .hero__video {
    object-position: 68% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgb(3 11 14 / 94%) 0%, rgb(4 12 15 / 77%) 68%, rgb(5 11 13 / 36%) 100%),
      linear-gradient(0deg, rgb(2 8 10 / 62%) 0%, transparent 60%);
  }

  .hero__inner {
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: clamp(2.5rem, 9vh, 5rem);
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .hero__copy {
    max-width: 27rem;
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .hero__rule {
    width: 55%;
  }

  .hero__actions {
    margin-top: 1.15rem;
    gap: 0.75rem;
  }

  .hero__actions .button {
    min-width: 0;
    flex: 1 1 8rem;
  }

  .hero__chevrons {
    top: 40%;
    right: -38%;
    width: 88vw;
    opacity: 0.5;
  }

  .eyebrow--hero {
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
  }

  .creed__inner {
    min-height: 4.5rem;
    letter-spacing: 0.16em;
    gap: 0.65rem;
  }

  .section h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

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

  .principles > div,
  .principles > div + div {
    padding: 1rem 0;
    border-left: 0;
  }

  .principles > div + div {
    border-top: 1px solid var(--line);
  }

  .about__visual {
    min-height: 22rem;
  }

  .about__coordinates {
    right: 1rem;
    left: 1rem;
    gap: 0.45rem;
  }

  .impact-quote {
    padding: 4rem 1.4rem 1.5rem;
  }

  .impact-quote > span {
    top: 0.35rem;
    left: 1.2rem;
  }

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

  .contact-form__footer,
  .site-footer__main,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form__footer .button {
    width: 100%;
  }

  .site-footer__nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .evaluation-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .evaluation-form__footer .button {
    width: 100%;
  }

  .condition-grid,
  .household__grid,
  .rating-result__details {
    grid-template-columns: 1fr;
  }

  .rating-calculator__header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .rating-row {
    grid-template-columns: minmax(0, 1fr) 1.9rem;
    padding: 0.6rem;
  }

  .rating-row__condition {
    grid-column: 1 / -1;
  }

  .rating-row__percentage {
    grid-column: 1;
    width: 7rem;
  }

  .rating-row__remove {
    grid-column: 2;
    grid-row: 2;
  }

  .rating-row input,
  .rating-row select,
  .rating-row__remove {
    height: 2.9rem;
  }

  .evaluation-panel {
    min-height: 0;
  }

  .evaluation-form__privacy,
  .evaluation-form .form-status {
    text-align: left;
  }

  .resources__media,
  .resources__media img {
    min-height: 19rem;
  }

  .resources__media img {
    object-position: 64% center;
  }

  .resources__media::after {
    background:
      linear-gradient(90deg, rgb(5 14 17 / 86%), rgb(5 14 17 / 38%) 72%, transparent),
      linear-gradient(0deg, rgb(5 14 17 / 70%), transparent 70%);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__identity {
    grid-column: auto;
  }
}

@media (max-height: 35rem) and (min-width: 39rem) {
  :root {
    --header-height: 3.5rem;
  }

  .site-header__inner {
    padding-right: 0.85rem;
    padding-left: 1.1rem;
  }

  .site-nav {
    font-size: 0.64rem;
  }

  .site-nav__cta {
    min-width: 6.15rem;
    padding: 0.7rem 0.8rem;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 1.75rem);
    padding-bottom: 1.25rem;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero__content {
    width: 19rem;
  }

  .hero__rule {
    width: 16rem;
    margin-top: 1rem;
    margin-bottom: 0.65rem;
  }

  .hero__copy {
    font-size: 0.72rem;
    line-height: 1.65;
  }

  .hero__actions {
    margin-top: 1rem;
    gap: 0.8rem;
  }

  .button {
    min-width: 7rem;
    min-height: 2.1rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.68rem;
  }

  .hero__chevrons {
    top: 42%;
    right: -10%;
  }
}

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

  .hero__video {
    display: none;
  }

  .video-control,
  .hero__scroll {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

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