:root {
  --ivory: #f3efe7;
  --ivory-deep: #e6ded1;
  --paper: #faf8f3;
  --charcoal: #2e2a2a;
  --charcoal-soft: #4a4542;
  --ink: #171815;
  --taupe: #9a8069;
  --bronze: #b1845d;
  --bronze-light: #c7a37e;
  --rule: rgba(46, 42, 42, 0.22);
  --rule-light: rgba(243, 239, 231, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(88rem, calc(100vw - 8rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--charcoal);
  transition: background-color 320ms ease, box-shadow 320ms ease;
}

.site-header:not(.is-scrolled) {
  color: var(--paper);
}

.site-header:not(.is-scrolled) .brand-logo-header {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled {
  background: rgba(243, 239, 231, 0.93);
  box-shadow: 0 1px 0 var(--rule);
  backdrop-filter: blur(14px);
}

body.menu-open .site-header {
  background: var(--ivory);
  color: var(--charcoal);
}

body.menu-open .site-header .brand-logo-header {
  filter: none;
}

.header-inner {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-block;
  width: max-content;
  line-height: 0;
}

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

.brand-logo-header {
  width: clamp(11rem, 15vw, 13.5rem);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.8vw, 3rem);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a,
.text-link,
.footer-location a {
  position: relative;
}

.desktop-nav a::after,
.text-link::after,
.footer-location a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 380ms var(--ease);
}

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

.desktop-nav .nav-featured {
  color: var(--bronze-light);
}

.site-header.is-scrolled .desktop-nav .nav-featured {
  color: #8b6444;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: max(47rem, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--ink);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(24, 22, 20, 0.74) 0%, rgba(24, 22, 20, 0.48) 52%, rgba(24, 22, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(24, 22, 20, 0.44) 0%, transparent 44%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: max(47rem, 100svh);
  display: flex;
  flex-direction: column;
  padding-top: 9rem;
  padding-bottom: 2.5rem;
}

.hero-kicker,
.section-label,
.market-note,
.architectural-image figcaption,
.disclosure-reserve {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(250, 248, 243, 0.78);
}

.hero-kicker::before {
  width: 2.5rem;
  height: 1px;
  background: var(--bronze);
  content: "";
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 24rem);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: end;
  margin: auto 0;
  padding: 4.5rem 0 3.5rem;
}

.hero h1 {
  max-width: 64rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.6vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.hero h1 em,
.section-title em {
  color: var(--bronze);
  font-weight: 400;
}

.hero h1 em {
  color: var(--bronze-light);
}

.hero-aside {
  margin: 0 0 0.5rem;
  padding: 1.2rem 0 0 2rem;
  border-left: 1px solid rgba(250, 248, 243, 0.42);
}

.hero-property-image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.hero-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.72) contrast(0.98) brightness(0.86);
  transition: transform 900ms var(--ease);
}

.hero-property-image.reveal {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms var(--ease), transform 1400ms var(--ease);
}

.hero-property-image.reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-property-image:hover img {
  transform: scale(1.018);
}

.hero-aside p {
  max-width: 24rem;
  margin: 0 0 2rem;
  color: rgba(250, 248, 243, 0.88);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.55;
}

.hero .text-link {
  color: var(--paper);
}

.featured-property-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1.25rem;
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(250, 248, 243, 0.28);
  color: var(--paper);
}

.featured-property-label {
  grid-column: 1;
  color: var(--bronze-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-property-link strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.featured-property-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--bronze-light);
  font-size: 1.2rem;
  transition: transform 280ms var(--ease);
}

.featured-property-link:hover .featured-property-arrow,
.featured-property-link:focus-visible .featured-property-arrow {
  transform: translateX(0.35rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding-bottom: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--bronze);
  font-size: 1.1rem;
  transition: transform 280ms var(--ease);
}

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

.hero-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(250, 248, 243, 0.34);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-scroll {
  color: rgba(250, 248, 243, 0.66);
}

.section {
  padding: clamp(6rem, 8.5vw, 8.75rem) 0;
}

.section-label {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 5.25rem);
  color: var(--taupe);
}

.section-label span:first-child {
  color: var(--bronze);
}

.section-label::after {
  grid-column: 2;
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  background: var(--rule);
  content: "";
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.72fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: stretch;
}

.who-copy {
  padding-top: 1.25rem;
}

.who-copy .section-title {
  max-width: 55rem;
}

.body-copy {
  max-width: 43rem;
  margin: clamp(3rem, 6vw, 6rem) 0 0 auto;
  color: var(--charcoal-soft);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.75;
}

.body-copy p {
  margin: 0;
}

.body-copy p + p {
  margin-top: 1.8rem;
}

.architectural-image {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.architectural-image::before {
  display: block;
  width: 3.5rem;
  height: 1px;
  margin: 0 0 1rem auto;
  background: var(--bronze);
  content: "";
}

.architectural-image img {
  width: 100%;
  min-height: 34rem;
  flex: 1;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.72) contrast(0.95);
}

.architectural-image figcaption {
  margin-top: 1rem;
  color: var(--taupe);
  text-align: right;
}

.section-services {
  padding-bottom: 0;
  background: var(--paper);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.services-heading .section-title {
  grid-column: 2;
  max-width: 48rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 6vw, 6.25rem);
  border-top: 1px solid var(--rule);
}

.service {
  position: relative;
  min-height: 22rem;
  padding: 2.2rem 2.5rem 3rem 0;
  border-bottom: 1px solid var(--rule);
}

.service + .service {
  padding-left: 2.5rem;
  border-left: 1px solid var(--rule);
}

.service-number {
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.service h3 {
  margin: 3.25rem 0 1.75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.service p {
  max-width: 22rem;
  margin: 0;
  color: var(--charcoal-soft);
  line-height: 1.75;
}

.services-transition-image {
  width: 100%;
  height: clamp(24rem, 43vw, 46rem);
  margin: 0;
  overflow: hidden;
}

.services-transition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.72) contrast(0.96);
  transition: transform 900ms var(--ease);
}

.services-transition-image:hover img {
  transform: scale(1.012);
}

.section-markets {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
  background: var(--taupe);
  color: var(--paper);
}

.section-markets::after {
  position: absolute;
  right: -7rem;
  bottom: -16rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(243, 239, 231, 0.13);
  border-radius: 50%;
  content: "";
}

.section-label-light {
  color: rgba(250, 248, 243, 0.72);
}

.section-label-light span:first-child {
  color: var(--ivory-deep);
}

.section-label-light::after {
  background: var(--rule-light);
}

.markets-image:hover img {
  transform: scale(1.012);
}

.markets-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 1.05fr) minmax(22rem, 0.78fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.markets-content .section-title {
  max-width: 54rem;
}

.markets-content .section-title em {
  color: var(--ivory-deep);
}

.markets-copy {
  max-width: 43rem;
  margin: clamp(2.5rem, 4vw, 4rem) 0 0;
  color: rgba(250, 248, 243, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 1.72;
}

.market-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.market-list li {
  padding: 1.55rem 0 1.65rem;
  border-bottom: 1px solid var(--rule-light);
}

.market-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.market-list p {
  margin: 0.7rem 0 0;
  color: rgba(250, 248, 243, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.market-list p span {
  margin: 0 0.28em;
  color: var(--bronze-light);
}

.market-list li:first-child {
  border-top: 1px solid var(--rule-light);
}

.market-note {
  position: relative;
  z-index: 1;
  margin: 1.7rem 0 0;
  color: rgba(250, 248, 243, 0.58);
}

.markets-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(24rem, 43vw, 46rem);
  margin: clamp(4rem, 6vw, 6.25rem) 0 0;
  overflow: hidden;
}

.markets-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.65) contrast(0.94) brightness(0.9);
  transition: transform 900ms var(--ease);
}

.section-contact {
  background: var(--ink);
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(26rem, 1.2fr);
  gap: clamp(5rem, 10vw, 11rem);
  align-items: stretch;
}

.contact-intro .section-label {
  display: flex;
  gap: 1.2rem;
  margin-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.contact-intro .section-label::after {
  flex: 1;
  margin-top: 0;
}

.contact-intro .section-title {
  font-size: clamp(3rem, 5.3vw, 5.5rem);
}

.contact-intro .section-title em {
  color: var(--bronze-light);
}

.contact-intro > p {
  max-width: 28rem;
  margin: 2.25rem 0 2rem;
  color: rgba(250, 248, 243, 0.72);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.contact-form {
  padding-top: 1rem;
}

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

.field {
  position: relative;
  margin-bottom: 2rem;
}

.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7rem;
  color: rgba(250, 248, 243, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field label span {
  color: rgba(250, 248, 243, 0.38);
  font-size: 0.64rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0 1rem;
  border: 0;
  border-bottom: 1px solid rgba(250, 248, 243, 0.34);
  border-radius: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.4;
  outline: 0;
  transition: border-color 200ms ease;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--bronze-light);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #d7a59d;
}

.field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.4rem;
  color: #d7a59d;
  font-size: 0.72rem;
}

.honey {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.submit-button {
  min-width: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--bronze-light);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background-color 260ms ease, color 260ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--bronze-light);
  color: var(--ink);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  max-width: 21rem;
  margin: 0;
  color: rgba(250, 248, 243, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status.success {
  color: var(--bronze-light);
}

.form-status.error {
  color: #d7a59d;
}

.site-footer {
  padding: 5rem 0 2.5rem;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(250, 248, 243, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 3rem;
}

.brand-logo-footer {
  width: min(100%, 18rem);
}

.footer-location,
.footer-legal {
  color: rgba(250, 248, 243, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.footer-location p,
.footer-location a,
.footer-legal p {
  margin: 0;
}

.footer-location a,
.footer-legal p + p {
  display: inline-block;
  margin-top: 0.7rem;
}

.disclosure-reserve {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 248, 243, 0.12);
  color: rgba(250, 248, 243, 0.35);
  font-size: 0.62rem;
}

.disclosure-reserve p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

@media (max-width: 72rem) {
  :root {
    --shell: min(88rem, calc(100vw - 4rem));
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 22rem);
    gap: 3rem;
  }

  .who-grid {
    gap: 4rem;
  }

  .service {
    padding-right: 1.5rem;
  }

  .service + .service {
    padding-left: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(22rem, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 52rem) {
  :root {
    --shell: calc(100vw - 2.5rem);
  }

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

  .header-inner {
    min-height: 5rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 1.45rem;
    height: 1px;
    background: currentColor;
    transition: transform 240ms var(--ease);
  }

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

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

  .mobile-nav {
    position: fixed;
    inset: 5rem 0 0;
    min-height: calc(100svh - 5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem max(1.25rem, calc((100vw - var(--shell)) / 2));
    background: var(--ivory);
    border-top: 1px solid var(--rule);
  }

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

  .mobile-nav a {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 10vw, 4rem);
    line-height: 1.08;
  }

  .mobile-nav .nav-featured {
    color: #8b6444;
  }

  .hero,
  .hero-inner {
    min-height: max(43rem, 100svh);
  }

  .hero-inner {
    padding-top: 7.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-content {
    display: block;
    margin: auto 0;
    padding: 3.5rem 0;
  }

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

  .hero-aside {
    max-width: 29rem;
    width: 100%;
    margin: 2.75rem 0 0;
    padding-left: 1.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .section-label {
    grid-template-columns: 3rem 1fr;
  }

  .who-grid,
  .markets-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .who-grid {
    gap: 5rem;
  }

  .body-copy {
    margin-left: 0;
  }

  .architectural-image {
    width: min(100%, 31rem);
    margin-left: auto;
  }

  .services-heading {
    display: block;
  }

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

  .service {
    min-height: auto;
    padding: 1.8rem 0 3.5rem;
  }

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

  .service h3 {
    margin: 3.5rem 0 1.5rem;
  }

  .markets-content {
    gap: 4rem;
  }

  .markets-copy {
    margin-left: 0;
  }

  .contact-grid {
    gap: 5rem;
  }

  .services-transition-image {
    height: clamp(22rem, 64vw, 34rem);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 2;
  }

  .disclosure-reserve {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 36rem) {
  .brand-logo-header {
    width: 10.5rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-services {
    padding-bottom: 0;
  }

  .section-title {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .hero-property-image img {
    height: 100%;
    object-position: 58% center;
  }

  .hero-kicker {
    font-size: 0.64rem;
  }

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

  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .services-transition-image {
    height: 20rem;
  }

  .markets-image img {
    object-position: center;
  }

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

  .footer-legal {
    grid-column: auto;
  }
}

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

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

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