@font-face {
  font-family: "Elego Display";
  src: url("Fonts/38914808-31f7-4169-a962-60b41b189056.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Elego Display";
  src: url("Fonts/dd501f4a-1a91-4d73-b4cf-de3ba26bd793.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Elego Display";
  src: url("Fonts/e043c98e-f870-4911-b8e4-e52f60dab981.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Elego Text";
  src: url("Fonts/64017d81-9430-4cba-8219-8f5cc28b923e.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Elego Text";
  src: url("Fonts/0d416408-95c6-4ad7-b08d-e60573d3b37d.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --ink-soft: #151515;
  --paper: #f0eee8;
  --paper-deep: #e5e1d8;
  --white: #fffdf8;
  --muted: #77736d;
  --line: rgba(10, 10, 10, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --accent: #ed4a2d;
  --accent-deep: #ce341c;
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --header-height: 5.75rem;
  --display: "Elego Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Elego Text", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) - 1px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

em {
  font-weight: 400;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.section-pad {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height 280ms ease, background 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 4.75rem;
  background: rgba(10, 10, 10, 0.88);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.is-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.3vw, 2.75rem);
}

.primary-nav a {
  position: relative;
  font-size: 0.86rem;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 1.75rem;
  padding: 0 1.15rem;
  color: var(--ink);
  background: var(--white);
  transition: color 200ms ease, background 200ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--accent);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-lines {
  position: relative;
  display: block;
  width: 1.75rem;
  height: 0.8rem;
}

.menu-lines i {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-lines i:first-child { top: 0.1rem; }
.menu-lines i:last-child { top: 0.65rem; }

.hero {
  position: relative;
  display: flex;
  min-height: 46rem;
  height: 100svh;
  max-height: 70rem;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  animation: hero-image-in 1.8s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 35%, rgba(0, 0, 0, 0.05) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, transparent 43%);
}

.hero-grain {
  z-index: 2;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(76rem, calc(100% - (var(--gutter) * 2)));
  margin: 0 var(--gutter) clamp(2.25rem, 6vh, 5.5rem);
}

.eyebrow,
.section-label {
  font-family: var(--body);
  font-size: 0.73rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow {
  display: flex;
  max-width: 32rem;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 6vh, 5rem);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-light);
}

.hero h1 {
  max-width: 8ch;
  margin-bottom: clamp(2.5rem, 5vh, 4.25rem);
  font-size: clamp(5.25rem, 12.7vw, 12.5rem);
  letter-spacing: -0.075em;
  line-height: 0.72;
}

.hero h1 em {
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.77em;
}

.hero-bottom {
  display: grid;
  max-width: 46rem;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 4rem;
  align-items: end;
}

.hero-bottom p {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.17;
  letter-spacing: -0.025em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 0.7rem;
  font-size: 0.86rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: gap 200ms ease, color 200ms ease;
}

.text-link:hover {
  color: var(--accent);
  gap: 1.6rem;
}

.hero-side-note {
  position: absolute;
  right: var(--gutter);
  bottom: 5.25rem;
  z-index: 3;
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  animation: hero-copy-in 750ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.hero h1.hero-reveal { animation-delay: 180ms; }
.hero-bottom.hero-reveal { animation-delay: 360ms; }

.ticker {
  overflow: hidden;
  padding: 1.35rem 0;
  color: var(--ink);
  background: var(--accent);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.7rem;
  animation: ticker-move 24s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.025em;
}

.ticker i {
  font-style: normal;
  font-size: 0.75rem;
}

.statement {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 12vw, 12rem);
  background: var(--paper);
}

.section-label {
  margin-bottom: clamp(2.75rem, 6vw, 5.5rem);
  color: var(--muted);
}

.section-label::before {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.65rem;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-0.04rem);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.78);
}

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

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.statement h2,
.section-heading h2,
.engagements h2,
.approach h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7.7vw, 8rem);
}

.statement h2 em,
.ai-copy h2 em,
.contact h2 em {
  color: var(--accent);
}

.statement-copy {
  padding-bottom: 0.5rem;
}

.statement-copy p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.62;
}

.statement-copy p + p {
  margin-top: 1.5rem;
  color: var(--muted);
}

.capabilities {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(11rem, 0.45fr) 1.55fr;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.section-heading .section-label,
.section-heading h2 {
  margin-bottom: 0;
}

.capabilities .section-label {
  color: rgba(255, 255, 255, 0.55);
}

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

.capability-row {
  position: relative;
  display: grid;
  min-height: 16rem;
  grid-template-columns: minmax(3rem, 0.35fr) minmax(14rem, 1.2fr) minmax(15rem, 1fr) minmax(10rem, 0.55fr) 2.5rem;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: 2rem 1.25rem 2rem 0;
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
  transition: color 280ms ease, padding 280ms ease;
}

.capability-row::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.capability-row:hover {
  color: var(--ink);
  padding-left: 1.25rem;
}

.capability-row:hover::before {
  transform: scaleY(1);
}

.capability-row--accent {
  color: var(--ink);
  background: var(--accent);
  padding-left: 1.25rem;
  border-bottom: 0;
}

.capability-row--accent::before {
  background: var(--white);
}

.capability-number {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.capability-row h3 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 4.5rem);
}

.capability-row h3 a {
  text-decoration: none;
}

.capability-row > p {
  max-width: 28rem;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.5;
}

.capability-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.83rem;
  line-height: 1.8;
}

.row-arrow {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 240ms ease, background 240ms ease;
}

.capability-row:hover .row-arrow {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.ai-feature {
  --mouse-x: 70%;
  --mouse-y: 40%;
  display: grid;
  min-height: 56rem;
  grid-template-columns: 1.08fr 0.92fr;
  color: var(--white);
  background: var(--accent);
}

.ai-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(6rem, 9vw, 9rem);
  padding-bottom: clamp(6rem, 9vw, 9rem);
}

.ai-copy h2 {
  max-width: 9ch;
  margin: 0 0 2.5rem;
  color: var(--ink);
  font-size: clamp(3.75rem, 7vw, 7.75rem);
}

.ai-copy h2 em {
  color: var(--white);
}

.ai-intro {
  max-width: 37rem;
  margin-bottom: 3.25rem;
  color: rgba(10, 10, 10, 0.8);
  font-size: clamp(1.15rem, 1.75vw, 1.45rem);
  line-height: 1.48;
}

.ai-offers {
  max-width: 42rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(10, 10, 10, 0.4);
}

.ai-offers > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.25rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.4);
}

.ai-offers span {
  font-size: 0.69rem;
  letter-spacing: 0.1em;
}

.ai-offers p {
  margin: 0;
  font-size: 0.9rem;
}

.ai-offers strong {
  display: inline-block;
  min-width: 10.5rem;
  margin-right: 1rem;
}

.button {
  display: inline-flex;
  min-height: 4.1rem;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 1.45rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

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

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--ink);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--white);
}

.ai-visual {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(237, 74, 45, 0.5), transparent 24rem),
    var(--ink);
  border-left: 1px solid rgba(10, 10, 10, 0.2);
}

.ai-visual::before,
.ai-visual::after {
  position: absolute;
  content: "";
  background: var(--line-light);
}

.ai-visual::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.ai-visual::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.signal-orbit,
.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-orbit::after {
  position: absolute;
  top: 50%;
  right: -0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 2rem rgba(237, 74, 45, 0.9);
}

.signal-orbit--one {
  width: min(35vw, 34rem);
  height: min(35vw, 34rem);
  animation: orbit-spin 18s linear infinite;
}

.signal-orbit--two {
  width: min(24vw, 22rem);
  height: min(24vw, 22rem);
  animation: orbit-spin-reverse 13s linear infinite;
}

.signal-orbit--two::after {
  right: auto;
  left: -0.35rem;
  background: var(--white);
  box-shadow: 0 0 2rem rgba(255, 255, 255, 0.65);
}

.signal-core {
  z-index: 2;
  display: flex;
  width: min(14vw, 13rem);
  height: min(14vw, 13rem);
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(6px);
}

.signal-core span {
  font-size: 0.69rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-core strong {
  color: var(--accent);
  font-weight: 400;
}

.signal-node {
  position: absolute;
  padding: 0.55rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line-light);
}

.signal-node--strategy { top: 17%; left: 18%; }
.signal-node--systems { right: 11%; bottom: 22%; }
.signal-node--people { bottom: 11%; left: 17%; }

.engagements {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--paper);
}

.section-heading--split {
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1.55fr);
}

.section-heading--split h2 {
  max-width: 10ch;
}

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

.engagement-grid article {
  position: relative;
  display: flex;
  min-height: 32rem;
  flex-direction: column;
  padding: 1.75rem clamp(1.5rem, 3vw, 3.25rem) 2rem 0;
}

.engagement-grid article + article {
  padding-left: clamp(1.5rem, 3vw, 3.25rem);
  border-left: 1px solid var(--line);
}

.engagement-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.engagement-grid h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.75rem, 6vw, 6.5rem);
  transition: color 220ms ease, transform 220ms ease;
}

.engagement-grid article:hover h3 {
  color: var(--accent);
  transform: translateX(0.4rem);
}

.engagement-grid article > p:not(.engagement-meta) {
  max-width: 25rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
  line-height: 1.58;
}

.engagement-time {
  font-family: var(--display);
  font-size: 1rem;
}

.approach {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(5rem, 12vw, 12rem);
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  color: var(--white);
  background: var(--ink-soft);
}

.approach-intro {
  position: sticky;
  top: 7rem;
  height: fit-content;
}

.approach-intro .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.approach h2 {
  max-width: 8ch;
  margin-bottom: 2rem;
}

.approach-intro > p:last-child {
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.08rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0 4.25rem;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.75rem, 4.5vw, 5rem);
}

.process-list p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.contact {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(25rem, 1.18fr);
  gap: clamp(4rem, 10vw, 10rem);
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--accent);
}

.contact-intro h2 {
  max-width: 8ch;
  margin-bottom: 2.25rem;
  color: var(--ink);
}

.contact-intro h2 em {
  color: var(--white);
}

.contact-intro > p:last-child {
  max-width: 30rem;
  color: rgba(10, 10, 10, 0.72);
  font-size: 1.1rem;
}

.contact-form {
  align-self: start;
  padding-top: 0.4rem;
}

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

.field {
  display: block;
}

.field > span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 3.4rem;
  padding: 0.5rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.45);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

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

.field select {
  padding-right: 2rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%230a0a0a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--white);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-bottom-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.field--message {
  margin-top: 2rem;
}

.verification {
  min-height: 4.5rem;
  margin-top: 1.5rem;
}

#turnstile-widget {
  max-width: 22rem;
}

.verification-status {
  margin: 0.55rem 0 0;
  color: rgba(10, 10, 10, 0.72);
  font-size: 0.75rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin: 0.05rem 0 0;
  accent-color: var(--ink);
}

.consent a {
  text-underline-offset: 0.18em;
}

.form-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-action p {
  max-width: 13rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.form-status {
  min-height: 1.5rem;
  margin: 1.25rem 0 0;
  font-size: 0.86rem;
}

.button.is-loading {
  pointer-events: none;
  opacity: 0.62;
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.button.is-loading .button-label::after {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.65rem;
  content: "";
  border: 1px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: orbit-spin 650ms linear infinite;
}

.site-footer {
  display: grid;
  min-height: 11rem;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 2.5rem var(--gutter);
  color: var(--white);
  background: var(--ink);
}

.brand--footer {
  font-size: 2.2rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  align-items: flex-end;
}

.footer-links a,
.footer-meta a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--accent);
}

.footer-meta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-end;
}

/* Independent service and utility pages */

.page-hero {
  position: relative;
  display: flex;
  min-height: min(58rem, 100svh);
  overflow: hidden;
  align-items: flex-end;
  padding: calc(var(--header-height) + clamp(5rem, 9vw, 9rem)) var(--gutter) clamp(4rem, 7vw, 7rem);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.service-hero::before,
.contact-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("assets/elego-glass-sculpture.png");
  background-repeat: no-repeat;
  background-position: 72% center;
  background-size: cover;
  opacity: 0.58;
  transform: scale(1.025);
  animation: hero-image-in 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.service-hero::after,
.contact-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.74) 43%, rgba(0, 0, 0, 0.2) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, transparent 55%);
}

.service-hero--brand::before {
  background-image: url("assets/elego-hero-brand.png");
  background-position: 74% center;
  filter: saturate(0.92) contrast(1.06);
}

.service-hero--digital::before {
  background-image: url("assets/elego-hero-digital.png");
  background-position: 64% center;
  filter: saturate(0.88) contrast(1.08);
}

.service-hero--ai::before {
  background-image: url("assets/elego-hero-ai.png");
  background-position: 72% center;
  filter: contrast(1.12) saturate(1.02);
}

.contact-hero::before {
  background-position: 68% 42%;
  opacity: 0.48;
  filter: saturate(0.65);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 94rem);
}

.page-hero .eyebrow,
.legal-hero .eyebrow {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.page-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  line-height: 0.82;
}

.page-hero h1 em,
.legal-hero h1 em,
.page-cta h2 em {
  color: var(--accent);
}

.page-hero-bottom {
  display: grid;
  max-width: 66rem;
  grid-template-columns: minmax(18rem, 1fr) minmax(13rem, 0.45fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.page-hero-bottom p {
  max-width: 35rem;
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.45;
}

.page-hero-index {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 4vw, 4rem);
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--display);
  font-size: clamp(9rem, 21vw, 22rem);
  line-height: 0.65;
  letter-spacing: -0.08em;
}

.service-opening {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(7rem, 12vw, 12rem);
  background: var(--paper);
}

.service-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: end;
}

.service-opening h2,
.service-fit h2,
.service-process h2,
.faq h2,
.page-cta h2,
.contact-notes h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
}

.service-opening h2 {
  max-width: 11ch;
}

.service-opening-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.service-opening-copy p + p {
  margin-top: 1.5rem;
  color: var(--muted);
}

.service-scope {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--paper-deep);
}

.service-rows {
  border-top: 1px solid var(--line);
}

.service-rows article {
  display: grid;
  grid-template-columns: minmax(2.5rem, 0.25fr) minmax(20rem, 1.25fr) minmax(13rem, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-rows article > span {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.service-rows h3 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.75rem, 5vw, 5.5rem);
}

.service-rows article div p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-rows ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.service-fit {
  display: grid;
  grid-template-columns: minmax(20rem, 0.92fr) minmax(23rem, 1.08fr);
  gap: clamp(5rem, 12vw, 12rem);
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  color: var(--white);
  background: var(--ink-soft);
}

.service-fit h2 {
  max-width: 9ch;
}

.fit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.fit-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.fit-list span {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.fit-list p {
  max-width: 35rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.service-engagement {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--paper-deep);
}

.service-engagement-intro {
  display: grid;
  grid-template-columns: minmax(9rem, 0.3fr) minmax(24rem, 1.15fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.service-engagement-intro .section-label {
  align-self: start;
}

.service-engagement-intro h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.5rem, 6.4vw, 7rem);
}

.service-engagement-intro h2 em {
  color: var(--accent);
}

.service-engagement-intro > p:last-child {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.service-engagement-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(21rem, 0.8fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.engagement-visual {
  position: relative;
  min-height: clamp(30rem, 40vw, 36rem);
  overflow: hidden;
  isolation: isolate;
}

.engagement-visual-label {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  z-index: 4;
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.engagement-facts {
  display: flex;
  margin: 0;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.engagement-facts div {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(7.5rem, 0.42fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-content: center;
  padding: clamp(1.7rem, 3vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.engagement-facts dt {
  color: var(--accent-deep);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engagement-facts dd {
  margin: 0;
  color: #4e4b46;
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Brand working model */

.brand-model {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 47%, rgba(237, 74, 45, 0.18), transparent 31%),
    linear-gradient(145deg, #171210, #080808 72%);
}

.brand-model .engagement-visual-label {
  color: rgba(255, 255, 255, 0.58);
}

.brand-model-canvas {
  position: absolute;
  inset: 4.5rem 1.75rem 1.75rem;
}

.brand-model-ring,
.brand-model-axis,
.brand-model-input,
.brand-model-core,
.brand-model-output {
  position: absolute;
}

.brand-model-ring {
  top: 47%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.76);
  transition: opacity 800ms ease 180ms, transform 1100ms cubic-bezier(0.2, 0.75, 0.2, 1) 180ms;
}

.brand-model-ring--outer {
  width: min(79%, 34rem);
}

.brand-model-ring--inner {
  width: min(45%, 19rem);
  border-color: rgba(237, 74, 45, 0.52);
  transition-delay: 320ms;
}

.brand-model-axis {
  top: 47%;
  left: 50%;
  background: rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
}

.brand-model-axis--horizontal {
  width: 87%;
  height: 1px;
}

.brand-model-axis--vertical {
  width: 1px;
  height: 87%;
}

.brand-model-input,
.brand-model-output {
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-model-input {
  color: rgba(255, 255, 255, 0.58);
}

.brand-model-input::before,
.brand-model-output::before {
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.48rem;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.brand-model-input--business { top: 8%; left: 8%; }
.brand-model-input--audience { top: 8%; right: 7%; }
.brand-model-input--category { bottom: 17%; left: 7%; }

.brand-model-core {
  top: 47%;
  left: 50%;
  display: flex;
  width: clamp(8.5rem, 18vw, 12rem);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 1.2rem rgba(237, 74, 45, 0.08);
  transform: translate(-50%, -50%);
}

.brand-model-core small {
  margin-bottom: 0.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-model-core strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-model-output {
  right: 4%;
  color: rgba(255, 255, 255, 0.9);
}

.brand-model-output--narrative { bottom: 25%; }
.brand-model-output--identity { bottom: 15%; }
.brand-model-output--launch { bottom: 5%; }

.brand-model.is-visible .brand-model-ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Digital journey model */

.digital-model {
  color: var(--ink);
  background: var(--accent);
}

.digital-model .engagement-visual-label {
  color: rgba(10, 10, 10, 0.58);
}

.digital-model-canvas {
  position: absolute;
  inset: 5rem 1.75rem 1.75rem;
}

.digital-model-canvas svg,
.ai-model-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.digital-path-ghost,
.digital-path-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.digital-path-ghost {
  stroke: rgba(10, 10, 10, 0.18);
  stroke-width: 1;
}

.digital-path-line {
  stroke: var(--ink);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 2;
  transition: stroke-dashoffset 1500ms cubic-bezier(0.2, 0.75, 0.2, 1) 220ms;
}

.digital-node {
  position: absolute;
  display: flex;
  min-width: 7rem;
  padding-top: 1.15rem;
  flex-direction: column;
}

.digital-node::before {
  position: absolute;
  top: -0.3rem;
  left: 0;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: scale(0);
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1) 600ms;
}

.digital-node i,
.ai-model-node i {
  margin-bottom: 0.35rem;
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.09em;
}

.digital-node strong,
.ai-model-node strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.digital-node small,
.ai-model-node small {
  margin-top: 0.45rem;
  font-size: 0.66rem;
  line-height: 1.35;
}

.digital-node--arrive { top: 70%; left: 1%; }
.digital-node--orient { top: 4%; left: 34%; }
.digital-node--decide { top: 70%; left: 66%; }
.digital-node--act { top: 17%; right: 0; }

.digital-model.is-visible .digital-path-line {
  stroke-dashoffset: 0;
}

.digital-model.is-visible .digital-node::before {
  transform: scale(1);
}

/* AI operating model */

.ai-model {
  color: var(--white);
  background:
    radial-gradient(circle at 60% 50%, rgba(237, 74, 45, 0.15), transparent 27%),
    var(--ink);
}

.ai-model .engagement-visual-label {
  color: rgba(255, 255, 255, 0.58);
}

.ai-model-canvas {
  position: absolute;
  inset: 5rem 1.75rem 1.75rem;
}

.ai-model-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 1400ms cubic-bezier(0.2, 0.75, 0.2, 1) 240ms;
}

.ai-model-path--loop {
  stroke: rgba(237, 74, 45, 0.72);
  transition-delay: 650ms;
}

.ai-model-node {
  position: absolute;
  top: 50%;
  display: flex;
  width: 9rem;
  padding-top: 1.1rem;
  flex-direction: column;
  transform: translateY(-50%);
}

.ai-model-node::before {
  position: absolute;
  top: -0.33rem;
  left: 0;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--ink);
  border: 2px solid var(--white);
  border-radius: 50%;
  content: "";
  transform: scale(0);
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1) 580ms;
}

.ai-model-node--knowledge { left: 1%; }
.ai-model-node--assist { left: 28%; }
.ai-model-node--human { left: 53%; }
.ai-model-node--action { right: -1%; }

.ai-model-node--human {
  color: var(--accent);
}

.ai-model-node--human::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.75rem rgba(237, 74, 45, 0.12);
}

.ai-model-feedback {
  position: absolute;
  bottom: 10%;
  left: 50%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.ai-model.is-visible .ai-model-path {
  stroke-dashoffset: 0;
}

.ai-model.is-visible .ai-model-node::before {
  transform: scale(1);
}

/* Revised engagement artifacts */

.brand-model-layout,
.digital-model-layout,
.ai-model-layout {
  position: absolute;
  inset: 5.5rem 2rem 2rem;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.brand-model {
  color: var(--white);
  background: var(--ink);
}

.brand-model-stages,
.digital-model-sequence {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-model-stages {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.brand-model-stages li {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(1rem, 1.7vw, 1.4rem);
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid var(--line-light);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 520ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), background 220ms ease;
}

.brand-model-stages li:first-child {
  border-left: 0;
}

.brand-model-stages li:nth-child(2) { transition-delay: 90ms; }
.brand-model-stages li:nth-child(3) { transition-delay: 180ms; }
.brand-model-stages li:nth-child(4) { transition-delay: 270ms; }

.brand-model-stages li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -0.5rem;
  z-index: 2;
  width: 1rem;
  color: var(--accent);
  background: var(--ink);
  content: "→";
  font-size: 0.75rem;
  text-align: center;
  transform: translateY(-50%);
}

.brand-model-stages span,
.digital-model-sequence span,
.ai-model-flow span,
.brand-model-result span,
.digital-model-result span,
.ai-model-feedback > span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-model-stages span {
  margin-bottom: 0.9rem;
  color: var(--accent);
}

.brand-model-stages strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.35vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.brand-model-stages small {
  max-width: 8.6rem;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  line-height: 1.4;
}

.brand-model-result,
.digital-model-result {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  padding-top: 2rem;
}

.brand-model-result span {
  color: rgba(255, 255, 255, 0.52);
}

.brand-model-result {
  grid-template-columns: 1fr;
  gap: 0.65rem;
  padding-left: 25%;
}

.brand-model-result strong,
.digital-model-result strong {
  font-family: var(--display);
  font-size: clamp(2.75rem, 4.8vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.brand-model-result strong {
  color: var(--accent);
  font-size: clamp(2.1rem, 3.1vw, 3.35rem);
  line-height: 0.88;
}

.brand-model.is-visible .brand-model-stages li,
.digital-model.is-visible .digital-model-sequence li,
.ai-model.is-visible .ai-model-flow > div {
  opacity: 1;
  transform: translateY(0);
}

.digital-model {
  color: var(--ink);
  background: var(--accent);
}

.digital-model-sequence {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 10, 10, 0.35);
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
}

.digital-model-sequence li {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid rgba(10, 10, 10, 0.25);
  opacity: 0;
  transform: translateX(-0.8rem);
  transition: opacity 500ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1), background 220ms ease;
}

.digital-model-sequence li:first-child {
  border-left: 0;
}

.digital-model-sequence li:nth-child(2) { transition-delay: 90ms; }
.digital-model-sequence li:nth-child(3) { transition-delay: 180ms; }
.digital-model-sequence li:nth-child(4) { transition-delay: 270ms; }

.digital-model-sequence li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -0.5rem;
  z-index: 2;
  width: 1rem;
  color: var(--ink);
  background: var(--accent);
  content: "→";
  font-size: 0.8rem;
  text-align: center;
  transform: translateY(-50%);
}

.digital-model-sequence span {
  margin-bottom: 1rem;
  color: rgba(10, 10, 10, 0.58);
}

.digital-model-sequence strong {
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.digital-model-sequence small {
  max-width: 8rem;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  line-height: 1.4;
}

.digital-model-result span {
  color: rgba(10, 10, 10, 0.58);
}

.ai-model {
  color: var(--white);
  background: var(--ink);
}

.ai-model-layout {
  grid-template-rows: minmax(0, 1fr) auto;
}

.ai-model-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 0.78fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.ai-model-flow > div {
  display: flex;
  min-width: 0;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid var(--line-light);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 520ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), background 220ms ease;
}

.ai-model-flow > div:first-child {
  border-left: 0;
}

.ai-model-flow > div:nth-child(2) { transition-delay: 110ms; }
.ai-model-flow > div:nth-child(3) { transition-delay: 220ms; }

.ai-model-flow span {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.ai-model-flow strong {
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.ai-model-flow small {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  line-height: 1.4;
}

.ai-model-flow .ai-model-gate {
  color: var(--ink);
  background: var(--accent);
  border-left-color: var(--accent);
}

.ai-model-gate span,
.ai-model-gate small {
  color: rgba(10, 10, 10, 0.62);
}

.ai-model-feedback {
  position: static;
  display: flex;
  right: auto;
  bottom: auto;
  left: auto;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 2rem;
  color: inherit;
  transform: none;
}

.ai-model-feedback > span {
  color: rgba(255, 255, 255, 0.5);
}

.ai-model-feedback div {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.ai-model-feedback strong {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-model-feedback i {
  color: var(--accent);
  font-style: normal;
}

.service-process {
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(25rem, 1.18fr);
  gap: clamp(5rem, 12vw, 12rem);
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--paper);
}

.process-intro {
  position: sticky;
  top: 7rem;
  height: fit-content;
}

.process-intro h2 {
  max-width: 8ch;
  margin-bottom: 2rem;
}

.process-intro > p:last-child {
  max-width: 29rem;
  color: var(--muted);
}

.service-process .process-list {
  border-top-color: var(--line);
}

.service-process .process-list li {
  border-bottom-color: var(--line);
}

.service-process .process-list p {
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(25rem, 1.28fr);
  gap: clamp(5rem, 12vw, 12rem);
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--paper-deep);
}

.faq-intro h2 {
  max-width: 7ch;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.75rem 3rem 1.75rem 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.6rem;
  right: 0;
  content: "+";
  color: var(--accent);
  font-family: var(--body);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 44rem;
  margin: -0.25rem 3rem 1.8rem 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-cta {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  color: var(--ink);
  background: var(--accent);
}

.page-cta-row {
  display: flex;
  gap: 4rem;
  align-items: flex-end;
  justify-content: space-between;
}

.page-cta h2 {
  max-width: 10ch;
}

.page-cta h2 em {
  color: var(--white);
}

.contact--standalone {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
}

.contact-notes {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(25rem, 1.2fr);
  gap: clamp(5rem, 12vw, 12rem);
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--paper);
}

.contact-notes h2 {
  max-width: 9ch;
}

.contact-notes ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-notes li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}

.contact-notes li > span {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.contact-notes h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.contact-notes li p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.legal-hero {
  min-height: 47rem;
  padding-top: calc(var(--header-height) + clamp(6rem, 11vw, 11rem));
  padding-bottom: clamp(5rem, 9vw, 9rem);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 40%, rgba(237, 74, 45, 0.22), transparent 26rem),
    var(--ink);
}

.legal-hero h1 {
  max-width: 8ch;
  margin-bottom: 3rem;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.8;
}

.legal-hero-intro {
  max-width: 42rem;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(28rem, 1.08fr);
  gap: clamp(5rem, 14vw, 14rem);
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--paper);
}

.legal-summary {
  position: sticky;
  top: 7rem;
  height: fit-content;
}

.legal-summary > p:not(.section-label) {
  margin-bottom: 2rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-content section {
  padding: 0 0 3.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-content section + section {
  padding-top: 3.25rem;
}

.legal-content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}

.legal-content p {
  max-width: 48rem;
  margin-bottom: 1.25rem;
  color: #4e4b46;
  line-height: 1.72;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  text-underline-offset: 0.18em;
}

.is-ready [data-reveal] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@keyframes hero-image-in {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@media (hover: hover) {
  .brand-model-core {
    transition: transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 320ms ease;
  }

  .brand-model:hover .brand-model-core {
    box-shadow: 0 0 0 1.55rem rgba(237, 74, 45, 0.1);
    transform: translate(-50%, -50%) scale(1.035);
  }

  .digital-node strong,
  .ai-model-node strong {
    transition: transform 220ms ease, color 220ms ease;
  }

  .digital-model:hover .digital-node strong {
    transform: translateY(-0.2rem);
  }

  .ai-model:hover .ai-model-node--human strong {
    color: var(--white);
    transform: translateY(-0.2rem);
  }

  .brand-model-stages li:hover {
    background: rgba(255, 255, 255, 0.045);
  }

  .digital-model-sequence li:hover {
    background: rgba(255, 253, 248, 0.14);
  }

  .ai-model-system:hover,
  .ai-model-action:hover {
    background: rgba(255, 255, 255, 0.045);
  }
}

@media (max-width: 1100px) {
  .capability-row {
    grid-template-columns: 3rem minmax(13rem, 1.1fr) 1fr 2.5rem;
  }

  .capability-row ul {
    display: none;
  }

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

  .signal-core {
    width: 10rem;
    height: 10rem;
  }

  .contact {
    gap: 5rem;
  }

  .service-rows article {
    grid-template-columns: 3rem minmax(18rem, 1fr) minmax(11rem, 0.42fr);
    gap: 2rem;
  }

  .service-engagement-intro {
    grid-template-columns: minmax(7rem, 0.25fr) minmax(20rem, 1fr) minmax(15rem, 0.55fr);
    gap: 2.5rem;
  }

  .service-engagement-stage {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    gap: 3.5rem;
  }

  .engagement-facts div {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .page-cta-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    height: var(--header-height);
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: calc(var(--header-height) + 3rem) var(--gutter) 3rem;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-header.is-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: var(--display);
    font-size: clamp(2.5rem, 9vw, 4.5rem);
    letter-spacing: -0.045em;
  }

  .primary-nav .nav-cta {
    min-height: 4rem;
    margin-top: 1.5rem;
    padding: 0 1.25rem;
    font-family: var(--body);
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .site-header.is-open .menu-lines i:first-child {
    top: 0.38rem;
    transform: rotate(45deg);
  }

  .site-header.is-open .menu-lines i:last-child {
    top: 0.38rem;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 42rem;
    max-height: none;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.47) 64%, rgba(0, 0, 0, 0.12) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 55%);
  }

  .hero h1 {
    font-size: clamp(5rem, 19vw, 8rem);
    line-height: 0.76;
  }

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

  .hero-bottom p {
    max-width: 26rem;
  }

  .text-link {
    width: min(100%, 18rem);
  }

  .hero-side-note {
    display: none;
  }

  .statement-grid,
  .section-heading,
  .section-heading--split,
  .approach,
  .contact,
  .service-opening-grid,
  .service-fit,
  .service-engagement-intro,
  .service-engagement-stage,
  .service-process,
  .faq,
  .contact-notes,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 3.5rem;
  }

  .section-heading {
    gap: 2rem;
  }

  .capability-row {
    min-height: 0;
    grid-template-columns: 2.5rem 1fr 2.5rem;
    gap: 1rem;
    padding: 2rem 0 2.5rem;
  }

  .capability-row--accent,
  .capability-row:hover {
    padding-left: 1rem;
  }

  .capability-row h3 {
    max-width: none;
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .capability-row > p {
    grid-column: 2 / 4;
  }

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

  .ai-visual {
    min-height: 75vw;
    border-top: 1px solid rgba(10, 10, 10, 0.3);
    border-left: 0;
  }

  .signal-orbit--one {
    width: 58vw;
    height: 58vw;
  }

  .signal-orbit--two {
    width: 38vw;
    height: 38vw;
  }

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

  .engagement-grid article,
  .engagement-grid article + article {
    min-height: 24rem;
    padding: 1.75rem 0 2rem;
    border-left: 0;
  }

  .engagement-grid article + article {
    border-top: 1px solid var(--line);
  }

  .approach {
    gap: 4rem;
  }

  .approach-intro {
    position: static;
  }

  .contact {
    gap: 4rem;
  }

  .page-hero {
    min-height: 44rem;
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 3rem;
  }

  .service-hero::before,
  .contact-hero::before {
    background-position: 62% center;
    opacity: 0.45;
  }

  .service-hero::after,
  .contact-hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.52) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, transparent 60%);
  }

  .page-hero h1 {
    font-size: clamp(4.5rem, 14vw, 7.2rem);
  }

  .page-hero-bottom {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-hero-index {
    right: -0.5rem;
    bottom: 1.25rem;
  }

  .service-opening-grid,
  .service-fit,
  .service-engagement-intro,
  .service-engagement-stage,
  .service-process,
  .faq,
  .contact-notes,
  .legal-layout {
    gap: 4rem;
  }

  .service-engagement-intro {
    align-items: start;
    margin-bottom: 4rem;
  }

  .service-engagement-intro h2 {
    max-width: 10ch;
  }

  .service-engagement-stage {
    gap: 3rem;
  }

  .engagement-visual {
    min-height: clamp(34rem, 82vw, 43rem);
  }

  .engagement-facts div {
    grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .service-rows article {
    grid-template-columns: 2.5rem 1fr;
  }

  .service-rows article ul {
    grid-column: 2;
  }

  .process-intro,
  .legal-summary {
    position: static;
  }

  .legal-hero-intro {
    margin-left: 0;
  }

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

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .brand {
    font-size: 1.65rem;
  }

  .hero-content {
    width: calc(100% - (var(--gutter) * 2));
    margin-bottom: 2rem;
  }

  .eyebrow {
    gap: 1.25rem;
    font-size: 0.62rem;
  }

  .eyebrow span {
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 21vw, 6.7rem);
  }

  .hero-bottom p {
    font-size: 1.2rem;
  }

  .statement h2,
  .section-heading h2,
  .engagements h2,
  .approach h2,
  .contact h2,
  .service-opening h2,
  .service-fit h2,
  .service-engagement-intro h2,
  .service-process h2,
  .faq h2,
  .page-cta h2,
  .contact-notes h2 {
    font-size: clamp(3.2rem, 15vw, 5.25rem);
  }

  .page-hero {
    min-height: 42rem;
  }

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

  .page-hero .eyebrow {
    gap: 1rem;
    font-size: 0.6rem;
  }

  .page-hero-bottom p {
    font-size: 1.12rem;
  }

  .page-hero-index {
    display: none;
  }

  .service-rows article {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-rows article ul {
    grid-column: 1;
  }

  .service-rows h3 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .fit-list li,
  .contact-notes li {
    grid-template-columns: 2.25rem 1fr;
    gap: 1rem;
  }

  .service-engagement-intro {
    gap: 1.5rem;
  }

  .service-engagement-stage {
    gap: 2.5rem;
  }

  .engagement-visual {
    min-height: 31rem;
  }

  .engagement-visual-label {
    top: 1.25rem;
    left: 1.25rem;
  }

  .engagement-facts div {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .brand-model-canvas,
  .digital-model-canvas,
  .ai-model-canvas {
    inset: 4.25rem 1.1rem 1.25rem;
  }

  .brand-model-ring--outer {
    width: 86%;
  }

  .brand-model-ring--inner {
    width: 53%;
  }

  .brand-model-core {
    width: 7.6rem;
  }

  .brand-model-core strong {
    font-size: 1.75rem;
  }

  .brand-model-input,
  .brand-model-output {
    font-size: 0.53rem;
  }

  .brand-model-input--business { top: 9%; left: 2%; }
  .brand-model-input--audience { top: 9%; right: 1%; }
  .brand-model-input--category { bottom: 18%; left: 1%; }
  .brand-model-output { right: 0; }

  .digital-node {
    min-width: 5.5rem;
  }

  .digital-node strong {
    font-size: 1.3rem;
  }

  .digital-node small {
    max-width: 5.8rem;
    font-size: 0.58rem;
  }

  .digital-node--arrive { top: 68%; left: 0; }
  .digital-node--orient { top: 6%; left: 30%; }
  .digital-node--decide { top: 68%; left: 58%; }
  .digital-node--act { top: 19%; right: -1%; }

  .ai-model-canvas {
    display: flex;
    padding: 1.5rem 0 0 0.4rem;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
  }

  .ai-model-canvas::before {
    position: absolute;
    top: 11%;
    bottom: 13%;
    left: 0.74rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    content: "";
  }

  .ai-model-canvas svg {
    display: none;
  }

  .ai-model-node {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    padding: 0 0 0 2.6rem;
    transform: none;
  }

  .ai-model-node::before {
    top: 0.4rem;
    left: 0;
  }

  .ai-model-node strong {
    font-size: 1.55rem;
  }

  .ai-model-feedback {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0.5rem 0 0 2.6rem;
    transform: none;
  }

  .engagement-visual {
    min-height: 34rem;
  }

  .brand-model {
    min-height: 39rem;
  }

  .brand-model-layout,
  .digital-model-layout,
  .ai-model-layout {
    inset: 4.4rem 1.15rem 1.25rem;
  }

  .brand-model-stages {
    grid-template-columns: 1fr;
  }

  .brand-model-stages li {
    min-height: 5.5rem;
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .brand-model-stages li:first-child {
    border-top: 0;
  }

  .brand-model-stages li::after {
    display: none;
  }

  .brand-model-stages span {
    margin-bottom: 0.3rem;
  }

  .brand-model-stages strong {
    font-size: 2rem;
  }

  .brand-model-stages small {
    margin-top: 0.25rem;
  }

  .brand-model-result,
  .digital-model-result {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-top: 1.25rem;
  }

  .brand-model-result strong,
  .digital-model-result strong {
    font-size: 2.75rem;
  }

  .brand-model-result strong {
    font-size: 2.35rem;
    line-height: 0.9;
  }

  .brand-model-result {
    padding-left: 0;
  }

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

  .digital-model-sequence li {
    min-height: 7.3rem;
    padding: 0.85rem 1rem;
  }

  .digital-model-sequence li:nth-child(3) {
    border-top: 1px solid rgba(10, 10, 10, 0.25);
    border-left: 0;
  }

  .digital-model-sequence li:nth-child(4) {
    border-top: 1px solid rgba(10, 10, 10, 0.25);
  }

  .digital-model-sequence li::after {
    display: none;
  }

  .digital-model-sequence span {
    margin-bottom: 0.4rem;
  }

  .digital-model-sequence strong {
    font-size: 1.9rem;
  }

  .digital-model-sequence small {
    margin-top: 0.35rem;
  }

  .ai-model-flow {
    grid-template-columns: 1fr;
  }

  .ai-model-flow > div {
    min-height: 6.3rem;
    padding: 0.85rem 1rem;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .ai-model-flow > div:first-child {
    border-top: 0;
  }

  .ai-model-flow span {
    margin-bottom: 0.35rem;
  }

  .ai-model-flow strong {
    font-size: 1.9rem;
  }

  .ai-model-flow strong br {
    display: none;
  }

  .ai-model-flow small {
    margin-top: 0.35rem;
  }

  .ai-model-feedback {
    position: static;
    gap: 0.65rem;
    align-items: flex-start;
    margin: 0;
    padding-top: 1.25rem;
    flex-direction: column;
  }

  .ai-model-feedback div {
    gap: 0.55rem;
  }

  .faq-list summary {
    font-size: 1.7rem;
  }

  .legal-hero {
    min-height: 38rem;
  }

  .legal-hero h1 {
    font-size: clamp(4.3rem, 20vw, 6.5rem);
  }

  .ai-copy h2 {
    font-size: clamp(3.3rem, 15vw, 5.25rem);
  }

  .ai-offers strong {
    display: block;
    min-width: 0;
    margin: 0 0 0.25rem;
  }

  .signal-node--strategy { top: 10%; left: 8%; }
  .signal-node--systems { right: 4%; bottom: 14%; }
  .signal-node--people { bottom: 6%; left: 7%; }

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

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

  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  .footer-links {
    margin-bottom: 1.25rem;
  }

  .footer-meta {
    justify-content: space-between;
  }

  .brand--footer {
    margin-bottom: 2rem;
  }
}

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

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

  .hero-reveal,
  .is-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
