:root {
  --red: #e1251b;
  --red-dark: #b91811;
  --ink: #111111;
  --ink-soft: #202020;
  --paper: #f2f0eb;
  --paper-warm: #e9e5dc;
  --white: #ffffff;
  --grey: #797979;
  --line: rgba(17, 17, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 32px 90px rgba(10, 10, 10, 0.15);
  --shell: min(1440px, calc(100vw - 72px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

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

body.is-locked {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--red);
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

address {
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
}

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

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.contact-strip {
  position: relative;
  z-index: 52;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.contact-strip p {
  margin: 0;
}

.contact-strip__inner > div {
  display: flex;
  gap: 24px;
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transition: box-shadow 240ms ease, background 240ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 35px rgba(10, 10, 10, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 34px;
}

.site-logo {
  display: inline-flex;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 242px;
  min-width: 242px;
  color: var(--ink);
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 926.22 / 145.492;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 33px 0 31px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.desktop-nav > a::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-dropdown:hover > a::after,
.nav-dropdown > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-dropdown > a .icon {
  width: 13px;
}

.nav-dropdown__panel {
  position: absolute;
  z-index: 51;
  top: calc(100% - 4px);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 70px;
  width: var(--shell);
  max-height: calc(100vh - 140px);
  margin: auto;
  padding: 48px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 300ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line-light);
}

.nav-dropdown__intro > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-dropdown__intro strong {
  max-width: 300px;
  margin-top: 22px;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.nav-dropdown__intro a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
}

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

.nav-dropdown__links a {
  display: flex;
  align-items: center;
  min-height: 68px;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-light);
  transition: color 180ms ease, background 180ms ease;
}

.nav-dropdown__links a:hover {
  color: var(--white);
  background: var(--red);
}

.nav-dropdown__links span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.nav-dropdown__links a:hover span {
  color: var(--white);
}

.header-cta {
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 12px;
  padding: 0 25px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 46px;
  padding-inline: 19px;
  font-size: 12px;
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

.button--dark:hover {
  background: var(--red);
  border-color: var(--red);
}

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

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

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  border-color: var(--ink);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.text-link .icon,
.button .icon,
.service-card__content .icon,
.editorial-card .icon,
.footer-column .icon {
  transition: transform 240ms var(--ease);
}

.text-link:hover .icon,
.button:hover .icon,
.service-card a:hover .service-card__content .icon,
.editorial-card:hover .icon,
.footer-column a:hover .icon {
  transform: translateX(5px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  width: 100%;
  height: 100svh;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  overflow: auto;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  color: #9b9b9b;
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu__head button {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  place-items: center;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav > a,
.mobile-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu details[open] summary .icon {
  transform: rotate(180deg);
}

.mobile-menu details div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
}

.mobile-menu details div a {
  display: flex;
  flex-direction: column;
  min-height: 84px;
  padding: 16px;
  background: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu details div span {
  color: var(--red);
  font-size: 10px;
}

.mobile-menu__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.mobile-menu__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bcbcbc;
  font-size: 13px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--white);
}

.section-pad {
  padding-block: clamp(90px, 10vw, 160px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 94px);
}

.section-heading h2,
.heritage__copy h2,
.service-story h2,
.about-intro h2,
.document-header h1,
.empty-state h1,
.empty-state h2,
.contact-details h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.section-heading > p,
.section-heading > div:last-child > p {
  max-width: 450px;
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.section-heading > div:last-child .text-link {
  margin-top: 28px;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 122px);
  color: var(--white);
  background: var(--ink) var(--hero-image) center / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.82) 48%, rgba(6, 6, 6, 0.24) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.55), transparent 60%);
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 12vw;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 15vw 0 0 rgba(255, 255, 255, 0.08), -15vw 0 0 rgba(255, 255, 255, 0.08);
}

.home-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: calc(100svh - 122px);
  align-items: center;
  gap: 50px;
  padding-block: 80px 100px;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(74px, 10.2vw, 158px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

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

.home-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 44px 0 34px;
  color: #c8c8c8;
  font-size: clamp(17px, 1.45vw, 22px);
}

.home-hero__meta {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.home-hero__meta span {
  color: #b8b8b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero__meta strong {
  color: var(--red);
  font-size: 46px;
  line-height: 1;
  writing-mode: vertical-rl;
}

.home-hero__meta span:last-child {
  margin-top: auto;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  right: 36px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8b8b8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 44px;
  height: 1px;
  background: var(--red);
}

.competencies {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--white);
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.competency-card {
  position: relative;
  min-height: 440px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.competency-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.18;
  transform: scale(1.05);
  transition: filter 500ms ease, opacity 500ms ease, transform 700ms var(--ease);
}

.competency-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.85), transparent 68%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.competency-card > div {
  position: absolute;
  z-index: 2;
  inset: auto 24px 26px;
}

.competency-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.competency-card h3 {
  margin: 8px 0 0;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.competency-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1);
}

.competency-card:hover::after {
  opacity: 1;
}

.competency-card:hover h3 {
  color: var(--white);
}

.services-preview,
.offers-intro,
.project-gallery {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  grid-column: span 4;
  min-height: 500px;
  background: var(--ink);
  overflow: hidden;
}

.service-card--wide {
  grid-column: span 8;
}

.service-card a {
  position: relative;
  display: block;
  height: 100%;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.service-card__legacy-icon {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 92px;
  height: 92px;
  padding: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0.86;
  filter: grayscale(1);
  transition: opacity 250ms ease, transform 500ms var(--ease);
}

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.03) 68%);
}

.service-card__number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.service-card__content {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.service-card__content strong {
  max-width: 100%;
  font-size: clamp(27px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.service-card__content > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.service-card a:hover .service-card__image {
  transform: scale(1.055);
}

.service-card a:hover .service-card__legacy-icon {
  opacity: 1;
  transform: rotate(3deg) scale(1.04);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.heritage {
  color: var(--white);
  background: var(--ink);
}

.heritage__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.heritage__visual {
  position: relative;
  min-height: 680px;
  background: #222;
  overflow: hidden;
}

.heritage__visual::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 7px;
  height: 38%;
  content: "";
  background: var(--red);
}

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

.heritage__visual > span {
  position: absolute;
  right: -4px;
  bottom: 0;
  padding: 14px 22px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heritage__copy h2 {
  color: var(--white);
}

.heritage__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 38px 0 30px;
  color: #b8b8b8;
  font-size: clamp(17px, 1.5vw, 21px);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}

.partner-logos img {
  width: auto;
  max-width: 159px;
  max-height: 78px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.partner-logos img:last-child {
  box-sizing: content-box;
  padding: 12px 14px;
  background: var(--white);
}

.quick-links {
  background: var(--white);
}

.quick-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: clamp(30px, 5vw, 70px);
  overflow: hidden;
}

.quick-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.quick-card--download::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.05) 100%);
}

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

.quick-card > strong {
  margin-top: auto;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.quick-card > span:last-child {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.quick-card--contact {
  color: var(--white);
  background: var(--red);
}

.quick-card--contact::after {
  position: absolute;
  top: 55px;
  right: 55px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.05), 0 0 0 70px rgba(255, 255, 255, 0.03);
}

.quick-card:hover img {
  transform: scale(1.04);
}

.page-hero {
  position: relative;
  min-height: clamp(620px, 72svh, 880px);
  color: var(--white);
  background: var(--ink) var(--hero-image) center / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.page-hero__scrim {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.66) 55%, rgba(7, 7, 7, 0.14));
}

.page-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: inherit;
  gap: 40px;
  padding-block: 100px 76px;
}

.page-hero__copy {
  width: 100%;
  min-width: 0;
  max-width: 1040px;
}

.page-hero h1 {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(66px, 9vw, 142px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.075em;
  hyphens: manual;
  overflow-wrap: normal;
}

.accent-dot {
  color: var(--red);
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 42px 0 0;
  color: #d0d0d0;
  font-size: clamp(17px, 1.5vw, 22px);
}

.page-hero__index {
  flex-shrink: 0;
  padding-left: 20px;
  color: #a8a8a8;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.extra-offers {
  color: var(--white);
  background: var(--ink);
}

.extra-offers__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 12px;
}

.editorial-card {
  position: relative;
  height: clamp(560px, 42vw, 700px);
  overflow: hidden;
  background: #090909;
}

.editorial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 900ms var(--ease);
}

.editorial-card--news img {
  top: 54px;
  right: 0;
  bottom: auto;
  left: 0;
  width: min(68%, 320px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.editorial-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.06) 70%);
}

.editorial-card > div {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 58px);
  left: clamp(28px, 4vw, 58px);
}

.editorial-card h2 {
  margin: 0 0 26px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.editorial-card > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.editorial-card:hover img {
  transform: scale(1.05);
}

.service-story {
  background: var(--white);
}

.service-story__grid,
.about-intro__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

.service-story h2,
.about-intro h2 {
  position: sticky;
  top: 170px;
}

.service-lead {
  margin: 0;
  font-size: clamp(27px, 3.1vw, 48px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.process-list {
  margin: 58px 0;
  border-top: 1px solid var(--line);
}

.process-list > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.process-list strong {
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  background: #d9d6cf;
  border: 0;
  overflow: hidden;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.gallery-item > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 300ms var(--ease);
  place-items: center;
}

.gallery-item:hover img {
  filter: brightness(0.82);
  transform: scale(1.045);
}

.gallery-item:hover > span {
  opacity: 1;
  transform: translateY(0);
}

.cta-band {
  color: var(--white);
  background: var(--red);
}

.cta-band .shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 520px;
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.cta-band .eyebrow {
  grid-column: 1 / -1;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.cta-band .button {
  position: relative;
  z-index: 2;
}

.cta-band .shell::after {
  position: absolute;
  top: -80px;
  right: 15%;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.035), 0 0 0 180px rgba(255, 255, 255, 0.025);
}

.about-intro {
  background: var(--white);
}

.about-intro__grid > div:last-child > p:not(.service-lead) {
  max-width: 690px;
  margin: 32px 0 0;
  color: #666;
  font-size: 18px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.fact-row > div {
  min-height: 150px;
  padding: 25px 20px 20px 0;
  border-right: 1px solid var(--line);
}

.fact-row strong {
  display: block;
  color: var(--red);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.fact-row span {
  display: block;
  max-width: 140px;
  margin-top: 13px;
  color: #626262;
  font-size: 12px;
}

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

.team-section--alternate {
  color: var(--white);
  background: var(--ink);
}

.team-section--alternate .section-heading h2 {
  color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 12px;
}

.team-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.person-card > div {
  position: relative;
  aspect-ratio: 0.82;
  margin-bottom: 20px;
  background: #d6d2c9;
  overflow: hidden;
}

.person-card > div::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.25), transparent 35%);
}

.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms var(--ease);
}

.person-card:hover img {
  transform: scale(1.035);
}

.person-card > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-card h3 {
  margin: 7px 0 0;
  font-size: clamp(24px, 2.6vw, 39px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.document-header {
  padding-block: clamp(90px, 9vw, 140px);
  background: var(--white);
}

.document-header .back-link {
  display: inline-block;
  margin-bottom: 80px;
  color: #676767;
  font-size: 13px;
}

.document-header h1 {
  max-width: 1100px;
}

.document-header > .shell > p:not(.eyebrow) {
  max-width: 650px;
  margin: 36px 0;
  color: #606060;
  font-size: 19px;
}

.document-viewer {
  background: #d8d4cc;
}

.document-stack {
  display: grid;
  gap: 36px;
  max-width: 1040px;
}

.document-page {
  margin: 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.16);
}

.document-page img {
  width: 100%;
}

.document-page figcaption {
  padding: 13px 18px;
  color: #6a6a6a;
  border-top: 1px solid var(--line);
  font-size: 11px;
  text-align: center;
}

.document-note {
  padding: 30px;
  color: #c4c4c4;
  background: var(--ink);
  text-align: center;
}

.document-note p {
  margin: 0;
}

.guidelines {
  background: var(--white);
}

.guideline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guideline-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guideline-grid article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.guideline-grid h3 {
  margin: 36px 0 14px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.guideline-grid p {
  margin: 0;
  color: #626262;
  font-size: 14px;
}

.download-section {
  background: var(--white);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.download-card {
  position: relative;
  min-height: 640px;
  padding: clamp(28px, 4vw, 60px);
  color: var(--ink);
  background: var(--paper-warm);
  overflow: hidden;
}

.download-card--dark {
  color: var(--white);
  background: var(--ink);
}

.download-card > span {
  position: absolute;
  top: 35px;
  right: 35px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.download-card > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.download-card > div > .icon {
  width: 64px;
  height: 64px;
  margin-bottom: auto;
  color: var(--red);
}

.download-card h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.download-card p:not(.eyebrow) {
  max-width: 480px;
  margin: 25px 0 30px;
  color: #686868;
}

.download-card--dark p:not(.eyebrow) {
  color: #b6b6b6;
}

.download-card strong {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 140px);
}

.contact-details h2 {
  margin-bottom: 58px;
}

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

.contact-detail-list > a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-list > a > .icon {
  width: 27px;
  height: 27px;
  color: var(--red);
}

.contact-detail-list span {
  display: flex;
  flex-direction: column;
}

.contact-detail-list small {
  margin-bottom: 3px;
  color: #757575;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-list strong {
  font-size: 18px;
  line-height: 1.35;
}

.opening-hours {
  margin-top: 62px;
}

.opening-hours > div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.opening-hours > p:last-child {
  color: #737373;
  font-size: 13px;
}

.contact-form {
  padding: clamp(28px, 5vw, 68px);
  color: var(--white);
  background: var(--ink);
}

.form-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 18px;
  color: #a6a6a6;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-head strong {
  color: var(--red);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  position: relative;
  margin-bottom: 30px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: #b1b1b1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 0 15px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  transition: border-color 200ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #696969;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--red);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #ff746d;
  font-size: 11px;
}

.field.is-invalid .field-error {
  display: block;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  color: #a5a5a5;
  font-size: 12px;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.privacy-check.is-invalid {
  color: #ff746d;
}

.button--submit {
  width: 100%;
  background: var(--red);
  border-color: var(--red);
}

.form-hint,
.form-success {
  margin: 15px 0 0;
  color: #8b8b8b;
  font-size: 11px;
  text-align: center;
}

.form-success {
  color: #8fd79a;
}

.empty-state {
  display: flex;
  min-height: 700px;
  padding-block: clamp(100px, 13vw, 190px);
  background: var(--white);
}

.empty-state .shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.empty-state .shell > span {
  margin-bottom: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.empty-state h1,
.empty-state h2 {
  max-width: 1000px;
}

.empty-state p {
  max-width: 680px;
  margin: 36px 0;
  color: #626262;
  font-size: 18px;
}

.empty-state--blank,
.empty-state--404 {
  color: var(--white);
  background: var(--ink);
}

.empty-state--blank p,
.empty-state--404 p {
  color: #aaa;
}

.site-footer {
  color: var(--white);
  background: #0b0b0b;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
  gap: clamp(35px, 6vw, 90px);
  padding-block: clamp(80px, 9vw, 130px);
}

.brand--footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 380px;
  margin: 34px 0;
  color: #919191;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  transition: background 200ms ease, border-color 200ms ease;
  place-items: center;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column--offset {
  padding-top: 44px;
}

.footer-column > a,
.footer-contact > a:not(.text-link) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-column > a:hover,
.footer-contact > a:hover {
  color: var(--white);
}

.footer-contact address {
  margin-bottom: 10px;
  color: #aaa;
  font-size: 13px;
}

.footer-contact .text-link {
  margin-top: 18px;
  color: var(--white);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding-block: 24px;
  color: #767676;
  border-top: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__bottom > div {
  display: flex;
  gap: 20px;
}

.site-footer__bottom > a {
  justify-self: end;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-columns: 74px 1fr 74px;
  align-items: center;
  padding: 30px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-height: calc(100vh - 60px);
  margin: 0;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 115px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 14px;
  color: #aaa;
  font-size: 12px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  place-items: center;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
}

.lightbox__next {
  justify-self: end;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 850ms var(--ease);
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1180px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .competency-grid {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .competency-card {
    min-height: 390px;
    scroll-snap-align: start;
  }

  .service-card,
  .service-card--wide {
    grid-column: span 6;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 0.7fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
    padding-top: 20px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .contact-strip p {
    display: none;
  }

  .contact-strip__inner {
    justify-content: flex-end;
  }

  .contact-strip__inner > div a:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .brand {
    width: 205px;
    min-width: 0;
  }

  .home-hero,
  .home-hero__inner {
    min-height: calc(100svh - 110px);
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    padding-block: 70px 85px;
  }

  .home-hero h1 {
    font-size: clamp(58px, 17.5vw, 116px);
    line-height: 0.82;
  }

  .home-hero__meta {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

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

  .service-card,
  .service-card--wide {
    grid-column: span 12;
    min-height: 470px;
  }

  .heritage__grid,
  .quick-links__grid,
  .extra-offers__grid,
  .service-story__grid,
  .about-intro__grid,
  .download-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .heritage__visual {
    min-height: 540px;
  }

  .quick-card,
  .editorial-card,
  .download-card {
    min-height: 520px;
  }

  .editorial-card {
    height: 560px;
  }

  .editorial-card--news img {
    top: 42px;
    width: min(58%, 280px);
  }

  .page-hero__inner {
    padding-block: 80px 56px;
  }

  .page-hero h1 {
    font-size: clamp(58px, 13.5vw, 105px);
  }

  .service-story h2,
  .about-intro h2 {
    position: static;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band .shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

  .team-grid,
  .team-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guideline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .site-footer__bottom > div {
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .contact-strip__inner > div {
    gap: 10px;
  }

  .brand {
    width: 188px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    padding: 20px;
  }

  .mobile-menu details div {
    grid-template-columns: 1fr;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.68));
  }

  .home-hero h1 {
    font-size: clamp(50px, 17vw, 84px);
  }

  .home-hero__copy > p:not(.eyebrow) {
    margin-top: 32px;
  }

  .button-row .button {
    width: 100%;
  }

  .section-heading h2,
  .heritage__copy h2,
  .service-story h2,
  .about-intro h2,
  .document-header h1,
  .empty-state h1,
  .empty-state h2,
  .contact-details h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .service-card,
  .service-card--wide {
    min-height: 420px;
  }

  .service-card__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card__content strong {
    max-width: 100%;
  }

  .heritage__visual {
    min-height: 430px;
  }

  .partner-logos {
    flex-wrap: wrap;
  }

  .quick-card,
  .editorial-card,
  .download-card {
    min-height: 460px;
  }

  .editorial-card {
    height: 460px;
  }

  .editorial-card--news img {
    top: 36px;
    width: min(58%, 240px);
  }

  .page-hero {
    min-height: 610px;
  }

  .page-hero h1 {
    font-size: clamp(43px, 12vw, 66px);
    line-height: 0.88;
  }

  .page-hero__copy > p:not(.eyebrow) {
    margin-top: 28px;
    font-size: 16px;
  }

  .page-hero__index {
    display: none;
  }

  .service-lead {
    font-size: 27px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item > span {
    display: none;
  }

  .cta-band h2 {
    font-size: clamp(58px, 17vw, 90px);
  }

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

  .fact-row > div {
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-grid,
  .team-grid--four {
    grid-template-columns: 1fr;
  }

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

  .guideline-grid article {
    min-height: 0;
  }

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

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column--offset {
    padding-top: 44px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom > a {
    justify-self: start;
  }

  .lightbox {
    grid-template-columns: 48px 1fr 48px;
    padding: 14px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .contact-strip,
  .site-header,
  .site-footer,
  .document-header .button-row,
  .back-link,
  .lightbox {
    display: none !important;
  }

  body,
  .document-viewer {
    background: white;
  }

  .document-header {
    padding: 20px 0;
  }

  .document-page {
    box-shadow: none;
    break-after: page;
  }

  .document-page figcaption {
    display: none;
  }
}

/* Combined company website ------------------------------------------------ */

.theme-group {
  --red: #d52b34;
  --red-dark: #a91923;
}

.theme-cc {
  --red: #643a97;
  --red-dark: #3d205f;
  --paper: #f5f1f8;
  --paper-warm: #ece4f2;
}

.network-strip {
  position: relative;
  z-index: 54;
  color: #fff;
  background: #111;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.network-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
}

.network-strip p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.network-strip nav {
  display: flex;
  align-items: stretch;
  min-height: 35px;
}

.network-strip a {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-inline-start: 1px solid rgba(255,255,255,.13);
}

.network-strip a:last-child {
  border-inline-end: 1px solid rgba(255,255,255,.13);
}

.network-strip a[aria-current="page"] {
  background: var(--red);
}

.brand--group {
  width: 294px;
  min-width: 294px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.brand__pair {
  display: flex;
  align-items: center;
  width: 100%;
  height: 34px;
  gap: 13px;
}

.brand__pair .brand__logo {
  width: 178px;
}

.brand__pair i {
  width: 1px;
  height: 25px;
  background: rgba(17,17,17,.2);
}

.brand__creacenter {
  display: block;
  width: 83px;
  height: 42px;
  object-fit: contain;
}

.brand--group small {
  padding-left: 1px;
  color: #777;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.brand--cc {
  width: 142px;
  min-width: 142px;
  height: 62px;
  overflow: hidden;
}

.brand--cc .brand__creacenter {
  width: 142px;
  height: 72px;
  transform: translateY(-5px);
}

.brand--footer.brand--group {
  width: 270px;
  min-width: 0;
  color: #fff;
}

.brand--footer .brand__pair i {
  background: rgba(255,255,255,.25);
}

.brand--footer.brand--group small {
  color: rgba(255,255,255,.54);
}

.button--purple {
  color: #fff;
  background: #643a97;
}

.button--purple:hover {
  background: #3d205f;
  transform: translateY(-2px);
}

.alliance-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 123px));
  overflow: hidden;
  color: #fff;
  background: #111;
}

.alliance-hero__media {
  position: absolute;
  inset-block: 0;
  width: 55%;
}

.alliance-hero__media--wt {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.alliance-hero__media--cc {
  right: 0;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.alliance-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alliance-hero__media--cc img {
  object-position: 64% center;
}

.alliance-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 44%, rgba(0,0,0,.18) 68%, rgba(0,0,0,.5) 100%);
}

.alliance-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(820px, calc(100vh - 123px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 110px 150px;
}

.alliance-hero h1 {
  max-width: 900px;
  margin: 20px 0 26px;
  font-size: clamp(4.2rem, 8.7vw, 9rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .82;
}

.alliance-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.9);
}

.alliance-hero__inner > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.alliance-hero__labels {
  position: absolute;
  z-index: 3;
  right: max(36px, calc((100vw - 1440px) / 2));
  bottom: 34px;
  display: flex;
  width: min(680px, calc(100vw - 72px));
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(13px);
}

.alliance-hero__labels a {
  display: flex;
  width: 50%;
  flex-direction: column;
  padding: 18px 22px;
  background: rgba(15,15,15,.55);
  transition: background 220ms ease;
}

.alliance-hero__labels a + a {
  border-left: 1px solid rgba(255,255,255,.25);
}

.alliance-hero__labels a:first-child:hover {
  background: rgba(225,37,27,.84);
}

.alliance-hero__labels a:last-child:hover {
  background: rgba(100,58,151,.88);
}

.alliance-hero__labels span {
  color: rgba(255,255,255,.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.alliance-hero__labels strong {
  margin-top: 4px;
  font-size: 15px;
}

.alliance-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.alliance-intro h2,
.company-profile h2,
.location-card h2,
.production-layout h2 {
  margin: 16px 0 0;
  font-size: clamp(3rem, 5.7vw, 6.4rem);
  letter-spacing: -.065em;
  line-height: .9;
}

.company-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-panel {
  position: relative;
  display: block;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
}

.company-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.company-panel:hover > img {
  transform: scale(1.045);
}

.company-panel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.05) 68%);
}

.company-panel--wt::after,
.company-panel--cc::after {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 7px;
  content: "";
}

.company-panel--wt::after { background: #e1251b; }
.company-panel--cc::after { background: #643a97; }

.company-panel > div {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 90px);
  bottom: clamp(35px, 6vw, 90px);
  left: clamp(28px, 5vw, 90px);
}

.company-panel h2 {
  margin: 16px 0 18px;
  font-size: clamp(3rem, 5vw, 6.4rem);
  letter-spacing: -.07em;
  line-height: .86;
}

.company-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255,255,255,.76);
}

.company-panel strong,
.combined-service-card strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
}

.combined-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.combined-service-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.combined-service-card a {
  display: block;
  height: 100%;
}

.combined-service-card__media {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.combined-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.combined-service-card:hover img {
  transform: scale(1.05);
}

.combined-service-card__media span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: #111;
  font-size: 11px;
  font-weight: 800;
}

.combined-service-card > a > div:last-child {
  padding: 27px 28px 30px;
}

.combined-service-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.combined-service-card p {
  margin: 15px 0 0;
  color: var(--grey);
  font-size: 14px;
}

.combined-service-card strong {
  color: var(--red);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.location-band {
  padding: clamp(85px, 10vw, 150px) 0;
  color: #fff;
  background: linear-gradient(110deg, #171717 0 54%, #3d205f 54% 100%);
}

.location-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 100px;
  align-items: center;
}

.location-band h2 {
  margin: 16px 0 25px;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  letter-spacing: -.065em;
  line-height: .9;
}

.location-band__grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.67);
}

.location-band__numbers {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.14);
}

.location-band__numbers > div {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(0,0,0,.24);
}

.location-band__numbers strong {
  min-width: 90px;
  color: #fff;
  font-size: 2.7rem;
  letter-spacing: -.06em;
}

.location-band__numbers span {
  color: rgba(255,255,255,.68);
}

.cc-offer-strip,
.team-directory--cc,
.machine-section {
  background: #eee7f4;
}

.cc-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cc-mini-grid button {
  position: relative;
  height: 270px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #201329;
  border: 0;
  text-align: left;
}

.cc-mini-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: transform 600ms var(--ease);
}

.cc-mini-grid button:hover img {
  transform: scale(1.05);
}

.cc-mini-grid span,
.cc-mini-grid strong {
  position: absolute;
  z-index: 1;
  left: 21px;
}

.cc-mini-grid span {
  top: 18px;
  font-size: 11px;
  font-weight: 800;
}

.cc-mini-grid strong {
  right: 21px;
  bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.05;
}

.company-profiles {
  display: grid;
  gap: 35px;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  min-height: 520px;
  background: #fff;
  border: 1px solid var(--line);
}

.company-profile__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 50px;
}

.company-profile__brand > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.company-profile > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(45px, 6vw, 95px);
  border-left: 1px solid var(--line);
}

.company-profile h2 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
}

.company-profile ul {
  margin: 12px 0 30px;
  padding-left: 19px;
  color: var(--grey);
}

.company-profile--wt .company-profile__brand {
  border-top: 7px solid #e1251b;
}

.company-profile--cc .company-profile__brand {
  background: #f5f1f8;
  border-top: 7px solid #643a97;
}

.relationship-note,
.partner-team-strip {
  padding: clamp(75px, 9vw, 130px) 0;
  color: #fff;
  background: #171717;
}

.relationship-note h2 {
  max-width: 1000px;
  margin: 20px 0;
  font-size: clamp(2.7rem, 5.2vw, 5.7rem);
  letter-spacing: -.06em;
  line-height: .92;
}

.relationship-note p:last-child {
  max-width: 760px;
  color: rgba(255,255,255,.67);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.directory-card {
  padding-bottom: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.directory-card > div {
  height: 430px;
  margin-bottom: 25px;
  overflow: hidden;
  background: #ddd;
}

.directory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 17%;
  filter: grayscale(1);
  transition: filter 350ms ease, transform 700ms var(--ease);
}

.directory-card:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.directory-card > :not(div) {
  margin-right: 25px;
  margin-left: 25px;
}

.directory-card h3 {
  margin-top: 9px;
  margin-bottom: 7px;
  font-size: 1.8rem;
  letter-spacing: -.04em;
}

.directory-card > p:not(.eyebrow) {
  min-height: 50px;
  color: var(--grey);
  font-size: 14px;
}

.directory-card > a {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.location-card {
  position: relative;
  padding: clamp(40px, 6vw, 85px);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.location-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  content: "";
  background: #e1251b;
}

.location-card--cc::before {
  background: #643a97;
}

.location-card h2 {
  min-height: 2em;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
}

.location-card address {
  margin: 32px 0;
  font-size: 1.25rem;
}

.location-card > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 27px;
}

.location-card > div a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.recipient-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.recipient-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 750;
}

.recipient-option {
  position: relative;
  display: block;
}

.recipient-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.recipient-option > span {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  padding: 17px 18px 17px 22px;
  background: #fff;
  border: 2px solid var(--line);
  cursor: pointer;
}

.recipient-option > span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  content: "";
  background: #e1251b;
}

.recipient-option--cc > span::before {
  background: #643a97;
}

.recipient-option input:checked + span {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

.recipient-option input:focus-visible + span {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.recipient-option small {
  margin-top: 3px;
  color: var(--grey);
}

.combined-contact-form .form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.combined-contact-form .form-status.is-visible {
  display: block;
}

.combined-contact-form .form-status.is-success {
  color: #155a38;
  background: #edf8f2;
  border-color: #b8ddc8;
}

.combined-contact-form .form-status.is-error {
  color: #83202a;
  background: #fff0f2;
  border-color: #e9bec3;
}

.combined-contact-form .form-status a {
  font-weight: 800;
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cc-hero {
  padding: clamp(75px, 9vw, 145px) 0;
  overflow: hidden;
  background: radial-gradient(circle at 82% 18%, #e7daf0 0, transparent 35%), #f7f4f9;
}

.cc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
}

.cc-hero h1 {
  margin: 18px 0 27px;
  font-size: clamp(4.2rem, 7.6vw, 8.4rem);
  letter-spacing: -.075em;
  line-height: .84;
}

.cc-hero h1 span {
  color: #643a97;
}

.cc-hero__meta {
  display: flex;
  gap: 31px;
  margin: 35px 0 0;
  padding: 0;
  color: #643a97;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  list-style: none;
  text-transform: uppercase;
}

.cc-hero__visual {
  position: relative;
  height: 660px;
}

.cc-hero__visual > img:first-child {
  width: 86%;
  height: 84%;
  margin-left: auto;
  object-fit: cover;
}

.cc-hero__visual > img:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 47%;
  height: 36%;
  object-fit: cover;
  border: 9px solid #f7f4f9;
}

.cc-hero__visual > span {
  position: absolute;
  top: 32px;
  left: 4px;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  color: #fff;
  background: #643a97;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.principle-stack {
  display: grid;
}

.principle-stack article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.principle-stack article:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-stack article > span {
  color: #643a97;
  font-size: 11px;
  font-weight: 800;
}

.principle-stack h3 {
  margin: 0 0 7px;
  font-size: 1.55rem;
}

.principle-stack p {
  margin: 0;
  color: var(--grey);
}

.cc-services {
  background: #ece5f1;
}

.cc-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cc-service-card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(61,32,95,.14);
}

.cc-service-card > button {
  position: relative;
  width: 100%;
  height: 285px;
  padding: 0;
  overflow: hidden;
  background: #22152d;
  border: 0;
}

.cc-service-card > button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.cc-service-card:hover > button img {
  transform: scale(1.045);
}

.cc-service-card > button span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(36,18,47,.88);
}

.cc-service-card > div {
  padding: 26px 27px 30px;
}

.cc-service-card small {
  color: #643a97;
  font-size: 10px;
  font-weight: 800;
}

.cc-service-card h3 {
  min-height: 2.05em;
  margin: 10px 0 13px;
  font-size: 1.75rem;
  letter-spacing: -.04em;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.cc-service-card p {
  margin: 0;
  color: var(--grey);
  font-size: 14px;
}

.cc-workflow {
  padding: clamp(80px, 10vw, 145px) 0;
  color: #fff;
  background: #3d205f;
}

.cc-workflow .section-heading h2 {
  color: #fff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: rgba(255,255,255,.17);
}

.workflow-grid article {
  min-height: 270px;
  padding: 34px;
  background: #47276d;
}

.workflow-grid span {
  color: #cbb7df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workflow-grid h3 {
  margin: 43px 0 13px;
  font-size: 1.7rem;
  line-height: 1.05;
}

.workflow-grid p {
  color: rgba(255,255,255,.66);
}

.jobs-combined {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  color: #fff;
  background: #24122f;
}

.jobs-combined > button {
  min-height: 450px;
  padding: 0;
  overflow: hidden;
  background: #111;
  border: 0;
}

.jobs-combined > button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jobs-combined > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(45px, 6vw, 95px);
}

.jobs-combined h2 {
  margin: 16px 0;
  font-size: clamp(3rem, 5vw, 5.7rem);
  letter-spacing: -.065em;
  line-height: .9;
}

.jobs-combined > div > p:not(.eyebrow) {
  color: rgba(255,255,255,.7);
}

.partner-team-strip > .shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.partner-team-strip h2 {
  margin: 15px 0;
  font-size: clamp(3rem, 5vw, 5.6rem);
  letter-spacing: -.06em;
  line-height: .9;
}

.partner-team-strip p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.65);
}

.production-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 9vw, 145px);
}

.format-list {
  background: #fff;
  border: 1px solid var(--line);
}

.format-list h3 {
  margin: 0;
  padding: 28px 30px;
  color: #fff;
  background: #3d205f;
  font-size: 1.45rem;
}

.format-list > div {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  gap: 25px;
  padding: 23px 30px;
  border-bottom: 1px solid var(--line);
}

.format-list > div:last-child {
  border-bottom: 0;
}

.format-list span {
  color: var(--grey);
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

.machine-grid article {
  min-height: 430px;
  padding: 38px;
  background: #fff;
  border-top: 6px solid #643a97;
}

.machine-grid article > span {
  color: #643a97;
  font-size: 11px;
  font-weight: 800;
}

.machine-grid h2 {
  margin: 85px 0 20px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -.05em;
  line-height: .95;
}

.machine-grid p {
  color: var(--grey);
}

.cta-band--purple {
  background: #3d205f;
}

.site-footer__top--combined {
  grid-template-columns: minmax(240px, 1.1fr) minmax(200px, .85fr) minmax(200px, .85fr) minmax(180px, .7fr);
}

.footer-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-company h2 {
  min-height: 2.2em;
  margin: 5px 0 16px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.footer-company address {
  margin-bottom: 11px;
  color: rgba(255,255,255,.58);
}

.footer-company > a:not(.text-link) {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.footer-company .text-link {
  margin-top: 13px;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: start;
  padding: 40px;
  background: var(--paper);
}

.redirect-page h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -.07em;
  line-height: .9;
}

.redirect-page p {
  margin: 25px 0;
  color: var(--grey);
}

@media (max-width: 1180px) {
  .brand--group { width: 245px; min-width: 245px; }
  .brand__pair .brand__logo { width: 144px; }
  .brand__pair { gap: 9px; }
  .brand__creacenter { width: 73px; }
  .site-header__inner { gap: 20px; }
  .combined-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-card > div { height: 350px; }
  .cc-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__top--combined { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .network-strip__inner { width: 100%; }
  .network-strip p { display: none; }
  .network-strip nav { width: 100%; }
  .network-strip a { flex: 1; justify-content: center; padding: 0 7px; font-size: 8px; text-align: center; }
  .brand--group { width: 220px; min-width: 220px; }
  .alliance-hero { min-height: 760px; }
  .alliance-hero__inner { min-height: 760px; padding-bottom: 190px; }
  .alliance-hero__media--wt { width: 68%; }
  .alliance-hero__media--cc { width: 58%; }
  .alliance-hero h1 { font-size: clamp(4rem, 13vw, 7rem); }
  .alliance-hero__labels { right: 24px; left: 24px; width: auto; }
  .alliance-intro__grid,
  .location-band__grid,
  .company-profile,
  .production-layout,
  .cc-hero__grid { grid-template-columns: 1fr; }
  .company-split { grid-template-columns: 1fr; }
  .company-panel { min-height: 600px; }
  .location-band { background: linear-gradient(180deg, #171717 0 60%, #3d205f 60% 100%); }
  .location-band__grid { gap: 70px; }
  .company-profile > div:last-child { border-top: 1px solid var(--line); border-left: 0; }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-cards { grid-template-columns: 1fr; }
  .cc-hero__grid { gap: 65px; }
  .cc-hero__visual { height: 560px; }
  .workflow-grid,
  .machine-grid { grid-template-columns: 1fr; }
  .machine-grid article { min-height: 310px; }
  .machine-grid h2 { margin-top: 45px; }
  .jobs-combined { grid-template-columns: 1fr; }
  .partner-team-strip > .shell { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand--group { width: 184px; min-width: 184px; }
  .brand__pair { height: 28px; gap: 7px; }
  .brand__pair .brand__logo { width: 118px; }
  .brand__creacenter { width: 53px; height: 34px; }
  .brand--group small { display: none; }
  .brand--cc { width: 105px; min-width: 105px; }
  .brand--cc .brand__creacenter { width: 105px; }
  .alliance-hero,
  .alliance-hero__inner { min-height: 710px; }
  .alliance-hero__inner { padding-top: 75px; padding-bottom: 205px; }
  .alliance-hero h1 { font-size: clamp(3.3rem, 17vw, 5.2rem); }
  .alliance-hero__media--wt { width: 100%; opacity: .72; clip-path: none; }
  .alliance-hero__media--cc { width: 100%; opacity: .42; clip-path: polygon(45% 0, 100% 0, 100% 100%, 30% 100%); }
  .alliance-hero__labels { right: 16px; bottom: 18px; left: 16px; flex-direction: column; }
  .alliance-hero__labels a { width: 100%; padding: 13px 16px; }
  .alliance-hero__labels a + a { border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }
  .company-panel { min-height: 530px; }
  .combined-service-grid,
  .cc-mini-grid,
  .directory-grid,
  .cc-service-grid { grid-template-columns: 1fr; }
  .combined-service-card__media { height: 260px; }
  .company-profile__brand { padding: 40px 25px; }
  .company-profile > div:last-child { padding: 38px 25px; }
  .directory-card > div { height: 410px; }
  .recipient-choice { grid-template-columns: 1fr; }
  .cc-hero h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .cc-hero__visual { height: 420px; }
  .cc-hero__visual > span { width: 82px; height: 82px; font-size: 9px; }
  .cc-service-card > button { height: 255px; }
  .jobs-combined > button { min-height: 300px; }
  .format-list > div { grid-template-columns: 1fr; gap: 6px; }
  .site-footer__top--combined { grid-template-columns: 1fr; }
}

/* Creacenter visual refinement ------------------------------------------ */

.network-label-short {
  display: none;
}

.network-strip p .network-job {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: rgba(255,255,255,.88);
  border: 0;
}

.network-job > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #bca5d4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(188,165,212,.14);
}

.recipient-option > span {
  color: #1d1922;
  border-radius: 14px;
}

.back-to-top {
  position: fixed;
  z-index: 44;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #fff;
  background: #171717;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 220ms var(--ease), background 180ms ease;
}

.back-to-top .icon {
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red);
}

.theme-cc {
  --red: #643a97;
  --red-dark: #3d205f;
  --ink: #1d1922;
  --ink-soft: #2d2731;
  --paper: #fff;
  --paper-warm: #faf8fc;
  --grey: #6e6873;
  --line: #e6dfeb;
  --shadow: 0 24px 65px rgba(49,30,65,.13);
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

.theme-cc h1,
.theme-cc h2,
.theme-cc h3 {
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.theme-cc .site-header {
  border-bottom-color: rgba(61,32,95,.1);
}

.theme-cc .brand--cc {
  height: auto;
  overflow: visible;
}

.theme-cc .brand--cc .brand__creacenter {
  height: 58px;
  transform: none;
}

.theme-cc .desktop-nav {
  gap: 5px;
}

.theme-cc .desktop-nav > a {
  padding: 11px 15px;
  color: #4f4855;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
  transition: color 180ms ease, background 180ms ease;
}

.theme-cc .desktop-nav > a::after {
  display: none;
}

.theme-cc .desktop-nav > a:hover,
.theme-cc .desktop-nav > a[aria-current="page"] {
  color: #643a97;
  background: #f3eef8;
}

.theme-cc .button,
.theme-cc .menu-toggle,
.theme-cc .mobile-menu__head button {
  border-radius: 999px;
}

.theme-cc .button {
  min-height: 54px;
  padding-inline: 25px;
  font-size: .82rem;
  letter-spacing: 0;
}

.theme-cc .button--small {
  min-height: 46px;
}

.theme-cc .button--outline {
  color: #3d205f;
  border-color: #bca5d4;
}

.theme-cc .button--outline:hover {
  color: #fff;
  background: #3d205f;
  border-color: #3d205f;
}

.theme-cc .service-lead {
  margin: 0;
  color: #6e6873;
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
}

.theme-cc .cc-hero {
  position: relative;
  padding: clamp(82px, 8.5vw, 138px) 0 clamp(95px, 10vw, 155px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(100,58,151,.045) 1px, transparent 1px),
    linear-gradient(rgba(100,58,151,.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, #eadff4 0, transparent 35%),
    #faf8fc;
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.theme-cc .cc-hero::before {
  position: absolute;
  right: -210px;
  bottom: -330px;
  width: 650px;
  height: 650px;
  content: "";
  border: 130px solid rgba(100,58,151,.055);
  border-radius: 50%;
}

.theme-cc .cc-hero__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0,.9fr) minmax(430px,.8fr);
  gap: clamp(56px, 8vw, 125px);
}

.theme-cc .cc-hero h1 {
  max-width: 720px;
  margin: 20px 0 28px;
  font-size: clamp(3.5rem, 5.8vw, 6.55rem);
  letter-spacing: -.052em;
  line-height: .98;
}

.theme-cc .cc-hero .service-lead {
  max-width: 650px;
}

.theme-cc .cc-hero .button-row {
  margin-top: 33px;
}

.theme-cc .cc-hero__meta {
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 42px;
  color: #554e5b;
  font-size: .78rem;
  letter-spacing: 0;
  text-transform: none;
}

.theme-cc .cc-hero__meta li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.theme-cc .cc-hero__meta li::before {
  width: 8px;
  height: 8px;
  content: "";
  background: #643a97;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #f3eef8;
}

.theme-cc .cc-hero__visual {
  min-height: 620px;
  height: auto;
}

.theme-cc .cc-hero__visual > img:first-child {
  position: absolute;
  z-index: 1;
  top: 4%;
  right: 0;
  bottom: auto;
  left: 12%;
  width: 88%;
  max-width: 88%;
  height: 85%;
  margin: 0;
  object-fit: cover;
  background: #24122f;
  border: 10px solid #fff;
  border-radius: 50% 50% 32px 32px;
  box-shadow: 0 28px 70px rgba(49,30,65,.2);
}

.theme-cc .cc-hero__visual > img:nth-child(2) {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 42%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(49,30,65,.2);
  transform: rotate(-4deg);
}

.theme-cc .cc-hero__visual > span {
  z-index: 3;
  top: 6%;
  right: -4%;
  left: auto;
  width: 132px;
  height: 132px;
  padding: 20px;
  border: 7px solid #fff;
  box-shadow: 0 12px 30px rgba(49,30,65,.17);
  font-size: .7rem;
  letter-spacing: .1em;
  line-height: 1.35;
  transform: rotate(8deg);
}

.theme-cc .alliance-intro__grid {
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
}

.theme-cc .alliance-intro h2,
.theme-cc .production-layout h2 {
  margin: 16px 0 28px;
  font-size: clamp(2.7rem, 4.6vw, 5.35rem);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.cc-stats {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
  margin-top: 48px;
}

.cc-stats > div {
  padding: 23px 18px;
  background: #f3eef8;
  border: 1px solid #e5daef;
  border-radius: 14px;
}

.cc-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #643a97;
  font-size: 1.25rem;
  line-height: 1.2;
}

.cc-stats span {
  color: #6e6873;
  font-size: .76rem;
  font-weight: 650;
}

.theme-cc .principle-stack {
  gap: 18px;
}

.theme-cc .principle-stack article,
.theme-cc .principle-stack article:last-child {
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e6dfeb;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(49,30,65,.08);
}

.theme-cc .principle-stack article > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: #f3eef8;
  border-radius: 50%;
  font-size: .78rem;
}

.theme-cc .principle-stack h3 {
  font-size: 1.35rem;
}

.theme-cc .principle-stack p {
  font-size: .94rem;
  line-height: 1.55;
}

.theme-cc .section-heading {
  grid-template-columns: minmax(0,1.28fr) minmax(280px,.72fr);
  gap: clamp(38px, 6vw, 80px);
  margin-bottom: clamp(46px, 6vw, 76px);
}

.theme-cc .section-heading h2 {
  font-size: clamp(2.55rem, 4vw, 4.25rem);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1.07;
}

.theme-cc .section-heading > p,
.theme-cc .section-heading > div:last-child > p {
  color: #6e6873;
  font-size: 1.02rem;
  line-height: 1.65;
}

.theme-cc .cc-services,
.theme-cc .team-directory--cc,
.theme-cc .machine-section {
  background: #faf8fc;
}

.theme-cc .cc-service-card {
  overflow: hidden;
  border-color: #e6dfeb;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(49,30,65,.05);
  transition: transform 280ms var(--ease), box-shadow 280ms ease, border-color 280ms ease;
}

.theme-cc .cc-service-card:hover {
  border-color: #d3c3df;
  box-shadow: 0 24px 58px rgba(49,30,65,.14);
  transform: translateY(-6px);
}

.theme-cc .cc-service-card > button {
  height: auto;
  aspect-ratio: 4 / 3;
  background: #f3eef8;
}

.theme-cc .cc-service-card > button span {
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.theme-cc .cc-service-card > div {
  padding: 29px 28px 32px;
}

.theme-cc .cc-service-card h3 {
  min-height: 2.12em;
  margin: 12px 0 14px;
  font-size: clamp(1.35rem, 1.7vw, 1.6rem);
  letter-spacing: -.025em;
  line-height: 1.06;
  hyphens: auto;
  overflow-wrap: break-word;
}

.theme-cc .cc-service-card p {
  color: #625c67;
  font-size: .94rem;
  line-height: 1.58;
}

.cc-mini-grid button {
  height: auto;
  aspect-ratio: 4 / 3;
}

.theme-cc .cc-workflow {
  background: linear-gradient(145deg,#3d205f,#2b173a);
}

.theme-cc .workflow-grid {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
}

.theme-cc .workflow-grid article {
  background: rgba(255,255,255,.055);
}

.theme-cc .workflow-grid p {
  color: rgba(255,255,255,.74);
}

.theme-cc .jobs-combined {
  overflow: hidden;
  background: #3d205f;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(49,30,65,.16);
}

.theme-cc .jobs-combined > button {
  min-height: 0;
  aspect-ratio: 3 / 2;
  background: #fff;
}

.theme-cc .jobs-combined > button img {
  object-fit: contain;
}

.theme-cc .jobs-combined h2 {
  font-size: clamp(2.8rem, 4.4vw, 5rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.cc-subhero {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 175px) 0;
  background:
    linear-gradient(90deg, rgba(100,58,151,.045) 1px, transparent 1px),
    linear-gradient(rgba(100,58,151,.045) 1px, transparent 1px),
    radial-gradient(circle at 85% 25%, #eadff4 0, transparent 33%),
    #faf8fc;
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.cc-subhero::after {
  position: absolute;
  right: -100px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  content: "";
  border: 130px solid rgba(100,58,151,.075);
  border-radius: 50%;
}

.cc-subhero__inner {
  position: relative;
  z-index: 1;
}

.cc-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #6e6873;
  font-size: .78rem;
  font-weight: 700;
}

.cc-breadcrumbs a {
  color: #643a97;
}

.theme-cc .cc-subhero h1 {
  max-width: 1050px;
  margin: 20px 0 28px;
  font-size: clamp(3.3rem, 7.1vw, 7.25rem);
  letter-spacing: -.052em;
  line-height: 1;
}

.cc-subhero__lead {
  max-width: 740px;
  margin: 0;
  color: #6e6873;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.theme-cc .directory-card {
  border-color: #e6dfeb;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(49,30,65,.05);
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.theme-cc .directory-card:hover {
  box-shadow: 0 24px 58px rgba(49,30,65,.14);
  transform: translateY(-6px);
}

.theme-cc .directory-card > div {
  height: auto;
  aspect-ratio: 3 / 3.5;
  background: #f3eef8;
}

.theme-cc .directory-card > p:not(.eyebrow) {
  color: #6e6873;
  font-size: .9rem;
}

.theme-cc .directory-card > a {
  font-size: .82rem;
  overflow-wrap: anywhere;
}

.theme-cc .partner-team-strip {
  background: linear-gradient(145deg,#3d205f,#2b173a);
}

.theme-cc .partner-team-strip h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.9rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.theme-cc .format-list {
  overflow: hidden;
  border-color: #e6dfeb;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(49,30,65,.1);
}

.theme-cc .format-list h3 {
  padding: 27px 30px;
  background: #3d205f;
}

.theme-cc .format-list > div {
  border-color: #e6dfeb;
}

.theme-cc .machine-grid article {
  min-height: 400px;
  border: 1px solid #e6dfeb;
  border-top: 6px solid #643a97;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(49,30,65,.05);
}

.theme-cc .machine-grid h2 {
  margin-top: 70px;
  font-size: clamp(1.75rem, 2.6vw, 2.8rem);
  letter-spacing: -.035em;
  line-height: 1.03;
  overflow-wrap: break-word;
}

.theme-cc .machine-grid p {
  color: #625c67;
  font-size: .94rem;
  line-height: 1.6;
}

.theme-cc .contact-section {
  background: #faf8fc;
}

.theme-cc .contact-layout {
  grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr);
  gap: clamp(52px, 8vw, 120px);
}

.theme-cc .contact-details h2 {
  margin-bottom: 42px;
  font-size: clamp(2.65rem, 4.5vw, 4.75rem);
  letter-spacing: -.045em;
  line-height: 1.03;
}

.theme-cc .contact-detail-list > a > .icon {
  color: #643a97;
}

.theme-cc .contact-detail-list small {
  color: #6e6873;
}

.theme-cc .contact-details > .text-link {
  margin-top: 30px;
}

.cc-contact-image {
  overflow: hidden;
  margin: 38px 0 0;
  background: #f3eef8;
  border-radius: 24px;
}

.cc-contact-image img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.theme-cc .combined-contact-form {
  padding: clamp(30px, 5vw, 62px);
  color: #1d1922;
  background: #fff;
  border: 1px solid #e6dfeb;
  border-radius: 36px;
  box-shadow: 0 26px 70px rgba(49,30,65,.14);
}

.theme-cc .combined-contact-form .form-head {
  margin-bottom: 38px;
  color: #6e6873;
  border-color: #e6dfeb;
}

.theme-cc .combined-contact-form .form-head strong {
  color: #643a97;
}

.theme-cc .combined-contact-form .field {
  margin-bottom: 22px;
}

.theme-cc .combined-contact-form .field label {
  margin-bottom: 8px;
  color: #2d2731;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.theme-cc .combined-contact-form .field input,
.theme-cc .combined-contact-form .field textarea {
  min-height: 54px;
  padding: 14px 16px;
  color: #1d1922;
  background: #faf8fc;
  border: 1px solid #dcd4e2;
  border-radius: 12px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.theme-cc .combined-contact-form .field textarea {
  min-height: 170px;
}

.theme-cc .combined-contact-form .field input:focus,
.theme-cc .combined-contact-form .field textarea:focus,
.theme-cc .combined-contact-form .field input:focus-visible,
.theme-cc .combined-contact-form .field textarea:focus-visible {
  background: #fff;
  border-color: #643a97;
  box-shadow: 0 0 0 4px rgba(100,58,151,.11);
  outline: 0;
}

.theme-cc .combined-contact-form .privacy-check {
  color: #6e6873;
  font-size: .78rem;
  line-height: 1.5;
}

.theme-cc .combined-contact-form .button--submit {
  color: #fff;
  background: #643a97;
  border-color: #643a97;
}

.theme-cc .combined-contact-form .button--submit:hover {
  background: #3d205f;
  border-color: #3d205f;
}

.theme-cc .combined-contact-form .form-hint {
  color: #6e6873;
}

.theme-cc .combined-contact-form .form-status {
  border-radius: 12px;
}

.brand--footer .brand__creacenter {
  padding: 4px 7px;
  background: #fff;
  border-radius: 8px;
}

.theme-cc .site-footer .eyebrow {
  color: #cbb7df;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .theme-cc .desktop-nav,
  .theme-cc .header-cta {
    display: flex;
  }

  .theme-cc .menu-toggle {
    display: none;
  }

  .theme-cc .site-header__inner {
    gap: 12px;
  }

  .theme-cc .brand--cc,
  .theme-cc .brand--cc .brand__creacenter {
    width: 122px;
    min-width: 122px;
  }

  .theme-cc .desktop-nav > a {
    padding-inline: 11px;
  }

  .theme-cc .header-cta {
    padding-inline: 17px;
  }
}

@media (max-width: 1100px) {
  .theme-cc .machine-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .theme-cc .machine-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

@media (max-width: 980px) {
  .cc-mini-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 900px) {
  .theme-cc .cc-hero__grid,
  .theme-cc .alliance-intro__grid,
  .theme-cc .section-heading,
  .theme-cc .production-layout,
  .theme-cc .contact-layout {
    grid-template-columns: 1fr;
  }

  .theme-cc .cc-hero__grid {
    gap: 68px;
  }

  .theme-cc .cc-hero__copy {
    max-width: 740px;
  }

  .theme-cc .cc-hero__visual {
    width: min(100%,670px);
    min-height: 600px;
    margin-inline: auto;
  }

  .theme-cc .section-heading {
    align-items: start;
    gap: 26px;
  }

  .theme-cc .section-heading > p {
    max-width: 680px;
  }

  .theme-cc .workflow-grid {
    grid-template-columns: 1fr;
  }

  .theme-cc .workflow-grid article {
    min-height: 230px;
  }

  .theme-cc .jobs-combined {
    grid-template-columns: 1fr;
  }

  .theme-cc .partner-team-strip > .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .network-strip a {
    font-size: 9.5px;
    line-height: 1.2;
  }
}

@media (max-width: 720px) {
  .theme-cc .cc-service-grid,
  .theme-cc .machine-grid {
    grid-template-columns: 1fr;
  }

  .theme-cc .machine-grid article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom > div {
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .network-label-full {
    display: none;
  }

  .network-label-short {
    display: inline;
  }

  .network-strip a {
    padding-inline: 12px;
    font-size: 10px;
  }

  .cc-mini-grid,
  .theme-cc .directory-grid,
  .cc-stats {
    grid-template-columns: 1fr;
  }

  .theme-cc .cc-hero {
    padding: 68px 0 86px;
  }

  .theme-cc .cc-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .theme-cc .cc-hero__meta {
    display: grid;
    gap: 14px;
  }

  .theme-cc .cc-hero__visual {
    min-height: 430px;
  }

  .theme-cc .cc-hero__visual > img:first-child {
    top: 2%;
    right: 0;
    bottom: auto;
    left: 5%;
    width: 95%;
    max-width: 95%;
    height: 86%;
    border-width: 7px;
  }

  .theme-cc .cc-hero__visual > img:nth-child(2) {
    width: 45%;
    border-width: 5px;
  }

  .theme-cc .cc-hero__visual > span {
    top: 2%;
    right: -2%;
    width: 92px;
    height: 92px;
    padding: 12px;
    border-width: 5px;
    font-size: .52rem;
  }

  .theme-cc .cc-stats {
    gap: 10px;
  }

  .theme-cc .principle-stack article,
  .theme-cc .principle-stack article:last-child {
    grid-template-columns: 44px 1fr;
    gap: 17px;
    padding: 23px;
  }

  .theme-cc .principle-stack article > span {
    width: 44px;
    height: 44px;
  }

  .cc-subhero {
    padding: 84px 0 98px;
  }

  .theme-cc .cc-subhero h1 {
    font-size: clamp(2.75rem, 12.8vw, 4.5rem);
    overflow-wrap: break-word;
  }

  .theme-cc .directory-card > div {
    aspect-ratio: 3 / 3.5;
  }

  .theme-cc .jobs-combined {
    border-radius: 24px;
  }

  .theme-cc .jobs-combined > button {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .theme-cc .jobs-combined > div {
    padding: 35px 26px 42px;
  }

  .theme-cc .combined-contact-form {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .theme-cc .combined-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .theme-cc .combined-contact-form .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

.theme-cc .team-directory--partner {
  background: #fff;
}

.cc-cta-section {
  padding-top: clamp(55px,6vw,85px);
  background: #faf8fc;
}

.theme-cc #jobs {
  padding-bottom: clamp(55px,6vw,85px);
}

.cc-cta-panel {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: clamp(35px,7vw,105px);
  align-items: end;
  padding: clamp(42px,6vw,82px);
  color: #fff;
  background: linear-gradient(145deg,#3d205f,#2b173a);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(49,30,65,.17);
}

.theme-cc .cc-cta-panel h2 {
  max-width: 850px;
  margin: 15px 0 14px;
  color: #fff;
  font-size: clamp(2.55rem,4.5vw,5rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.cc-cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.75);
}

.footer-hours {
  margin: 13px 0 5px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.55;
}

.footer-hours strong {
  color: rgba(255,255,255,.86);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  grid-template-columns: 1fr auto;
}

.site-footer__bottom > div {
  justify-self: end;
}

@media (max-width: 900px) {
  .cc-cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .cc-cta-panel {
    padding: 36px 25px 40px;
    border-radius: 24px;
  }

  .cc-cta-panel .button {
    width: 100%;
  }
}
