:root {
  --surface: #0b0b0d;
  --surface-deep: #090909;
  --panel: #151517;
  --line: #2c2c30;
  --ink: #f7f7f5;
  --ink-2: #b9b9bd;
  --ink-3: #85858d;
  --paper: #f5f5f2;
  --paper-ink: #111112;
  --paper-muted: #5f5f62;
  --paper-line: #cececa;
  --accent: #e8b15c;
  --red: #d83e4f;
  --pink: #f04f91;
  --content: 1000px;
  --wide-content: 1360px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 9px 13px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-160%);
}

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

.shell,
.wide-shell {
  width: 100%;
  margin-inline: auto;
  padding-inline: 28px;
}

.shell {
  max-width: calc(var(--content) + 56px);
}

.wide-shell {
  max-width: calc(var(--wide-content) + 56px);
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--surface-deep);
}

.site-header-overlay {
  position: absolute;
  inset: 0 0 auto;
  background: rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand-lockup {
  min-width: 216px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  line-height: 1.05;
}

.brand-monogram {
  width: 48px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.brand-name {
  color: #ffffff;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.primary-nav a,
.header-contact {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-contact {
  min-width: 92px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.primary-nav a,
.header-contact,
.text-link,
.button {
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.header-contact:hover,
.header-contact:focus-visible {
  border-color: var(--pink);
  color: #ffffff;
}

.eyebrow,
.section-label,
.service-number,
.card-index,
.step-number,
.program-kicker span,
.location-label,
.tag {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-gold,
.accent-label,
.card-index,
.step-number {
  color: var(--accent);
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.home-hero {
  position: relative;
  min-height: 660px;
  height: 88svh;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #060606;
}

.home-hero-image,
.afters-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-image {
  object-position: center center;
}

.home-hero-shade,
.afters-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 46px;
}

.home-hero h1 {
  max-width: 8ch;
  margin: 20px 0 36px;
  color: #ffffff;
  font-size: 132px;
  line-height: 0.86;
  font-weight: 850;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
}

.hero-bottomline {
  max-width: 860px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
}

.hero-bottomline p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--paper-ink);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.text-link-light {
  color: #ffffff;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--pink);
}

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

.dark-section {
  background: var(--surface-deep);
  color: var(--ink);
}

.editorial-intro {
  padding-block: 118px 130px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.intro-grid h2,
.split-heading h2,
.services-lead h2,
.media-copy h2,
.culture-panel h2,
.product-feature h2,
.contact-layout h2 {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 1;
  font-weight: 750;
}

.intro-grid h2 {
  max-width: 15ch;
}

.large-copy {
  max-width: 850px;
  margin: 40px 0 0;
  color: var(--paper-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.35;
}

.talent-section {
  padding-block: 118px 128px;
}

.split-heading {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 76px;
  margin-bottom: 84px;
}

.split-heading h2 {
  max-width: 13ch;
}

.talent-list {
  border-top: 1px solid var(--line);
}

.talent-list p {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: baseline;
  gap: 24px;
  margin: 0;
  padding: 23px 0 25px;
  border-bottom: 1px solid var(--line);
  color: #ffffff;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 720;
}

.talent-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
}

.services-section {
  padding-block: 122px 132px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(560px, 1.28fr);
  gap: 86px;
  align-items: start;
}

.services-lead {
  position: sticky;
  top: 28px;
}

.services-lead h2 {
  max-width: 9ch;
  margin-top: 22px;
}

.services-lead > p:last-child {
  max-width: 390px;
  margin: 32px 0 0;
  color: var(--paper-muted);
  font-size: 18px;
}

.service-list {
  border-top: 1px solid var(--paper-ink);
}

.service-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 146px;
  gap: 22px;
  align-items: start;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--paper-line);
}

.service-number {
  padding-top: 6px;
  color: var(--red);
}

.service-row h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 750;
}

.service-row p:not(.service-number) {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--paper-muted);
}

.service-row > a {
  padding-top: 4px;
  color: var(--paper-ink);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.service-row > a:hover,
.service-row > a:focus-visible {
  color: var(--red);
}

.creator-section {
  padding-block: 120px;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: 76px;
  align-items: center;
}

.media-frame {
  aspect-ratio: 1.45 / 1;
  margin-bottom: 0;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-copy h2 {
  max-width: 10ch;
  margin: 22px 0 28px;
}

.media-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-size: 18px;
}

.culture-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  min-height: 720px;
  background: var(--surface);
}

.culture-image {
  min-width: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.culture-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.culture-panel h2 {
  max-width: 8ch;
  margin: 22px 0 30px;
}

.culture-panel > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: 17px;
}

.culture-panel .text-link {
  align-self: flex-start;
  margin-top: 18px;
}

.product-feature {
  padding-block: 86px 92px;
  background: var(--accent);
  color: #17130e;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.product-feature h2 {
  max-width: 14ch;
  margin-top: 20px;
}

.product-feature-grid > div:last-child p {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 18px;
}

.contact-section {
  padding-block: 118px 128px;
  border-top: 8px solid var(--red);
}

.contact-layout h2 {
  max-width: 13ch;
  margin: 22px 0 46px;
}

.contact-intro {
  max-width: 720px;
  margin: -18px 0 38px;
  color: var(--ink-2);
  font-size: 18px;
}

.contact-email {
  max-width: 100%;
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--accent);
  color: #ffffff;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--pink);
  color: var(--pink);
}

.site-footer {
  padding-block: 30px;
  background: var(--surface-deep);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.site-footer p {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--ink-3);
  font-size: 11px;
}

/* Afters */

.afters-page {
  background: var(--surface);
}

.afters-site-header {
  border-bottom-color: var(--line);
}

.section-rule {
  border-bottom: 1px solid var(--line);
}

.afters-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #060606;
}

.afters-hero-image {
  object-position: center 44%;
}

.afters-hero-shade {
  background: rgba(0, 0, 0, 0.62);
}

.afters-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 84px;
}

.program-kicker {
  max-width: 980px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 72px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.program-kicker strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-style: italic;
  line-height: 1;
  font-weight: 400;
}

.section-label {
  margin: 0 0 20px;
  color: var(--ink-3);
}

.afters-hero h1 {
  max-width: 18ch;
  margin: 0 0 30px;
  color: #ffffff;
  font-size: 60px;
  line-height: 1.02;
  font-weight: 760;
}

.hero-deck {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 18px;
}

.afters-hero .hero-deck {
  color: rgba(255, 255, 255, 0.78);
}

.afters-hero .text-link {
  margin-top: 28px;
}

.routing-thesis {
  background: var(--paper);
  color: var(--paper-ink);
}

.routing-thesis-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(440px, 1.3fr);
  gap: 72px;
  align-items: start;
  padding-block: 78px 82px;
}

.routing-thesis h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.04;
  font-weight: 760;
}

.routing-thesis p,
.proposal-terms {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.45;
}

.routing-thesis p {
  color: var(--paper-muted);
}

.section-space {
  padding-block: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading .section-label {
  margin-top: 8px;
}

.section-heading h2,
.contact-block h2 {
  max-width: 22ch;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 720;
}

.section-heading .hero-deck {
  margin-top: 14px;
}

.card-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background: var(--line);
}

.practice-grid {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.three-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-width: 0;
  padding: 31px;
  background: var(--panel);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.service-card p {
  color: var(--ink-2);
}

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

.card-index {
  min-height: 34px;
  margin-bottom: 40px;
  font-variant-numeric: tabular-nums;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 52px;
  padding: 28px 0 0;
  border-top: 2px solid var(--accent);
}

.kpi-row > div {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.kpi-row > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.kpi-row dd {
  margin-bottom: 2px;
  font-size: 50px;
  line-height: 1;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
}

.kpi-row dt {
  color: var(--ink-3);
  font-size: 12px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
  scrollbar-color: var(--ink-3) var(--panel);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

td {
  color: var(--ink-2);
}

td:first-child {
  min-width: 150px;
  font-variant-numeric: tabular-nums;
}

td:first-child span {
  margin-right: 6px;
  color: var(--ink-2);
}

td strong {
  color: var(--ink);
  font-weight: 700;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.table-note {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 12px;
}

.calendar-loading td {
  color: var(--ink-3);
}

.proposal-terms {
  max-width: 870px;
  color: var(--ink-2);
}

.contact-block {
  padding-block: 96px;
}

.contact-block h2 {
  max-width: 18ch;
  margin-bottom: 30px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.button-primary {
  background: var(--accent);
  color: #17120b;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0bf72;
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--pink);
  color: var(--pink);
}

.footer-stack {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
}

@media (max-width: 1120px) {
  .home-hero h1 {
    font-size: 102px;
  }

  .services-layout {
    grid-template-columns: minmax(240px, 0.65fr) minmax(500px, 1.35fr);
    gap: 54px;
  }

  .culture-panel {
    padding: 48px;
  }

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

@media (max-width: 900px) {
  .header-inner {
    gap: 24px;
  }

  .primary-nav {
    gap: 20px;
  }

  .home-hero h1 {
    font-size: 80px;
  }

  .intro-grid,
  .split-heading,
  .services-layout,
  .media-grid,
  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .split-heading,
  .services-layout,
  .media-grid,
  .product-feature-grid {
    gap: 46px;
  }

  .services-lead {
    position: static;
  }

  .services-lead h2 {
    max-width: 14ch;
  }

  .culture-section {
    grid-template-columns: 1fr;
  }

  .culture-image {
    min-height: 540px;
  }

  .culture-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .culture-panel h2 {
    max-width: 12ch;
  }

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

  .afters-hero h1 {
    font-size: 50px;
  }

  .routing-thesis-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .three-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell,
  .wide-shell {
    padding-inline: 20px;
  }

  .site-header,
  .header-inner {
    min-height: 68px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-monogram {
    width: 44px;
  }

  .primary-nav {
    display: none;
  }

  .header-contact {
    min-width: 82px;
    min-height: 36px;
  }

  .home-hero {
    min-height: 610px;
    height: 84svh;
  }

  .home-hero-image {
    object-position: 62% center;
  }

  .home-hero-shade {
    background: rgba(0, 0, 0, 0.42);
  }

  .home-hero-content {
    padding-top: 118px;
    padding-bottom: 34px;
  }

  .home-hero h1 {
    margin-bottom: 30px;
    font-size: 60px;
    line-height: 0.9;
  }

  .hero-bottomline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-bottomline p {
    font-size: 16px;
  }

  .hero-bottomline .text-link {
    justify-self: start;
  }

  .editorial-intro,
  .talent-section,
  .services-section,
  .creator-section,
  .contact-section {
    padding-block: 78px;
  }

  .intro-grid h2,
  .split-heading h2,
  .services-lead h2,
  .media-copy h2,
  .culture-panel h2,
  .product-feature h2,
  .contact-layout h2 {
    font-size: 40px;
    line-height: 1.04;
  }

  .large-copy {
    margin-top: 28px;
    font-size: 23px;
  }

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

  .talent-list p {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    font-size: 27px;
  }

  .service-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .service-row > a {
    grid-column: 2;
    margin-top: 2px;
  }

  .service-row h3 {
    font-size: 21px;
  }

  .media-frame {
    aspect-ratio: 1.1 / 1;
  }

  .culture-image {
    min-height: 420px;
  }

  .culture-panel {
    padding: 68px 20px;
  }

  .product-feature {
    padding-block: 68px;
  }

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

  .footer-inner,
  .footer-stack {
    display: grid;
    grid-template-columns: 1fr;
  }

  .afters-hero {
    min-height: 700px;
  }

  .afters-hero-image {
    object-position: 64% center;
  }

  .afters-hero-content {
    padding-top: 82px;
    padding-bottom: 66px;
  }

  .program-kicker {
    margin-bottom: 50px;
  }

  .program-kicker strong {
    font-size: 42px;
  }

  .afters-hero h1 {
    font-size: 38px;
  }

  .hero-deck {
    font-size: 16px;
  }

  .section-space {
    padding-block: 70px;
  }

  .routing-thesis-inner {
    padding-block: 64px 68px;
  }

  .routing-thesis h2 {
    font-size: 36px;
  }

  .routing-thesis p,
  .proposal-terms {
    font-size: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }

  .section-heading .section-label {
    margin-top: 0;
  }

  .section-heading h2,
  .contact-block h2 {
    font-size: 32px;
  }

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

  .service-card {
    padding: 25px;
  }

  .card-index {
    margin-bottom: 26px;
  }

  .kpi-row {
    grid-template-columns: 1fr;
  }

  .kpi-row > div,
  .kpi-row > div:first-child {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .kpi-row > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .contact-block {
    padding-block: 72px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }

  .home-hero h1 {
    font-size: 52px;
  }

  .talent-list p {
    font-size: 24px;
  }

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

  .afters-hero h1 {
    font-size: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
