body {
  background: var(--white);
}

.eyebrow {
  font-size: 13px;
}

.arrow-link,
.c-coming-soon {
  font-size: 14px;
}

main {
  overflow: clip;
}

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

.c-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) auto;
  align-items: center;
  height: 76px;
  padding: 0 clamp(24px, 4.5vw, 76px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.c-header nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(14px, 1.55vw, 26px);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 16px;
}

.c-header nav > a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.c-header nav > a:hover,
.c-header nav > a:focus-visible {
  color: var(--turquoise);
  border-bottom-color: currentColor;
}

.c-header nav > .c-header-drafters {
  display: flex;
  align-items: center;
  width: 68px;
  height: 42px;
  padding: 4px 0;
}

.c-header-drafters img {
  width: 68px;
  height: auto;
}

.c-header-social {
  display: flex;
  gap: 6px;
}

.c-header-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.c-header-social a:hover,
.c-header-social a:focus-visible {
  border-color: var(--turquoise);
}

.c-header-social img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.brand-copy small {
  font-size: 13px;
}

.c-hero {
  display: grid;
  grid-template-rows: clamp(680px, 72svh, 760px) auto;
  height: auto;
  min-height: 0;
  max-height: none;
  background: var(--turquoise);
}

.c-hero-media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.c-hero-media::after {
  position: absolute;
  inset: 0;
  background: rgba(3, 21, 46, 0.08);
  content: "";
}

.c-hero-media > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.c-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.04);
}

.c-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 2.5vw, 38px);
  top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.c-hero-name {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 7vw, 110px);
  bottom: 0;
  display: grid;
  gap: 8px;
  min-width: 252px;
  padding: 21px 28px 23px;
  color: var(--white);
  background: var(--navy);
}

.c-hero-name small {
  font-size: 15px;
  line-height: 1.5;
}

.c-hero-name strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
}

.c-hero-message {
  display: grid;
  grid-template-columns: minmax(520px, 1.25fr) minmax(280px, 0.7fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
  min-height: 330px;
  padding: 34px clamp(30px, 7vw, 116px) 38px;
  color: var(--white);
  background: var(--turquoise);
}

.c-hero-message h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.34;
}

.c-hero-message h1 span,
.c-intro h2 span,
.c-origin blockquote span,
.c-view h2 > span,
.c-strategy-statement span {
  display: block;
}

.c-hero-message h1 span {
  white-space: nowrap;
}

.c-hero-context {
  padding-top: 20px;
  color: var(--navy);
  border-top: 1px solid rgba(6, 31, 66, 0.44);
}

.c-hero-principle {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.8;
}

.c-hero-context > p:last-child {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.c-thought-index {
  padding: 112px clamp(30px, 7vw, 116px) 118px;
  color: var(--navy);
  background: var(--pale);
  border-bottom: 1px solid var(--line);
}

.c-thought-index > header,
.c-thought-index > nav {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.c-thought-index > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 40px;
  align-items: end;
}

.c-thought-index .eyebrow {
  grid-column: 1 / -1;
  color: var(--turquoise-text);
}

.c-thought-index h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 500;
}

.c-thought-index > header > p:last-child {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
}

.c-thought-index > nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.c-thought-index > nav a {
  display: grid;
  gap: 21px;
  min-height: 150px;
  padding: 28px clamp(16px, 2vw, 30px);
}

.c-thought-index > nav a + a {
  border-left: 1px solid var(--line);
}

.c-thought-index > nav a:hover,
.c-thought-index > nav a:focus-visible {
  color: var(--turquoise-text);
  background: var(--white);
}

.c-thought-index > nav small {
  color: var(--turquoise-text);
  font-family: Georgia, serif;
  font-size: 14px;
}

.c-thought-index > nav a:hover small,
.c-thought-index > nav a:focus-visible small {
  color: var(--turquoise-text);
}

.c-thought-index > nav span {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}

.c-intro {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 118px clamp(30px, 7vw, 116px) 126px;
}

.c-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 500;
  line-height: 1.6;
}

.c-intro-copy {
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 2.05;
}

.c-intro-copy p {
  margin: 0;
}

.c-intro-copy p + p {
  margin-top: 12px;
}

.c-origin {
  min-height: 520px;
}

.c-origin figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: clamp(520px, 52vw, 760px);
}

.c-origin picture {
  display: block;
  width: 100%;
  height: 100%;
}

.c-origin figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.c-origin figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.c-origin-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px clamp(36px, 5vw, 80px);
  color: var(--white);
  background: var(--navy);
}

.c-origin-copy .eyebrow {
  color: var(--turquoise-bright);
}

.c-origin blockquote {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.65;
}

.c-origin-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2;
}

.c-origin-copy > p:last-child span,
.c-policy-axis-label-long span {
  display: block;
}

.c-view {
  padding: 118px clamp(30px, 7vw, 116px) 128px;
  background: var(--pale);
}

.c-view-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  max-width: 1300px;
  margin: 0 auto;
}

.c-view h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.46;
}

.c-view-title-rest > span {
  display: inline-block;
  white-space: nowrap;
}

.c-external {
  display: inline-block;
  color: var(--turquoise);
  font-size: 1em;
  line-height: inherit;
}

.c-view-heading > p {
  margin: 0 0 11px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
}

.c-view-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1300px;
  margin: 74px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.c-view-flow article {
  min-height: 330px;
  padding: 36px clamp(26px, 3vw, 44px) 40px;
}

.c-view-flow article + article {
  border-left: 1px solid var(--line);
}

.c-view-number {
  color: var(--turquoise-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.c-view-flow h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.55;
}

.c-view-topics {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.c-view-description {
  max-width: 290px;
  margin: 42px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.95;
}

.c-view-bridge {
  max-width: 980px;
  margin: 76px auto 0;
  padding: 32px 0;
  color: var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.9;
  text-align: center;
}

.c-view-bridge > .c-view-bridge-lead,
.c-view-bridge strong {
  display: block;
}

.c-view-bridge-lead > span {
  display: inline-block;
  white-space: nowrap;
}

.c-view-bridge strong {
  color: var(--turquoise);
  font-weight: 500;
}

.c-view-bridge strong > span {
  display: inline-block;
  white-space: nowrap;
}

.c-strategy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  min-height: 590px;
  padding: 100px clamp(30px, 7vw, 116px);
  color: var(--white);
  background: var(--navy-deep);
}

.c-strategy-heading,
.c-strategy-copy {
  position: relative;
  z-index: 2;
}

.c-strategy-core {
  margin: 0 0 24px;
  color: var(--turquoise-bright);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.8;
}

.c-external-signature {
  position: absolute;
  z-index: 1;
  top: 0;
  right: clamp(24px, 5vw, 78px);
  width: clamp(270px, 31vw, 470px);
  height: clamp(230px, 27vw, 410px);
  pointer-events: none;
  transform: translateY(-49%);
}

.c-external-signature span {
  position: absolute;
  top: 0;
  font-family: var(--serif);
  font-size: clamp(220px, 25vw, 390px);
  line-height: 1;
}

.c-external-signature-solid {
  left: 0;
  color: var(--turquoise);
}

.c-external-signature-outline {
  left: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 158, 172, 0.44);
  transform: translate(18px, 12px);
}

.c-strategy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.46;
}

.c-strategy .eyebrow {
  color: var(--turquoise-bright);
}

.c-strategy-copy {
  max-width: 720px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.c-strategy-statement {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.7vw, 52px);
  line-height: 1.58;
}

.c-strategy-statement > span:first-child {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.38em;
  line-height: 1.8;
}

.c-strategy-statement-main,
.c-strategy-method span,
.c-strategy-close span {
  display: inline;
}

.c-strategy-method {
  margin: 0 0 34px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.9;
}

.c-strategy-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
}

.c-strategy-body p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2.1;
}

.c-strategy-close {
  margin: 32px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.8;
}

.c-policy {
  max-width: 1500px;
  margin: 0 auto;
  padding: 118px clamp(30px, 7vw, 116px) 132px;
}

.c-policy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.5;
}

.c-policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.c-policy-row {
  display: flex;
  flex-direction: column;
  padding: 48px clamp(26px, 3vw, 46px) 54px;
}

.c-policy-row + .c-policy-row {
  border-left: 1px solid var(--line);
}

.c-policy-axis {
  position: relative;
  min-height: 118px;
}

.c-policy-axis small {
  color: var(--turquoise-text);
  font-size: 13px;
  font-weight: 700;
}

.c-policy-axis > span {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  color: rgba(0, 158, 172, 0.23);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1.1;
}

.c-policy-axis strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: none;
  margin-top: 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
}

.c-policy-axis strong > span {
  display: block;
}

.c-policy-intro {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.c-policy-intro p {
  display: flex;
  align-items: flex-start;
  height: 200px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 2;
}

.c-policy-details {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  min-height: 610px;
  margin: 36px 0 0;
}

.c-policy-details > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.c-policy-details > div + div {
  margin-top: 0;
}

.c-policy-details > div:last-child {
  padding-bottom: 20px;
  border-bottom: 0;
}

.c-policy-row:not(:nth-child(2)) .c-policy-details > div:last-child {
  border-bottom: 1px solid var(--line);
}

.c-policy-details dt {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.c-policy-details dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.c-drafters {
  display: grid;
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  min-height: 690px;
  color: var(--white);
  background: var(--turquoise);
}

.c-drafters figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.c-drafters figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  filter: saturate(0.9) contrast(1.01) brightness(1.04);
}

.c-drafters figure figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(3, 21, 46, 0.82);
  font-size: 12px;
  line-height: 1.4;
}

.c-drafters-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(40px, 7vw, 108px);
}

.c-drafters-logo {
  display: grid;
  width: max-content;
  margin-bottom: 31px;
  padding: 14px 18px 16px;
  color: var(--navy-deep);
  background: var(--white);
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3vw, 46px);
  font-weight: 500;
  line-height: 0.83;
}

.c-drafters .eyebrow {
  color: var(--navy);
}

.c-drafters-principle {
  margin: 26px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
}

.c-drafters h2 {
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.45;
}

.c-drafters-copy > p:not(.eyebrow, .c-drafters-principle) {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
}

.c-drafters-copy > .c-drafters-study {
  margin: -8px 0 25px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
}

.c-drafters-copy > .c-drafters-note {
  margin-top: 18px;
  font-size: 17px;
}

.c-drafters-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 18px 0;
  color: var(--navy);
  border-top: 1px solid rgba(6, 31, 66, 0.35);
  border-bottom: 1px solid rgba(6, 31, 66, 0.35);
  list-style: none;
  counter-reset: process;
}

.c-drafters-process li {
  position: relative;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  counter-increment: process;
}

.c-drafters-process li + li {
  border-left: 1px solid rgba(6, 31, 66, 0.28);
}

.c-drafters-process li::before {
  display: block;
  margin-bottom: 6px;
  color: rgba(6, 31, 66, 0.58);
  font-size: 12px;
  content: "0" counter(process);
}

.c-drafters .arrow-link {
  width: min(320px, 100%);
  margin-top: 30px;
}

.c-party {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  padding: 88px clamp(30px, 7vw, 116px);
  color: var(--navy);
  background: #f2f8f9;
  border-bottom: 1px solid var(--line);
}

.c-party > div {
  max-width: 760px;
}

.c-party h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.35;
}

.c-party p {
  margin: 25px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 2;
}

.c-party .arrow-link {
  width: 100%;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.c-profile {
  display: grid;
  grid-template-columns: clamp(230px, 23vw, 340px) minmax(0, 1fr);
  column-gap: clamp(48px, 5vw, 86px);
  align-items: start;
  padding: 100px clamp(30px, 7vw, 116px) 108px;
  background: var(--white);
}

.c-profile-media {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.c-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.c-profile-content {
  padding: 0;
}

.c-profile-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 32px;
  align-items: end;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}

.c-profile-heading .eyebrow {
  grid-column: 1 / -1;
}

.c-profile-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.25;
}

.c-profile-heading > p:last-child {
  margin: 0 0 9px;
  color: var(--turquoise-text);
  font-family: var(--serif);
  font-size: 16px;
}

.c-profile-basics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.c-profile-basics > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 24px 0;
}

.c-profile-basics > div:nth-child(2n) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.c-profile-basics dt {
  color: var(--turquoise-text);
  font-size: 13px;
  font-weight: 700;
}

.c-profile-basics dd {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
}

.c-profile-history {
  display: grid;
  gap: 46px;
  margin-top: 48px;
}

.c-profile-history h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.c-profile-history ul,
.c-profile-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-profile-history ul li {
  position: relative;
  padding: 13px 0 13px 20px;
  color: var(--navy);
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.85;
}

.c-profile-history ul li:last-child {
  border-bottom: 1px solid var(--line);
}

.c-profile-history ul li::before {
  position: absolute;
  top: 23px;
  left: 1px;
  width: 5px;
  height: 5px;
  background: var(--turquoise);
  content: "";
}

.c-profile-timeline li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 25px;
  padding: 13px 0;
  color: var(--navy);
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.85;
}

.c-profile-timeline li:last-child {
  border-bottom: 1px solid var(--line);
}

.c-profile-timeline time {
  color: var(--turquoise-text);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.c-news {
  padding: 110px clamp(30px, 7vw, 116px) 118px;
  background: var(--white);
}

.c-news > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 40px;
  align-items: end;
  max-width: 1300px;
  margin: 0 auto;
}

.c-news > header .eyebrow {
  grid-column: 1 / -1;
}

.c-news h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.3;
}

.c-news > header > p:last-child {
  margin: 0 0 9px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
}

.c-social-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1300px;
  margin: 54px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.c-social-links > a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 20px clamp(18px, 2.2vw, 34px);
  color: var(--navy);
}

.c-social-links > a + a {
  border-left: 1px solid var(--line);
}

.c-social-links > a:hover,
.c-social-links > a:focus-visible {
  color: var(--turquoise-text);
  background: var(--pale);
}

.c-social-links img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.c-social-links span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.c-social-links strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.c-social-links small {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-social-links b {
  color: var(--turquoise-text);
  font-size: 15px;
  font-weight: 400;
}

.c-support {
  position: relative;
  overflow: hidden;
  padding: 108px clamp(30px, 7vw, 116px) 118px;
  color: var(--white);
  background: var(--navy-deep);
}

.c-support-heading,
.c-support-options {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.c-support-heading {
  display: flex;
  gap: 26px;
  align-items: center;
}

.c-support-heading > img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  opacity: 0.96;
}

.c-support-heading .eyebrow {
  color: var(--turquoise-bright);
}

.c-support h2 {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.35;
}

.c-support-options {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.c-support-options article {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 37px clamp(25px, 3vw, 46px) 42px;
}

.c-support-options article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.27);
}

.c-support-number {
  margin: 0;
  color: var(--turquoise-bright);
  font-family: Georgia, serif;
  font-size: 13px;
}

.c-support-options h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 35px);
  font-weight: 500;
  line-height: 1.55;
}

.c-support-options article:first-child h3 {
  font-size: clamp(25px, 2.2vw, 32px);
  white-space: nowrap;
}

.c-support-options article:first-child h3 span {
  display: inline;
}

.c-support-options h3 span {
  display: block;
}

.c-support-options article > p:not(.c-support-number) {
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
}

.c-support-copy {
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.9;
}

.c-support-copy p {
  margin: 0;
}

.c-support-list-title {
  margin-top: 20px !important;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.c-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.c-support-list li {
  position: relative;
  padding-left: 15px;
}

.c-support-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--turquoise-bright);
  content: "・";
}

.c-support-options .arrow-link,
.c-coming-soon {
  width: 100%;
  margin-top: auto;
}

.arrow-link--light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.c-coming-soon {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 13px 18px;
  color: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 14px;
  font-weight: 700;
}

.c-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(360px, auto) minmax(
      180px,
      0.9fr
    );
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  min-height: 235px;
  padding: 54px clamp(24px, 6vw, 98px);
  color: var(--white);
  background: #020e20;
}

.c-footer-brand {
  display: grid;
  gap: 6px;
}

.c-footer strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.c-footer-brand > small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.c-footer address {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--serif);
  font-size: 15px;
  font-style: normal;
  line-height: 1.9;
}

.c-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  padding-top: 4px;
  font-family: var(--serif);
  font-size: 15px;
}

.c-footer nav a:hover,
.c-footer nav a:focus-visible {
  color: var(--turquoise-bright);
}

.c-footer-meta {
  display: grid;
  gap: 30px;
  justify-items: end;
}

.c-footer-social {
  display: flex;
  gap: 13px;
}

.c-footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--white);
}

.c-footer-social img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.c-footer-meta > small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--turquoise-bright);
  outline-offset: 4px;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .c-header nav {
    gap: 11px;
    font-size: 14px;
  }

  .c-header nav > .c-header-drafters,
  .c-header-drafters img {
    width: 58px;
  }

  .c-header-social {
    gap: 4px;
  }

  .c-header-social a {
    width: 25px;
    height: 25px;
  }

  .c-header-social img {
    width: 13px;
    height: 13px;
  }

  .c-hero-message {
    grid-template-columns: minmax(440px, 1.15fr) minmax(230px, 0.72fr);
    gap: 24px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .c-hero-message h1 {
    font-size: 46px;
  }

  .c-intro {
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.72fr);
    gap: 32px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .c-policy {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .c-policy-row {
    padding-right: 25px;
    padding-left: 25px;
  }

  .c-policy-axis > span {
    font-size: 44px;
  }

  .c-policy-axis strong {
    font-size: clamp(19px, 2vw, 20px);
  }

  .c-policy-intro p {
    height: 210px;
    font-size: 18px;
  }

  .c-policy-details {
    min-height: 700px;
  }

  .c-profile {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .c-profile-media {
    width: 100%;
    margin: 0;
  }

  .c-profile-content {
    padding: 0;
  }

  .c-profile-basics > div {
    display: block;
  }

  .c-profile-basics dd {
    margin-top: 7px;
  }

  .c-news,
  .c-support {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .c-social-links > a {
    gap: 12px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .c-support-options article {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (min-width: 901px) and (max-width: 1000px) {
  .c-footer {
    grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
    gap: 38px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .c-footer-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 900px) {
  main p,
  main blockquote,
  main h1,
  main h2,
  main h3 {
    text-wrap: pretty;
  }

  .c-view-topics,
  .c-strategy-core,
  .c-news > header > p:last-child {
    text-wrap: balance;
  }

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

  .c-header {
    grid-template-columns: 1fr auto;
    height: 64px;
    padding: 0 18px;
  }

  .c-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    max-height: calc(100svh - 64px);
    padding: 10px 18px 18px;
    overflow-y: auto;
    color: var(--navy);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 24px rgba(3, 21, 46, 0.08);
  }

  .c-header nav[data-open="true"] {
    display: grid;
  }

  .c-header nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .c-header nav > .c-header-drafters {
    justify-content: flex-start;
    width: 100%;
    height: 64px;
    padding: 12px 4px;
  }

  .c-header-drafters img {
    width: 76px;
  }

  .c-header-social {
    gap: 11px;
    padding: 15px 4px 2px;
  }

  .c-header-social a {
    width: 36px;
    height: 36px;
  }

  .c-header-social img {
    width: 17px;
    height: 17px;
  }

  .menu-button {
    display: block;
  }

  .c-hero {
    grid-template-rows: clamp(520px, 58svh, 580px) auto;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .c-hero-media img {
    object-position: center;
  }

  .c-hero-media figcaption {
    top: 14px;
    right: 14px;
  }

  .c-hero-name {
    right: 0;
    min-width: 176px;
    padding: 14px 18px 16px;
  }

  .c-hero-name small {
    font-size: 12px;
  }

  .c-hero-name strong {
    font-size: 23px;
  }

  .c-hero-message {
    display: block;
    min-height: 0;
    padding: 34px 20px 39px;
  }

  .c-hero-message h1 {
    margin-top: 0;
    font-size: clamp(38px, 9.8vw, 50px);
    line-height: 1.48;
  }

  .c-hero-subline {
    margin-top: 10px;
    font-size: 0.58em;
    line-height: 1.55;
  }

  .c-hero-context {
    margin-top: 24px;
    padding-top: 17px;
  }

  .c-hero-principle {
    margin-bottom: 9px;
    font-size: 17px;
  }

  .c-hero-context > p:last-child {
    font-size: 17px;
  }

  .c-thought-index {
    padding: 76px 20px 82px;
  }

  .c-thought-index > header {
    display: block;
  }

  .c-thought-index h2 {
    margin-top: 0;
    font-size: 44px;
  }

  .c-thought-index > header > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .c-thought-index > nav {
    display: block;
    margin-top: 40px;
  }

  .c-thought-index > nav a {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 76px;
    padding: 18px 4px;
  }

  .c-thought-index > nav a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .c-thought-index > nav span {
    font-size: 17px;
  }

  .c-intro {
    display: block;
    padding: 78px 20px 82px;
  }

  .c-intro-heading {
    margin-top: 0;
  }

  .c-intro h2 {
    margin-top: 0;
    font-size: clamp(28px, 7.7vw, 38px);
    line-height: 1.68;
  }

  .c-intro-copy {
    margin-top: 34px;
    font-size: 17px;
    line-height: 2;
  }

  .c-origin {
    display: block;
    min-height: 0;
  }

  .c-origin figure {
    height: 360px;
  }

  .c-view {
    padding: 80px 20px 86px;
  }

  .c-view-heading {
    display: block;
  }

  .c-view h2 {
    margin-top: 20px;
    font-size: 40px;
    line-height: 1.52;
  }

  .c-view-title-rest > span {
    display: block;
  }

  .c-view-heading > p {
    margin-top: 24px;
    font-size: 18px;
  }

  .c-view-flow {
    display: block;
    margin-top: 48px;
  }

  .c-view-flow article {
    min-height: 0;
    padding: 33px 0 38px;
  }

  .c-view-flow article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .c-view-flow h3 {
    margin-top: 27px;
  }

  .c-view-description {
    max-width: none;
    margin-top: 25px;
    font-size: 17px;
  }

  .c-view-bridge {
    margin-top: 54px;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
    font-size: 20px;
    text-align: left;
  }

  .c-strategy {
    display: block;
    min-height: 0;
    padding: 80px 20px 86px;
  }

  .c-external-signature {
    right: -24px;
    width: 230px;
    height: 210px;
    transform: translateY(-44%);
  }

  .c-external-signature span {
    font-size: 190px;
  }

  .c-strategy h2 {
    font-size: clamp(41px, 11vw, 52px);
  }

  .c-strategy-copy {
    margin-top: 46px;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .c-strategy-statement {
    margin-bottom: 30px;
    font-size: clamp(28px, 7.6vw, 37px);
  }

  .c-strategy-statement-main,
  .c-strategy-statement-main > span,
  .c-strategy-method span,
  .c-strategy-close span {
    display: block;
  }

  .c-strategy-statement-main > span + span {
    margin-top: 4px;
  }

  .c-strategy-method {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .c-external-signature-outline {
    transform: translate(11px, 7px);
  }

  .c-strategy-body {
    display: block;
  }

  .c-strategy-body p {
    font-size: 17px;
  }

  .c-strategy-core {
    font-size: 18px;
  }

  .c-strategy-close {
    font-size: 19px;
  }

  .c-strategy-body p + p {
    margin-top: 22px;
  }

  .c-policy {
    padding: 80px 20px 90px;
  }

  .c-policy h2 {
    font-size: 40px;
  }

  .c-policy-list {
    display: block;
    margin-top: 50px;
    border-top: 0;
    border-bottom: 0;
  }

  .c-policy-row {
    display: block;
    padding: 42px 0 48px;
  }

  .c-policy-row + .c-policy-row {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .c-policy-axis {
    min-height: 108px;
  }

  .c-policy-axis strong {
    max-width: none;
    margin-top: 14px;
    padding-right: 48px;
    font-size: 20px;
  }

  .c-policy-axis > span {
    top: 1px;
    font-size: 44px;
  }

  .c-policy-intro {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .c-policy-intro p {
    display: block;
    height: auto;
    margin-top: 0;
    font-size: 18px;
  }

  .c-policy-details {
    display: block;
    min-height: 0;
    margin-top: 38px;
  }

  .c-policy-details > div {
    display: block;
    padding: 0 0 19px;
  }

  .c-policy-details > div + div {
    margin-top: 20px;
  }

  .c-policy-details > div:last-child {
    padding-bottom: 0;
  }

  .c-policy-row:not(:nth-child(2)) .c-policy-details > div:last-child {
    grid-row: auto;
    border-bottom: 0;
  }

  .c-policy-details dt {
    font-size: 17px;
  }

  .c-policy-details dd {
    font-size: 17px;
  }

  .c-drafters {
    display: block;
    min-height: 0;
  }

  .c-drafters figure {
    height: 330px;
  }

  .c-drafters figure img {
    object-position: 54% 48%;
  }

  .c-drafters-copy {
    padding: 55px 20px 68px;
  }

  .c-drafters-logo {
    font-size: 40px;
  }

  .c-drafters h2 {
    font-size: clamp(39px, 10.5vw, 50px);
  }

  .c-drafters-copy > p:not(.eyebrow, .c-drafters-principle) {
    font-size: 17px;
  }

  .c-drafters-process li {
    padding: 0 8px;
    font-size: 13px;
  }

  .c-drafters .arrow-link {
    width: 100%;
  }

  .c-party {
    display: block;
    padding: 64px 20px 70px;
  }

  .c-party h2 {
    font-size: clamp(37px, 10vw, 48px);
  }

  .c-party p {
    margin-top: 20px;
    font-size: 17px;
  }

  .c-party .arrow-link {
    margin-top: 34px;
  }

  .c-profile {
    display: block;
    padding: 1px 0 0;
  }

  .c-profile-media {
    width: min(56vw, 250px);
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin: 64px auto 0;
  }

  .c-profile-media img {
    object-position: center top;
  }

  .c-profile-content {
    padding: 52px 20px 82px;
  }

  .c-profile-heading h2 {
    font-size: clamp(42px, 10vw, 56px);
  }

  .c-profile-basics > div {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .c-profile-history {
    gap: 40px;
  }

  .c-news {
    padding: 78px 20px 84px;
  }

  .c-news > header {
    display: block;
  }

  .c-news h2 {
    margin-top: 0;
    font-size: 42px;
  }

  .c-news > header > p:last-child {
    margin-top: 20px;
  }

  .c-social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
  }

  .c-social-links > a {
    min-height: 104px;
  }

  .c-social-links > a:nth-child(3) {
    border-left: 0;
  }

  .c-social-links > a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .c-support {
    padding: 76px 20px 84px;
  }

  .c-support-heading {
    gap: 20px;
  }

  .c-support-heading > img {
    width: 82px;
    height: 82px;
  }

  .c-support h2 {
    font-size: clamp(35px, 8.8vw, 48px);
  }

  .c-support-options {
    display: block;
    margin-top: 48px;
  }

  .c-support-options article {
    min-height: 0;
    padding: 36px 0 42px;
  }

  .c-support-options article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.27);
    border-left: 0;
  }

  .c-support-options h3 {
    font-size: 28px;
  }

  .c-support-options article:first-child h3 {
    font-size: 28px;
    white-space: normal;
  }

  .c-support-options article > p:not(.c-support-number) {
    margin-bottom: 30px;
  }

  .c-support-copy {
    font-size: 17px;
  }

  .c-support-list {
    grid-template-columns: 1fr;
  }

  .c-support-options .arrow-link,
  .c-coming-soon {
    width: min(380px, 100%);
  }

  .c-footer {
    display: block;
    min-height: 0;
    padding: 42px 20px;
  }

  .c-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 24px;
    margin: 30px 0;
  }

  .c-footer-meta {
    justify-items: start;
  }

  .c-footer-social a {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .c-hero {
    grid-template-rows: clamp(480px, 58svh, 520px) auto;
  }

  .c-hero-media img {
    object-position: 50% 44%;
  }

  .c-hero-message h1 {
    margin-top: 0;
    font-size: clamp(34px, 9.7vw, 36px);
    line-height: 1.46;
  }

  .c-hero-message {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .c-hero-context {
    margin-top: 20px;
  }

  .c-origin figure,
  .c-drafters figure {
    height: 300px;
  }

  .c-origin blockquote {
    font-size: 27px;
  }

  .c-view h2 {
    font-size: 34px;
  }

  .c-strategy h2 {
    font-size: 41px;
  }

  .c-policy-intro h3 {
    font-size: 24px;
  }

  .c-profile-media {
    width: min(62vw, 230px);
    height: auto;
  }

  .c-profile-heading {
    display: block;
  }

  .c-profile-heading > p:last-child {
    margin-top: 12px;
  }

  .c-profile-basics {
    display: block;
  }

  .c-profile-basics > div,
  .c-profile-basics > div:nth-child(2n) {
    padding: 18px 0;
    border-left: 0;
  }

  .c-profile-basics > div + div {
    border-top: 1px solid var(--line);
  }

  .c-profile-timeline li {
    display: block;
  }

  .c-profile-timeline time {
    display: block;
    margin-bottom: 7px;
  }

  .c-social-links {
    display: block;
  }

  .c-social-links > a,
  .c-social-links > a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .c-social-links > a:first-child {
    border-top: 0;
  }

  .c-support-heading {
    align-items: flex-start;
  }

  .c-support-heading > img {
    width: 68px;
    height: 68px;
  }

  .c-support h2 {
    font-size: 33px;
  }

  .c-support h2 span {
    display: block;
  }
}

@media (max-width: 350px) {
  .c-hero-message h1 {
    font-size: 30px;
  }

  .c-intro h2 {
    font-size: 27px;
  }

  .c-origin blockquote {
    font-size: 25px;
  }

  .c-view h2 {
    font-size: 28px;
  }

  .c-view-bridge strong > span,
  .c-support-options article:nth-child(2) h3 span {
    display: block;
  }

  .c-strategy-statement {
    font-size: 27px;
  }

  .c-drafters-process {
    display: block;
  }

  .c-drafters-process li {
    padding: 9px 0;
    text-align: left;
  }

  .c-drafters-process li + li {
    border-top: 1px solid rgba(6, 31, 66, 0.28);
    border-left: 0;
  }

  .c-drafters-process li::before {
    display: inline;
    margin-right: 10px;
  }
}

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