:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --paper: #ffffff;
  --soft: #f4f4f0;
  --line: #d9d9d4;
  --muted: #686868;
  --accent: #ff5b22;
  --sage: #dce8d5;
  --blue: #dce8ef;
  --gold: #d2ad63;
  --font-sans: "Manrope", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --page-pad: clamp(20px, 4.2vw, 72px);
  --max: 1600px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 46px);
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: fit-content;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.header-contact svg,
.text-action svg,
.offer-panel-copy a svg,
.work-copy svg,
.contact-copy a svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
}

.menu-button svg {
  width: 23px;
  height: 23px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(700px, 92svh, 960px);
  padding: calc(var(--header-h) + 52px) var(--page-pad) 44px;
  align-content: space-between;
  isolation: isolate;
  overflow: hidden;
}

.hero-visual,
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.hero-visual canvas {
  width: 100%;
  height: 100%;
}

.hero-grid {
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.08) 1px, transparent 1px);
  background-size: min(8vw, 112px) min(8vw, 112px);
  mask-image: linear-gradient(to right, black 0%, transparent 64%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 58vw);
}

.eyebrow,
.section-number,
.panel-label {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

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

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

.hero h1 {
  margin: clamp(26px, 4vh, 50px) 0 8px;
  font-size: clamp(68px, 9.4vw, 164px);
  font-weight: 800;
  line-height: 0.88;
}

.hero-statement {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 70px);
  font-weight: 700;
  line-height: 1.18;
  word-break: keep-all;
}

.hero-statement span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1em;
  font-style: italic;
  font-weight: 400;
  word-break: keep-all;
}

.hero-description {
  max-width: 610px;
  margin: clamp(22px, 3vh, 34px) 0 0;
  color: #333;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.75;
  word-break: keep-all;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.button svg {
  width: 17px;
  height: 17px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-index {
  position: absolute;
  right: var(--page-pad);
  bottom: 54px;
  display: grid;
  width: min(470px, 34vw);
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.hero-index a {
  min-width: 0;
  padding: 14px 14px 16px;
  border-left: 1px solid var(--line);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.hero-index a:first-child {
  border-left: 0;
}

.hero-index a:hover,
.hero-index a:focus-visible {
  color: #fff;
  background: var(--ink);
}

.hero-index span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.hero-index strong {
  display: block;
  margin-top: 18px;
  font-size: 13px;
}

.hero-index p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-scroll {
  position: absolute;
  bottom: 42px;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 46px;
  background: var(--ink);
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 var(--page-pad);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
}

.identity-strip p {
  margin: 0;
  padding: 18px 22px;
  border-left: 1px solid #383838;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.identity-strip p:first-child {
  border-left: 0;
}

.section {
  padding: clamp(88px, 9vw, 144px) var(--page-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(440px, 1.2fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 4vw, 76px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading h2,
.people-heading h2,
.network-section h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 1.08;
  word-break: keep-all;
}

.section-heading > p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.offer-section {
  background: var(--paper);
}

.offer-explorer {
  max-width: var(--max);
  margin: clamp(52px, 5vw, 78px) auto 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.offer-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--ink);
}

.offer-tabs button {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-left: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.offer-tabs button:first-child {
  border-left: 0;
}

.offer-tabs button span {
  color: var(--muted);
  font-size: 11px;
}

.offer-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--ink);
}

.offer-tabs button[aria-selected="true"] span {
  color: var(--accent);
}

.offer-panel {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.72fr);
}

.offer-panel[hidden] {
  display: none;
}

.offer-panel-copy {
  display: flex;
  padding: clamp(48px, 6vw, 94px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.offer-panel-copy h3 {
  margin: 26px 0 22px;
  font-size: clamp(38px, 4.5vw, 70px);
  line-height: 1.08;
}

.offer-panel-copy > p:not(.panel-label) {
  max-width: 650px;
  margin: 0;
  color: #373737;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.offer-panel-copy ul {
  display: grid;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.offer-panel-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.offer-panel-copy li::before {
  width: 5px;
  height: 5px;
  background: var(--accent);
  content: "";
}

.offer-panel-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 36px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.offer-panel-aside {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: clamp(36px, 4vw, 64px);
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--ink);
  overflow: hidden;
}

.offer-panel-aside::before,
.offer-panel-aside::after {
  position: absolute;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 50%;
  content: "";
}

.offer-panel-aside::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -80px;
}

.offer-panel-aside::after {
  width: 150px;
  height: 150px;
  top: 70px;
  right: 74px;
}

.academy-aside {
  background: var(--sage);
}

.ax-aside {
  background: var(--blue);
}

.church-aside {
  background: #eee4cd;
}

.offer-panel-aside span {
  position: relative;
  z-index: 1;
  font-size: clamp(72px, 8vw, 130px);
  font-weight: 800;
  line-height: 0.9;
}

.offer-panel-aside p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.work-section {
  padding-right: 0;
  background: var(--soft);
  overflow: hidden;
}

.work-heading {
  margin-right: var(--page-pad);
}

.work-heading em {
  font-family: var(--font-display);
  font-weight: 400;
}

.work-toolbar {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  margin: clamp(44px, 5vw, 66px) var(--page-pad) 24px 0;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.work-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.work-toolbar div {
  display: flex;
  gap: 8px;
}

.work-toolbar button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.work-toolbar button:hover {
  color: #fff;
  background: var(--ink);
}

.work-toolbar svg {
  width: 18px;
  height: 18px;
}

.work-rail {
  display: grid;
  grid-auto-columns: minmax(320px, 38vw);
  grid-auto-flow: column;
  gap: 18px;
  padding: 0 var(--page-pad) 14px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--ink) transparent;
  scrollbar-width: thin;
}

.work-card {
  display: grid;
  min-height: 570px;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  scroll-snap-align: start;
}

.work-visual {
  position: relative;
  min-height: 360px;
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.02);
  transition:
    filter 300ms ease,
    transform 500ms ease;
}

.work-card:hover .work-visual img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.work-type-visual {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--ink);
}

.work-archive .work-type-visual {
  color: var(--ink);
  background: var(--blue);
}

.work-type-visual > span {
  font-size: 12px;
  font-weight: 800;
}

.work-type-visual strong {
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 400;
  line-height: 0.8;
}

.work-type-visual small {
  font-size: 11px;
  font-weight: 700;
}

.work-copy {
  position: relative;
  padding: 24px 26px 28px;
}

.work-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.work-copy h3 {
  margin: 0;
  font-size: 27px;
}

.work-copy > span {
  display: block;
  max-width: 85%;
  margin-top: 12px;
  color: #494949;
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.work-copy svg {
  position: absolute;
  right: 24px;
  bottom: 28px;
}

.statement-section {
  padding: clamp(110px, 15vw, 230px) var(--page-pad);
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.statement-section > p {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.statement-section blockquote {
  margin: 52px auto 34px;
  font-size: clamp(42px, 6.2vw, 96px);
  font-weight: 600;
  line-height: 1.17;
  word-break: keep-all;
}

.statement-section blockquote em {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 400;
}

.statement-section > span {
  color: #aaa;
  font-size: 15px;
}

.people-section {
  background: var(--paper);
}

.people-heading {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(120px, 0.42fr) minmax(440px, 1.92fr);
  gap: clamp(28px, 4vw, 76px);
  margin: 0 auto;
}

.people-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(2, 1fr);
  margin: clamp(70px, 8vw, 120px) auto 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.people-grid article {
  padding: clamp(40px, 5vw, 80px);
  border-left: 1px solid var(--ink);
}

.people-grid article:first-child {
  border-left: 0;
}

.person-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.person-index span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.person-index p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.people-grid h3 {
  margin: 70px 0 0;
  font-size: clamp(42px, 4.6vw, 72px);
}

.people-grid .person-role {
  margin: 8px 0 32px;
  font-size: 13px;
  font-weight: 700;
}

.people-grid article > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: #414141;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.network-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: var(--soft);
}

.network-section > div:first-child {
  position: sticky;
  top: 120px;
  align-self: start;
}

.network-section h2 {
  margin-top: 26px;
}

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

.network-list p {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  margin: 0;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 600;
}

.network-list span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  gap: clamp(60px, 9vw, 160px);
  padding: clamp(92px, 10vw, 150px) var(--page-pad);
  color: #fff;
  background: var(--ink);
}

.contact-copy h2 {
  margin-top: 34px;
}

.contact-copy > p:not(.section-number) {
  max-width: 640px;
  margin: 32px 0 0;
  color: #aaa;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.contact-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 38px;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 24px;
  align-self: end;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #bbb;
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #555;
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 16px;
  resize: vertical;
  transition: border-color 160ms ease;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}

.contact-form .button:hover {
  color: #fff;
  background: var(--ink);
}

.contact-form > p {
  margin: -12px 0 0;
  color: #999;
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding: 58px var(--page-pad);
  border-top: 1px solid #292929;
  color: #aaa;
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand .brand-mark {
  border-color: #fff;
  color: #fff;
}

.footer-brand strong {
  color: #fff;
  font-size: 15px;
}

.footer-brand p,
.footer-business p,
.footer-links p {
  margin: 6px 0 0;
  font-size: 12px;
}

.footer-business {
  display: grid;
  gap: 5px;
}

.footer-business p {
  margin: 0;
}

.footer-business span {
  display: inline-block;
  width: 110px;
  color: #999;
}

.footer-links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
  text-align: right;
}

.footer-links a {
  color: #fff;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    padding: 22px var(--page-pad) 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-size: 20px;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-contact {
    margin-left: 14px;
  }

  .hero-copy {
    width: min(720px, 72vw);
  }

  .hero-index {
    width: min(470px, 45vw);
  }

  .section-heading {
    grid-template-columns: 130px 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .work-rail {
    grid-auto-columns: minmax(360px, 56vw);
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    min-height: var(--header-h);
    grid-template-columns: 1fr auto;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .header-contact {
    display: none;
  }

  .menu-button {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    min-height: 820px;
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 30px;
    align-content: start;
  }

  .hero-visual {
    top: 180px;
    height: 440px;
    opacity: 0.3;
  }

  .hero-grid {
    mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-statement {
    font-size: clamp(29px, 9vw, 42px);
  }

  .hero-description {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-index {
    right: var(--page-pad);
    bottom: 30px;
    left: var(--page-pad);
    width: auto;
  }

  .hero-index a {
    padding: 12px 8px 14px;
  }

  .hero-index strong {
    margin-top: 12px;
    font-size: 11px;
  }

  .hero-index p {
    font-size: 10px;
  }

  .hero-scroll {
    display: none;
  }

  .identity-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .identity-strip p {
    padding: 14px 8px;
    border-top: 1px solid #383838;
    font-size: 11px;
  }

  .identity-strip p:nth-child(-n + 2) {
    border-top: 0;
  }

  .identity-strip p:nth-child(odd) {
    border-left: 0;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading,
  .people-heading {
    display: block;
  }

  .section-heading h2,
  .people-heading h2,
  .network-section h2,
  .contact-copy h2 {
    margin-top: 24px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .section-heading > p:last-child {
    margin-top: 26px;
    font-size: 15px;
  }

  .offer-explorer {
    margin-top: 54px;
  }

  .offer-tabs {
    grid-template-columns: 1fr;
  }

  .offer-tabs button {
    min-height: 58px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .offer-tabs button:first-child {
    border-top: 0;
  }

  .offer-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .offer-panel-copy {
    padding: 42px 24px 48px;
  }

  .offer-panel-copy h3 {
    font-size: 38px;
  }

  .offer-panel-copy > p:not(.panel-label) {
    font-size: 15px;
  }

  .offer-panel-aside {
    min-height: 300px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .offer-panel-aside span {
    font-size: 82px;
  }

  .work-section {
    padding-right: 0;
  }

  .work-toolbar {
    margin-top: 46px;
  }

  .work-toolbar > p {
    max-width: 200px;
    font-size: 11px;
  }

  .work-rail {
    grid-auto-columns: minmax(290px, 82vw);
  }

  .work-card {
    min-height: 510px;
  }

  .work-visual {
    min-height: 320px;
  }

  .statement-section {
    text-align: left;
  }

  .statement-section blockquote {
    margin-top: 40px;
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .people-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .people-grid article {
    padding: 42px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .people-grid article:first-child {
    border-top: 0;
  }

  .people-grid h3 {
    margin-top: 44px;
    font-size: 48px;
  }

  .network-section {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .network-section > div:first-child {
    position: static;
  }

  .network-list p {
    font-size: 20px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-links {
    align-items: flex-start;
    text-align: left;
  }
}

@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;
  }
}
