:root {
  color-scheme: light;
  --ink: #101513;
  --ink-soft: #1a211e;
  --paper: #f4f5f1;
  --white: #ffffff;
  --muted: #5d6661;
  --line: #cbd1cd;
  --line-dark: #39413d;
  --coral: #f05232;
  --moss: #285d4a;
  --gold: #d8a51e;
  --cyan: #47b8bd;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

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

[id] {
  scroll-margin-top: 24px;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  width: min(var(--content), calc(100% - 68px));
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 850;
}

.primary-nav ul,
.footer-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 720;
  text-decoration: none;
}

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

.nav-cta {
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 84svh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}

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

.hero-art {
  z-index: -2;
}

.hero-art img {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -1;
  background: rgba(4, 9, 7, 0.64);
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: min(var(--content), calc(100% - 68px));
  transform: translateX(-50%);
}

.hero-copy-inner {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 820;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.hero .eyebrow::before {
  width: 42px;
  height: 5px;
  content: "";
  background: var(--coral);
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: 6.8rem;
  font-weight: 820;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lede {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: 2rem;
  font-weight: 610;
  line-height: 1.18;
}

.hero-body {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
  line-height: 1.65;
}

.hero-actions,
.closing-actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 790;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover {
  background: #d94427;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(8, 13, 11, 0.34);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(8, 13, 11, 0.7);
}

.hero-disciplines {
  display: flex;
  margin: 30px 0 0;
  padding: 18px 0 0;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 690;
  list-style: none;
}

.hero-disciplines li {
  position: relative;
  padding-left: 13px;
}

.hero-disciplines li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--gold);
}

.section-shell {
  width: min(var(--content), calc(100% - 68px));
  margin: 0 auto;
}

.intro-band {
  padding: 112px 0 120px;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 6vw;
}

.intro-band h2,
.section-title,
.edge-title,
.studio-title,
.closing-title {
  margin: 0;
  font-size: 3.65rem;
  font-weight: 770;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.72;
}

.intro-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-proof div {
  min-height: 146px;
  padding: 28px 28px 28px 0;
}

.intro-proof div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.intro-proof strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.02rem;
}

.intro-proof span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

.work-section {
  padding: 116px 0 128px;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.1fr);
  gap: 6vw;
  align-items: start;
  margin-bottom: 78px;
}

.section-heading-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.study {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 6vw;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.study:last-child {
  border-bottom: 1px solid var(--line);
}

.study-reverse {
  grid-template-columns: minmax(290px, 0.65fr) minmax(0, 1.35fr);
}

.study-reverse .study-visual {
  grid-column: 2;
}

.study-reverse .study-copy {
  grid-column: 1;
  grid-row: 1;
}

.study-visual {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink-soft);
  border-radius: 4px;
}

.study-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.study-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.study-visual:hover img {
  transform: scale(1.015);
}

.study-number {
  display: block;
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 840;
}

.study-kind {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 0.75rem;
  font-weight: 830;
  text-transform: uppercase;
}

.study h3 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.study-copy > p:not(.study-kind) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

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

.study-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 690;
}

.capabilities {
  padding: 116px 0 124px;
  color: var(--white);
  background: var(--ink);
}

.capabilities .eyebrow {
  color: var(--cyan);
}

.capabilities .section-heading-copy {
  color: #b7c0bb;
}

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

.capability-row {
  display: grid;
  grid-template-columns: 70px minmax(230px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line-dark);
}

.capability-index {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 830;
}

.capability-row h3 {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 720;
  line-height: 1.25;
}

.capability-row p {
  max-width: 680px;
  margin: 0;
  color: #b7c0bb;
  font-size: 0.96rem;
  line-height: 1.65;
}

.web-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 620px;
  background: var(--paper);
}

.web-focus-copy {
  display: grid;
  padding: 76px max(34px, calc((100vw - var(--content)) / 2));
  align-content: center;
}

.web-focus-copy-inner {
  max-width: 510px;
}

.web-focus h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.web-focus p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.web-focus-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 34px 0 0;
  padding: 0;
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.web-focus-points li {
  padding: 14px 14px 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
}

.web-focus-points li:nth-child(even) {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.web-focus-visual {
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.web-focus-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.edge-section {
  padding: 116px 0 122px;
  color: var(--white);
  background: var(--moss);
}

.edge-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 8vw;
  align-items: end;
}

.edge-section .eyebrow {
  color: #f0c654;
}

.edge-copy {
  margin: 0;
  color: #d3dfd9;
  font-size: 1.04rem;
  line-height: 1.72;
}

.edge-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.edge-step {
  min-height: 164px;
  padding: 28px 20px 30px 0;
}

.edge-step + .edge-step {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.edge-step span {
  display: block;
  margin-bottom: 22px;
  color: #f0c654;
  font-size: 0.72rem;
  font-weight: 830;
}

.edge-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.edge-step p {
  margin: 0;
  color: #d3dfd9;
  font-size: 0.82rem;
  line-height: 1.55;
}

.edge-evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 46px;
}

.edge-evidence strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.edge-evidence p {
  margin: 0;
  color: #d3dfd9;
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-section {
  padding: 116px 0 126px;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 310px;
  padding: 28px 22px 34px 0;
}

.process-step + .process-step {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.process-step span {
  display: block;
  margin-bottom: 54px;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 840;
}

.process-step h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: 750;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.principles {
  padding: 110px 0 122px;
  background: #e7eae5;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 1px solid #bfc6c1;
  border-left: 1px solid #bfc6c1;
}

.principle {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid #bfc6c1;
  border-bottom: 1px solid #bfc6c1;
}

.principle-marker {
  display: block;
  width: 30px;
  height: 5px;
  margin-bottom: 44px;
  background: var(--moss);
}

.principle:nth-child(2) .principle-marker,
.principle:nth-child(5) .principle-marker {
  background: var(--coral);
}

.principle:nth-child(3) .principle-marker,
.principle:nth-child(6) .principle-marker {
  background: var(--gold);
}

.principle h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

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

.studio-section {
  padding: 120px 0 126px;
  background: var(--paper);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.55fr);
  gap: 9vw;
  align-items: start;
}

.studio-copy {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.fit-panel {
  padding: 30px 0;
  border-top: 6px solid var(--coral);
  border-bottom: 1px solid var(--line);
}

.fit-panel h3 {
  margin: 0 0 20px;
  font-size: 1.15rem;
}

.fit-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-panel li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-section {
  padding: 112px 0 126px;
  color: var(--white);
  background: var(--ink-soft);
}

.faq-section .eyebrow {
  color: var(--cyan);
}

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

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

.faq-list summary {
  position: relative;
  min-height: 78px;
  padding: 25px 56px 25px 0;
  cursor: pointer;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  content: "+";
  color: var(--gold);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
}

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

.faq-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 28px;
  color: #b7c0bb;
  font-size: 0.95rem;
  line-height: 1.68;
}

.closing-section {
  padding: 118px 0 124px;
  color: var(--white);
  background: var(--coral);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 8vw;
  align-items: end;
}

.closing-section .eyebrow {
  color: var(--white);
}

.closing-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
  line-height: 1.7;
}

.closing-section .button-primary {
  color: var(--white);
  background: var(--ink);
}

.closing-section .button-secondary {
  background: transparent;
}

.site-footer {
  padding: 52px 0 40px;
  color: #b7c0bb;
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-top {
  padding-bottom: 36px;
}

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

.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 680;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.76rem;
  line-height: 1.5;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.not-found-inner {
  width: min(560px, 100%);
}

.not-found .wordmark-mark {
  margin: 0 auto 28px;
}

.not-found h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.not-found p {
  margin: 20px 0 30px;
  color: #bac1bd;
  line-height: 1.6;
}

.not-found a {
  color: var(--white);
  text-underline-offset: 5px;
}

@media (max-width: 980px) {
  .header-inner,
  .hero-copy,
  .section-shell {
    width: min(100% - 44px, var(--content));
  }

  .primary-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    min-width: 66px;
    min-height: 44px;
    place-items: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 760;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav ul {
    position: absolute;
    top: 52px;
    right: 0;
    width: 220px;
    margin: 0;
    padding: 8px 18px;
    color: var(--white);
    background: var(--ink);
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    list-style: none;
  }

  .mobile-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav li:last-child a {
    border-bottom: 0;
  }

  .hero h1 {
    font-size: 5.3rem;
  }

  .hero-lede {
    font-size: 1.7rem;
  }

  .intro-band h2,
  .section-title,
  .edge-title,
  .studio-title,
  .closing-title {
    font-size: 3rem;
  }

  .study,
  .study-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .study-reverse .study-visual,
  .study-reverse .study-copy {
    grid-column: 1;
  }

  .study-reverse .study-visual {
    grid-row: 1;
  }

  .study-reverse .study-copy {
    grid-row: 2;
  }

  .edge-flow,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .edge-step:nth-child(4),
  .process-step:nth-child(4) {
    border-left: 0;
  }

  .process-step {
    min-height: 260px;
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    border-bottom: 0;
  }

  .web-focus {
    grid-template-columns: 1fr;
  }

  .web-focus-copy {
    padding: 82px 22px;
  }

  .web-focus-copy-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .web-focus-visual {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 78px;
  }

  .hero {
    height: 84svh;
    min-height: 680px;
    max-height: 780px;
  }

  .hero-art img {
    object-position: 64% center;
  }

  .hero-shade {
    background: rgba(4, 9, 7, 0.7);
  }

  .hero-copy {
    bottom: 7%;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 1.55rem;
  }

  .hero-body {
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .hero-disciplines {
    margin-top: 24px;
  }

  .intro-band,
  .work-section,
  .capabilities,
  .edge-section,
  .process-section,
  .principles,
  .studio-section,
  .faq-section,
  .closing-section {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .intro-grid,
  .section-heading,
  .edge-top,
  .studio-grid,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-band h2,
  .section-title,
  .edge-title,
  .studio-title,
  .closing-title {
    font-size: 2.55rem;
  }

  .intro-copy,
  .studio-copy {
    font-size: 1.02rem;
  }

  .intro-proof,
  .edge-evidence,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .intro-proof div,
  .intro-proof div + div {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-proof div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .study {
    padding: 46px 0;
  }

  .study h3 {
    font-size: 1.9rem;
  }

  .capability-list {
    margin-top: 46px;
  }

  .capability-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

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

  .web-focus h2 {
    font-size: 2.5rem;
  }

  .web-focus-visual {
    min-height: 360px;
  }

  .edge-flow,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .edge-step,
  .edge-step + .edge-step,
  .process-step,
  .process-step + .process-step {
    min-height: 0;
    padding: 24px 0 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .process-step,
  .process-step + .process-step {
    border-bottom-color: var(--line);
  }

  .edge-step:last-child,
  .process-step:last-child {
    border-bottom: 0;
  }

  .edge-step span,
  .process-step span {
    margin-bottom: 18px;
  }

  .edge-evidence {
    gap: 0;
  }

  .edge-evidence div {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .principle-grid {
    border-left: 0;
  }

  .principle {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }

  .principle-marker {
    margin-bottom: 28px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 6px 20px;
  }
}

@media (max-width: 430px) {
  .header-inner,
  .hero-copy,
  .section-shell {
    width: calc(100% - 36px);
  }

  .wordmark {
    gap: 9px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero-lede {
    font-size: 1.38rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-disciplines {
    gap: 8px 14px;
  }

  .intro-band h2,
  .section-title,
  .edge-title,
  .studio-title,
  .closing-title,
  .web-focus h2 {
    font-size: 2.18rem;
  }

  .study-visual {
    aspect-ratio: 4 / 3;
  }

  .web-focus-points {
    grid-template-columns: 1fr;
  }

  .web-focus-points li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .web-focus-visual {
    min-height: 300px;
  }
}

@media (max-height: 620px) and (min-width: 721px) {
  .hero {
    min-height: 560px;
  }

  .header-inner {
    min-height: 70px;
  }

  .hero-copy {
    bottom: 6%;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  .hero-lede {
    font-size: 1.45rem;
  }

  .hero-body,
  .hero-disciplines {
    display: none;
  }
}

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

  .study-visual img {
    transition: none;
  }
}
