:root {
  --navy: #06253a;
  --navy-2: #0b3346;
  --teal: #087b75;
  --mint: #d9f7ec;
  --gold: #f7c84b;
  --peach: #ff856e;
  --cream: #f8f5e9;
  --white: #fffdf7;
  --ink: #071d2c;
  --line: rgba(7, 29, 44, .25);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

::selection {
  color: var(--navy);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-200%);
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 50%;
  width: min(calc(100% - 2rem), 1240px);
  height: 74px;
  padding: 0 .55rem 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 32px rgba(6, 37, 58, .13);
  transform: translateX(-50%) translateY(-130%);
  transition: transform .65s .65s var(--ease), height .3s var(--ease), box-shadow .3s;
  backdrop-filter: blur(10px);
}

body.is-ready .site-header {
  transform: translateX(-50%) translateY(0);
}

body.is-scrolled .site-header {
  height: 62px;
  box-shadow: 0 8px 30px rgba(6, 37, 58, .2);
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 225px;
  height: 100%;
}

.brand img {
  width: clamp(190px, 15vw, 220px);
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
}

.site-nav a {
  color: var(--navy);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.site-nav .nav-cta {
  padding: 1rem 1.35rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  transition: color .25s var(--ease), background .25s var(--ease);
}

.site-nav .nav-cta:hover {
  color: var(--navy);
  background: var(--gold);
}

.nav-cta span {
  display: inline-block;
  margin-left: .4rem;
  transition: transform .2s;
}

.nav-cta:hover span {
  transform: translate(.2rem, -.2rem);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  height: max(100vh, 900px);
  padding: 8.5rem var(--pad) 3rem;
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
  border-bottom: 1px solid var(--navy);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 72, 72, .94) 0%, rgba(8, 123, 117, .83) 47%, rgba(8, 123, 117, .52) 75%, rgba(6, 37, 58, .28) 100%),
    linear-gradient(0deg, rgba(6, 37, 58, .26), transparent 48%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 6.25vw 6.25vw;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(1rem);
  transition: .5s 1s var(--ease);
}

body.is-ready .hero-kicker {
  opacity: 1;
  transform: translateY(0);
}

.kicker-line {
  width: clamp(2rem, 5vw, 5rem);
  height: 1px;
  background: currentColor;
}

.kicker-dot {
  flex: 0 0 auto;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--gold);
}

.kicker-origin {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  white-space: nowrap;
}

.hero-title {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: clamp(3rem, 8vh, 6rem) 0 0;
  width: min(82%, 1120px);
  font-size: clamp(4rem, 8.1vw, 8.75rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.062em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.hero-line b {
  display: block;
  font: inherit;
  transform: translateY(112%);
  transition: transform .85s var(--ease);
}

body.is-ready .hero-line b {
  transform: translateY(0);
}

.hero-line:nth-child(1) b { transition-delay: .76s; }
.hero-line:nth-child(2) b { transition-delay: .86s; }
.hero-line:nth-child(3) b { transition-delay: .96s; }
.hero-line:nth-child(4) b { transition-delay: 1.06s; }

.line-one {
  color: var(--gold);
}

.line-two {
  margin-left: 4vw;
  color: var(--mint);
}

.line-three {
  color: var(--peach);
  font-size: .66em;
  line-height: 1.03;
}

.line-four {
  margin-left: 3vw;
  color: var(--white);
}

.hero-copy {
  position: absolute;
  z-index: 5;
  right: var(--pad);
  bottom: 3.5rem;
  width: min(29rem, 34vw);
  padding: 1.25rem;
  color: var(--navy);
  background: var(--mint);
  border: 2px solid var(--navy);
  box-shadow: 10px 10px 0 var(--navy);
  opacity: 0;
  transform: translateY(2rem);
  transition: .65s 1.25s var(--ease);
}

body.is-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy p {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
}

.hero-copy a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: .25rem;
  border-bottom: 2px solid currentColor;
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-copy a .down-arrow,
.text-link span {
  transition: transform .2s;
}

.hero-copy a {
  width: 100%;
  padding: .8rem 0 0;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--navy);
  border-bottom: 0;
}

.hero-copy .down-arrow {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mint);
  background: var(--navy);
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.hero-copy .down-arrow svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-copy a:hover .down-arrow {
  color: var(--navy);
  background: var(--gold);
  transform: translateY(.3rem);
}

.text-link:hover span {
  transform: translate(.2rem, -.2rem);
}

.hero-city {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--teal);
}

.hero-city img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.82) contrast(1.04);
}

.orbit-stamp {
  position: absolute;
  z-index: 4;
  right: 35%;
  bottom: 2.5rem;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid var(--navy);
  opacity: 0;
  transform: scale(.7) rotate(-25deg);
  transition: .75s 1.45s var(--ease);
}

body.is-ready .orbit-stamp {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.orbit-stamp strong {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.08em;
}

.orbit-letters {
  position: absolute;
  inset: 0;
  animation: orbit 16s linear infinite;
}

.orbit-letters span {
  position: absolute;
  top: 4px;
  left: calc(50% - .35em);
  height: calc(50% - 8px);
  font-size: .58rem;
  font-weight: 900;
  transform: rotate(calc(var(--i) * 13.333deg));
  transform-origin: 50% 100%;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  border-bottom: 1px solid var(--navy);
}

.section-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  color: var(--navy);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-label p {
  margin: 0;
}

.section-label-dark {
  color: var(--navy);
}

.section-label-light {
  color: var(--mint);
}

.company {
  overflow: hidden;
  background: #fff;
}

.company-story {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .55fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.company-statement p {
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.06em;
}

.company-statement span,
.company-statement em {
  display: block;
}

.company-statement span {
  text-transform: uppercase;
}

.company-statement b {
  color: var(--teal);
}

.company-statement em {
  margin-top: .16em;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9em;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.company-detail {
  max-width: 35rem;
  padding-top: 2rem;
  border-top: 2px solid var(--navy);
}

.company-detail p {
  max-width: 36rem;
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.company-detail .lead {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.carmis {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.carmis > * {
  position: relative;
  z-index: 1;
}

.carmis-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(320px, 30vw, 470px);
}

.carmis-heading-copy {
  position: relative;
  z-index: 2;
  max-width: min(72%, 1000px);
}

.carmis-heading-copy > p {
  margin: 0 0 1.25rem;
  color: var(--teal);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.carmis-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.carmis-heading h2 span {
  display: table;
}

.carmis-heading h2 span:first-child {
  padding: .08em .14em .1em;
  background: var(--gold);
  white-space: nowrap;
}

.carmis-heading h2 span:last-child {
  margin-top: .08em;
  max-width: 980px;
  color: var(--navy);
  line-height: .92;
}

.carmis-word-wall {
  position: absolute;
  z-index: 0;
  inset: 0 -10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 3rem) 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.carmis-word-wall > div {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
  width: max-content;
  white-space: nowrap;
}

.carmis-word-wall > div:nth-child(even) {
  transform: translateX(-12%);
}

.carmis-word-wall span {
  color: rgba(217, 247, 236, .38);
  font-size: clamp(5.2rem, 9vw, 10.5rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.07em;
  -webkit-text-stroke: 1px rgba(8, 123, 117, .045);
}

.product-composition {
  position: relative;
  margin-top: clamp(5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .62fr);
  gap: clamp(3.5rem, 6vw, 7rem);
  align-items: start;
}

.product-connector {
  position: absolute;
  z-index: 4;
  top: 2.25rem;
  left: 63%;
  width: clamp(125px, 13vw, 200px);
  height: auto;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.product-stage {
  position: relative;
  width: 100%;
  margin: 0;
}

.product-window {
  overflow: hidden;
  border: 2px solid var(--navy);
  background: var(--white);
  box-shadow: 18px 18px 0 var(--navy);
  transform: rotate(-1.5deg);
  transition: transform .45s var(--ease);
}

.product-window:hover {
  transform: rotate(0) scale(1.01);
}

.window-bar {
  height: 42px;
  padding: 0 .9rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  border-bottom: 2px solid var(--navy);
  background: var(--mint);
}

.window-bar i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--peach);
}

.window-bar i:nth-child(2) { background: var(--gold); }
.window-bar i:nth-child(3) { background: var(--teal); }

.window-bar span {
  margin-left: auto;
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-window > img {
  width: 100%;
}

.carmis-bottom {
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 2px solid var(--navy);
  background: var(--mint);
  box-shadow: 12px 12px 0 var(--navy);
}

.carmis-bottom p {
  margin: 0 0 2rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.035em;
}

.carmis-bottom a {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--navy);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.carmis-bottom .out-arrow {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mint);
  background: var(--navy);
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.carmis-bottom .out-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carmis-bottom a:hover .out-arrow {
  color: var(--navy);
  background: var(--gold);
  transform: translate(.2rem, -.2rem);
}

.impact {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.impact::before {
  position: absolute;
  top: 0;
  left: 61%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(217,247,236,.22);
}

.impact-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: end;
}

.impact-intro h2 {
  margin: 0;
  color: var(--mint);
  font-size: clamp(3.6rem, 7.2vw, 7.5rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.impact-intro p {
  max-width: 28rem;
  margin: 0 0 .75rem;
  color: rgba(255,253,247,.8);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.35;
}

.stats {
  margin-top: clamp(6rem, 12vw, 11rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(217,247,236,.35);
  border-bottom: 1px solid rgba(217,247,236,.35);
}

.stat {
  min-height: 310px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(217,247,236,.35);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--gold);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}

.stat:nth-child(2) strong {
  color: var(--peach);
}

.stat:nth-child(3) strong {
  color: var(--mint);
}

.stat p {
  max-width: 15rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.story {
  background: var(--cream);
}

.story-kicker {
  margin: 0 0 1.25rem;
  color: var(--teal);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.story-title {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 4rem;
  align-items: end;
}

.story-title h2 {
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 6.75rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.story-title em {
  color: var(--teal);
  font-style: normal;
}

.story-title p {
  max-width: 23rem;
  margin: 0 0 .5rem;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
}

.story-context {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-down-arrow {
  width: 48px;
  height: 132px;
  margin-top: 1.5rem;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline {
  margin: clamp(3rem, 5vw, 5rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--navy);
}

.timeline li {
  display: grid;
  grid-template-columns: minmax(140px, 20%) 1fr;
  gap: 3rem;
  padding: clamp(2.5rem, 4vw, 3.75rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s;
}

.timeline li:hover {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  background: var(--mint);
}

.timeline time {
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
}

.timeline h3 {
  margin: 0 0 .35rem;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.timeline p {
  max-width: 39rem;
  margin: 0;
}

.people {
  overflow: hidden;
  background: #e7ece8;
}

.people-kicker {
  margin: 0 0 1.25rem;
  color: var(--teal);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.people-heading {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 4rem;
  align-items: end;
}

.people-heading h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7.2vw, 7.5rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.people-heading p {
  max-width: 27rem;
  margin: 0;
  padding-bottom: .5rem;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
}

.founder-grid {
  margin-top: clamp(5rem, 10vw, 9rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
}

.founder {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.founder-secondary {
  margin-top: 6rem;
}

.founder-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 2px var(--navy), 10px 10px 0 var(--gold);
  text-decoration: none;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.founder-secondary .founder-photo {
  box-shadow: 0 0 0 2px var(--navy), 10px 10px 0 var(--mint);
}

.founder:hover .founder-photo img {
  transform: scale(1.035);
}

.photo-linkedin {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(transparent 35%, rgba(6,37,58,.88));
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.photo-linkedin b {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 4px;
  color: var(--navy);
  background: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: none;
}

.founder-photo:hover .photo-linkedin,
.founder-photo:focus-visible .photo-linkedin {
  opacity: 1;
}

.founder-copy {
  padding: 0;
}

.founder-copy .eyebrow {
  margin: 0 0 1.25rem;
  color: var(--teal);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.linkedin-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.linkedin-link span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 4px;
  color: var(--white);
  background: var(--navy);
  font-size: 1.05rem;
  letter-spacing: -.05em;
  text-transform: none;
  transition: color .25s var(--ease), background .25s var(--ease);
}

.linkedin-link:hover span {
  color: var(--navy);
  background: var(--gold);
}

.team-note {
  margin-top: clamp(5rem, 10vw, 10rem);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-top: 2px solid var(--navy);
}

.team-note p {
  max-width: 52rem;
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.team-note strong {
  color: var(--navy);
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: .7;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

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

.community-heading {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 4rem;
  align-items: end;
}

.community-heading h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7.2vw, 7.5rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.community-heading p {
  max-width: 25rem;
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
}

.community-field {
  position: relative;
  margin-top: clamp(5rem, 10vw, 9rem);
  min-height: 620px;
  padding: clamp(1.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: minmax(180px, .6fr) 1.5fr minmax(180px, .6fr);
  gap: 2rem;
  align-items: center;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.field-intro,
.field-note {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 18rem;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 700;
}

.field-note {
  align-self: end;
  color: var(--mint);
}

.service-orbit {
  position: relative;
  width: min(46vw, 540px);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(217,247,236,.45);
  border-radius: 50%;
}

.service-orbit::before,
.service-orbit::after {
  position: absolute;
  inset: 16%;
  content: "";
  border: 1px solid rgba(217,247,236,.28);
  border-radius: 50%;
}

.service-orbit::after {
  inset: 34%;
  border-color: var(--gold);
}

.service-orbit strong {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  color: var(--gold);
  font-size: clamp(1.3rem, 2.5vw, 2.5rem);
  letter-spacing: -.05em;
  transform: translate(-50%, -50%);
}

.service {
  position: absolute;
  z-index: 2;
  padding: .55rem .75rem;
  border: 1px solid var(--mint);
  border-radius: 999px;
  color: var(--navy);
  background: var(--mint);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-a { top: -1rem; left: 39%; }
.service-b { top: 15%; right: -1.5rem; background: var(--peach); }
.service-c { top: 46%; right: -2.8rem; }
.service-d { right: 8%; bottom: 12%; background: var(--gold); }
.service-e { bottom: -1rem; left: 42%; background: var(--peach); }
.service-f { bottom: 15%; left: -1.5rem; background: var(--gold); }
.service-g { top: 45%; left: -1.3rem; }
.service-h { top: 13%; left: -1.8rem; background: var(--peach); }

.next-chapter {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, .8fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: end;
  color: var(--navy);
  background: var(--white);
}

.next-copy {
  position: relative;
  z-index: 1;
}

.next-chapter h2 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(3.3rem, 6.15vw, 7.1rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.next-chapter h2 span,
.next-chapter h2 em {
  display: block;
}

.next-chapter h2 em {
  margin-top: .13em;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .84em;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.055em;
  text-transform: none;
}

.next-invitation {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 2px solid var(--navy);
}

.next-invitation h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.next-invitation p {
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.next-invitation a {
  min-width: 180px;
  padding: .95rem 1.15rem;
  display: inline-flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background-color .2s ease;
}

.next-invitation a:hover,
.next-invitation a:focus-visible {
  color: var(--navy);
  background: var(--gold);
}

.site-footer {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6rem) var(--pad) 0;
  color: var(--white);
  background:
    linear-gradient(rgba(217, 247, 236, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 247, 236, .075) 1px, transparent 1px),
    radial-gradient(circle at 88% 6%, rgba(8, 123, 117, .78), transparent 34%),
    linear-gradient(135deg, #06253a 0%, #07394b 52%, #087b75 130%);
  background-size: 72px 72px, 72px 72px, auto, auto;
  overflow: hidden;
}

.site-footer::after {
  position: absolute;
  z-index: 0;
  right: -12rem;
  top: -14rem;
  width: clamp(25rem, 42vw, 46rem);
  aspect-ratio: 1;
  content: "";
  border: clamp(34px, 5vw, 74px) solid rgba(247, 200, 75, .18);
  border-radius: 50%;
  pointer-events: none;
}

.footer-intro,
.footer-grid,
.land-acknowledgement,
.footer-back-to-top,
.footer-signature {
  position: relative;
  z-index: 1;
}

.footer-intro {
  padding-bottom: clamp(2.75rem, 5vw, 4.75rem);
  border-bottom: 1px solid rgba(217, 247, 236, .35);
}

.footer-intro p {
  max-width: 1050px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .25em .55em;
  color: var(--mint);
  font-size: clamp(1.6rem, 3.15vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.footer-intro p span {
  color: rgba(255, 255, 255, .72);
}

.footer-origin {
  display: inline-flex;
  gap: .55em;
  white-space: nowrap;
}

.footer-intro p strong {
  color: var(--gold);
}

.footer-grid {
  padding: clamp(3rem, 5vw, 5rem) 0;
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(310px, 1.05fr) minmax(320px, 1.25fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
  border-bottom: 1px solid rgba(217, 247, 236, .35);
}

.footer-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
}

.footer-grid address {
  color: rgba(255, 255, 255, .8);
  font-style: normal;
  font-weight: 650;
}

.footer-map-link {
  display: inline-block;
  text-decoration: none;
}

.footer-map-link address {
  transition: color .2s ease;
}

.footer-map-link:hover address,
.footer-map-link:focus-visible address {
  color: var(--gold);
}

.footer-office + .footer-office {
  margin-top: 2.5rem;
}

.footer-navigation {
  padding-top: .15rem;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-nav-columns > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid nav a {
  margin-bottom: .45rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 650;
  text-decoration: none;
}

.footer-grid nav a:hover {
  text-decoration: underline;
  text-underline-offset: .22em;
}

.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(217, 247, 236, .3);
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.35;
}

.footer-linkedin {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -.05em;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.footer-linkedin:hover,
.footer-linkedin:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.footer-contact {
  color: var(--mint);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact:hover {
  text-decoration: underline;
  text-underline-offset: .22em;
}

.land-acknowledgement {
  padding-left: clamp(1.5rem, 2.5vw, 2.75rem);
  border-left: 1px solid rgba(217, 247, 236, .35);
}

.land-acknowledgement p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: clamp(.72rem, .78vw, .82rem);
  font-weight: 550;
  line-height: 1.55;
}

.footer-back-to-top {
  width: max-content;
  margin: 1.5rem 0 1rem auto;
  display: block;
  color: var(--mint);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-back-to-top:hover {
  text-decoration: underline;
  text-underline-offset: .22em;
}

.footer-signature {
  margin: 0 -.05em -.115em;
  display: flex;
  justify-content: center;
  gap: .065em;
  color: var(--white);
  font-size: clamp(4.4rem, 12.4vw, 13rem);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.09em;
  white-space: nowrap;
}

.footer-signature .signature-outline {
  color: transparent;
  -webkit-text-stroke: clamp(2px, .22vw, 4px) var(--mint);
}

.legal-body {
  background: var(--white);
}

.legal-body .site-header {
  transform: translateX(-50%) translateY(0);
}

.legal-main {
  padding-top: 0;
}

.legal-hero {
  position: relative;
  min-height: 560px;
  padding: clamp(9rem, 15vw, 13rem) var(--pad) clamp(4.5rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(rgba(217, 247, 236, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 247, 236, .08) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), var(--teal));
  background-size: 72px 72px, 72px 72px, auto;
  overflow: hidden;
}

.legal-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: clamp(22rem, 38vw, 38rem);
  aspect-ratio: 1;
  content: "";
  border: clamp(30px, 5vw, 70px) solid rgba(247, 200, 75, .22);
  border-radius: 50%;
}

.legal-title,
.legal-summary {
  position: relative;
  z-index: 1;
}

.legal-kicker {
  margin: 0 0 1.35rem;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-title h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.legal-title h1 em {
  display: block;
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .83em;
  font-style: italic;
  text-transform: none;
}

.legal-summary {
  padding-top: 1.5rem;
  border-top: 2px solid var(--gold);
}

.legal-summary p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 650;
}

.legal-content {
  width: min(100% - (var(--pad) * 2), 980px);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

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

.legal-content h2 {
  margin: 0 0 1.1rem;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.legal-content p,
.legal-content li {
  color: #263d4a;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 1rem;
}

.legal-content ul {
  margin: 1.25rem 0 0;
  padding-left: 1.35rem;
}

.legal-content li + li {
  margin-top: .75rem;
}

.legal-content a {
  color: var(--teal);
  font-weight: 800;
  text-underline-offset: .2em;
}

.legal-contact-card {
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: clamp(1.75rem, 3vw, 3rem);
  color: var(--navy);
  background: var(--mint);
  border: 2px solid var(--navy);
  box-shadow: 10px 10px 0 var(--gold);
}

.legal-contact-card h2 {
  margin-bottom: .75rem;
}

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

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    height: 64px;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: -1rem -1rem auto;
    height: 100vh;
    padding: 8rem 2rem 3rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.3rem;
    color: var(--mint);
    background: var(--navy);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: .35s var(--ease);
  }

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

  .site-nav a {
    color: var(--mint);
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1;
    letter-spacing: -.05em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    color: var(--navy);
    background: var(--gold);
    font-size: 1rem;
    letter-spacing: .03em;
    text-transform: uppercase;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }

  .menu-toggle i {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .25s;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 780px;
    height: 100svh;
    padding-top: 7.5rem;
  }

  .hero-title {
    margin-top: 6rem;
    width: 88%;
    font-size: clamp(3.9rem, 10vw, 6.6rem);
  }

  .hero-city {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-copy {
    right: var(--pad);
    bottom: 2rem;
    width: min(420px, 55vw);
  }

  .company-detail,
  .impact-intro,
  .story-title,
  .people-heading,
  .community-heading {
    grid-template-columns: 1fr;
  }

  .company-story {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .company-detail {
    width: min(100%, 580px);
    margin-left: auto;
  }

  .impact::before {
    display: none;
  }

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

  .stat {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(217,247,236,.35);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-secondary {
    margin-top: 0;
  }

  .founder {
    grid-template-columns: 150px 1fr;
    align-items: start;
  }

  .team-note {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .service-orbit {
    width: min(55vw, 470px);
    grid-row: 1 / span 2;
    grid-column: 2;
  }

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

  .legal-hero {
    grid-template-columns: 1fr;
  }

  .land-acknowledgement {
    grid-column: 1 / -1;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(217, 247, 236, .35);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 1.15rem;
  }

  .site-header {
    top: .65rem;
    width: calc(100% - 1.3rem);
    padding-left: 1rem;
  }

  .brand img {
    width: 160px;
    height: 32px;
  }

  .brand {
    min-width: 160px;
  }

  .hero {
    min-height: 780px;
    height: 100svh;
    padding-top: 6.5rem;
  }

  .hero::before {
    background-size: 25vw 25vw;
  }

  .hero-kicker {
    gap: .45rem .6rem;
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .kicker-origin {
    gap: .6rem;
  }

  .hero-title {
    margin-top: 3rem;
    width: 100%;
    font-size: clamp(3.15rem, 14.5vw, 4.9rem);
    line-height: .84;
  }

  .line-two {
    margin-left: 0;
  }

  .line-three {
    margin: .12em 0;
    font-size: .56em;
  }

  .line-four {
    margin-left: 0;
    font-size: .83em;
  }

  .hero-city {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-city img {
    object-position: 52% center;
  }

  .hero-copy {
    right: 1.15rem;
    bottom: 1.35rem;
    width: calc(100% - 2.3rem);
    padding: 1rem;
    box-shadow: 6px 6px 0 var(--navy);
  }

  .hero-copy p {
    margin-bottom: .7rem;
    font-size: .92rem;
  }

  .hero-copy a {
    font-size: .7rem;
  }

  .orbit-stamp {
    display: none;
  }

  .signal-strip {
    height: 58px;
  }

  .company-story {
    gap: 3rem;
  }

  .company-statement p {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .company-statement em {
    white-space: normal;
  }

  .carmis-heading h2 {
    font-size: clamp(2.05rem, 9vw, 3.8rem);
  }

  .carmis-heading {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .carmis-heading-copy {
    max-width: 100%;
  }

  .carmis-word-wall {
    display: none;
  }

  .product-composition {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-stage {
    width: 100%;
    margin: 0;
  }

  .product-window {
    box-shadow: 9px 9px 0 var(--navy);
  }

  .product-connector {
    position: relative;
    top: auto;
    left: auto;
    width: 110px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .carmis-bottom {
    box-shadow: 8px 8px 0 var(--navy);
  }

  .impact-intro,
  .story-title,
  .people-heading,
  .community-heading {
    gap: 2.5rem;
  }

  .stat {
    min-height: 190px;
    padding: 2rem 1rem;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline li:hover {
    padding-right: .75rem;
    padding-left: .75rem;
  }

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

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

  .founder-photo {
    width: min(230px, 68vw);
    justify-self: start;
    border-width: 5px;
    box-shadow: 0 0 0 2px var(--navy), 6px 6px 0 var(--gold);
  }

  .founder-secondary {
    margin-top: 0;
  }

  .team-note strong {
    font-size: 4rem;
  }

  .community-field {
    min-height: 670px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
  }

  .service-orbit {
    width: min(78vw, 360px);
    grid-row: auto;
    grid-column: auto;
  }

  .service {
    font-size: .55rem;
  }

  .field-note {
    justify-self: end;
    text-align: right;
  }

  .next-chapter h2 {
    font-size: clamp(3.25rem, 14vw, 5.2rem);
  }

  .next-chapter {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.15rem;
    padding: 2.5rem 0;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-intro {
    padding-bottom: 2.5rem;
  }

  .footer-intro p {
    gap: .2em .45em;
    font-size: clamp(1.35rem, 7.4vw, 2rem);
    line-height: 1.02;
  }

  .footer-label {
    font-size: 1.2rem;
  }

  .footer-office + .footer-office {
    margin-top: 2rem;
  }

  .footer-meta {
    margin-top: 2rem;
  }

  .footer-nav-columns {
    gap: 1.25rem;
  }

  .land-acknowledgement {
    padding-top: 1.5rem;
  }

  .footer-back-to-top {
    margin-top: 1.25rem;
  }

  .footer-signature {
    margin-bottom: -.08em;
    gap: .08em;
    font-size: clamp(2.15rem, 9.7vw, 3.2rem);
    letter-spacing: -.075em;
  }

  .legal-hero {
    min-height: 520px;
    padding-top: 8rem;
  }

  .legal-title h1 {
    font-size: clamp(3.5rem, 18vw, 5.7rem);
  }
}

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

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

  .site-header,
  .hero-kicker,
  .hero-line b,
  .hero-copy,
  .hero-city,
  .orbit-stamp,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
