@font-face {
  font-family: Source Sans;
  src: url("assets/SourceSans3-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Source Sans;
  src: url("assets/SourceSans3-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
:root {
  --ink: #080f16;
  --navy: #0a2538;
  --paper: #eaf0f4;
  --steel: #b5c9d8;
  --muted: #556572;
  --line: rgba(10, 37, 56, 0.2);
  --frame: 1160px;
  --gutter: 64px;
  --section-space: 72px;
  --column-gap: 72px;
  color-scheme: light;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family:
    Source Sans,
    Arial,
    sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body,
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: var(--steel);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
.frame {
  width: min(calc(100% - var(--gutter) * 2), var(--frame));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid rgba(181, 201, 216, 0.21);
}
.brand {
  display: block;
  width: 200px;
  flex-shrink: 0;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
}
.header nav a {
  position: relative;
  padding-block: 12px;
}
.header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: var(--steel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.header nav a:hover::after,
.header nav a[aria-current]::after {
  transform: scaleX(1);
}
.header nav a span {
  padding-left: 14px;
  color: var(--steel);
}
.menu-toggle {
  display: none;
}
.opening {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding-block: 60px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(700px, 66%);
}
h1 {
  max-width: 700px;
  font-size: clamp(48px, 4.6vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero h1 span {
  display: inline;
  color: var(--steel);
}
.hero-intro {
  max-width: 505px;
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.6;
  color: #bbc8d2;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}
.hero-link {
  margin-top: 26px;
}
.arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border: 1px solid #546777;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.text-link:hover .arrow {
  background: var(--navy);
  transform: translate(2px, -2px);
}
.hero-art {
  position: absolute;
  right: -12px;
  top: 40px;
  width: 380px;
  z-index: 1;
  opacity: 0.76;
  pointer-events: none;
}
.hero-art img {
  width: 100%;
  height: auto;
}
.light-section {
  background: var(--paper);
  color: var(--navy);
}
h2 {
  font-size: clamp(32px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h3 {
  font-weight: 400;
}
.eyebrow {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.firm-section {
  padding-block: var(--section-space);
}
.work-intro {
  max-width: 640px;
}
.work-intro p {
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.6;
  text-wrap: pretty;
}
.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--column-gap);
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.practice h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.practice p {
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

.mission-section {
  padding-block: var(--section-space);
}
.mission-grid {
  max-width: 760px;
  text-align: center;
}
.mission-grid h1 {
  margin-inline: auto;
  font-size: clamp(44px, 3.5vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.mission-copy {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}
.mission-copy .mission-statement {
  font-size: clamp(26px, 2.1vw, 29px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--navy);
  text-wrap: balance;
}
.mission-copy p + p {
  margin-top: 22px;
}
.founder-section {
  padding-bottom: var(--section-space);
}
.founder-grid {
  max-width: 760px;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: var(--section-space);
}
.founder-avatar {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.founder-grid .section-heading .eyebrow {
  margin-bottom: 8px;
}
.founder-grid h2 {
  font-size: 36px;
}
.founder-copy {
  max-width: 620px;
  margin: 24px auto 0;
}
.founder-copy > p {
  margin-inline: auto;
  font-size: 20px;
  line-height: 1.65;
  text-wrap: balance;
}
.founder-copy > p + p {
  margin-top: 20px;
}
.founder-copy .text-link {
  margin-top: 24px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer {
  background: var(--ink);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 104px;
  padding-block: 25px;
}
.footer-brand {
  width: 162px;
}
.footer-inner > p {
  color: #91a3b1;
  font-size: 12px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--steel);
  font-size: 13px;
}
.footer-links a {
  padding-block: 8px;
}
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 1199px) {
  :root {
    --gutter: 40px;
    --column-gap: 48px;
  }
  .hero-art {
    width: 325px;
    top: 68px;
    right: -15px;
    opacity: 0.65;
  }
  .hero-intro {
    max-width: 450px;
  }
}
@media (max-width: 900px) {
  :root {
    --section-space: 56px;
    --column-gap: 36px;
  }
  .header nav {
    gap: 28px;
  }
  .hero {
    min-height: 0;
    padding-block: 56px;
  }
  .hero-copy {
    max-width: 650px;
  }
  h1 {
    font-size: 52px;
  }
  .hero-art {
    display: none;
  }
  .mission-grid h1 {
    font-size: 43px;
  }
  .footer-inner {
    gap: 24px;
  }
  .footer-brand {
    width: 150px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 24px;
    --section-space: 40px;
    --column-gap: 24px;
  }
  .header {
    min-height: 76px;
    flex-wrap: wrap;
    column-gap: 16px;
  }
  .brand {
    width: 168px;
  }
  .header nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    padding-bottom: 18px;
  }
  .header nav a span {
    padding-left: 8px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: var(--paper);
    padding: 16px 0 16px 10px;
    font-size: 14px;
  }
  .menu-icon {
    position: relative;
    width: 19px;
    height: 10px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }
  .menu-toggle[aria-expanded="true"] .menu-icon {
    border-bottom: 0;
    border-top: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-icon::before,
  .menu-toggle[aria-expanded="true"] .menu-icon::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 19px;
    height: 1px;
    background: currentColor;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg);
  }
  .header nav[data-collapsed="true"] {
    display: none;
  }
  .hero {
    padding-block: 40px;
  }
  h1 {
    font-size: clamp(37px, 9.2vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }
  .hero-intro {
    max-width: 380px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.6;
  }
  .hero-link {
    margin-top: 24px;
  }
  h2 {
    font-size: 32px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .work-intro p {
    font-size: 19px;
    line-height: 1.65;
  }
  .practice-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
    padding-top: 24px;
  }
  .practice + .practice {
    margin-top: 24px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .practice h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .practice p {
    max-width: none;
    font-size: 16px;
  }

  .mission-grid h1 {
    font-size: 38px;
  }
  .mission-copy {
    font-size: 17px;
  }
  .mission-copy .mission-statement {
    font-size: 24px;
  }
  .mission-copy p + p {
    margin-top: 18px;
  }
  .founder-avatar {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
  }
  .founder-grid h2 {
    font-size: 32px;
  }
  .founder-copy > p {
    font-size: 18px;
    line-height: 1.7;
  }
  .founder-copy > p + p {
    margin-top: 18px;
  }
  .footer-inner {
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding-block: 25px;
    gap: 19px 20px;
  }
  .footer-brand {
    width: 148px;
  }
  .footer-links {
    grid-column: 2;
    grid-row: 1;
    gap: 12px;
    font-size: 12px;
  }
  .footer-inner > p {
    grid-column: 1 / -1;
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
