:root {
  --navy-950: #07111f;
  --navy-900: #0a1728;
  --navy-800: #10233b;
  --blue-500: #3478c8;
  --blue-300: #8bb7e8;
  --ivory: #f4f1e8;
  --paper: #f7f7f4;
  --white: #fff;
  --ink: #10151b;
  --slate: #5e6670;
  --line: rgba(16, 21, 27, .17);
  --line-light: rgba(255, 255, 255, .19);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max-width: 1440px;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .7rem 1rem;
  color: var(--navy-950);
  background: var(--ivory);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5rem;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background-color .25s ease, border-color .25s ease, min-height .25s ease;
}

.site-header.scrolled {
  min-height: 4.5rem;
  background: rgba(7, 17, 31, .94);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: .75rem;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.brand-name {
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-name i {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.35rem, 2.4vw, 2.8rem);
}

.desktop-nav a,
.header-cta {
  position: relative;
  font-size: .79rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: .8rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.header-cta span {
  transition: transform .2s ease;
}

.header-cta:hover span,
.header-cta:focus-visible span {
  transform: translate(2px, -2px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(28rem, .98fr);
  min-height: 100svh;
  color: var(--white);
  background: var(--navy-950);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 9rem clamp(2rem, 6vw, 7rem) 4rem var(--page-pad);
}

.eyebrow,
.section-kicker {
  margin: 0 0 2.4rem;
  color: var(--blue-500);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.dialog-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 7.1vw, 7.4rem);
  line-height: .86;
}

.hero h1 em,
.section h2 em {
  color: var(--blue-300);
  font-weight: 400;
}

.hero-summary {
  max-width: 38rem;
  margin: clamp(2rem, 5vh, 4rem) 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 3.55rem;
  padding: .9rem 1.35rem;
  border: 0;
  border-radius: 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .045em;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.button span {
  transition: transform .2s ease;
}

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

.button-light {
  color: var(--navy-950);
  background: var(--ivory);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, .79);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .035em;
  text-decoration: none;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(3px);
}

.hero-models {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: auto 0 0;
  padding-top: 3rem;
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-models span {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--blue-300);
}

.hero-visual {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, .15), rgba(7, 17, 31, .02) 56%, rgba(7, 17, 31, .6));
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
}

.hero-index {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: rgba(255, 255, 255, .62);
  font-size: .61rem;
  font-weight: 500;
  letter-spacing: .16em;
}

.hero-index span:first-child {
  color: var(--white);
  font-family: var(--serif);
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1;
}

.hero-line {
  position: absolute;
  top: 5rem;
  bottom: 0;
  left: 12%;
  z-index: 2;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .38), transparent);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.statement {
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, .7fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.section h2 {
  font-size: clamp(3.3rem, 6vw, 6.7rem);
  line-height: .92;
}

.statement h2 em,
.clients h2 em,
.engagements h2 em,
.leadership h2 em {
  color: var(--blue-500);
}

.statement-body {
  padding-top: .75rem;
}

.statement-body p,
.clients-intro > p:last-child,
.leadership-copy > p {
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.82;
}

.statement-body p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.5vw, 1.35rem);
}

.statement-body p:last-child {
  margin-bottom: 0;
}

.section-ink {
  max-width: none;
  color: var(--white);
  background: var(--navy-900);
}

.section-ink > * {
  max-width: calc(var(--max-width) - (var(--page-pad) * 2));
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(17rem, 27rem);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.heading-note {
  max-width: 24rem;
  margin: 0 0 .45rem auto;
  color: rgba(255, 255, 255, .58);
  line-height: 1.75;
}

.capability-list {
  border-top: 1px solid var(--line-light);
}

.capability {
  display: grid;
  grid-template-columns: 5rem minmax(16rem, .8fr) minmax(18rem, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: background-color .2s ease, padding .2s ease;
}

.capability:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(255, 255, 255, .035);
}

.capability-number,
.engagement-number {
  color: var(--blue-300);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
}

.capability h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.capability p {
  max-width: 35rem;
  margin: 0;
  color: rgba(255, 255, 255, .59);
  line-height: 1.7;
}

.clients {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(25rem, 1.1fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
}

.clients-intro {
  position: sticky;
  top: 8rem;
}

.clients-intro > p:last-child {
  max-width: 34rem;
  margin-top: 2.5rem;
}

.client-types {
  border-top: 1px solid var(--line);
}

.client-type {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.client-type > span {
  padding-top: .35rem;
  color: var(--blue-500);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
}

.client-type h3 {
  margin: 0 0 .5rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.client-type p {
  max-width: 31rem;
  margin: 0;
  color: var(--slate);
}

.approach {
  position: relative;
  max-width: none;
  overflow: hidden;
  color: var(--white);
  background: #173758;
}

.approach::before {
  position: absolute;
  top: -15rem;
  left: 36%;
  width: 45rem;
  height: 45rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.approach::after {
  position: absolute;
  top: -3rem;
  left: 55%;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.approach-title,
.approach-grid {
  position: relative;
  z-index: 1;
  max-width: calc(var(--max-width) - (var(--page-pad) * 2));
  margin-inline: auto;
}

.section-kicker-light {
  color: var(--blue-300);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle {
  min-height: 22rem;
  padding: 2rem clamp(1.4rem, 3vw, 3rem) 2.5rem 0;
}

.principle + .principle {
  padding-left: clamp(1.4rem, 3vw, 3rem);
  border-left: 1px solid var(--line-light);
}

.principle-label {
  margin: 0 0 clamp(5rem, 8vw, 8rem);
  color: var(--blue-300);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.principle h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
}

.principle > p:last-child {
  max-width: 23rem;
  margin: 0;
  color: rgba(255, 255, 255, .61);
  line-height: 1.7;
}

.section-heading-dark .heading-note {
  color: var(--slate);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.engagement-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 32rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .44);
}

.engagement-card-featured {
  color: var(--white);
  background: var(--navy-900);
}

.engagement-number {
  display: block;
}

.engagement-card > div {
  margin: auto 0 0;
}

.card-label {
  margin: 0 0 1rem;
  color: var(--blue-500);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.engagement-card-featured .card-label,
.engagement-card-featured .engagement-number {
  color: var(--blue-300);
}

.engagement-card h3 {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.engagement-card p:last-child {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.engagement-card-featured p:last-child {
  color: rgba(255, 255, 255, .61);
}

.card-arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  color: var(--blue-500);
  font-size: 1.2rem;
}

.engagement-card-featured .card-arrow {
  color: var(--blue-300);
}

.leadership {
  display: grid;
  grid-template-columns: minmax(16rem, .85fr) minmax(0, 1.15fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.leadership-monogram {
  display: grid;
  aspect-ratio: 1;
  max-width: 31rem;
  place-items: center;
  color: var(--ivory);
  background: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 11rem);
  letter-spacing: -.08em;
}

.leadership-copy {
  max-width: 39rem;
}

.leadership-copy .lead {
  margin-top: 2.5rem;
  color: var(--ink);
  font-size: 1.16rem;
}

.text-link-dark {
  margin-top: 1.5rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: .35rem;
}

.text-link-dark:hover span,
.text-link-dark:focus-visible span {
  transform: translate(2px, -2px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(28rem, 1.15fr);
  gap: clamp(4rem, 9vw, 9rem);
  max-width: none;
  color: var(--white);
  background: var(--navy-950);
}

.contact-copy,
.inquiry-form {
  width: 100%;
  max-width: 39rem;
}

.contact-copy {
  margin-left: auto;
}

.contact-copy p:last-child {
  max-width: 32rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, .6);
  font-size: 1.04rem;
}

.inquiry-form {
  margin-right: auto;
}

.inquiry-form label {
  display: block;
  margin-bottom: 1.45rem;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, .65);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: .7rem 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color .2s ease;
}

.inquiry-form textarea {
  resize: vertical;
}

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

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue-300);
}

.inquiry-form [aria-invalid="true"] {
  border-color: #ffad99;
}

.form-footer {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.form-footer p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: .72rem;
  line-height: 1.55;
}

.form-footer .button {
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.6rem;
  margin: 1rem 0 0;
  color: var(--blue-300);
  font-size: .86rem;
}

.site-footer {
  padding: 5rem var(--page-pad) 2rem;
  color: rgba(255, 255, 255, .7);
  background: #040b14;
}

.footer-top,
.footer-bottom {
  max-width: calc(var(--max-width) - (var(--page-pad) * 2));
  margin-inline: auto;
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 5rem;
}

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

.footer-top > p {
  margin: 0;
  text-align: right;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.25;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: .7rem;
  letter-spacing: .04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
}

.footer-links button {
  padding: 0;
  color: inherit;
  border: 0;
  background: none;
  font-size: inherit;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--white);
}

.footer-location {
  justify-self: end;
}

.legal-dialog {
  width: min(42rem, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  color: var(--ink);
  border: 0;
  background: var(--paper);
}

.legal-dialog::backdrop {
  background: rgba(4, 11, 20, .76);
  backdrop-filter: blur(5px);
}

.dialog-inner {
  position: relative;
  padding: clamp(2rem, 6vw, 4.5rem);
}

.dialog-inner h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .95;
}

.dialog-inner p:not(.section-kicker) {
  color: var(--slate);
  line-height: 1.75;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

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

:focus-visible {
  outline: 2px solid var(--blue-300);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

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

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    justify-self: end;
    padding: .75rem;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, .28);
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    grid-area: 1 / 1;
    width: 1.15rem;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }

  .menu-button span:first-child {
    transform: translateY(-4px);
  }

  .menu-button span:last-child {
    transform: translateY(4px);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 4.45rem 0 0;
    z-index: -1;
    display: block;
    padding: 3rem var(--page-pad);
    background: var(--navy-950);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu a {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 2rem;
    text-decoration: none;
  }

  .hero {
    grid-template-columns: 1.15fr .85fr;
  }

  .hero-copy {
    padding-right: 2rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.7vw, 6rem);
  }

  .statement-grid,
  .clients,
  .contact,
  .leadership {
    gap: 4rem;
  }

  .capability {
    grid-template-columns: 3rem minmax(13rem, .8fr) minmax(16rem, 1.2fr);
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 80svh;
    padding: 8.5rem var(--page-pad) 3rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(4.2rem, 14vw, 6.5rem);
  }

  .hero-models {
    margin-top: 4rem;
  }

  .hero-visual {
    min-height: 60svh;
  }

  .statement-grid,
  .section-heading,
  .clients,
  .leadership,
  .contact {
    grid-template-columns: 1fr;
  }

  .statement-grid,
  .section-heading,
  .clients,
  .leadership,
  .contact {
    gap: 3rem;
  }

  .heading-note {
    margin-left: 0;
  }

  .capability {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .capability p {
    grid-column: 2;
  }

  .clients-intro {
    position: static;
  }

  .approach-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    border-bottom: 0;
  }

  .principle {
    min-height: 0;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid var(--line-light);
  }

  .principle + .principle {
    padding-left: 0;
    border-left: 0;
  }

  .principle-label {
    margin-bottom: 4rem;
  }

  .engagement-card {
    min-height: 25rem;
  }

  .leadership-monogram {
    width: min(100%, 28rem);
  }

  .contact-copy,
  .inquiry-form {
    max-width: none;
  }

  .form-footer {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 4.5rem;
  }

  .brand-name {
    font-size: .8rem;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.3rem);
  }

  .hero-summary {
    font-size: 1rem;
  }

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

  .hero-models {
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 28rem;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .capability {
    grid-template-columns: 2rem 1fr;
  }

  .capability p {
    font-size: .92rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 3rem;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-location {
    justify-self: start;
  }
}

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

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

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