@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --brand-blue: #28348a;
  --brand-orange: #f29100;
  --ink: #11194d;
  --ink-soft: #18215f;
  --paper: #f3f4f8;
  --paper-bright: #ffffff;
  --sand: #f29100;
  --champagne: #f29100;
  --line-light: rgba(255, 255, 255, .2);
  --line-dark: rgba(17, 25, 77, .17);
  --white: #fff;
  --display: "Manrope", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --serif: "Manrope", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --body: "Manrope", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --page: clamp(1.35rem, 4.3vw, 5.25rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, dl, dd { margin: 0; }
address { font-style: normal; }

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

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .25s ease;
}

.skip-link:focus { transform: none; }

.wordmark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: clamp(11rem, 14vw, 13rem);
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 5.8rem;
  padding-inline: var(--page);
  color: var(--ink);
  background: rgba(247, 248, 252, .96);
  border-bottom: 1px solid rgba(40, 52, 138, .16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: height .45s var(--ease), background .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}

.site-header.is-scrolled,
.site-header-solid {
  height: 5rem;
  background: rgba(247, 248, 252, .97);
  border-color: rgba(40, 52, 138, .2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: auto;
  height: 2px;
  background: var(--brand-orange);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress-scale, 0));
  transform-origin: left center;
  transition: transform .1s linear;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 3.1rem);
}

.desktop-nav a {
  position: relative;
  padding-block: .45rem;
  color: rgba(17, 25, 77, .56);
  font-size: .7rem;
  font-weight: 520;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brand-orange);
  transition: right .35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--brand-blue); }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0 1.05rem;
  border: 1px solid var(--brand-orange);
  background: var(--brand-orange);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 520;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.header-cta:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 2.85rem;
  height: 2.85rem;
  padding: .72rem;
  border: 1px solid rgba(40, 52, 138, .35);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: .32rem 0;
  background: var(--brand-blue);
  transform-origin: center;
  transition: transform .35s var(--ease);
}

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

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  align-content: space-between;
  padding: 8.5rem var(--page) 2.3rem;
  background: linear-gradient(145deg, var(--brand-blue), var(--ink) 72%);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity .4s ease, visibility .4s ease, transform .4s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(2.25rem, 12vw, 4rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.mobile-menu nav span {
  color: var(--brand-orange);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .13em;
}

.mobile-menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
}

.hero {
  position: relative;
  min-height: 46rem;
  height: 100svh;
  color: var(--white);
  background: var(--brand-blue);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade,
.hero-grid { position: absolute; inset: 0; }

.hero-media { z-index: -3; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 47%;
  transform: scale(1.035);
  animation: aerial-drift 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes aerial-drift {
  from { transform: scale(1.035) translate3d(-.35%, -.2%, 0); }
  to { transform: scale(1.12) translate3d(.55%, .6%, 0); }
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(12, 20, 73, .78) 0%, rgba(14, 24, 85, .18) 37%, rgba(12, 19, 68, .91) 100%),
    linear-gradient(90deg, rgba(22, 31, 103, .58) 0%, transparent 55%, rgba(17, 25, 78, .28) 100%);
}

.hero-grid { z-index: -1; pointer-events: none; }
.hero-grid::before,
.hero-grid::after,
.grid-v,
.grid-h {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, .16);
}

.hero-grid::before { top: 0; bottom: 0; left: var(--page); width: 1px; }
.hero-grid::after { left: 0; right: 0; bottom: 14.5rem; height: 1px; }
.grid-v { top: 0; bottom: 0; width: 1px; }
.grid-v-one { left: 60%; }
.grid-v-two { right: var(--page); }
.grid-h { left: 0; right: 0; height: 1px; }
.grid-h-one { top: 5.8rem; }

.locator {
  position: absolute;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  animation: locator-pulse 4s ease-out infinite;
}

.locator i {
  display: block;
  width: .32rem;
  height: .32rem;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 5px rgba(242, 145, 0, .18);
}

.locator-one { top: 37%; left: 47%; }
.locator-two { top: 25%; right: 18%; animation-delay: 2s; transform: scale(.7); }
@keyframes locator-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  45% { box-shadow: 0 0 0 10px rgba(255, 255, 255, .07); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(8rem, 15vh, 11rem) var(--page) 3.2rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255, 255, 255, .67);
  font-size: .64rem;
  font-weight: 550;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 2.3rem;
  height: 1px;
  background: var(--brand-orange);
}

.eyebrow-dark { color: rgba(17, 25, 77, .58); }

.hero-eyebrow {
  opacity: 0;
  animation: intro-rise 1s .1s var(--ease) forwards;
}

.hero h1 {
  display: flex;
  align-items: flex-end;
  gap: clamp(.65rem, 2vw, 2rem);
  margin-top: auto;
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 13.5rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .76;
  opacity: 0;
  animation: intro-rise 1.2s .2s var(--ease) forwards;
}

.hero h1 small {
  padding-bottom: .25em;
  color: var(--brand-orange);
  font-family: var(--display);
  font-size: .15em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-brand {
  display: inline-flex;
  align-items: baseline;
}

.hero-brand b,
.hero-brand i {
  font: inherit;
  letter-spacing: inherit;
}

.hero-brand b {
  color: var(--brand-orange);
  font-weight: 800;
}

.hero-brand i {
  color: var(--white);
  font-style: normal;
  font-weight: 350;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 34%);
  gap: clamp(2.5rem, 7vw, 9rem);
  padding-top: 1.75rem;
  opacity: 0;
  animation: intro-rise 1.2s .38s var(--ease) forwards;
}

@keyframes intro-rise {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: none; }
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(14rem, .72fr) minmax(17rem, 1.1fr);
  gap: clamp(2rem, 5vw, 6.5rem);
  align-items: start;
}

.hero-kicker {
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.hero-summary {
  max-width: 31rem;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(.84rem, .95vw, .98rem);
  font-weight: 400;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.25rem;
  padding: 0 1.1rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.button span,
.text-link span { font-size: 1rem; font-weight: 300; }
.button-light { background: var(--brand-orange); color: var(--ink); }
.button-light:hover { background: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-block: .8rem;
  border-bottom: 1px solid;
  font-size: .65rem;
  font-weight: 560;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.text-link-light { color: rgba(255, 255, 255, .76); border-color: rgba(255, 255, 255, .35); }
.text-link-light:hover { color: var(--white); }

.hero-data {
  align-self: end;
  border-top: 1px solid var(--line-light);
}

.hero-data div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line-light);
}

.hero-data dt {
  color: rgba(255, 255, 255, .4);
  font-size: .58rem;
  font-weight: 520;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-data dd {
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
  font-weight: 420;
  letter-spacing: .03em;
}

.scroll-cue {
  position: absolute;
  right: 1rem;
  bottom: 3.3rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue span { width: 2.4rem; height: 1px; background: rgba(255, 255, 255, .4); }
.scroll-cue em {
  color: rgba(255, 255, 255, .5);
  font-size: .55rem;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-light { background: var(--paper); }
.section-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(17, 25, 77, .5);
  font-size: .6rem;
  font-weight: 550;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(40, 52, 138, .34);
  border-radius: 50%;
  color: var(--brand-blue);
  font-size: .6rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(7rem, .42fr) minmax(0, 1.45fr) minmax(19rem, .8fr);
  gap: clamp(2rem, 5.5vw, 7rem);
  padding: clamp(8rem, 13vw, 13rem) var(--page) clamp(7rem, 11vw, 11rem);
}

.intro .section-index { align-self: start; }
.intro-lead .eyebrow { margin-bottom: 2.4rem; }

.intro h2,
.principles h2,
.location h2,
.contact h2 {
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.8vw, 8rem);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .95;
}

h2 em {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -.06em;
}

.section-light h2 em { color: var(--brand-blue); }
.principles h2 em { color: var(--brand-orange); }

.intro-copy {
  align-self: end;
  max-width: 30rem;
  padding-bottom: .7rem;
}

.intro-copy p:first-child {
  margin-bottom: 1.5rem;
  font-size: clamp(1.22rem, 1.55vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.42;
}

.intro-copy p:last-child {
  max-width: 26rem;
  color: rgba(17, 25, 77, .62);
  font-size: .92rem;
  line-height: 1.75;
}

.capabilities {
  grid-column: 2 / -1;
  margin-top: clamp(3.5rem, 7vw, 8rem);
  border-top: 1px solid var(--line-dark);
}

.capability {
  position: relative;
  display: grid;
  grid-template-columns: minmax(7rem, .4fr) minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.capability::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(40, 52, 138, .055);
  transform: translateX(-101%);
  transition: transform .65s var(--ease);
}

.capability:hover::before { transform: none; }
.capability > * { position: relative; }
.capability-number {
  padding-top: .5rem;
  color: rgba(17, 25, 77, .43);
  font-size: .6rem;
  letter-spacing: .14em;
}

.capability h3 {
  margin-bottom: .7rem;
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.capability div p {
  max-width: 30rem;
  color: rgba(17, 25, 77, .58);
  font-size: .82rem;
  line-height: 1.65;
}

.capability-mark {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(40, 52, 138, .3);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  transition: background .3s ease, color .3s ease, transform .4s var(--ease);
}

.capability:hover .capability-mark { background: var(--brand-blue); color: var(--white); transform: rotate(90deg); }

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(24rem, .75fr);
  min-height: 54rem;
  background: var(--ink);
  color: var(--white);
}

.location-visual { position: relative; min-height: 52rem; overflow: hidden; }
.location-visual::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 52, 138, .12) 0%, rgba(17, 25, 77, .73) 100%),
    linear-gradient(180deg, transparent 55%, rgba(17, 25, 77, .35) 100%);
  pointer-events: none;
}

.location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  filter: saturate(.8) contrast(1.06) brightness(.83);
  transition: transform 1.3s var(--ease), filter 1.3s ease;
}

.location-visual:hover img { transform: scale(1.025); filter: saturate(.92) contrast(1.04) brightness(.88); }

.location-frame {
  position: absolute;
  z-index: 2;
  inset: 2.3rem;
  border: 1px solid rgba(242, 145, 0, .5);
  pointer-events: none;
}

.frame-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, .63);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.frame-cross {
  position: absolute;
  left: 56%;
  top: 48%;
  width: 1.2rem;
  height: 1.2rem;
}

.frame-cross::before,
.frame-cross::after { position: absolute; content: ""; background: var(--brand-orange); }
.frame-cross::before { left: 50%; top: 0; width: 1px; height: 100%; }
.frame-cross::after { left: 0; top: 50%; width: 100%; height: 1px; }

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7.5vw, 9rem) var(--page) clamp(4rem, 7.5vw, 9rem) clamp(3rem, 6vw, 7rem);
}

.section-index-dark { color: rgba(255, 255, 255, .45); margin-bottom: auto; }
.section-index-dark span { border-color: rgba(255, 255, 255, .2); color: var(--white); }
.location-content > .eyebrow { margin: 5rem 0 2rem; }
.location h2 { font-size: clamp(3.4rem, 5.7vw, 6.5rem); }
.location h2 em { color: var(--brand-orange); }
.location-text {
  max-width: 28rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, .59);
  font-size: .91rem;
  line-height: 1.78;
}

.location-address {
  display: grid;
  gap: .3rem;
  margin-top: 3.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: .78rem;
  letter-spacing: .07em;
}

.button-outline {
  align-self: flex-start;
  margin-top: 2rem;
  border: 1px solid var(--brand-orange);
  color: var(--white);
}

.button-outline:hover { background: var(--brand-orange); border-color: var(--brand-orange); color: var(--ink); }

.principles {
  display: grid;
  grid-template-columns: minmax(8rem, .42fr) minmax(0, 1.58fr);
  column-gap: clamp(2rem, 7vw, 9rem);
  padding: clamp(8rem, 13vw, 13rem) var(--page);
  background: #e9ebf4;
}

.principles-heading .eyebrow { margin-bottom: 2.4rem; }
.principles h2 { max-width: 65rem; }
.principle-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 9vw, 10rem);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principle {
  min-height: 20rem;
  padding: 2rem 2.2rem 2.2rem 0;
}

.principle + .principle { padding-left: 2.2rem; border-left: 1px solid var(--line-dark); }
.principle > span {
  display: block;
  color: var(--brand-orange);
  font-size: .6rem;
  letter-spacing: .13em;
}

.principle h3 {
  max-width: 12rem;
  margin-top: 5rem;
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.15;
}

.principle p {
  margin-top: 1.25rem;
  color: rgba(17, 25, 77, .5);
  font-family: var(--body);
  font-size: .95rem;
  font-style: normal;
  font-weight: 500;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(17rem, .45fr);
  column-gap: clamp(3rem, 8vw, 10rem);
  padding: 4.2rem var(--page) clamp(6rem, 10vw, 10rem);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.contact::after {
  position: absolute;
  content: "PS";
  right: -2.5vw;
  bottom: -15vw;
  color: rgba(242, 145, 0, .07);
  font-size: 40vw;
  font-weight: 700;
  letter-spacing: -.12em;
  line-height: 1;
  pointer-events: none;
}

.contact > * { position: relative; z-index: 1; }
.contact-top {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.contact-note {
  color: rgba(255, 255, 255, .55);
  font-size: .62rem;
  font-weight: 550;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-main { padding-top: clamp(4.5rem, 9vw, 9rem); }
.contact-main .eyebrow { margin-bottom: 2rem; }
.contact h2 { font-size: clamp(4.3rem, 9.4vw, 10rem); }
.contact h2 em { color: var(--brand-orange); }
.contact .section-index { color: rgba(255, 255, 255, .52); }
.contact .section-index span { border-color: rgba(242, 145, 0, .65); color: var(--brand-orange); }
.contact .eyebrow-dark { color: rgba(255, 255, 255, .62); }
.mail-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 51rem;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, .23);
  border-bottom: 1px solid rgba(255, 255, 255, .23);
  font-size: clamp(.95rem, 1.55vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -.01em;
  transition: padding .35s var(--ease), background .35s ease;
}

.mail-link:hover { padding-inline: 1rem; background: rgba(255, 255, 255, .19); }
.mail-link i { font-size: 1.2em; font-style: normal; font-weight: 300; }
.contact-details {
  align-self: end;
  padding-bottom: .4rem;
  color: rgba(255, 255, 255, .64);
  font-size: .82rem;
  line-height: 1.7;
}

.contact-details > p { margin-bottom: 1rem; color: var(--white); font-weight: 700; }
.button-dark { margin-top: 2.2rem; background: var(--brand-orange); color: var(--ink); }
.button-dark:hover { background: var(--white); color: var(--ink); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 1fr .65fr;
  gap: clamp(2rem, 8vw, 10rem);
  padding: clamp(4.5rem, 8vw, 8rem) var(--page) 2.2rem;
  background: var(--paper-bright);
  color: var(--ink);
  border-top: .35rem solid var(--brand-orange);
}

.wordmark-footer { width: clamp(13rem, 18vw, 17rem); }
.footer-brand p {
  margin-top: 2rem;
  color: rgba(17, 25, 77, .55);
  font-size: .78rem;
  line-height: 1.55;
}

.footer-contact > p,
.footer-links > p {
  margin-bottom: 1.25rem;
  color: rgba(17, 25, 77, .45);
  font-size: .58rem;
  font-weight: 550;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact address,
.footer-links a,
.footer-links button {
  display: block;
  color: rgba(17, 25, 77, .72);
  font-size: .78rem;
  line-height: 1.8;
}

.footer-links button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.footer-contact > strong {
  display: block;
  margin-bottom: .15rem;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
}

.footer-contact a { margin-bottom: 1rem; }
.footer-contact a:hover,
.footer-links a:hover,
.footer-links button:hover { color: var(--brand-orange); }
.footer-links a[aria-current="page"] { color: var(--brand-orange); }
.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(17, 25, 77, .14);
  color: rgba(17, 25, 77, .42);
  font-size: .62rem;
  letter-spacing: .06em;
}

.footer-bottom a { display: flex; gap: .75rem; color: var(--brand-blue); }
.footer-bottom .agency-credit {
  justify-self: center;
  color: rgba(17, 25, 77, .46);
  letter-spacing: .04em;
  transition: color .25s ease;
}
.footer-bottom .agency-credit strong { font-weight: 700; }
.footer-bottom .agency-credit:hover { color: var(--brand-orange); }
.footer-top { justify-self: end; }

/* Consent management */
.consent-ui [hidden] { display: none !important; }
body.consent-modal-open { overflow: hidden; }

.consent-banner {
  position: fixed;
  z-index: 500;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  width: min(36rem, calc(100vw - 2rem));
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(145deg, rgba(40, 52, 138, .28), transparent 55%),
    #0d143f;
  color: var(--white);
  box-shadow: 0 1.75rem 5rem rgba(4, 8, 32, .34);
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity .45s ease, transform .55s var(--ease);
}

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

.consent-banner-line {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--brand-orange);
}

.consent-eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, .53);
  font-size: .57rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.consent-eyebrow > span {
  width: 2rem;
  height: 1px;
  background: var(--brand-orange);
}

.consent-banner h2 {
  margin-top: 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 680;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.consent-banner-copy {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .69);
  font-size: .82rem;
  line-height: 1.7;
}

.consent-current-state,
.consent-service-note {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-left: 2px solid var(--brand-orange);
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .58);
  font-size: .7rem;
  line-height: 1.55;
}

.consent-banner-actions,
.consent-modal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.5rem;
}

.consent-banner-actions button,
.consent-modal-actions button {
  min-height: 3.15rem;
  padding: .65rem .85rem;
  border: 1px solid rgba(255, 255, 255, .28);
  background: transparent;
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.consent-banner-actions button:hover,
.consent-modal-actions button:hover {
  border-color: var(--brand-orange);
  background: rgba(255, 255, 255, .07);
}

.consent-banner-actions button:focus-visible,
.consent-modal-actions button:focus-visible {
  outline-color: var(--brand-orange);
}

.consent-modal-backdrop {
  position: fixed;
  z-index: 510;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 9, 34, .74);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.consent-modal {
  width: min(58rem, 100%);
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, .2);
  background:
    linear-gradient(145deg, rgba(40, 52, 138, .24), transparent 48%),
    #0d143f;
  color: var(--white);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, .42);
  overscroll-behavior: contain;
}

.consent-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.consent-modal-header h2 {
  margin-top: 1rem;
  font-size: clamp(2.3rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .95;
}

.consent-modal-header h2:focus { outline: none; }

.consent-modal-close {
  position: relative;
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  cursor: pointer;
}

.consent-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: var(--white);
}

.consent-modal-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.consent-modal-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.consent-modal-intro {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
  line-height: 1.75;
}

.consent-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.75rem;
}

.consent-category {
  min-height: 12.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .025);
}

.consent-category.is-necessary {
  border-color: rgba(242, 145, 0, .4);
  background: linear-gradient(145deg, rgba(242, 145, 0, .08), rgba(255, 255, 255, .02));
}

.consent-category.is-unavailable {
  background: rgba(255, 255, 255, .012);
}

.consent-category-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.consent-category-heading label {
  display: block;
  margin-top: .4rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -.02em;
}

.consent-category-status {
  color: var(--brand-orange);
  font-size: .52rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.consent-category.is-unavailable .consent-category-status {
  color: rgba(255, 255, 255, .38);
}

.consent-category > p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, .58);
  font-size: .73rem;
  line-height: 1.65;
}

.consent-switch {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 2.8rem;
  height: 1.5rem;
}

.consent-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-switch > span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .05);
  transition: border-color .25s ease, background .25s ease;
}

.consent-switch > span::after {
  position: absolute;
  content: "";
  top: .25rem;
  left: .25rem;
  width: .9rem;
  height: .9rem;
  background: rgba(255, 255, 255, .55);
  transition: transform .3s var(--ease), background .25s ease;
}

.consent-switch input:checked + span {
  border-color: var(--brand-orange);
  background: rgba(242, 145, 0, .12);
}

.consent-switch input:checked + span::after {
  background: var(--brand-orange);
  transform: translateX(1.3rem);
}

.consent-switch input:focus-visible + span {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
}

.consent-switch input:disabled + span { opacity: .72; }
.consent-category.is-unavailable .consent-switch > span { opacity: .4; }

.consent-service-note {
  margin-top: .75rem;
}

.consent-legal-link {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, .48);
  font-size: .66rem;
  text-align: center;
}

.consent-legal-link a {
  color: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(242, 145, 0, .55);
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

/* Legal pages */
.legal-page { background: var(--ink); color: var(--white); }
.legal-page .site-header-solid { grid-template-columns: 1fr auto; }
.legal-back {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--brand-blue);
  font-size: .63rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.legal-main { min-height: 100vh; padding: 9rem var(--page) 7rem; }
.legal-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .38);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.legal-hero { padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 10rem); }
.legal-hero .eyebrow { margin-bottom: 2rem; }
.legal-hero h1 {
  font-size: clamp(4.5rem, 13vw, 12rem);
  font-weight: 750;
  letter-spacing: -.065em;
  line-height: .88;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, .55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 10vw, 12rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.legal-layout aside p {
  margin-bottom: .5rem;
  font-size: .72rem;
  font-weight: 550;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-layout aside span { color: rgba(255, 255, 255, .38); font-size: .68rem; }
.legal-content { max-width: 48rem; }
.legal-content section { padding: 0 0 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--line-light); }
.legal-content h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content address {
  color: rgba(255, 255, 255, .62);
  font-size: .88rem;
  line-height: 1.8;
}

.legal-content section > p + p,
.legal-content section > p + address,
.legal-content section > address + p {
  margin-top: 1rem;
}

.legal-content a { color: var(--brand-orange); border-bottom: 1px solid rgba(242, 145, 0, .5); }
.legal-content strong { color: var(--white); font-weight: 700; }
.legal-content-expanded {
  max-width: 64rem;
}

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

.legal-fact-grid section,
.legal-copy-grid section {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line-light);
  overflow: hidden;
}

.legal-fact-grid section {
  min-height: 15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(40, 52, 138, .08);
}

.legal-fact-grid h2,
.legal-copy-grid h2 {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.legal-card-index {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  color: rgba(242, 145, 0, .72);
  font-size: .56rem;
  font-weight: 650;
  letter-spacing: .16em;
}

.legal-copy-grid {
  margin-top: 1rem;
}

.legal-copy-grid section {
  min-height: 20rem;
  background:
    linear-gradient(155deg, rgba(40, 52, 138, .24), rgba(255, 255, 255, .018) 58%),
    rgba(255, 255, 255, .018);
}

.legal-copy-grid .legal-copy-feature {
  grid-column: 1 / -1;
  min-height: 0;
  padding-right: clamp(2.5rem, 7vw, 6rem);
  border-color: rgba(242, 145, 0, .42);
  background:
    linear-gradient(100deg, rgba(242, 145, 0, .11), transparent 62%),
    rgba(255, 255, 255, .018);
}

.legal-copy-grid .legal-copy-feature p {
  max-width: 44rem;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.92rem, 1.2vw, 1.05rem);
}

.legal-copy-grid .legal-copy-conclusion {
  grid-column: 1 / -1;
  min-height: 0;
}

.legal-copy-grid .legal-copy-conclusion p {
  max-width: 48rem;
}

.legal-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem var(--page);
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: rgba(255, 255, 255, .4);
  font-size: .64rem;
  letter-spacing: .06em;
}

.legal-footer .agency-credit {
  color: rgba(255, 255, 255, .42);
  transition: color .25s ease;
}
.legal-footer .agency-credit:hover { color: var(--brand-orange); }
.legal-footer nav { display: flex; gap: 1.6rem; justify-self: end; }
.legal-footer a { color: rgba(255, 255, 255, .65); }
.legal-footer a[aria-current="page"] { color: var(--brand-orange); }

/* Branded coming-soon page */
.coming-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.coming-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.2rem;
  padding: 1.15rem var(--page);
  background: rgba(250, 250, 252, .98);
  border-bottom: 1px solid rgba(40, 52, 138, .14);
}

.coming-logo {
  display: block;
  width: clamp(11.75rem, 15vw, 14.5rem);
}

.coming-logo img { width: 100%; height: auto; }

.coming-status {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(17, 25, 77, .62);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.coming-status span {
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 5px rgba(242, 145, 0, .13);
  animation: status-pulse 2.8s ease-in-out infinite;
}

.coming-main {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 34rem;
  overflow: hidden;
}

.coming-media,
.coming-shade,
.coming-grid {
  position: absolute;
  inset: 0;
}

.coming-media { z-index: -3; }
.coming-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.88) contrast(1.06);
  transform: scale(1.025);
  animation: coming-image 14s var(--ease) both;
}

.coming-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 25, 77, .97) 0%, rgba(17, 25, 77, .91) 34%, rgba(17, 25, 77, .56) 68%, rgba(17, 25, 77, .32) 100%),
    linear-gradient(0deg, rgba(17, 25, 77, .48), transparent 48%);
}

.coming-grid {
  z-index: -1;
  pointer-events: none;
}

.coming-grid::before,
.coming-grid::after {
  position: absolute;
  content: "";
  inset-block: 0;
  width: 1px;
  background: rgba(255, 255, 255, .105);
}

.coming-grid::before { left: var(--page); }
.coming-grid::after { right: var(--page); }

.coming-line { position: absolute; background: rgba(255, 255, 255, .105); }
.coming-line-v { inset-block: 0; left: 57%; width: 1px; }
.coming-line-h { inset-inline: 0; top: 29%; height: 1px; }

.coming-marker {
  position: absolute;
  top: calc(29% - 1.25rem);
  left: calc(57% - 1.25rem);
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.coming-marker::before,
.coming-marker::after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.coming-marker::after { transform: rotate(90deg); }
.coming-marker i { width: .4rem; height: .4rem; border-radius: 50%; background: var(--brand-orange); }

.coming-content {
  width: min(100%, 88rem);
  padding: clamp(3.5rem, 6vh, 6rem) var(--page);
}

.coming-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: clamp(1.8rem, 3.6vh, 3rem);
  color: rgba(255, 255, 255, .68);
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: coming-up .8s .1s var(--ease) both;
}

.coming-eyebrow span { width: 2.4rem; height: 1px; background: var(--brand-orange); }

.coming-content h1 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(3.9rem, 7.1vw, 7.7rem);
  font-weight: 720;
  letter-spacing: -.064em;
  line-height: .91;
  animation: coming-up .9s .2s var(--ease) both;
}

.coming-content h1 em {
  color: var(--brand-orange);
  font-style: normal;
  font-weight: 420;
}

.coming-intro {
  display: grid;
  grid-template-columns: minmax(12rem, .72fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  width: min(100%, 49rem);
  margin-top: clamp(2.3rem, 4.5vh, 4rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, .25);
  animation: coming-up .9s .35s var(--ease) both;
}

.coming-intro p:first-child {
  color: var(--white);
  font-size: .78rem;
  font-weight: 620;
  letter-spacing: .08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.coming-intro p:last-child {
  max-width: 34rem;
  color: rgba(255, 255, 255, .65);
  font-size: .83rem;
  line-height: 1.7;
}

.coming-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 14.5rem;
  min-height: 3.35rem;
  margin-top: clamp(2rem, 4vh, 3.25rem);
  padding: 0 1.15rem;
  background: var(--brand-orange);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  animation: coming-up .9s .5s var(--ease) both;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease);
}

.coming-contact:hover { background: var(--white); color: var(--brand-blue); transform: translateY(-2px); }
.coming-contact i { font-size: 1rem; font-style: normal; }

.coming-footer {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(16rem, 1.3fr) auto auto auto;
  align-items: center;
  gap: 2rem;
  min-height: 6.5rem;
  padding: 1.2rem var(--page);
  background: #0d143f;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .45);
  font-size: .6rem;
  letter-spacing: .07em;
}

.coming-footer-contact {
  display: grid;
  grid-template-columns: auto auto minmax(12rem, 1fr);
  align-items: center;
  gap: .4rem 1rem;
  line-height: 1.45;
}

.coming-footer-contact strong { color: rgba(255, 255, 255, .82); }
.coming-footer-contact address { color: rgba(255, 255, 255, .5); }
.coming-footer-contact a { color: rgba(255, 255, 255, .7); }
.coming-footer-contact a:hover { color: var(--brand-orange); }
.coming-footer nav { display: flex; gap: 1.7rem; }
.coming-footer nav a,
.coming-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .66);
  cursor: pointer;
  font: inherit;
  transition: color .25s ease;
}
.coming-footer nav a:hover,
.coming-footer nav button:hover { color: var(--brand-orange); }
.coming-footer .agency-credit { justify-self: end; transition: color .25s ease; }
.coming-footer .agency-credit:hover { color: var(--brand-orange); }
.coming-footer .agency-credit strong { color: rgba(255, 255, 255, .74); font-weight: 600; }

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(242, 145, 0, .13); }
  50% { box-shadow: 0 0 0 9px rgba(242, 145, 0, 0); }
}

@keyframes coming-image {
  from { transform: scale(1.085); }
  to { transform: scale(1.025); }
}

@keyframes coming-up {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: none; }
}

/* Branded error page */
.error-main {
  display: grid;
  min-height: calc(100svh - 5rem);
  place-items: center;
  padding: 10rem var(--page) 6rem;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    var(--ink);
  background-size: 8rem 8rem;
}

.error-content {
  width: min(100%, 70rem);
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--brand-orange);
  font-size: clamp(.65rem, 1vw, .78rem);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.error-content h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 750;
  letter-spacing: -.065em;
  line-height: .95;
}

.error-content p {
  max-width: 36rem;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
}

.error-content .button { margin-top: 2.5rem; }

@media (max-width: 1180px) {
  .hero h1 { font-size: clamp(5rem, 15vw, 10.5rem); }
  .hero-copy { grid-template-columns: .8fr 1.2fr; gap: 2.5rem; }
  .hero-actions { gap: 1.2rem; }
  .hero-data { min-width: 20rem; }
  .intro { grid-template-columns: 7rem minmax(0, 1.2fr) minmax(17rem, .8fr); gap: 2.5rem; }
  .location { grid-template-columns: 1.1fr .9fr; }
  .location-content { padding-left: 3rem; }
}

@media (max-width: 960px) {
  .coming-line-v { left: 73%; }
  .coming-marker { left: calc(73% - 1.25rem); }
  .coming-footer { grid-template-columns: 1fr auto; }
  .coming-footer-contact { grid-column: 1 / -1; }
  .coming-footer .agency-credit { justify-self: start; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle, .mobile-menu { display: grid; }
  .hero { min-height: 54rem; height: 100svh; }
  .hero-grid::after { bottom: 17rem; }
  .grid-v-one { left: 50%; }
  .hero h1 { font-size: clamp(5rem, 18vw, 10rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 2rem; }
  .hero-copy { grid-template-columns: .85fr 1.15fr; }
  .hero-data { display: none; }
  .intro { grid-template-columns: 6rem minmax(0, 1fr); }
  .intro-copy { grid-column: 2; max-width: 39rem; }
  .capabilities { grid-column: 2; }
  .location { grid-template-columns: 1fr; }
  .location-visual { min-height: 38rem; }
  .location-content { min-height: 43rem; padding: 5rem var(--page); }
  .section-index-dark { margin-bottom: 0; }
  .location-content > .eyebrow { margin-top: 5rem; }
  .principles { grid-template-columns: 6rem minmax(0, 1fr); }
  .principle-list { grid-template-columns: 1fr; }
  .principle { min-height: 0; padding: 2rem 0 2.4rem; }
  .principle + .principle { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .principle h3 { max-width: none; margin-top: 2.8rem; }
  .contact { grid-template-columns: 1fr; }
  .contact-details { margin-top: 4rem; }
  .legal-layout { grid-template-columns: 1fr; gap: 3rem; }
  .legal-layout aside {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-light);
  }
  .legal-layout aside p { margin-bottom: 0; }
}

@media (max-width: 680px) {
  :root { --page: 1.25rem; }
  html { scroll-padding-top: 4.5rem; }
  .coming-page { overflow-y: auto; }
  .coming-header { min-height: 4.75rem; padding-block: .85rem; }
  .coming-logo { width: 10.4rem; }
  .coming-status { font-size: 0; }
  .coming-status::after {
    content: "In Vorbereitung";
    font-size: .52rem;
    letter-spacing: .14em;
  }
  .coming-main { align-items: flex-end; min-height: 37rem; }
  .coming-media img { object-position: 59% center; }
  .coming-shade {
    background:
      linear-gradient(90deg, rgba(17, 25, 77, .96) 0%, rgba(17, 25, 77, .82) 68%, rgba(17, 25, 77, .52) 100%),
      linear-gradient(0deg, rgba(17, 25, 77, .68), transparent 55%);
  }
  .coming-line-v { left: 83%; }
  .coming-line-h { top: 20%; }
  .coming-marker { top: calc(20% - 1rem); left: calc(83% - 1rem); width: 2rem; height: 2rem; }
  .coming-content { padding-block: 3.2rem 3rem; }
  .coming-eyebrow { margin-bottom: 1.7rem; font-size: .54rem; }
  .coming-content h1 { max-width: 9ch; font-size: clamp(3.5rem, 15vw, 4.6rem); }
  .coming-intro { grid-template-columns: 1fr; gap: .85rem; margin-top: 2rem; padding-top: 1rem; }
  .coming-intro p:first-child { font-size: .65rem; }
  .coming-intro p:last-child { max-width: 22rem; font-size: .72rem; }
  .coming-contact { min-height: 3rem; margin-top: 1.7rem; font-size: .57rem; }
  .coming-footer { grid-template-columns: 1fr; gap: 1rem; padding-block: 1.4rem; }
  .coming-footer-contact { grid-template-columns: 1fr; gap: .15rem; }
  .coming-footer nav { gap: 1rem; justify-self: start; }
  .coming-footer .agency-credit { grid-column: auto; }
  .site-header { height: 4.75rem; }
  .site-header.is-scrolled, .site-header-solid { height: 4.25rem; }
  .grid-h-one { top: 4.75rem; }
  .mobile-menu { padding-top: 7rem; }
  .mobile-menu-meta { display: grid; }
  .hero { min-height: 45rem; }
  .hero-media img { object-position: 52% center; }
  .hero-grid::after { bottom: 16rem; }
  .grid-v-one { left: 55%; }
  .grid-v-two { display: none; }
  .locator-two { display: none; }
  .locator-one { left: 60%; top: 32%; }
  .hero-content { padding-top: 7.25rem; padding-bottom: 1.8rem; }
  .hero h1 { margin-bottom: 1.4rem; font-size: clamp(4.2rem, 23vw, 6.5rem); line-height: .78; }
  .hero h1 small { padding-bottom: .35em; }
  .hero-bottom { padding-top: 1.25rem; }
  .hero-copy { display: block; }
  .hero-kicker { font-size: 1rem; }
  .hero-summary { margin-top: 1rem; font-size: .76rem; line-height: 1.55; }
  .hero-actions { display: flex; grid-column: auto; gap: 1rem; margin-top: 1.5rem; }
  .hero-actions .button { min-height: 2.9rem; padding: 0 .85rem; font-size: .58rem; gap: 1rem; }
  .hero-actions .text-link { font-size: .56rem; gap: .5rem; }
  .scroll-cue { display: none; }
  .intro, .principles { display: block; padding-top: 6.5rem; padding-bottom: 6.5rem; }
  .intro .section-index, .principles .section-index { margin-bottom: 4.5rem; }
  .intro h2, .principles h2, .location h2, .contact h2 { font-size: clamp(3.25rem, 15.5vw, 5rem); }
  .principles h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .intro-copy { margin-top: 3rem; }
  .intro-copy p:first-child { font-size: 1.12rem; }
  .capabilities { margin-top: 4.5rem; }
  .capability { grid-template-columns: 4.1rem 1fr; gap: 1rem; padding: 1.8rem 0; }
  .capability-mark { display: none; }
  .capability-number { font-size: .53rem; }
  .capability h3 { font-size: 1.55rem; }
  .location-visual { min-height: 29rem; }
  .location-frame { inset: 1rem; }
  .location-content { min-height: 40rem; padding-block: 4.5rem; }
  .location-content > .eyebrow { margin: 4.5rem 0 1.8rem; }
  .location-text { margin-top: 2rem; }
  .location-address { margin-top: 2.8rem; }
  .principles-heading .eyebrow { margin-bottom: 1.8rem; }
  .principle-list { margin-top: 4.5rem; }
  .principle { padding-block: 1.5rem 2rem; }
  .principle h3 { margin-top: 2rem; font-size: 1.7rem; }
  .contact { display: block; padding-top: 2rem; padding-bottom: 5rem; }
  .contact-top { padding-bottom: 2rem; }
  .contact-note { display: none; }
  .contact-main { padding-top: 5rem; }
  .contact h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .mail-link { margin-top: 3.5rem; font-size: .87rem; overflow-wrap: anywhere; }
  .mail-link i { margin-left: 1rem; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-top: 4.5rem; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 1.8rem; }
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .footer-bottom .agency-credit,
  .footer-top { justify-self: start; }
  .consent-banner {
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: calc(100svh - 1rem);
    overflow-y: auto;
    padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }
  .consent-banner h2 { font-size: 2rem; }
  .consent-banner-copy { font-size: .76rem; }
  .consent-banner-actions,
  .consent-modal-actions { grid-template-columns: 1fr; }
  .consent-modal-backdrop {
    align-items: end;
    padding: 0;
  }
  .consent-modal {
    width: 100%;
    max-height: calc(100svh - .75rem);
    padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }
  .consent-modal-header h2 { font-size: 2.5rem; }
  .consent-category-list { grid-template-columns: 1fr; }
  .consent-category { min-height: 0; }
  .legal-back { font-size: 0; }
  .legal-back span { font-size: 1rem; }
  .legal-main { padding-top: 7.5rem; padding-bottom: 5rem; }
  .legal-hero { padding: 4rem 0 5rem; }
  .legal-hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.6rem);
    overflow-wrap: normal;
    word-break: normal;
  }
  .legal-layout { grid-template-columns: 1fr; gap: 4rem; }
  .legal-fact-grid,
  .legal-copy-grid { grid-template-columns: 1fr; }
  .legal-fact-grid section,
  .legal-copy-grid section { min-height: 0; }
  .legal-copy-grid .legal-copy-feature,
  .legal-copy-grid .legal-copy-conclusion { grid-column: auto; }
  .legal-footer { grid-template-columns: 1fr; }
  .legal-footer .agency-credit,
  .legal-footer nav { justify-self: start; }
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-content { padding-top: 7.25rem; padding-bottom: 1.5rem; }
  .hero h1 { margin-bottom: 1.2rem; font-size: min(11vw, 7rem); }
  .hero-grid::after { bottom: 13.5rem; }
  .hero-bottom { padding-top: 1rem; }
  .hero-summary { font-size: .78rem; }
  .hero-actions { margin-top: 0; }
  .button { min-height: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-media img { transform: scale(1.04); }
  .reveal { opacity: 1; transform: none; }
}
