:root {
  --ink: #111111;
  --paper: #ffffff;
  --soft: #f3f3f1;
  --line: #d8d8d3;
  --yellow: #f2cf45;
  --red: #c83d2a;
  --teal: #087f83;
  --max-width: 1240px;
  --header-height: 80px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-header {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-bottom-color: var(--line);
}

.header-inner,
.section-shell,
.footer-inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.wordmark-symbol {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
}

.detail-header .wordmark-symbol {
  color: var(--paper);
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  height: auto;
  min-height: min(760px, calc(100svh - 52px));
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: inherit;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 34px;
  flex-direction: column;
  justify-content: center;
}

.hero-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -5%;
  width: min(64vw, 820px);
  aspect-ratio: 1;
  transform: translateY(-47%);
}

.hero-mark img,
.detail-hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1);
  mix-blend-mode: screen;
}

.hero-accent {
  position: absolute;
  z-index: 4;
  bottom: 0;
  height: 10px;
}

.hero-accent-yellow {
  left: 0;
  width: 31%;
  background: var(--yellow);
}

.hero-accent-red {
  left: 31%;
  width: 12%;
  background: var(--red);
}

.eyebrow,
.section-index,
.item-number,
.hero-facts dt,
.status-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--red);
  content: "";
}

.eyebrow.light::before {
  background: var(--yellow);
}

.hero h1 {
  max-width: 680px;
  margin: 22px 0 20px;
  font-size: 92px;
  font-weight: 750;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 500px;
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

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

.button-light:hover {
  color: var(--paper);
  background: transparent;
}

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

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

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span,
.contact-email span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.contact-email:hover span {
  transform: translateX(5px);
}

.light-link {
  color: var(--paper);
}

.hero-facts {
  display: grid;
  width: min(680px, 100%);
  margin: auto 0 0;
  padding-top: 22px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-facts div {
  padding-right: 18px;
}

.hero-facts dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-facts dd {
  margin: 0;
  font-size: 14px;
}

.intro-section,
.practice-section,
.identity-section,
.detail-content {
  background: var(--paper);
}

.intro-section {
  padding: 130px 0;
}

.intro-grid,
.section-heading,
.apps-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 3fr);
  gap: 56px;
}

.section-index {
  color: #686864;
}

.intro-content h2,
.section-heading h2,
.apps-grid h2,
.identity-copy h2,
.contact-grid h2 {
  margin: 18px 0 24px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-content h2 {
  max-width: 850px;
}

.lead {
  max-width: 820px;
  margin: 0;
  color: #333330;
  font-size: 24px;
  line-height: 1.45;
}

.practice-section {
  padding: 0 0 130px;
}

.section-heading {
  padding-bottom: 46px;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2 {
  margin: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.practice-item {
  min-height: 320px;
  padding: 34px 34px 24px 0;
  border-bottom: 1px solid var(--line);
}

.practice-item + .practice-item {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.practice-item h3 {
  margin: 70px 0 14px;
  font-size: 26px;
  line-height: 1.15;
}

.practice-item p:last-child {
  max-width: 330px;
  margin: 0;
  color: #555551;
}

.item-number {
  color: var(--teal);
}

.apps-section {
  padding: 115px 0;
  background: var(--yellow);
}

.apps-grid h2 {
  max-width: 750px;
  margin-top: 0;
}

.apps-grid > div:last-child > p {
  max-width: 700px;
  margin: 0 0 26px;
  font-size: 20px;
}

.status-label {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 8px;
}

.status-label span {
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.identity-section {
  padding: 120px 0;
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.identity-mark {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  overflow: hidden;
}

.identity-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-copy h2 {
  margin-top: 22px;
}

.identity-copy > p:not(.section-index) {
  max-width: 570px;
  font-size: 20px;
}

.identity-copy address,
.prose address {
  margin: 28px 0;
  font-style: normal;
}

.address-label {
  margin: 28px 0 -18px;
  color: #686864;
  font-size: 12px !important;
  font-weight: 700;
  text-transform: uppercase;
}

.identity-links {
  display: grid;
  max-width: 570px;
  margin-top: 38px;
  border-top: 1px solid var(--ink);
}

.identity-links a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.identity-links a::after {
  content: "+";
  font-size: 18px;
}

.contact-band {
  padding: 110px 0;
  color: var(--paper);
  background: var(--red);
}

.contact-band .section-index {
  color: var(--paper);
}

.contact-grid h2 {
  max-width: 760px;
  margin-top: 0;
}

.contact-email {
  display: inline-flex;
  max-width: 100%;
  gap: 18px;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  min-height: 100px;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:last-child {
  text-align: right;
}

.footer-inner nav {
  display: flex;
  gap: 24px;
}

.footer-inner a {
  text-decoration: none;
}

.detail-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--paper);
  background: var(--teal);
}

.privacy-hero {
  background: var(--red);
}

.detail-hero .section-shell {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 500px;
  padding: 72px 0 65px;
  flex-direction: column;
  justify-content: flex-end;
}

.detail-hero h1 {
  margin: 18px 0 20px;
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: 0;
}

.detail-hero p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: 22px;
}

.detail-hero-mark {
  position: absolute;
  top: 50%;
  right: -2%;
  width: 520px;
  aspect-ratio: 1;
  opacity: 0.28;
  transform: translateY(-50%);
}

.detail-content {
  padding: 100px 0 130px;
}

.article-shell {
  display: grid;
  width: min(calc(100% - 48px), 1040px);
  margin: 0 auto;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 80px;
}

.article-meta {
  font-size: 14px;
}

.article-meta p:last-child {
  margin-top: 16px;
}

.prose {
  max-width: 700px;
}

.prose h2 {
  margin: 50px 0 14px;
  font-size: 30px;
  line-height: 1.18;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose address {
  color: #393936;
  font-size: 18px;
  line-height: 1.65;
}

.prose a:not(.button) {
  font-weight: 650;
}

.prose .button {
  margin-top: 10px;
}

.prose .direct-email {
  margin-top: 14px;
  font-size: 14px;
}

.prose hr {
  height: 1px;
  margin: 55px 0;
  background: var(--line);
  border: 0;
}

.policy-scope {
  margin: 0 0 62px;
  padding: 22px 0 22px 24px;
  border-left: 5px solid var(--yellow);
}

.not-found-page {
  min-height: 100svh;
  color: var(--paper);
  background: var(--ink);
}

.not-found {
  position: relative;
  display: flex;
  width: min(calc(100% - 48px), 920px);
  min-height: 100svh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.not-found > *:not(img) {
  position: relative;
  z-index: 2;
}

.not-found img {
  position: absolute;
  right: -25%;
  width: 70%;
  filter: invert(1);
  opacity: 0.35;
}

.not-found h1 {
  max-width: 650px;
  margin: 22px 0 12px;
  font-size: 64px;
  line-height: 1;
}

.not-found > p:not(.eyebrow) {
  margin: 0 0 28px;
  font-size: 19px;
}

.not-found .button {
  align-self: flex-start;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 74px;
  }

  .hero-mark {
    right: -26%;
    width: 78vw;
  }

  .intro-grid,
  .section-heading,
  .apps-grid,
  .contact-grid {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
  }

  .intro-content h2,
  .section-heading h2,
  .apps-grid h2,
  .identity-copy h2,
  .contact-grid h2 {
    font-size: 44px;
  }

  .practice-item,
  .practice-item + .practice-item {
    padding-right: 22px;
    padding-left: 22px;
  }

  .practice-item:first-child {
    padding-left: 0;
  }

  .identity-grid {
    gap: 50px;
  }

  .article-shell {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 45px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .header-inner,
  .section-shell,
  .footer-inner,
  .hero-inner,
  .article-shell,
  .not-found {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .js .menu-button {
    position: relative;
    z-index: 2;
    display: block;
  }

  .home-page .menu-button span {
    background: var(--paper);
  }

  .detail-page .menu-button span {
    background: var(--ink);
  }

  .js .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    padding: 110px 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    color: var(--paper);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .js .site-nav a {
    width: 100%;
    padding: 13px 0;
    font-size: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .js .site-nav a::after {
    display: none;
  }

  .detail-header .menu-button[aria-expanded="true"] {
    color: var(--paper);
  }

  .detail-header .menu-button[aria-expanded="true"] span {
    background: var(--paper);
  }

  .hero {
    height: auto;
    min-height: max(520px, calc(100svh - 42px));
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 22px;
  }

  .hero-mark {
    top: 57%;
    right: -60%;
    width: 122vw;
    opacity: 0.3;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: 56px;
    line-height: 0.9;
  }

  .hero-copy {
    max-width: 350px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-facts {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div:last-child {
    display: none;
  }

  .intro-section,
  .identity-section {
    padding: 80px 0;
  }

  .practice-section {
    padding-bottom: 80px;
  }

  .intro-grid,
  .section-heading,
  .apps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-content h2,
  .section-heading h2,
  .apps-grid h2,
  .identity-copy h2,
  .contact-grid h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 19px;
  }

  .section-heading {
    align-items: start;
  }

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

  .practice-item,
  .practice-item + .practice-item,
  .practice-item:first-child {
    min-height: auto;
    padding: 28px 0 32px;
    border-left: 0;
  }

  .practice-item h3 {
    margin-top: 32px;
  }

  .apps-section,
  .contact-band {
    padding: 80px 0;
  }

  .apps-grid > div:last-child > p {
    font-size: 18px;
  }

  .identity-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .identity-mark {
    max-width: 430px;
  }

  .footer-inner {
    min-height: 150px;
    padding: 28px 0;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-inner nav {
    justify-content: flex-end;
  }

  .footer-inner p:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }

  .detail-hero,
  .detail-hero .section-shell {
    min-height: 420px;
  }

  .detail-hero .section-shell {
    padding-top: 50px;
  }

  .detail-hero h1 {
    font-size: 58px;
  }

  .detail-hero p:last-child {
    font-size: 18px;
  }

  .detail-hero-mark {
    right: -35%;
    width: 430px;
  }

  .detail-content {
    padding: 72px 0 90px;
  }

  .article-shell {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .article-meta {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .prose h2 {
    font-size: 26px;
  }

  .prose p,
  .prose address {
    font-size: 17px;
  }

  .not-found h1 {
    font-size: 46px;
  }
}

@media (max-width: 680px) {
  .no-js .site-header {
    position: relative;
    height: auto;
  }

  .no-js .header-inner {
    min-height: var(--header-height);
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .no-js .site-nav {
    width: 100%;
    padding-top: 14px;
    justify-content: space-between;
    gap: 12px;
  }

  .no-js .detail-header .site-nav {
    color: var(--ink);
  }
}

@media (max-width: 390px) {
  .wordmark {
    font-size: 14px;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions {
    gap: 16px;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-facts dd {
    font-size: 13px;
  }

  .contact-email {
    font-size: 18px;
  }
}

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

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