.breadcrumb {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--red);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1.14fr);
  width: min(100%, var(--max));
  min-height: 620px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6.5rem) clamp(3.5rem, 5vw, 5rem) var(--gutter);
}

.page-hero-copy .eyebrow {
  margin-bottom: 1.4rem;
}

.page-hero h1 {
  max-width: 9ch;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 6.1vw, 6.5rem);
  font-stretch: condensed;
  font-weight: 840;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.page-hero h1 span {
  color: var(--red);
}

.page-intro {
  max-width: 42ch;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.42;
}

.page-hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.page-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(17, 17, 17, 0.88);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.visual-index {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.page-capabilities .page-hero-visual::before {
  content: "05";
  position: absolute;
  z-index: 1;
  right: -0.02em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(10rem, 19vw, 20rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.8;
  mix-blend-mode: soft-light;
}

.page-process .page-hero {
  background: var(--ink);
  color: var(--white);
}

.page-process .site-header + main .page-intro {
  color: #c6c4be;
}

.page-process .page-hero h1 span {
  color: var(--sky);
}

.page-process .page-hero-visual img {
  filter: saturate(0.8) contrast(1.05);
}

.page-about .page-hero {
  grid-template-columns: minmax(430px, 0.82fr) minmax(560px, 1.18fr);
}

.page-about .page-hero-visual {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--paper);
}

.page-about .page-hero-visual img {
  height: 100%;
  object-fit: cover;
}

.page-about .page-hero-visual img:last-of-type {
  object-position: 54% center;
}

.page-team .page-hero-visual img {
  object-position: center;
}

.page-careers .page-hero {
  grid-template-columns: minmax(520px, 1.08fr) minmax(430px, 0.92fr);
  background: var(--red);
  color: var(--white);
}

.page-careers .page-hero h1 span {
  color: var(--ink);
}

.page-careers .page-intro {
  color: #fff2ef;
}

.page-careers .page-hero .eyebrow,
.page-careers .breadcrumb {
  color: var(--white);
}

.page-careers .page-hero .text-link:hover {
  color: var(--ink);
}

.page-faq .page-hero {
  grid-template-columns: minmax(420px, 0.8fr) minmax(560px, 1.2fr);
  min-height: 500px;
}

.faq-hero-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: stretch;
  min-height: 100%;
  background: var(--blue);
  color: var(--white);
}

.faq-hero-board div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.faq-hero-board div:last-child {
  border-right: 0;
}

.faq-hero-board span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.faq-hero-board strong {
  font-size: clamp(4rem, 8vw, 8rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.faq-hero-board strong .material-symbols-outlined {
  font-size: inherit;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
}

.fact-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--max));
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.fact-rail article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 176px;
  padding: 1.5rem var(--gutter);
  border-right: 1px solid var(--line);
}

.fact-rail article:last-child {
  border-right: 0;
}

.fact-rail span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
}

.fact-rail strong {
  display: block;
  max-width: 18ch;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.25;
}

.editorial-section {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(5rem, 8vw, 8rem) var(--gutter);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.editorial-grid > header h2 {
  position: sticky;
  top: 7rem;
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-stretch: condensed;
  font-weight: 830;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.editorial-grid > header h2 span {
  color: var(--red);
}

.editorial-copy {
  padding-top: 0.15rem;
}

.editorial-copy > p:first-child {
  max-width: 27ch;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.editorial-copy p:not(:first-child) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.index-item {
  display: grid;
  grid-template-columns: 4rem minmax(220px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.6rem, 2.8vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.index-item > span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.index-item:nth-child(even) > span {
  color: var(--blue);
}

.index-item h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-stretch: condensed;
  letter-spacing: -0.045em;
  line-height: 1;
}

.index-item p {
  max-width: 55ch;
  margin-bottom: 0;
  color: var(--muted);
}

.page-capabilities .editorial-section .index-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.page-capabilities .editorial-section .index-item {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(2rem, 3vw, 3rem);
  border: 0;
  background: var(--paper);
}

.page-capabilities .editorial-section .index-item:last-child {
  grid-column: 1 / -1;
  min-height: 220px;
}

.page-capabilities .editorial-section .index-item h3 {
  max-width: 14ch;
  margin-top: auto;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.page-capabilities .editorial-section .index-item p {
  max-width: 46ch;
}

.page-about .editorial-section:last-of-type .index-list,
.page-team .editorial-section .index-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.page-about .editorial-section:last-of-type .index-item,
.page-team .editorial-section .index-item {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  gap: 1rem;
  padding: 2.25rem;
  border: 0;
  background: var(--paper);
}

.page-about .editorial-section:last-of-type .index-item h3,
.page-team .editorial-section .index-item h3 {
  margin-top: auto;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.photo-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: min(100%, var(--max));
  min-height: 650px;
  margin-inline: auto;
  border-block: 1px solid var(--line);
}

.photo-story img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.photo-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.photo-story-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-stretch: condensed;
  font-weight: 830;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.photo-story-copy h2 span {
  color: var(--blue);
}

.photo-story-copy p:last-child {
  max-width: 44ch;
  color: var(--muted);
}

.dark-section {
  padding: clamp(5rem, 8vw, 8rem) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: var(--ink);
  color: var(--white);
}

.dark-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.dark-grid h2 {
  position: sticky;
  top: 7rem;
  max-width: 8ch;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3.4rem, 5.7vw, 6rem);
  font-stretch: condensed;
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.dark-grid h2 span {
  color: var(--red);
}

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

.dark-list article {
  display: grid;
  grid-template-columns: 8rem minmax(180px, 0.85fr) minmax(250px, 1.15fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.dark-list span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.dark-list h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.1;
}

.dark-list p {
  margin: 0;
  color: #aaa8a2;
}

.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.role {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--paper);
}

.role span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.role h3 {
  max-width: 10ch;
  margin: 1rem 0 auto;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-stretch: condensed;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.role p {
  max-width: 37ch;
  color: var(--muted);
}

.role a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.role a:hover {
  background: var(--ink);
  color: var(--white);
}

.faq-section {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(5rem, 8vw, 8rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.faq-layout aside {
  align-self: start;
  position: sticky;
  top: 7rem;
  padding-top: 2rem;
}

.faq-layout aside h2 {
  max-width: 8ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  font-stretch: condensed;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 78px;
  cursor: pointer;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span:first-child {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.faq-list summary .material-symbols-outlined {
  transition: transform 180ms ease;
}

.faq-list details[open] summary .material-symbols-outlined {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 67ch;
  padding: 0 3rem 1.5rem;
  color: var(--muted);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(600px, 1.28fr);
  width: min(100%, var(--max));
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.contact-hero-intro {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(2.5rem, 6vw, 6rem) 4rem var(--gutter);
  background: var(--blue);
  color: var(--white);
}

.contact-hero-intro .breadcrumb,
.contact-hero-intro .eyebrow {
  color: var(--sky);
}

.contact-hero-intro h1 {
  max-width: 8ch;
  margin-bottom: 2rem;
  font-size: clamp(4.2rem, 6.2vw, 6.4rem);
  font-stretch: condensed;
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.contact-hero-intro h1 span {
  color: var(--white);
}

.contact-hero-intro > p:not(.breadcrumb):not(.eyebrow) {
  max-width: 35ch;
  color: #dce3ff;
  font-size: 1.08rem;
}

.contact-hero-form {
  padding: 3.25rem var(--gutter) 3.5rem clamp(3rem, 6vw, 6rem);
  background: var(--paper-clean);
}

.contact-hero-form > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ink);
}

.contact-hero-form h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
  font-stretch: condensed;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.contact-hero-form header span {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.contact-hero-form .brief-form {
  padding-top: 1.7rem;
}

.contact-hero-form .brief-form textarea {
  min-height: 86px;
}

.contact-email {
  display: inline-block;
  width: fit-content;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
}

.page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: var(--red);
  color: var(--white);
}

.page-cta h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-stretch: condensed;
  font-weight: 840;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

@media (max-width: 1080px) {
  .page-hero,
  .page-about .page-hero,
  .page-careers .page-hero,
  .page-faq .page-hero,
  .contact-hero {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero h1,
  .contact-hero-intro h1 {
    font-size: clamp(3.7rem, 7vw, 5.2rem);
  }

  .dark-list article {
    grid-template-columns: 6rem 1fr;
  }

  .dark-list article p {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .page-hero,
  .page-about .page-hero,
  .page-careers .page-hero,
  .page-faq .page-hero,
  .contact-hero,
  .editorial-grid,
  .dark-grid,
  .faq-layout,
  .photo-story {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-copy {
    min-height: 500px;
  }

  .page-hero-visual {
    min-height: 520px;
  }

  .page-about .page-hero-visual {
    min-height: 560px;
  }

  .editorial-grid > header h2,
  .dark-grid h2,
  .faq-layout aside {
    position: static;
  }

  .dark-grid {
    gap: 3rem;
  }

  .photo-story img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

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

  .role {
    min-height: 280px;
  }

  .contact-hero-intro {
    min-height: 500px;
  }

  .page-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-hero-copy {
    min-height: 0;
    padding-block: 3.5rem;
  }

  .page-hero h1,
  .contact-hero-intro h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .page-hero-visual {
    min-height: 390px;
  }

  .page-about .page-hero-visual {
    min-height: 450px;
    grid-template-columns: 1fr 0.75fr;
  }

  .visual-caption {
    flex-direction: column;
    gap: 0.3rem;
  }

  .fact-rail {
    grid-template-columns: 1fr;
  }

  .fact-rail article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .index-item {
    grid-template-columns: 2.5rem 1fr;
  }

  .index-item p {
    grid-column: 2;
  }

  .page-capabilities .editorial-section .index-list,
  .page-about .editorial-section:last-of-type .index-list,
  .page-team .editorial-section .index-list {
    grid-template-columns: 1fr;
  }

  .page-capabilities .editorial-section .index-item:last-child {
    grid-column: auto;
  }

  .page-capabilities .editorial-section .index-item,
  .page-about .editorial-section:last-of-type .index-item,
  .page-team .editorial-section .index-item {
    min-height: 230px;
  }

  .dark-list article {
    grid-template-columns: 1fr;
  }

  .dark-list article p {
    grid-column: 1;
  }

  .faq-hero-board div {
    padding: 1rem;
  }

  .faq-layout aside {
    padding-top: 0;
  }

  .faq-list summary {
    grid-template-columns: 2.2rem 1fr auto;
  }

  .faq-list details p {
    padding-left: 2.2rem;
  }

  .contact-hero-intro {
    min-height: 0;
    padding-block: 3.5rem;
  }

  .contact-hero-form {
    padding: 3rem var(--gutter);
  }

  .contact-hero-form > header {
    align-items: start;
  }

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

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }
}
