:root {
  color-scheme: light;
  --navy-950: #08171c;
  --navy-900: #0d2026;
  --navy-800: #153039;
  --forest-800: #173d36;
  --forest-700: #245348;
  --forest-100: #dce8e1;
  --stone-50: #faf8f3;
  --stone-100: #f1ede4;
  --stone-200: #e5ddd0;
  --stone-500: #8b8479;
  --ink: #172528;
  --muted: #667074;
  --white: #fffdf8;
  --copper: #bd8152;
  --copper-light: #e2b58e;
  --line: rgba(23, 37, 40, 0.15);
  --line-light: rgba(255, 253, 248, 0.18);
  --shadow: 0 2rem 5rem rgba(8, 23, 28, 0.12);
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
  --section-space: clamp(4.5rem, 7vw, 7rem);
  --content-width: 90rem;
  --header-height: 6.5rem;
  --radius: 0.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --type-hero: clamp(2.85rem, 4.8vw, 4.75rem);
  --type-page-title: clamp(2.75rem, 4.6vw, 4.4rem);
  --type-display: clamp(2.35rem, 3.8vw, 3.8rem);
  --type-section: clamp(2rem, 3.1vw, 3.2rem);
  --type-editorial: clamp(1.75rem, 2.65vw, 2.75rem);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--stone-50);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--stone-50);
  font-family:
    Inter, "Aptos", "Helvetica Neue", Arial, system-ui, -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

main[id],
main [id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--forest-700);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--navy-950);
  background: var(--copper-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.skip-link-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(8, 23, 28, 0.28);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(12px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header--solid,
.nav-open .site-header {
  background: rgba(8, 23, 28, 0.94);
  border-color: rgba(255, 253, 248, 0.12);
  box-shadow: 0 0.75rem 2rem rgba(8, 23, 28, 0.16);
}

.site-header--solid + main {
  margin-top: var(--header-height);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 1.75rem;
  height: 2rem;
  grid-template-columns: 0.5rem 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.16rem;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  display: block;
  content: "";
  background: var(--copper);
}

.brand-mark::before {
  grid-row: 1 / -1;
}

.brand-mark::after {
  grid-column: 2;
  grid-row: 1;
  border-radius: 0 0.65rem 0.1rem 0;
}

.brand-mark span {
  grid-column: 2;
  grid-row: 2;
  border-radius: 0.1rem 0 0.65rem 0;
}

.brand-wordmark {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  letter-spacing: -0.035em;
}

.brand-group {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.4vw, 2.3rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  padding: 0.85rem 1.15rem;
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.34);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-nav .nav-contact:focus-visible,
.site-nav .nav-contact[aria-current="page"] {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.menu-toggle {
  position: relative;
  z-index: 70;
  display: none;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-light);
  place-items: center;
  transition: transform 160ms var(--ease);
}

.menu-toggle-lines {
  position: relative;
  width: 1.2rem;
  height: 0.8rem;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 180ms var(--ease);
}

.menu-toggle-lines::before {
  transform: translateY(-0.25rem);
}

.menu-toggle-lines::after {
  transform: translateY(0.25rem);
}

.nav-open .menu-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-open .menu-toggle-lines::after {
  transform: rotate(-45deg);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(38rem, 72svh, 46rem);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
  align-items: center;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 17, 22, 0.89) 0%, rgba(5, 17, 22, 0.58) 44%, rgba(5, 17, 22, 0.12) 74%),
    linear-gradient(0deg, rgba(5, 17, 22, 0.55) 0%, transparent 42%),
    url("/assets/images/brixora-hero-v1.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 6.5rem 6.5rem;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-inner {
  display: grid;
  min-height: clamp(38rem, 72svh, 46rem);
  padding-top: calc(var(--header-height) + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  align-content: center;
}

.hero-copy {
  min-width: 0;
  max-width: 48rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1.5rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--copper-light);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.3rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.home-hero h1,
.inner-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.home-hero h1 {
  max-width: 14ch;
  font-size: var(--type-hero);
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.home-hero h1 span,
.home-hero h1 em {
  display: block;
}

.home-hero h1 em {
  color: var(--copper-light);
  font-style: normal;
  font-weight: 400;
}

.hero-lead {
  max-width: 38rem;
  margin: clamp(1.35rem, 2.2vw, 1.8rem) 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  line-height: 1.68;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  padding: 0.85rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    transform 200ms var(--ease);
}

.button::after {
  display: inline-block;
  width: 1.25rem;
  content: "→";
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  transform: translateX(0);
  transition: transform 200ms var(--ease);
}

.button:focus-visible::after {
  transform: translateX(0.22rem);
}

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

.button--light {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.4);
}

.button--dark {
  color: var(--white);
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.button--outline {
  color: var(--ink);
  border-color: rgba(23, 37, 40, 0.3);
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover {
    color: var(--white);
  }

  .site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-nav .nav-contact:hover {
    color: var(--navy-950);
    background: var(--white);
    border-color: var(--white);
  }

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

  .button:hover::after {
    transform: translateX(0.22rem);
  }

  .button--copper:hover {
    background: var(--white);
    border-color: var(--white);
  }

  .button--light:hover {
    color: var(--navy-950);
    background: var(--white);
    border-color: var(--white);
  }

  .button--dark:hover {
    color: var(--navy-950);
    background: transparent;
  }

  .button--outline:hover {
    color: var(--white);
    background: var(--navy-950);
    border-color: var(--navy-950);
  }
}

.button:active,
.site-nav .nav-contact:active,
.menu-toggle:active {
  transform: scale(0.97);
  transition-duration: 160ms;
}

.hero-meta {
  display: grid;
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.hero-meta p {
  margin: 0;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta p:nth-child(2) {
  text-align: center;
}

.hero-meta p:last-child {
  text-align: right;
}

.section {
  padding-block: var(--section-space);
}

.section--stone {
  background: var(--stone-100);
}

.section--white {
  background: var(--white);
}

.section--navy {
  color: var(--white);
  background: var(--navy-950);
}

.section--forest {
  color: var(--white);
  background: var(--forest-800);
}

.section-label {
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section--navy .section-label,
.section--forest .section-label {
  color: var(--copper-light);
}

.display-heading {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-display);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.section-heading {
  max-width: 18ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-section);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.lede {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.section--navy .lede,
.section--forest .lede {
  color: rgba(255, 253, 248, 0.68);
}

.body-copy {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
}

.body-copy p {
  margin: 0;
}

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

.section-action {
  margin-top: 2rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: start;
}

.intro-rule {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.section--navy .intro-rule,
.section--forest .intro-rule {
  border-color: var(--line-light);
}

.business-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  min-height: 32rem;
}

.business-visual {
  position: relative;
  min-height: 27rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(13, 32, 38, 0.12), rgba(13, 32, 38, 0.72)),
    url("/assets/images/brixora-hero-v1.jpg") 72% center / cover no-repeat;
}

.business-visual::before {
  position: absolute;
  inset: 2rem;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.32);
}

.business-visual-label {
  position: absolute;
  right: 3.5rem;
  bottom: 3.5rem;
  left: 3.5rem;
}

.business-visual-label span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--copper-light);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.business-visual-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-section);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.business-content {
  display: flex;
  padding: clamp(3rem, 5vw, 5rem);
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--forest-800);
}

.business-content h2 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-display);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.business-content > p {
  max-width: 35rem;
  margin: 1.7rem 0 0;
  color: rgba(255, 253, 248, 0.7);
  line-height: 1.75;
}

.service-tags {
  display: flex;
  padding: 0;
  margin: 2.2rem 0 0;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.service-tags li {
  padding: 0.55rem 0.7rem;
  color: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(255, 253, 248, 0.19);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.pillar-intro {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.pillar-intro .lede {
  max-width: 31rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pillar-card {
  min-height: 17rem;
  padding: clamp(1.5rem, 2.5vw, 2.3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.pillar-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

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

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(24rem, 1.25fr);
  gap: clamp(3rem, 9vw, 10rem);
}

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

.philosophy-item {
  display: grid;
  padding-block: 1.8rem;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.2rem;
  border-bottom: 1px solid var(--line-light);
}

.philosophy-item span {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
}

.philosophy-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.philosophy-item p {
  margin: 0.55rem 0 0;
  color: rgba(255, 253, 248, 0.63);
  line-height: 1.7;
}

.principles-head {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.principles-head p {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  min-height: 13rem;
  padding: 2rem 2rem 2rem 0;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.principle:nth-child(odd) {
  padding-right: clamp(2rem, 6vw, 6rem);
  border-right: 1px solid var(--line);
}

.principle:nth-child(even) {
  padding-left: clamp(2rem, 6vw, 6rem);
}

.principle span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
}

.principle h3 {
  max-width: 18ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.principle p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.vision-panel {
  display: grid;
  min-height: 28rem;
  padding: clamp(2.75rem, 5vw, 4.5rem);
  background:
    linear-gradient(100deg, rgba(8, 23, 28, 0.96), rgba(8, 23, 28, 0.74)),
    url("/assets/images/brixora-hero-v1.jpg") center / cover no-repeat;
  align-content: center;
}

.vision-panel blockquote {
  max-width: 22ch;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-editorial);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.vision-panel cite {
  display: block;
  margin-top: 1.7rem;
  color: var(--copper-light);
  font-family: inherit;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.founder-quote {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.founder-quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-editorial);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.founder-quote blockquote::before {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--copper);
  content: "“";
  font-size: 3rem;
  line-height: 0.5;
}

.cta-band {
  display: grid;
  padding: clamp(2.75rem, 5vw, 4.5rem);
  grid-template-columns: 1fr auto;
  gap: 3rem;
  color: var(--white);
  background: var(--forest-800);
  align-items: center;
}

.cta-band h2 {
  max-width: 17ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.cta-band p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 253, 248, 0.68);
  line-height: 1.7;
}

.site-footer {
  color: rgba(255, 253, 248, 0.7);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  grid-template-columns: 1.2fr 0.55fr 0.55fr;
  gap: clamp(3rem, 8vw, 8rem);
}

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

.footer-philosophy {
  margin: 2rem 0 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  letter-spacing: -0.04em;
}

.footer-note {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-column h2 {
  margin: 0 0 1.4rem;
  color: var(--copper-light);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-contact-list {
  display: grid;
  gap: 0.8rem;
}

.footer-column a,
.footer-contact-list span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  min-height: 5rem;
  padding-block: 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 253, 248, 0.38);
  border-top: 1px solid var(--line-light);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  text-decoration: none;
}

.inner-hero {
  position: relative;
  display: grid;
  min-height: clamp(28rem, 55svh, 32rem);
  padding-top: 6.5rem;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
  align-items: end;
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.38;
  background:
    linear-gradient(90deg, var(--navy-950), rgba(8, 23, 28, 0.25)),
    url("/assets/images/brixora-hero-v1.jpg") center 62% / cover no-repeat;
}

.inner-hero::after {
  position: absolute;
  right: -5rem;
  bottom: -13rem;
  z-index: -1;
  width: 33rem;
  height: 33rem;
  content: "";
  border: 1px solid rgba(226, 181, 142, 0.26);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(226, 181, 142, 0.04),
    0 0 0 10rem rgba(226, 181, 142, 0.025);
}

.inner-hero-content {
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
}

.inner-hero h1 {
  max-width: 14ch;
  font-size: var(--type-page-title);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.inner-hero .hero-lead {
  max-width: 40rem;
}

.breadcrumb {
  display: flex;
  margin-bottom: 2rem;
  gap: 0.55rem;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span {
  color: var(--copper-light);
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.statement-card {
  padding: clamp(2.2rem, 4vw, 3.75rem);
  background: var(--white);
}

.statement-card h2 {
  margin: 0 0 1.5rem;
  color: var(--copper);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement-card p {
  max-width: 24ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

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

.timeline-item {
  min-height: 19rem;
  padding: 2.2rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.timeline-item span {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
}

.timeline-item h3 {
  margin: 3.5rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.timeline-item p {
  margin: 1rem 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.87rem;
  line-height: 1.7;
}

.group-structure {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: 1fr 5rem 1fr;
  align-items: stretch;
}

.structure-card {
  display: flex;
  min-height: 14rem;
  padding: clamp(2rem, 3vw, 3rem);
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
}

.structure-card--primary {
  color: var(--white);
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.structure-card span {
  color: var(--copper);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.structure-card h2,
.structure-card h3 {
  margin: 2rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.structure-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.structure-card--primary p {
  color: rgba(255, 253, 248, 0.62);
}

.structure-link {
  position: relative;
}

.structure-link::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: translate(-50%, -50%);
}

.structure-link::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
  transform: translateY(-50%) rotate(45deg);
}

.services-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 17rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
}

.service-card h3 {
  margin: 3.5rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

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

.process-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  position: relative;
  padding: 0 2rem 0 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  left: 2rem;
  height: 1px;
  content: "";
  background: rgba(255, 253, 248, 0.23);
}

.process-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--navy-950);
  background: var(--copper-light);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 760;
  place-items: center;
}

.process-step h3 {
  margin: 2.1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.process-step p {
  margin: 0.85rem 0 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

.approach-row {
  display: grid;
  padding-block: 2.5rem;
  grid-template-columns: 4rem 0.72fr 1.28fr;
  gap: clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.approach-row > span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
}

.approach-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.approach-row p {
  max-width: 37rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.practice-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.practice-card {
  min-height: 16rem;
  padding: 2rem;
  background: var(--navy-950);
}

.practice-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.practice-card p {
  margin: 1rem 0 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.86rem;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.7fr) minmax(25rem, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 3rem;
}

.contact-aside h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-page-title);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.contact-aside > p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-details {
  display: grid;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.contact-detail {
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--copper);
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  text-decoration: none;
}

.form-panel {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-panel-header {
  display: flex;
  margin-bottom: 2.3rem;
  padding-bottom: 1.5rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.form-panel-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
}

.form-panel-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

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

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 680;
}

.required-marker {
  color: var(--copper);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--stone-50);
  border: 1px solid rgba(23, 37, 40, 0.22);
  border-radius: 0;
  line-height: 1.4;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  outline: none;
  box-shadow: 0 0 0 3px rgba(189, 129, 82, 0.13);
}

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

.field-help,
.field-error {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.68rem;
  line-height: 1.45;
}

.field-help {
  color: var(--muted);
}

.field-error {
  color: #a94437;
}

.message-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  min-height: auto;
  margin-top: 0.15rem;
  accent-color: var(--forest-700);
}

.consent-field label {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 450;
  line-height: 1.55;
}

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  margin-top: 0.5rem;
  align-items: center;
  gap: 1rem;
}

.form-submit button {
  cursor: pointer;
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.form-alert {
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
  border: 1px solid;
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-alert h2,
.form-alert p {
  margin: 0;
}

.form-alert h2 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.form-alert .form-reference {
  margin-top: 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.035em;
}

.form-reference code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.form-alert-success {
  color: #214c3c;
  background: #edf6f1;
  border-color: #aacbbb;
}

.form-alert-error {
  color: #7c3127;
  background: #fff2ef;
  border-color: #dcaaa2;
}

.submission-confirmation {
  padding: clamp(0.5rem, 1vw, 1rem) 0 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.submission-confirmation:focus {
  outline: none;
}

.confirmation-mark {
  display: inline-grid;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.4rem;
  place-items: center;
  color: var(--white);
  background: var(--forest-700);
  border-radius: 50%;
  box-shadow: 0 0 0 0.45rem var(--forest-100);
}

.confirmation-mark svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirmation-kicker {
  margin: 0 0 0.7rem;
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.submission-confirmation h3 {
  max-width: 14ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.confirmation-lead {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.confirmation-reference {
  display: flex;
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-left: 4px solid var(--copper);
}

.confirmation-reference span {
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.63rem;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirmation-reference code {
  color: var(--white);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.045em;
}

.confirmation-next {
  margin-top: 2.4rem;
}

.confirmation-next h4 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.confirmation-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.confirmation-steps > div {
  display: grid;
  padding: 1.2rem 1.25rem 1.25rem 0;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

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

.confirmation-steps span {
  color: var(--copper);
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.confirmation-steps p {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.6;
}

.confirmation-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.confirmation-note a {
  color: var(--forest-700);
  font-weight: 680;
}

.confirmation-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(11rem, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.legal-meta {
  position: sticky;
  top: 3rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.7;
}

.legal-content {
  max-width: 49rem;
}

.legal-content section + section {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.legal-content p {
  margin: 0;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin: 0.8rem 0 0;
}

.legal-content a {
  color: var(--ink);
}

.error-page {
  display: grid;
  min-height: 100svh;
  padding: var(--page-pad);
  color: var(--white);
  text-align: center;
  background: var(--navy-950);
  place-items: center;
}

.error-card {
  max-width: 42rem;
}

.error-code {
  margin: 0;
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 14vw, 8rem);
  line-height: 0.8;
}

.error-card h1 {
  margin: 2rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.error-card p:not(.error-code) {
  margin: 0 auto 2rem;
  color: rgba(255, 253, 248, 0.62);
  line-height: 1.7;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 1rem;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 0;
  }

  .process-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 850px) {
  :root {
    --header-height: 5.6rem;
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 60;
    display: flex;
    height: calc(100dvh - var(--header-height));
    padding: 2.2rem var(--page-pad) 3rem;
    overflow-y: auto;
    color: var(--white);
    background: var(--navy-950);
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    padding-block: 1.1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    text-transform: none;
    border-bottom: 1px solid var(--line-light);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-contact {
    margin-top: 1rem;
    font-family: inherit;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 17, 22, 0.94), rgba(5, 17, 22, 0.5)),
      linear-gradient(0deg, rgba(5, 17, 22, 0.82), transparent 55%),
      url("/assets/images/brixora-hero-v1.jpg") 62% center / cover no-repeat;
  }

  .intro-grid,
  .philosophy-grid,
  .founder-quote,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .business-feature {
    grid-template-columns: 1fr;
  }

  .pillar-intro,
  .principles-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-quote {
    gap: 2.5rem;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-aside,
  .legal-meta {
    position: static;
  }

  .group-structure {
    grid-template-columns: 1fr;
  }

  .structure-link {
    min-height: 4rem;
  }

  .structure-link::before {
    width: 1px;
    height: 2rem;
  }

  .structure-link::after {
    right: auto;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 600px) {
  .home-hero,
  .hero-inner {
    min-height: 42rem;
  }

  .home-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.65rem);
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: 2rem;
  }

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

  .button {
    width: 100%;
  }

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

  .confirmation-steps {
    grid-template-columns: 1fr;
  }

  .confirmation-steps > div {
    padding-right: 0;
  }

  .confirmation-steps > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-meta {
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-meta p,
  .hero-meta p:last-child {
    text-align: left;
  }

  .hero-meta p:nth-child(2) {
    display: none;
  }

  .hero-meta p:last-child {
    text-align: right;
  }

  .business-visual {
    min-height: 25rem;
  }

  .business-visual::before {
    inset: 1rem;
  }

  .business-visual-label {
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
  }

  .pillar-grid,
  .principles-list,
  .statement-grid,
  .timeline,
  .services-grid,
  .process-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .pillar-number {
    margin-bottom: 2.5rem;
  }

  .principle,
  .principle:nth-child(odd),
  .principle:nth-child(even) {
    min-height: 0;
    padding: 1.7rem 0;
    border-right: 0;
  }

  .process-grid {
    gap: 0;
  }

  .process-step {
    padding: 0 0 2.5rem 2.8rem;
  }

  .process-step:not(:last-child)::after,
  .process-step:nth-child(2)::after {
    top: 1.4rem;
    bottom: 0;
    left: 0.68rem;
    display: block;
    width: 1px;
    height: auto;
  }

  .process-step span {
    position: absolute;
    left: 0;
  }

  .approach-row {
    grid-template-columns: 2.5rem 1fr;
  }

  .approach-row p {
    grid-column: 2;
  }

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

  .field-full,
  .form-submit {
    grid-column: auto;
  }

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

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .inner-hero {
    min-height: 31rem;
  }

  .inner-hero-content {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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