/*
 * Distinct CPT archives and designed inner pages.
 * Kept separate from common.css so designer-owned global styles are preserved.
 */

.page-hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
}

.cpt-content {
  padding: 100px 0 140px;
}

.cpt-hero {
  padding-top: 158px;
  background: var(--ivory);
}

.cpt-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  min-height: 650px;
}

.cpt-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 8% 70px 0;
}

.cpt-hero__copy h1,
.editorial-hero h1,
.case-hero h1,
.inner-visual-hero h1 {
  margin: 22px 0 28px;
  font: 500 clamp(48px, 5vw, 72px) / 0.98 var(--display);
}

.cpt-hero__copy p,
.editorial-hero__title p,
.case-hero p,
.inner-visual-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.cpt-hero__copy .text-link {
  align-self: flex-start;
  margin-top: 36px;
}

.cpt-hero__visual {
  position: relative;
  overflow: hidden;
}

.cpt-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cpt-hero__visual--product {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #f7f3ed;
}

.cpt-hero__visual--product img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cpt-hero__visual--product > span {
  position: absolute;
  right: 30px;
  bottom: 26px;
  color: var(--muted);
  font-size: 12px;
}

.product-category-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 64px;
  padding-bottom: 10px;
}

.product-category-rail a {
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  transition: 0.2s ease;
}

.product-category-rail a:hover,
.product-category-rail a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-category-rail a:hover small,
.product-category-rail a.is-active small {
  color: var(--accent);
}

.product-category-rail small {
  margin-left: 6px;
  color: inherit;
}

.catalog-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 38px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.catalog-heading h2,
.about-introduction h2,
.about-principles h2 {
  margin: 12px 0 0;
  font: 500 clamp(38px, 4vw, 54px) / 1.05 var(--display);
}

.catalog-heading__meta {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-heading__meta strong {
  color: var(--ink);
  font: 500 28px/1 var(--display);
}

.product-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 18px;
}

.product-catalog__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f4efe7;
}

.product-catalog__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.55s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.product-catalog__number {
  position: absolute;
  top: 16px;
  left: 16px;
  color: rgba(56, 48, 46, 0.52);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.product-catalog__view {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s ease;
}

.product-catalog__card:hover .product-catalog__media img {
  transform: scale(1.025);
}

.product-catalog__card:hover .product-catalog__view,
.product-catalog__media:focus-visible .product-catalog__view {
  opacity: 1;
  transform: none;
}

.product-catalog__body {
  padding: 17px 2px 0;
}

.product-catalog__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-catalog__body small {
  color: var(--accent);
  font-size: inherit;
}

.product-catalog__body h3 {
  margin: 10px 0 14px;
  font: 500 23px/1.08 var(--display);
}

.product-catalog__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-catalog__link:hover,
.product-catalog__link:focus-visible {
  color: var(--accent);
}

.product-catalog-cta {
  padding: 90px 0;
  background: var(--ink);
  color: #fff;
}

.product-catalog-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr) auto;
  gap: 70px;
  align-items: end;
}

.product-catalog-cta h2 {
  max-width: 720px;
  margin: 14px 0 0;
  font: 500 clamp(38px, 4vw, 54px) / 1.02 var(--display);
}

.product-catalog-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

@media (min-width: 1500px) {
  .product-catalog__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.editorial-hero {
  padding: 210px 0 90px;
  background: var(--paper);
}

.editorial-hero__title {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 70px;
  align-items: end;
  margin: 35px 0 70px;
}

.editorial-index {
  background: #f8f5ef;
}

.editorial-filter,
.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 55px;
}

.editorial-filter a,
.case-filter a {
  padding-bottom: 7px;
  border-bottom: 1px solid transparent;
  color: var(--muted);
}

.editorial-filter a:hover,
.editorial-filter a.is-active,
.case-filter a:hover,
.case-filter a.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.editorial-row {
  display: grid;
  grid-template-columns: 70px 280px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.editorial-row__number {
  color: var(--accent);
  font-size: 12px;
}

.editorial-row__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.editorial-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-row__copy > div {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.editorial-row__copy h2 {
  margin: 12px 0 10px;
  font: 500 34px/1.06 var(--display);
}

.editorial-row__copy p {
  max-width: 760px;
  color: var(--muted);
}

.case-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  padding: 190px 0 90px;
  background: var(--ink) var(--inner-banner-image) center/cover no-repeat;
  color: #fff;
}

.case-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 22, 20, 0.9),
    rgba(26, 22, 20, 0.2)
  );
}

.case-hero__content {
  position: relative;
}

.case-hero h1 {
  max-width: 920px;
}

.case-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.case-index {
  background: var(--paper);
}

.case-study-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 70px;
  background: #f7f3ed;
}

.case-study-row:nth-child(even) .case-study-row__media {
  order: 2;
}

.case-study-row__media {
  min-height: 480px;
  overflow: hidden;
}

.case-study-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 9%;
}

.case-study-row__number {
  margin-bottom: 60px;
  color: var(--accent);
}

.case-study-row__copy small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case-study-row__copy h2 {
  margin: 15px 0 20px;
  font: 500 clamp(38px, 4vw, 56px) / 1 var(--display);
}

.case-study-row__copy p {
  color: var(--muted);
  line-height: 1.7;
}

.case-study-row__copy .text-link {
  align-self: flex-start;
  margin-top: 28px;
}

.service-archive__hero,
.solution-archive__hero {
  padding: 210px 0 95px;
}

.service-archive__hero {
  background: #f3ede3;
}

.service-archive__hero-grid,
.solution-archive__heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 80px;
  align-items: end;
}

.service-archive__hero h1,
.solution-archive__hero h1 {
  margin: 20px 0 0;
  font: 500 clamp(48px, 5vw, 72px) / 0.98 var(--display);
}

.service-archive__hero p,
.solution-archive__hero p {
  color: var(--muted);
  line-height: 1.75;
}

.service-path-index {
  background: var(--paper);
}

.service-path-card {
  display: grid;
  grid-template-columns: 80px 1fr 420px;
  gap: 35px;
  align-items: center;
  min-height: 330px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.service-path-card__number {
  align-self: start;
  padding-top: 10px;
  color: var(--accent);
  font-size: 12px;
}

.service-path-card__copy {
  max-width: 680px;
  padding-right: 8%;
}

.service-path-card__copy h2 {
  margin: 0 0 18px;
  font: 500 clamp(38px, 4vw, 56px) / 1 var(--display);
}

.service-path-card__copy p {
  color: var(--muted);
  line-height: 1.7;
}

.service-path-card__copy .text-link {
  display: inline-block;
  margin-top: 24px;
}

.service-path-card__media {
  height: 270px;
  overflow: hidden;
}

.service-path-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-archive__hero {
  background: var(--ink);
  color: #fff;
}

.solution-archive__heading {
  margin-top: 40px;
}

.solution-archive__hero p {
  color: rgba(255, 255, 255, 0.65);
}

.solution-mosaic {
  background: #f8f5ef;
}

.solution-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.solution-mosaic__media {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  margin-bottom: 22px;
}

.solution-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-mosaic__card:hover .solution-mosaic__media img {
  transform: scale(1.025);
}

.solution-mosaic__media span {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  font-size: 12px;
}

.solution-mosaic__card small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.solution-mosaic__card h2 {
  margin: 10px 0 14px;
  font: 500 30px/1.05 var(--display);
}

.solution-mosaic__card p {
  color: var(--muted);
  font-size: 13px;
}

.solution-mosaic__card .text-link {
  display: inline-block;
  margin-top: 18px;
}

.inner-visual-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  padding-top: 88px;
  background: var(--ink);
  color: #fff;
}

.inner-visual-hero__copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.inner-visual-hero__copy-inner {
  width: min(760px, calc(100% - 80px));
  padding: 80px 7% 80px 0;
}

.inner-visual-hero p {
  color: rgba(255, 255, 255, 0.68);
}

.inner-visual-hero__media {
  min-width: 0;
  overflow: hidden;
}

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

.inner-visual-hero__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), #8d3926);
}

.inner-visual-hero__placeholder span {
  color: rgba(255, 255, 255, 0.7);
  font: 500 50px var(--display);
  letter-spacing: 0.08em;
}

.about-introduction {
  padding: 120px 0;
}

.about-introduction__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.about-introduction__body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-introduction__body > *:first-child {
  margin-top: 0;
}

.about-principles {
  padding: 110px 0 130px;
  background: #f3ede3;
}

.about-principles__head {
  max-width: 760px;
  margin-bottom: 65px;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(56, 48, 46, 0.18);
}

.about-principles__grid article {
  min-height: 280px;
  padding: 30px 45px 30px 0;
  border-right: 1px solid rgba(56, 48, 46, 0.18);
}

.about-principles__grid article + article {
  padding-left: 45px;
}

.about-principles__grid article:last-child {
  border-right: 0;
}

.about-principles__grid span {
  color: var(--accent);
  font-size: 12px;
}

.about-principles__grid h3 {
  margin: 70px 0 16px;
  font: 500 30px var(--display);
}

.about-principles__grid p {
  color: var(--muted);
}

.about-cta {
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.about-cta h2 {
  max-width: 900px;
  margin: 18px auto 35px;
  font: 500 clamp(44px, 5vw, 68px) / 1 var(--display);
}

/* Full-width inner banners and breadcrumb strip */
.cpt-breadcrumb-bar {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.cpt-breadcrumb-bar .breadcrumbs {
  color: var(--muted);
}

.cpt-hero,
.editorial-hero,
.service-archive__hero,
.solution-archive__hero,
.inner-visual-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding: 190px 0 90px;
  background-color: var(--ink);
  background-image: var(--inner-banner-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.editorial-hero::before,
.service-archive__hero::before,
.solution-archive__hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 20, 19, 0.88) 0%,
    rgba(23, 20, 19, 0.58) 48%,
    rgba(23, 20, 19, 0.18) 100%
  );
  content: "";
}

.cpt-hero__split,
.editorial-hero > .shell,
.service-archive__hero > .shell,
.solution-archive__hero > .shell {
  position: relative;
  z-index: 2;
}

.cpt-hero__split {
  position: static;
  display: block;
  min-height: 0;
}

.cpt-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(23, 20, 19, 0.9) 0%,
    rgba(23, 20, 19, 0.62) 48%,
    rgba(23, 20, 19, 0.18) 100%
  );
  content: "";
}

.cpt-hero__copy {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 780px;
  padding: 0;
}

.cpt-hero__copy p,
.editorial-hero__title p,
.service-archive__hero p,
.solution-archive__hero p {
  color: rgba(255, 255, 255, 0.72);
}

.cpt-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 0;
  background: var(--ink);
}

.cpt-hero__visual img,
.cpt-hero__visual--product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}

.cpt-hero__visual--product > span {
  display: none;
}

.editorial-hero__title,
.service-archive__hero-grid,
.solution-archive__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  min-height: 330px;
  margin: 0;
  align-items: end;
}

.service-archive__hero-grid {
  margin-inline: auto;
}

.service-archive__hero h1 {
  display: flex;
  min-height: 1.96em;
  align-items: flex-end;
}

.service-archive__hero p {
  margin: 0;
}

.editorial-hero__title h1,
.service-archive__hero h1,
.solution-archive__hero h1 {
  max-width: 900px;
  color: #fff;
}

.inner-visual-hero {
  display: block;
  padding: 88px 0 0;
}

.inner-visual-hero::after {
  position: absolute;
  inset: 88px 0 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(23, 20, 19, 0.9) 0%,
    rgba(23, 20, 19, 0.58) 48%,
    rgba(23, 20, 19, 0.15) 100%
  );
  content: "";
}

.inner-visual-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 522px;
  align-items: center;
  justify-content: center;
}

.inner-visual-hero__copy-inner {
  width: min(1700px, calc(100% - 80px));
  padding: 60px 0;
}

.inner-visual-hero__copy-inner > * {
  max-width: 760px;
}

.inner-visual-hero__media {
  position: absolute;
  inset: 88px 0 0;
  z-index: 0;
  min-height: 0;
}

@media (max-width: 1100px) {
  .product-catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-catalog-cta__inner {
    grid-template-columns: 1fr 1fr;
  }

  .product-catalog-cta__inner .button {
    justify-self: start;
  }

  .cpt-hero__split,
  .case-study-row,
  .service-archive__hero-grid,
  .solution-archive__heading {
    grid-template-columns: 1fr;
  }

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

  .service-archive__hero h1 {
    min-height: 0;
  }

  .service-path-card {
    grid-template-columns: 55px 1fr;
  }

  .service-path-card__media {
    grid-column: 2;
  }

  .cpt-hero__visual,
  .inner-visual-hero__media {
    min-height: 0;
  }

  .case-study-row:nth-child(even) .case-study-row__media {
    order: 0;
  }

  .inner-visual-hero__copy {
    justify-content: center;
  }

  .inner-visual-hero__copy-inner {
    width: calc(100% - 72px);
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .page-hero h1,
  .cpt-hero__copy h1,
  .editorial-hero h1,
  .case-hero h1,
  .inner-visual-hero h1,
  .service-archive__hero h1,
  .solution-archive__hero h1 {
    font-size: 44px;
  }

  .cpt-content {
    padding: 75px 0 95px;
  }

  .cpt-hero {
    min-height: 520px;
    padding: 150px 0 70px;
  }

  .cpt-hero__split {
    min-height: 0;
  }

  .cpt-hero__copy {
    padding: 70px 0;
  }

  .cpt-hero__visual,
  .inner-visual-hero__media {
    min-height: 0;
  }

  .catalog-heading,
  .editorial-hero__title,
  .about-introduction__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .about-principles__grid {
    grid-template-columns: 1fr;
  }

  .product-catalog__grid {
    gap: 30px 10px;
  }

  .product-catalog__meta span,
  .product-catalog__link {
    display: none;
  }

  .product-catalog__body h3 {
    margin-bottom: 0;
    font-size: 20px;
  }

  .product-catalog__view {
    width: 36px;
    height: 36px;
    opacity: 1;
    transform: none;
  }

  .product-catalog-cta__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .editorial-hero {
    min-height: 520px;
    padding: 150px 0 70px;
  }

  .service-archive__hero,
  .solution-archive__hero {
    min-height: 520px;
    padding: 150px 0 70px;
  }

  .case-study-row__copy {
    padding: 36px 28px;
  }

  .editorial-row {
    grid-template-columns: 42px 1fr;
  }

  .editorial-row__media {
    grid-column: 2;
  }

  .editorial-row__copy {
    grid-column: 2;
  }

  .case-hero {
    min-height: 620px;
  }

  .case-study-row__media {
    min-height: 330px;
  }

  .service-path-card {
    grid-template-columns: 36px 1fr;
    gap: 18px;
  }

  .service-path-card__media {
    height: 230px;
  }

  .solution-mosaic__grid {
    grid-template-columns: 1fr;
  }

  .inner-visual-hero {
    min-height: 520px;
    padding-top: 72px;
  }

  .inner-visual-hero::after,
  .inner-visual-hero__media {
    inset: 72px 0 0;
  }

  .inner-visual-hero__copy {
    min-height: 448px;
  }

  .inner-visual-hero__copy-inner {
    width: calc(100% - 36px);
    padding: 65px 0;
  }

  .editorial-hero__title,
  .service-archive__hero-grid,
  .solution-archive__heading {
    display: block;
    min-height: 0;
  }

  .editorial-hero__title p,
  .service-archive__hero p,
  .solution-archive__hero p {
    margin-top: 24px;
  }

  .cpt-breadcrumb-bar {
    padding: 18px 0;
  }

  .about-introduction,
  .about-principles {
    padding: 85px 0;
  }

  .about-principles__grid article,
  .about-principles__grid article + article {
    min-height: 0;
    padding: 28px 0 45px;
    border-right: 0;
    border-bottom: 1px solid rgba(56, 48, 46, 0.18);
  }

  .about-principles__grid h3 {
    margin-top: 35px;
  }
}

/*
 * Inner-banner height contract.
 * The header occupies its own row on inner pages, so banners need no navigation offset.
 */
.cpt-hero,
.editorial-hero,
.case-hero,
.service-archive__hero,
.solution-archive__hero,
.inner-visual-hero {
  height: 480px;
  min-height: 480px;
  padding: 70px 0;
}

.inner-visual-hero {
  padding: 0;
}

.inner-visual-hero::after,
.inner-visual-hero__media {
  inset: 0;
}

.inner-visual-hero__copy {
  min-height: 480px;
}

.editorial-hero__title,
.service-archive__hero-grid,
.solution-archive__heading {
  min-height: 340px;
}

@media (max-width: 700px) {
  .cpt-hero,
  .editorial-hero,
  .case-hero,
  .service-archive__hero,
  .solution-archive__hero,
  .inner-visual-hero {
    height: 480px;
    min-height: 480px;
    padding: 55px 0;
  }

  .inner-visual-hero {
    padding: 0;
  }

  .inner-visual-hero::after,
  .inner-visual-hero__media {
    inset: 0;
  }

  .inner-visual-hero__copy {
    min-height: 480px;
  }
}

.cpt-hero,
.editorial-hero,
.case-hero,
.service-archive__hero,
.solution-archive__hero,
.inner-visual-hero {
  padding: 0;
}

.cpt-hero__split,
.editorial-hero > .shell,
.case-hero__content,
.service-archive__hero > .shell,
.solution-archive__hero > .shell {
  height: 100%;
  min-height: 0;
}

.cpt-hero__split,
.editorial-hero > .shell,
.solution-archive__hero > .shell {
  display: flex;
  align-items: center;
}

.case-hero {
  align-items: stretch;
}

.cpt-hero__copy,
.editorial-hero__title,
.case-hero__content,
.service-archive__hero-grid,
.solution-archive__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  min-height: 0;
  margin-block: 0;
  padding: 0;
}

.cpt-hero__copy,
.editorial-hero__title,
.solution-archive__heading {
  width: 100%;
  max-width: 900px;
}

.case-hero__content,
.service-archive__hero-grid {
  height: 100%;
}

.cpt-hero__copy h1,
.editorial-hero h1,
.case-hero h1,
.service-archive__hero h1,
.solution-archive__hero h1,
.inner-visual-hero h1 {
  display: block;
  max-width: 900px;
  min-height: 0;
  margin: 0;
  font: 500 clamp(48px, 5vw, 72px) / 0.98 var(--display);
}

.cpt-hero__copy p,
.editorial-hero__title p,
.case-hero p,
.service-archive__hero p,
.solution-archive__hero p,
.inner-visual-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.inner-visual-hero__copy {
  display: flex;
  min-height: 0;
  align-items: center;
}

.inner-visual-hero__copy-inner {
  max-width: 900px;
  padding: 0;
}

@media (max-width: 700px) {
  .cpt-hero,
  .editorial-hero,
  .case-hero,
  .service-archive__hero,
  .solution-archive__hero,
  .inner-visual-hero {
    padding: 0;
  }

  .cpt-hero__copy h1,
  .editorial-hero h1,
  .case-hero h1,
  .service-archive__hero h1,
  .solution-archive__hero h1,
  .inner-visual-hero h1 {
    font-size: 44px;
  }

  .cpt-hero,
  .editorial-hero,
  .case-hero,
  .service-archive__hero,
  .solution-archive__hero {
    background-image: var(--inner-banner-mobile-image, var(--inner-banner-image));
  }
}
