/* Full production fonts supplied with the packaged Illustrator artwork.
   The project aliases are intentionally first so Safari and Windows render
   the same files instead of substituting an operating-system variant. */

@font-face {
  font-family: "FPH Times";
  src: url("assets/fonts/times-new-roman.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FPH Times";
  src: url("assets/fonts/times-new-roman-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FPH Montserrat";
  src: url("assets/fonts/montserrat-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FPH Montserrat";
  src: url("assets/fonts/montserrat-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "FPH Montserrat";
  src: url("assets/fonts/montserrat-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "FPH Montserrat";
  src: url("assets/fonts/montserrat-extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "FPH Montserrat";
  src: url("assets/fonts/montserrat-black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy: #1b1c49;
  --navy-deep: #1b1c49;
  --navy-soft: #4e5b8b;
  --blue: #88a4d7;
  --blue-soft: #ccddff;
  --blue-line: #e3eeff;
  --gold: #ca9e67;
  --gold-soft: #d8ad73;
  --ink: #141722;
  --paper: #ffffff;
  --paper-warm: #f8f6f2;
  --muted: #c9cee0;
  --shell: min(1024px, calc(100% - 48px));
  --serif: "FPH Times", "Times New Roman", Times, serif;
  --sans: "FPH Montserrat", Montserrat, Arial, sans-serif;
  --ui: "FPH Montserrat", Montserrat, Arial, sans-serif;
  --header-height: 65px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
}

.section-dark {
  color: white;
  background-color: var(--navy);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: white;
  background: var(--navy);
  border-bottom: 1px solid rgba(213, 226, 255, 0.22);
  transition: box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(12, 16, 48, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand--header {
  width: 86px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: 218px;
}

.desktop-nav a,
.header-cta {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 25px;
  color: #e7e9f6;
}

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

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

.header-cta {
  width: 184px;
  min-height: 43px;
  margin-left: 161px;
  padding-block: 0;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px 10px;
  border: 1px solid transparent;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

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

.button--outline {
  color: #dce5fb;
  background: transparent;
  border-color: rgba(197, 216, 255, 0.48);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--navy);
  background: white;
}

.button--gold {
  color: var(--navy);
  background: var(--blue);
  border-color: var(--blue);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button--soft {
  color: #e4e9f6;
  background: #4b568a;
  border-color: #4b568a;
}

.button--soft:hover,
.button--soft:focus-visible {
  color: var(--navy);
  background: #d5e1fa;
}

.button--gold-outline {
  color: var(--gold);
  border-color: var(--gold);
}

.button--gold-outline:hover,
.button--gold-outline:focus-visible {
  color: var(--navy);
  background: var(--gold);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 589px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  display: grid;
  height: 589px;
  align-items: start;
  grid-template-columns: 472px 1fr;
  gap: 55px;
  padding-top: 57px;
}

.hero-brand {
  position: relative;
  z-index: 2;
  padding-left: 223px;
}

.brand--hero {
  width: 220px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding-top: 25px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 390px;
  margin: 0;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 280px;
  margin: 35px 0 0;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.35;
}

.hero-actions {
  display: grid;
  width: max-content;
  gap: 20px;
  margin-top: 35px;
}

.hero-actions-occluded .hero-actions {
  visibility: hidden;
  pointer-events: none;
}

.hero-actions .button {
  min-width: 225px;
}

.hero-geometry {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  object-fit: fill;
  pointer-events: none;
}

.motif {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.motif::before,
.motif::after {
  display: none;
}

.motif--light {
  background-color: white;
}

.motif-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.intro {
  height: 504px;
  padding: 67px 0 44px;
}

.section-heading {
  position: relative;
}

.section-heading--split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 680px;
  margin-inline: auto;
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.035em;
}

.display-title em {
  font-weight: 400;
}

.section-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.intro .display-title {
  font-size: 50px;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.intro .section-heading--split {
  width: 732px;
  max-width: none;
  align-items: start;
  grid-template-columns: 280px 374px;
  gap: 78px;
  margin-right: 0;
  margin-left: 170px;
}

.intro .section-copy {
  padding-top: 16px;
}

.principles {
  position: relative;
  display: grid;
  max-width: 704px;
  margin: 29px auto 0;
  padding: 42px 18px 34px;
  grid-template-columns: repeat(3, 1fr);
  background: transparent;
}

.principle {
  position: relative;
  text-align: center;
}

.principle + .principle::before {
  display: none;
}

.principle > img {
  width: 72px;
  height: 72px;
  margin: 0 auto 21px;
  object-fit: contain;
}

.principle:nth-child(1) {
  transform: translateX(-43px);
}

.principle:nth-child(3) {
  transform: translateX(23px);
}

.principle h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.08;
  text-transform: uppercase;
}

.business {
  height: 760px;
  padding: 94px 0 56px;
}

.section-heading--dark {
  align-items: start;
  max-width: 870px;
}

.section-heading--dark .display-title {
  font-size: 64px;
}

.section-heading--dark .section-copy {
  padding-top: 18px;
  color: #dce1f2;
}

.product-grid {
  display: grid;
  gap: 18px;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  color: white;
  background: #5b6a9f;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 24px) 100%, 0 100%, 0 14px);
  outline: none;
}

.product-card:focus-visible {
  box-shadow: 0 0 0 3px var(--gold);
}

.product-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.18, 0.76, 0.2, 1);
}

.product-card:hover .product-card__image img,
.product-card:focus .product-card__image img {
  transform: scale(1.055);
}

.product-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 68px;
  overflow: hidden;
  padding: 18px 24px 16px;
  background: #5b6a9f;
  transition: height 240ms ease;
}

.product-card:hover .product-card__body,
.product-card:focus .product-card__body,
.product-card:focus-within .product-card__body {
  height: 137px;
}

.product-card h3 {
  margin: 0;
  font-family: var(--ui);
  font-size: 20px;
  line-height: 1.1;
}

.product-card p {
  margin: 8px 0 0;
  color: #eff2fb;
  font-size: 12px;
  line-height: 1.28;
}

.product-card p,
.product-card a {
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 160ms ease 40ms,
    transform 160ms ease 40ms;
}

.product-card:hover p,
.product-card:hover a,
.product-card:focus p,
.product-card:focus a,
.product-card:focus-within p,
.product-card:focus-within a {
  opacity: 1;
  transform: none;
}

.product-card a,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card a span,
.service-card a span {
  transition: transform 180ms ease;
}

.product-card a:hover span,
.service-card a:hover span {
  transform: translateX(5px);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  transform: translateX(-4px);
}

.section-action .button {
  width: 224px;
  border-color: transparent;
}

.services {
  height: 760px;
  padding: 98px 0 0;
}

.services .section-heading--split {
  max-width: 870px;
  align-items: start;
  grid-template-columns: 387px 1fr;
}

.services .section-copy {
  max-width: 330px;
  padding-top: 27px;
}

.services .display-title {
  font-size: 64px;
  transform: translateY(12px);
}

.service-grid {
  display: grid;
  gap: 35px;
  margin-top: 82px;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  height: 356px;
  overflow: hidden;
  color: var(--navy);
  background: var(--blue);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 24px) 100%, 0 100%, 0 14px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(31, 41, 88, 0.2);
}

.service-card > img {
  width: 100%;
  height: 194px;
  object-fit: cover;
}

.service-card__body {
  height: 162px;
  padding: 11px 20px 20px;
}

.service-card:nth-child(2) > img {
  height: 252px;
}

.service-card:nth-child(2) .service-card__body {
  height: 104px;
}

.service-card:nth-child(2) .service-card__body > p:not(.service-meta),
.service-card:nth-child(2) .service-card__body > a {
  display: none;
}

.service-card h3 {
  margin: 0;
  color: white;
  font-family: var(--ui);
  font-size: 20px;
  line-height: 1.15;
}

.service-card p {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.35;
}

.service-card .service-meta {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
}

.service-card a {
  color: var(--navy);
}

.performance {
  height: 573px;
  display: grid;
  align-items: center;
  background: var(--blue);
}

.performance .shell {
  transform: translateY(-16px);
}

.performance-title {
  color: #0a0c15;
  font-size: 64px;
  text-align: center;
}

.metric-grid {
  display: grid;
  align-items: start;
  justify-content: space-between;
  gap: 0;
  margin-top: 87px;
  grid-template-columns: 115px 300px 240px 150px;
}

.metric {
  text-align: center;
}

.metric strong {
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
  color: white;
  font-family: var(--ui);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric strong::after {
  display: none;
}

.metric span {
  display: block;
  margin-top: 13px;
  color: #090a12;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.development {
  height: 1095px;
  padding: 103px 0 0;
}

.story-stack {
  display: grid;
  gap: 153px;
}

.story {
  display: grid;
  width: 1091px;
  height: 354px;
  align-items: center;
  grid-template-columns: 510px 495px;
  gap: 86px;
}

.story-copy {
  align-self: start;
  padding-left: 0;
  transform: translateY(-8px);
}

.mobile-only-break {
  display: none;
}

.desktop-only-break {
  display: inline;
}

.story .display-title {
  margin-left: 77px;
  font-size: 70px;
  line-height: 0.94;
  letter-spacing: -0.01em;
}

.story:first-child .display-title {
  letter-spacing: -0.02em;
}

.story-copy > p {
  max-width: 500px;
  margin: 35px 0 0;
  color: #d9deef;
  font-size: 15px;
  line-height: 1.25;
}

.story:first-child .story-copy > p:first-of-type {
  margin-top: 48px;
}

.story:first-child .story-copy {
  transform: translateY(-11px);
}

.story:nth-child(2) .story-copy {
  transform: translateY(-8px);
}

.story:nth-child(2) .story-accent {
  margin-top: 28px;
}

.story-copy .story-accent {
  margin-top: 19px;
  color: var(--gold);
}

.story-image {
  position: relative;
  width: 495px;
  height: 354px;
  margin: 0;
  border: 0;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 24px) 100%, 0 100%, 0 14px);
}

.story-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 25, 64, 0.22), transparent 45%);
  content: "";
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.development-ribbon {
  position: absolute;
  z-index: 0;
  top: -14px;
  left: 150px;
  width: 265px;
  height: 275px;
  pointer-events: none;
}

.partner-list {
  display: flex;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.partner-list li + li::before {
  margin-inline: 10px;
  color: white;
  content: "|";
}

.contact {
  height: 410px;
  display: grid;
  align-items: center;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 395px 1fr;
  gap: 39px;
  max-width: 860px;
  transform: translateY(-7px);
}

.contact-grid > .display-title {
  margin-left: -5px;
}

.contact-copy {
  max-width: 480px;
  padding-top: 7px;
}

.contact-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.button--contact {
  min-width: 252px;
  min-height: 68px;
  margin-top: 55px;
  color: #0a0c17;
  background: var(--blue-soft);
  font-size: 17px;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 18px) 100%, 0 100%, 0 10px);
}

.button--contact:hover,
.button--contact:focus-visible {
  color: white;
  background: var(--navy);
}

.site-footer {
  height: 198px;
  display: grid;
  align-items: center;
  color: white;
  background: var(--navy);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.brand--footer {
  width: 143px;
}

.footer-inner p {
  margin: 0;
  color: #d5d9eb;
  font-size: 13px;
  line-height: 1.4;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 0.76, 0.31, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.qa-mode .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal--delay,
.reveal--delay-1 {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.reveal--delay-3 {
  transition-delay: 260ms;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .desktop-nav {
    gap: 24px;
    margin-left: auto;
  }

  .header-cta {
    margin-left: 30px;
  }

  .hero-brand {
    padding-left: 70px;
  }

  .story-copy {
    padding-left: 20px;
  }

  .story {
    width: 100%;
    gap: 54px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
    --shell: min(690px, calc(100% - 36px));
  }

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

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    margin-left: auto;
    padding: 0;
    color: white;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 32px 24px;
    background: rgba(24, 28, 72, 0.985);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .mobile-nav > a:not(.button) {
    padding: 15px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-nav .button {
    margin-top: 25px;
  }

  .hero,
  .hero-grid {
    min-height: 700px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 70px 16px 60px;
  }

  .hero-brand {
    padding: 0;
  }

  .hero-copy {
    margin-left: auto;
  }

  .hero-watermark {
    top: 36px;
    left: -70px;
    width: 420px;
    opacity: 0.25;
  }

  .hero-band--one {
    right: 20px;
  }

  .hero-band--three {
    left: 140px;
  }

  .section-heading--split,
  .intro .section-heading--split,
  .services .section-heading--split {
    width: auto;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-inline: 0;
  }

  .intro .section-copy {
    padding-top: 0;
  }

  .services .section-copy {
    max-width: none;
    padding-top: 0;
  }

  .services .display-title {
    transform: none;
  }

  .intro .section-copy br,
  .business .section-copy br,
  .services .section-copy br,
  .story-copy > p br {
    display: none;
  }

  .display-title {
    font-size: clamp(48px, 10vw, 70px);
  }

  .intro,
  .business,
  .services,
  .development,
  .contact {
    height: auto;
    min-height: 0;
    padding-block: 86px;
  }

  .motif-art {
    object-fit: cover;
    opacity: 0.72;
  }

  .principles {
    margin-top: 50px;
  }

  .principle:nth-child(1),
  .principle:nth-child(3) {
    transform: none;
  }

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

  .services {
    padding-bottom: 110px;
  }

  .service-grid {
    margin-top: 56px;
    grid-template-columns: 1fr;
  }

  .performance {
    min-height: 620px;
    padding: 90px 0;
  }

  .performance .shell {
    transform: none;
  }

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

  .story {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .story-copy {
    padding-left: 0;
    transform: none;
  }

  .story:first-child .story-copy,
  .story:nth-child(2) .story-copy {
    transform: none;
  }

  .story .display-title {
    margin-left: 0;
  }

  .story-image {
    width: 100%;
    height: auto;
  }

  .story-copy > p {
    margin-top: 34px;
  }

  .story-stack {
    gap: 110px;
  }

  .development-ribbon {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    transform: none;
  }

  .contact-grid > .display-title {
    margin-left: 0;
  }

  .contact-copy {
    padding-top: 0;
  }
}

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

  body {
    font-size: 14px;
  }

  .brand--header {
    width: 76px;
  }

  .hero,
  .hero-grid {
    min-height: 660px;
  }

  .hero-grid {
    gap: 38px;
    padding: 66px 0 54px;
  }

  .brand--hero {
    width: 190px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero h1 {
    max-width: 315px;
    font-size: 46px;
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-watermark {
    top: 18px;
    left: -115px;
    width: 390px;
    height: 440px;
  }

  .hero-band--one {
    right: -40px;
    height: 290px;
  }

  .display-title,
  .story .display-title {
    font-size: 48px;
  }

  .section-copy {
    font-size: 13px;
  }

  .principles {
    gap: 22px;
    padding: 30px 20px;
    grid-template-columns: 1fr;
    clip-path: polygon(12% 0, 100% 0, 100% 94%, 88% 100%, 0 100%, 0 6%);
  }

  .principle {
    display: grid;
    align-items: center;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    text-align: left;
  }

  .principle + .principle::before {
    top: -11px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .principle > img {
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .product-grid {
    gap: 24px;
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .product-card__image {
    aspect-ratio: 16 / 10;
  }

  .product-card__body {
    height: 136px;
    min-height: 136px;
  }

  .product-card p,
  .product-card a {
    opacity: 1;
    transform: none;
  }

  .section-action {
    margin-top: 45px;
  }

  .services {
    padding-bottom: 90px;
  }

  .service-grid {
    gap: 26px;
  }

  .service-card__body {
    min-height: 220px;
  }

  .performance {
    min-height: 680px;
  }

  .performance-title {
    font-size: 52px;
  }

  .metric-grid {
    gap: 50px 16px;
    margin-top: 58px;
  }

  .metric strong {
    font-size: 39px;
  }

  .metric span {
    font-size: 10px;
  }

  .story-image img {
    aspect-ratio: 1.25 / 1;
  }

  .partner-list {
    flex-direction: column;
    gap: 10px;
  }

  .partner-list li + li::before {
    display: none;
  }

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

  .site-footer {
    min-height: 280px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   2026 packaged Illustrator desktop layouts
   -------------------------------------------------------------------------- */

.about-design-page .site-footer,
.products-design-page .site-footer,
.category-design-page .site-footer,
.product-design-page .site-footer {
  height: 196px;
}

/* About — 1440 × 3383 reference */

.about-hero {
  position: relative;
  height: 590px;
  overflow: hidden;
  isolation: isolate;
}

.about-hero__geometry,
.category-template-hero__geometry,
.product-template-hero__geometry {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.about-hero__grid {
  display: grid;
  height: 100%;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 139px;
}

.about-hero__heading,
.about-hero__intro {
  position: relative;
  z-index: 2;
}

.about-hero__heading {
  padding-left: 86px;
}

.about-hero__heading .display-title {
  margin-top: 66px;
  font-size: 64px;
  line-height: 0.96;
}

.about-hero__intro {
  width: 465px;
  padding-top: 75px;
  color: #dce1f2;
  font-size: 14px;
  line-height: 1.28;
}

.about-hero__intro p {
  margin: 0;
}

.about-hero__intro p + p {
  margin-top: 20px;
}

.about-panel {
  position: relative;
  height: 504px;
  overflow: hidden;
  background: white;
  isolation: isolate;
}

.about-panel--values {
  height: 506px;
}

.about-panel--team {
  height: 505px;
}

.about-panel--ahead {
  height: 715px;
}

.about-panel > .motif-art {
  z-index: 0;
  object-fit: fill;
}

.about-panel__grid {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  align-items: start;
  grid-template-columns: 500px 500px;
  gap: 24px;
}

.about-panel__copy {
  padding-top: 100px;
}

.about-panel__copy .display-title {
  font-size: 61px;
  line-height: 0.96;
}

.about-panel__copy > p {
  width: 500px;
  margin: 95px 0 0;
  font-size: 13px;
  line-height: 1.25;
}

.about-panel__copy > p + p {
  margin-top: 20px;
}

.about-panel__copy strong {
  font-weight: 700;
}

.about-panel__media {
  width: 500px;
  height: 358px;
  margin: 0;
  overflow: hidden;
}

.about-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-panel--business .about-panel__media,
.about-panel--team .about-panel__media {
  grid-column: 2;
}

.about-panel--business .about-panel__copy,
.about-panel--team .about-panel__copy {
  grid-row: 1;
  grid-column: 1;
  padding-left: 78px;
}

.about-panel--business .about-panel__copy > p {
  margin-top: 94px;
}

.about-panel--team .about-panel__copy > p {
  margin-top: 94px;
}

.about-panel--dark {
  color: white;
  background: var(--navy);
}

.about-panel__grid--media-first .about-panel__media {
  grid-column: 1;
}

.about-panel__grid--media-first .about-panel__copy {
  grid-column: 2;
}

.about-panel--values .about-panel__copy,
.about-panel--ahead .about-panel__copy {
  padding-top: 91px;
}

.about-panel--values .about-panel__copy > p,
.about-panel--ahead .about-panel__copy > p {
  color: #dce1f2;
}

.about-panel--values .about-panel__copy > p {
  margin-top: 80px;
}

.about-panel--ahead .about-panel__copy {
  padding-top: 92px;
}

.about-panel--ahead .about-panel__copy > p {
  margin-top: 78px;
}

.about-panel__ribbon-title {
  position: relative;
  min-height: 112px;
}

.about-panel__ribbon-title > img,
.product-template-title > img {
  position: absolute;
  z-index: 0;
  top: -52px;
  left: -70px;
  width: 265px;
  height: 275px;
  pointer-events: none;
}

.about-panel__ribbon-title > .display-title,
.product-template-title > :not(img) {
  position: relative;
  z-index: 1;
}

.about-panel--ahead .about-panel__media {
  height: 358px;
}

.about-cta {
  position: relative;
  height: 325px;
  overflow: hidden;
  isolation: isolate;
}

.about-cta__grid {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  padding-top: 83px;
}

.about-cta__grid > .display-title {
  padding-left: 79px;
  font-size: 61px;
}

.about-cta__copy {
  padding-top: 4px;
  font-size: 13px;
  line-height: 1.28;
}

.about-cta__copy p {
  margin: 0;
}

.about-cta__actions {
  display: grid;
  width: 253px;
  gap: 19px;
  margin-top: 46px;
}

.about-cta__actions .button {
  width: 253px;
  min-height: 66px;
  margin: 0;
  color: #101326;
  font-size: 16px;
}

.about-design-page .site-footer {
  height: 173px;
}

/* Products index — 1440 × 1211 reference */

.products-showcase {
  position: relative;
  height: 950px;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--navy) 0 590px, var(--blue) 590px 100%);
  isolation: isolate;
}

.products-showcase__hero-art,
.products-showcase__lower-art {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.products-showcase__hero-art {
  top: 0;
  height: 590px;
}

.products-showcase__lower-art {
  top: 590px;
  height: 360px;
  object-fit: cover;
}

.products-showcase__intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 143px;
}

.products-showcase__heading {
  padding-left: 85px;
}

.products-showcase__heading .display-title {
  margin-top: 65px;
  color: white;
  font-size: 64px;
}

.products-showcase__intro > p {
  width: 456px;
  margin: 137px 0 0;
  color: white;
  font-size: 15px;
  line-height: 1.28;
}

.products-showcase__grid {
  position: absolute;
  z-index: 3;
  top: 456px;
  right: 0;
  left: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.products-showcase .product-card {
  height: 302px;
}

.products-showcase .product-card__body {
  height: 68px;
  padding: 18px 24px 14px;
}

.products-showcase .product-card:hover .product-card__body,
.products-showcase .product-card:focus .product-card__body,
.products-showcase .product-card:focus-within .product-card__body {
  height: 142px;
}

.qa-mode .products-showcase .product-card:first-child .product-card__body {
  height: 142px;
}

.products-showcase .product-card h2 {
  margin: 0;
  color: white;
  font-family: var(--ui);
  font-size: 20px;
  line-height: 1.1;
}

.products-showcase .product-card p {
  margin: 8px 0 0;
  color: #eff2fb;
  font-size: 12px;
  line-height: 1.28;
}

.products-showcase .product-card p,
.products-showcase .product-card a {
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 160ms ease 40ms, transform 160ms ease 40ms;
}

.products-showcase .product-card:hover p,
.products-showcase .product-card:hover a,
.products-showcase .product-card:focus p,
.products-showcase .product-card:focus a,
.products-showcase .product-card:focus-within p,
.products-showcase .product-card:focus-within a {
  opacity: 1;
  transform: none;
}

.qa-mode .products-showcase .product-card:first-child p,
.qa-mode .products-showcase .product-card:first-child a {
  opacity: 1;
  transform: none;
}

/* Product category template — Alcohols is the 1440 × 1769 reference */

.category-template-hero {
  position: relative;
  height: 435px;
  overflow: hidden;
  isolation: isolate;
}

.category-template-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  padding-top: 139px;
}

.category-template-hero__copy {
  padding-left: 86px;
}

.category-template-hero__copy .display-title {
  margin-top: 66px;
  color: white;
  font-size: 64px;
  line-height: 0.94;
}

.category-template-hero__intro {
  width: 470px;
  margin: 76px 0 0;
  color: #dce1f2;
  font-size: 15px;
  line-height: 1.28;
}

.category-template-portfolio {
  position: relative;
  min-height: 1073px;
  overflow: hidden;
  background: var(--blue-soft);
  isolation: isolate;
}

.category-template-portfolio__art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  pointer-events: none;
}

.category-template-portfolio__inner {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 77px;
}

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

.category-product-card {
  display: flex;
  height: 264px;
  min-width: 0;
  flex-direction: column;
  padding: 42px 39px 28px;
  color: #0c0d13;
  background: white;
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 26px) 100%, 0 100%, 0 16px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-product-card:hover,
.category-product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(27, 28, 73, 0.16);
}

.category-product-card__top {
  display: grid;
  align-items: center;
  min-height: 78px;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
}

.category-product-card__top > strong {
  color: var(--blue);
  font-family: var(--ui);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.category-product-card__badge--compact {
  font-size: 50px;
  letter-spacing: -0.045em;
}

.category-product-card__top > h2 {
  margin: 0;
  font-family: var(--ui);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.17;
  text-transform: uppercase;
}

.category-product-card > p {
  display: -webkit-box;
  height: 72px;
  min-height: 72px;
  overflow: hidden;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.category-product-card__summary--mobile {
  display: none;
}

.category-product-card > span {
  margin-top: auto;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-template-cta {
  display: flex;
  width: 329px;
  min-height: 68px;
  margin: 46px auto 0;
  color: white;
  background: var(--gold);
  border-color: var(--gold);
  font-size: 17px;
}

/* Individual product template — ENA is the 1440 × 2502 reference */

.product-template-hero {
  position: relative;
  height: 497px;
  overflow: hidden;
  isolation: isolate;
}

.product-template-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  align-items: end;
  grid-template-columns: 1fr 497px;
  gap: 38px;
}

.product-template-hero__copy {
  align-self: start;
  padding-top: 112px;
  padding-left: 64px;
}

.product-template-hero__copy .display-title {
  max-width: 520px;
  margin-top: 65px;
  color: white;
  font-size: 61px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.product-template-hero__link {
  display: inline-block;
  margin-top: 35px;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-template-hero__media {
  width: 497px;
  height: 392px;
  margin: 0;
  overflow: hidden;
  background: #4d5c91;
  clip-path: polygon(134px 0, 100% 0, 100% calc(100% - 84px), calc(100% - 142px) 100%, 0 100%, 0 77px);
}

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

.product-template-description {
  height: 252px;
  background: white;
}

.product-template-description__grid {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: 360px 1fr;
  gap: 72px;
}

.product-template-description .display-title {
  color: var(--blue);
  font-size: 52px;
}

.product-template-description p {
  max-width: 610px;
  margin: 0;
  font-size: 14px;
  line-height: 1.24;
}

.product-template-uses {
  position: relative;
  min-height: 577px;
  overflow: hidden;
  padding: 84px 0 96px;
  background: var(--blue-soft);
  isolation: isolate;
}

.product-template-uses--3,
.product-template-uses--4 {
  min-height: 810px;
}

.product-template-uses--5 {
  min-height: 1035px;
}

.product-template-uses__art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.product-template-uses > .shell {
  position: relative;
  z-index: 2;
}

.product-template-title {
  position: relative;
}

.product-template-title--uses {
  min-height: 143px;
  padding-left: 64px;
}

.product-template-title--uses > img {
  left: -38px;
}

.product-template-title--uses .display-title {
  position: relative;
  z-index: 2;
  color: var(--navy);
  font-size: 52px;
  line-height: 0.96;
}

.product-template-uses__grid {
  display: grid;
  gap: 22px 26px;
  margin: 22px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.product-template-uses .use-card {
  min-height: 200px;
  padding: 40px 39px 30px;
  color: #151722;
  background: white;
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 26px) 100%, 0 100%, 0 16px);
}

.product-template-uses .use-card > span {
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.product-template-uses .use-card h3 {
  display: none;
}

.product-template-uses .use-card p,
.product-template-uses .use-card h3 + p {
  margin: 22px 0 0;
  color: #30313b;
  font-size: 13px;
  line-height: 1.25;
}

.product-template-request {
  position: relative;
  min-height: 922px;
  overflow: hidden;
  padding-top: 59px;
}

.product-template-request__grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.product-template-request .documents-panel,
.product-template-request .lead-panel {
  min-width: 0;
  padding-top: 0;
}

.product-template-request .product-template-title {
  min-height: 174px;
  padding-left: 64px;
}

.product-template-request .product-template-title > img {
  top: -52px;
  left: -39px;
}

.product-template-request .product-template-title .section-label {
  margin-bottom: 26px !important;
}

.product-template-request .product-template-title .display-title {
  color: white;
  font-size: 50px;
  line-height: 0.95;
}

.product-template-request .documents-panel > p,
.product-template-request .lead-panel > p {
  min-height: 70px;
  margin: 24px 0 0;
  color: #8da3d6;
  font-size: 13px;
  line-height: 1.25;
}

.product-template-request .documents-panel > ul {
  gap: 22px;
  margin-top: 35px;
}

.product-template-request .documents-panel > ul > li {
  min-height: 55px;
  padding: 7px 13px;
  grid-template-columns: 43px 1fr 72px;
  gap: 14px;
  background: #52618f;
  border-color: #8094c1;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 11px) 100%, 0 100%, 0 8px);
}

.product-template-request .documents-panel > ul > li > span {
  width: 43px;
  height: 39px;
  color: white;
  background: var(--gold);
  font-size: 12px;
}

.product-template-request .documents-panel > ul > li > strong {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}

.product-template-request .documents-panel > ul > li > em {
  color: white;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.05;
}

.product-template-request .detail-lead-form {
  gap: 10px;
  margin-top: 35px;
}

.product-template-request .detail-lead-form label {
  gap: 0;
}

.product-template-request .detail-lead-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.product-template-request .detail-lead-form input,
.product-template-request .detail-lead-form textarea {
  color: white;
  background: #52618f;
  border-color: #8094c1;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 11px) 100%, 0 100%, 0 8px);
}

.product-template-request .detail-lead-form input::placeholder,
.product-template-request .detail-lead-form textarea::placeholder {
  color: #c7cee3;
  opacity: 1;
}

.product-template-request .detail-lead-form input {
  height: 55px;
  padding: 0 15px;
  line-height: 53px;
}

.product-template-request .detail-lead-form textarea {
  min-height: 117px;
  padding: 14px 15px;
  line-height: 1.45;
  resize: none;
}

.product-template-request .detail-lead-form .button--form {
  min-height: 68px;
  padding: 0 24px;
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.product-template-request .detail-lead-form .form-note {
  margin-top: 5px;
  color: #c1c7dc;
}

.product-template-more {
  position: absolute;
  right: 50%;
  bottom: 102px;
  min-width: 224px;
  min-height: 44px;
  color: var(--gold);
  background: transparent;
  border-color: var(--gold);
  transform: translateX(50%);
}

.product-template-more:hover,
.product-template-more:focus-visible {
  color: var(--navy);
  background: var(--gold);
  transform: translate(50%, -2px);
}

.product-design-page .site-footer {
  height: 189px;
}

@media (max-width: 1040px) and (min-width: 821px) {
  .about-panel__grid {
    grid-template-columns: 438px 438px;
  }

  .about-panel__media {
    width: 438px;
  }

  .about-panel__copy > p {
    width: 420px;
  }

  .about-panel--business .about-panel__copy,
  .about-panel--team .about-panel__copy,
  .about-hero__heading,
  .products-showcase__heading,
  .category-template-hero__copy {
    padding-left: 42px;
  }

  .product-template-hero__grid {
    grid-template-columns: 1fr 438px;
  }

  .product-template-hero__media {
    width: 438px;
  }

  .category-product-card__top {
    grid-template-columns: 125px 1fr;
  }

  .category-product-card__top > strong {
    font-size: 54px;
  }

  .category-product-card__top > .category-product-card__badge--compact {
    font-size: 40px;
  }
}

@media (max-width: 820px) {
  .about-hero,
  .category-template-hero,
  .product-template-hero,
  .about-panel,
  .about-panel--values,
  .about-panel--team,
  .about-panel--ahead,
  .about-cta,
  .products-showcase,
  .product-template-description {
    height: auto;
    min-height: 0;
  }

  .about-hero__grid,
  .category-template-hero__grid,
  .product-template-hero__grid,
  .about-panel__grid,
  .about-cta__grid,
  .products-showcase__intro,
  .product-template-description__grid,
  .product-template-request__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__grid,
  .category-template-hero__grid {
    gap: 38px;
    padding-block: 76px 90px;
  }

  .about-hero__heading,
  .category-template-hero__copy,
  .products-showcase__heading,
  .product-template-hero__copy,
  .about-panel--business .about-panel__copy,
  .about-panel--team .about-panel__copy,
  .about-cta__grid > .display-title {
    padding-left: 0;
  }

  .about-hero__heading .display-title,
  .category-template-hero__copy .display-title {
    margin-top: 42px;
  }

  .about-hero__intro,
  .category-template-hero__intro {
    width: auto;
    margin: 0;
    padding: 0;
  }

  .about-panel {
    padding-block: 80px;
  }

  .about-panel__grid {
    gap: 45px;
  }

  .about-panel__copy,
  .about-panel--values .about-panel__copy,
  .about-panel--ahead .about-panel__copy {
    padding-top: 0;
  }

  .about-panel__copy > p,
  .about-panel--business .about-panel__copy > p,
  .about-panel--team .about-panel__copy > p,
  .about-panel--values .about-panel__copy > p,
  .about-panel--ahead .about-panel__copy > p {
    width: auto;
    margin-top: 42px;
  }

  .about-panel__media,
  .about-panel--ahead .about-panel__media {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-panel--business .about-panel__media,
  .about-panel--team .about-panel__media,
  .about-panel__grid--media-first .about-panel__media,
  .about-panel--business .about-panel__copy,
  .about-panel--team .about-panel__copy,
  .about-panel__grid--media-first .about-panel__copy {
    grid-row: auto;
    grid-column: auto;
  }

  .about-cta {
    padding-block: 80px;
  }

  .about-cta__grid {
    gap: 38px;
    padding-top: 0;
  }

  .products-showcase {
    padding: 80px 0;
    background: var(--navy);
  }

  .products-showcase__intro {
    padding-top: 0;
  }

  .products-showcase__heading .display-title,
  .products-showcase__intro > p {
    width: auto;
    margin-top: 42px;
  }

  .products-showcase .product-card h2 {
    font-size: 21px;
  }

  .products-showcase .product-card p {
    font-size: 13px;
  }

  .products-showcase__grid {
    position: relative;
    top: auto;
    margin-top: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .category-template-portfolio {
    min-height: 0;
  }

  .category-product-grid,
  .product-template-uses__grid {
    grid-template-columns: 1fr;
  }

  .category-product-card {
    height: auto;
    min-height: 264px;
  }

  .product-template-hero__grid {
    gap: 52px;
    padding-top: 76px;
  }

  .product-template-hero__copy {
    padding-top: 0;
  }

  .product-template-hero__media {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-template-description {
    padding-block: 80px;
  }

  .product-template-description__grid {
    gap: 38px;
  }

  .product-template-uses,
  .product-template-uses--3,
  .product-template-uses--4,
  .product-template-uses--5,
  .product-template-request {
    min-height: 0;
  }

  .product-template-request {
    padding: 90px 0 180px;
  }

  .product-template-request__grid {
    gap: 90px;
  }
}

/* --------------------------------------------------------------------------
   Inner pages
   -------------------------------------------------------------------------- */

.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.mobile-nav > a.is-active:not(.button) {
  color: var(--gold-soft);
}

.inner-page {
  background: white;
}

.motif--clean > .motif-art {
  display: none;
}

.page-hero {
  position: relative;
  height: 510px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero__geometry {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  pointer-events: none;
}

.page-hero__grid {
  display: grid;
  height: 100%;
  align-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  padding-top: 8px;
}

.page-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -50px;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero .display-title {
  max-width: 520px;
  align-self: start;
  font-size: 76px;
  line-height: 0.92;
}

.page-hero__intro {
  max-width: 460px;
  padding-top: 12px;
  color: #dce1f2;
  font-size: 15px;
  line-height: 1.45;
}

.page-hero__intro p {
  margin: 0;
}

.page-hero__intro p + p {
  margin-top: 18px;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  color: var(--gold-soft);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.anchor-nav a {
  position: relative;
}

.anchor-nav a::after {
  margin-left: 7px;
  content: "↘";
}

.inner-section {
  min-height: 650px;
  padding: 115px 0;
}

.inner-section--image {
  padding-block: 125px;
}

.editorial-split {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 108px;
}

.editorial-split > .display-title {
  font-size: 65px;
  line-height: 0.98;
}

.editorial-split > .display-title em {
  font-weight: 400;
}

.editorial-copy {
  font-size: 15px;
  line-height: 1.55;
}

.editorial-copy .display-title {
  margin-bottom: 34px;
  font-size: 61px;
}

.editorial-copy p {
  margin: 0;
}

.editorial-copy p + p {
  margin-top: 22px;
}

.editorial-copy strong {
  color: var(--navy);
  font-weight: 600;
}

.section-dark .editorial-copy {
  color: #dce1f2;
}

.section-dark .editorial-copy strong {
  color: white;
}

.section-label {
  margin: 0 0 20px !important;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inner-heading--split {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.inner-heading--split > .display-title {
  font-size: 65px;
}

.inner-heading--split > p {
  max-width: 470px;
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.section-dark .inner-heading--split > p {
  color: #dce1f2;
}

.sector-strip {
  display: grid;
  gap: 1px;
  margin-top: 82px;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(203, 219, 255, 0.16);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 22px) 100%, 0 100%, 0 14px);
}

.sector-strip--four {
  grid-template-columns: repeat(4, 1fr);
}

.sector-card {
  min-height: 210px;
  padding: 36px 30px;
  background: #242653;
}

.sector-card > span,
.capability-card > span {
  color: var(--gold);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sector-card h3 {
  margin: 40px 0 14px;
  color: white;
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.15;
}

.sector-card p {
  margin: 0;
  color: #cbd1e6;
  font-size: 13px;
  line-height: 1.45;
}

.image-copy-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 86px;
}

.image-copy-grid--reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.angled-media,
.category-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 24px) 100%, 0 100%, 0 14px);
}

.angled-media {
  aspect-ratio: 16 / 10;
}

.angled-media--tall {
  aspect-ratio: 4 / 5;
}

.angled-media img,
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-copy-grid .editorial-copy {
  padding-inline: 5px 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.values-band {
  padding: 112px 0 125px;
  background: var(--blue);
}

.values-band .inner-heading--split > p {
  color: #15172a;
}

.value-grid {
  display: grid;
  gap: 20px;
  margin-top: 74px;
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  min-height: 190px;
  padding: 34px 24px;
  color: white;
  background: #59699e;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 18px) 100%, 0 100%, 0 12px);
}

.value-card strong,
.value-card span {
  display: block;
}

.value-card strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.value-card span {
  margin-top: 54px;
  color: #eef2ff;
  font-size: 12px;
  line-height: 1.35;
}

.inner-cta {
  height: 430px;
  display: grid;
  align-items: center;
}

.inner-cta .contact-grid {
  transform: none;
}

/* Product catalog */

.catalog-category {
  position: relative;
  min-height: 900px;
  padding: 120px 0;
  scroll-margin-top: var(--header-height);
}

.catalog-category--dark {
  color: white;
}

.catalog-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 330px 1fr;
  gap: 86px;
}

.category-aside {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.category-image {
  aspect-ratio: 1 / 1.06;
  margin-bottom: 34px;
}

.category-aside .display-title {
  font-size: 61px;
}

.category-aside > p:not(.section-label) {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.catalog-category--dark .category-aside > p:not(.section-label) {
  color: #dce1f2;
}

.category-aside .button {
  width: 100%;
  margin-top: 32px;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-detail {
  color: var(--navy);
  background: rgba(136, 164, 215, 0.18);
  border: 1px solid rgba(62, 72, 126, 0.14);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 14px) 100%, 0 100%, 0 10px);
}

.catalog-category--dark .product-detail {
  color: white;
  background: rgba(79, 91, 139, 0.5);
  border-color: rgba(204, 221, 255, 0.18);
}

.product-detail summary {
  display: grid;
  align-items: center;
  min-height: 92px;
  padding: 22px 62px 22px 26px;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.product-detail summary::-webkit-details-marker {
  display: none;
}

.product-detail summary::after {
  position: absolute;
  right: 28px;
  color: var(--gold);
  content: "+";
  font-family: var(--ui);
  font-size: 26px;
  font-weight: 400;
}

.product-detail[open] summary::after {
  content: "−";
}

.product-detail summary span {
  color: var(--gold);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
}

.product-detail summary strong {
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.product-detail__content {
  padding: 0 32px 30px 82px;
  font-size: 13px;
  line-height: 1.55;
}

.product-detail__content p {
  margin: 0;
}

.product-detail__content p + p {
  margin-top: 16px;
}

.product-detail__content ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-detail__content li {
  position: relative;
  padding-left: 20px;
}

.product-detail__content li + li {
  margin-top: 9px;
}

.product-detail__content li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold);
  content: "";
}

/* Services */

.service-detail {
  min-height: 1200px;
  padding: 125px 0 130px;
  scroll-margin-top: var(--header-height);
}

.service-intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
}

.service-intro-grid--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.service-intro-grid .editorial-copy .display-title {
  font-size: 61px;
}

.service-tagline {
  /* было -10px: строка наезжала на выносные элементы заголовка (Support → p) */
  margin: 18px 0 32px !important;
  color: var(--gold);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capabilities-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 130px;
}

.capabilities-heading .display-title {
  font-size: 55px;
}

.capabilities-heading > p {
  max-width: 450px;
  margin: 15px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.section-dark .capabilities-heading > p {
  color: #dce1f2;
}

.capability-grid {
  display: grid;
  gap: 16px;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.capability-grid--five {
  grid-template-columns: repeat(6, 1fr);
}

.capability-grid--five .capability-card {
  grid-column: span 2;
}

.capability-grid--five .capability-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.capability-card {
  min-height: 220px;
  padding: 30px 26px;
  color: var(--navy);
  background: var(--blue);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 18px) 100%, 0 100%, 0 12px);
}

.section-dark .capability-card {
  color: white;
  background: #56669a;
}

.capability-card h4 {
  margin: 42px 0 14px;
  color: white;
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.2;
}

.capability-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.48;
}

.service-outro {
  max-width: 720px;
  margin: 82px auto 0;
  padding: 38px 44px;
  border-top: 1px solid rgba(70, 80, 135, 0.18);
  border-bottom: 1px solid rgba(70, 80, 135, 0.18);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.section-dark .service-outro {
  color: #dce1f2;
  border-color: rgba(204, 221, 255, 0.18);
}

.service-outro > p {
  margin: 0;
}

/* Contact */

.contact-workspace {
  min-height: 1040px;
  padding: 120px 0 130px;
}

.contact-workspace__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
}

.contact-form-wrap > .display-title {
  margin-bottom: 48px;
  font-size: 61px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #40466a;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--navy);
  background: rgba(136, 164, 215, 0.13);
  border: 1px solid rgba(55, 65, 120, 0.2);
  border-radius: 0;
  outline: none;
  font: inherit;
  font-size: 13px;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(136, 164, 215, 0.2);
  border-color: var(--gold);
}

.button--form {
  min-height: 59px;
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  cursor: pointer;
  font-size: 13px;
}

.button--form:hover,
.button--form:focus-visible {
  background: #4e5b8b;
  border-color: #4e5b8b;
}

.form-note,
.form-status {
  margin: -6px 0 0;
  color: #6f7594;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

/* Прямой контакт вместо формы приёма заявок (до подключения интейка) */
.contact-direct {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
}

.contact-direct__link {
  display: inline-block;
  color: var(--navy);
  font-family: var(--ui);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(202, 158, 103, 0.55);
  padding-bottom: 6px;
  width: fit-content;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-direct__link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* пояснение под прямыми контактами: не наследовать центрирование от формы */
.contact-direct + .form-note {
  margin-top: 0;
  max-width: 430px;
  color: #5c6280;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 720px) {
  .contact-direct__link {
    font-size: 18px;
  }
}

.form-status {
  min-height: 14px;
  color: var(--gold);
}

.contact-aside {
  padding-top: 18px;
}

.contact-photo {
  aspect-ratio: 16 / 10;
}

.contact-channel-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-channel {
  padding: 24px 26px;
  color: white;
  background: #58689c;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 12px) 100%, 0 100%, 0 8px);
}

.contact-channel > span {
  color: var(--gold-soft);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-channel h3 {
  margin: 12px 0 5px;
  font-family: var(--ui);
  font-size: 15px;
}

.contact-channel a {
  color: #eef2ff;
  font-size: 12px;
}

.contact-channel a:hover,
.contact-channel a:focus-visible {
  color: var(--gold-soft);
}

.contact-guidance {
  min-height: 620px;
  padding: 110px 0 120px;
}

.contact-guidance .sector-card {
  min-height: 190px;
}

@media (max-width: 1040px) {
  .page-hero__grid {
    gap: 45px;
  }

  .page-hero .display-title {
    font-size: 68px;
  }

  .editorial-split,
  .inner-heading--split,
  .image-copy-grid,
  .service-intro-grid,
  .capabilities-heading,
  .contact-workspace__grid {
    gap: 55px;
  }

  .catalog-layout {
    grid-template-columns: 290px 1fr;
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .page-hero {
    height: auto;
    min-height: 620px;
  }

  .page-hero__grid {
    align-content: center;
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 80px;
  }

  .page-kicker {
    margin-bottom: -8px;
  }

  .page-hero .display-title {
    font-size: clamp(58px, 11vw, 76px);
  }

  .page-hero__intro {
    max-width: 560px;
    padding-top: 0;
  }

  .inner-section,
  .values-band,
  .catalog-category,
  .service-detail,
  .contact-workspace,
  .contact-guidance {
    min-height: 0;
    padding-block: 90px;
  }

  .editorial-split,
  .inner-heading--split,
  .image-copy-grid,
  .image-copy-grid--reverse,
  .catalog-layout,
  .service-intro-grid,
  .service-intro-grid--reverse,
  .capabilities-heading,
  .contact-workspace__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .image-copy-grid--reverse .editorial-copy {
    order: 1;
  }

  .image-copy-grid--reverse .angled-media {
    order: 2;
  }

  .sector-strip,
  .sector-strip--four,
  .value-grid,
  .capability-grid,
  .capability-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid--five .capability-card,
  .capability-grid--five .capability-card:nth-last-child(2) {
    grid-column: auto;
  }

  .category-aside {
    position: static;
    display: grid;
    align-items: end;
    grid-template-columns: 0.8fr 1fr;
    gap: 0 34px;
  }

  .category-image {
    margin: 0;
    grid-row: 1 / span 5;
  }

  .category-aside .button {
    width: min(280px, 100%);
  }

  .service-intro-grid--reverse .angled-media {
    order: 2;
  }

  .service-intro-grid--reverse .editorial-copy {
    order: 1;
  }

  .angled-media--tall {
    aspect-ratio: 16 / 10;
  }

  .inner-cta {
    height: auto;
    min-height: 430px;
    padding-block: 88px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: 580px;
  }

  .page-hero__grid {
    padding-block: 70px;
  }

  .page-hero .display-title,
  .editorial-split > .display-title,
  .editorial-copy .display-title,
  .inner-heading--split > .display-title,
  .category-aside .display-title,
  .service-intro-grid .editorial-copy .display-title,
  .capabilities-heading .display-title,
  .contact-form-wrap > .display-title {
    font-size: 47px;
  }

  .anchor-nav {
    flex-direction: column;
    gap: 11px;
  }

  .sector-strip,
  .sector-strip--four,
  .value-grid,
  .capability-grid,
  .capability-grid--five {
    grid-template-columns: 1fr;
  }

  .sector-card,
  .capability-card {
    min-height: 180px;
  }

  .category-aside {
    display: block;
  }

  .category-image {
    margin-bottom: 32px;
  }

  .product-detail summary {
    min-height: 82px;
    padding: 18px 48px 18px 20px;
    grid-template-columns: 28px 1fr;
  }

  .product-detail summary::after {
    right: 20px;
  }

  .product-detail summary strong {
    font-size: 14px;
  }

  .product-detail__content {
    padding: 0 22px 25px 48px;
  }

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

  .service-outro {
    padding-inline: 12px;
  }

  .value-card span {
    margin-top: 36px;
  }
}

/* --------------------------------------------------------------------------
   Generated category, product and service routes
   -------------------------------------------------------------------------- */

.route-page {
  background: var(--paper);
}

.route-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
}

.route-hero__geometry {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  pointer-events: none;
}

.route-hero__grid {
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 78px;
  padding-block: 76px;
}

.route-hero__copy,
.route-hero__media {
  position: relative;
  z-index: 2;
}

.route-hero__copy > .section-label {
  margin-top: 32px !important;
}

.route-hero__copy > .display-title {
  max-width: 620px;
  font-size: clamp(54px, 5vw, 76px);
  line-height: 0.95;
}

.route-hero--product .route-hero__copy > .display-title {
  font-size: clamp(43px, 4.3vw, 64px);
  line-height: 1;
}

.route-hero__copy > p:not(.section-label):not(.service-tagline) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #dce1f2;
  font-size: 15px;
  line-height: 1.5;
}

.route-hero__media {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #4d5c91;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 24px) 100%, 0 100%, 0 16px);
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #bdc5df;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--gold-soft);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: white;
}

.route-section {
  position: relative;
  padding: 118px 0 125px;
}

.route-section--light {
  color: var(--ink);
  background: white;
}

.route-section--blue {
  color: #101220;
  background: var(--blue);
}

.route-section--dark {
  color: white;
  background: var(--navy);
}

.route-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}

.route-heading > .display-title,
.route-heading__title > .display-title {
  font-size: clamp(50px, 5vw, 68px);
}

/* Лента-акцент у заголовка секции — тот же паттерн, что на страницах
   продуктов (.product-template-title): рядом с началом фразы. */
.route-heading__title {
  position: relative;
}

.route-heading__title > .heading-ribbon {
  position: absolute;
  z-index: 0;
  /* сдвинут влево: акцент стоит РЯДОМ с началом фразы и лишь слегка
     заходит под первую букву — не перекрывает текст заголовка */
  top: -34px;
  left: -158px;
  width: 265px;
  height: 275px;
  opacity: 0.55;
  pointer-events: none;
}

.route-heading__title > .display-title {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Правка дизайнера: на странице «Services» контурные прямоугольники фоновых
   мотивов мешали читать контент — убраны. Скоуп только этой страницы,
   на главной те же мотивы остаются. */
.services-index-page .service-detail > .motif-art,
.services-index-page .inner-cta > .motif-art {
  display: none;
}


.route-heading > p {
  max-width: 510px;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.detail-card-grid {
  display: grid;
  gap: 22px;
  margin-top: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  min-width: 0;
  overflow: hidden;
  color: var(--navy);
  background: rgba(136, 164, 215, 0.19);
  border: 1px solid rgba(49, 61, 118, 0.12);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 18px) 100%, 0 100%, 0 12px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.detail-card:hover,
.detail-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(28, 35, 84, 0.16);
}

.product-route-card {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.product-route-card figure {
  min-height: 245px;
  margin: 0;
  overflow: hidden;
}

.product-route-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-route-card:hover figure img,
.product-route-card:focus-visible figure img {
  transform: scale(1.045);
}

.product-route-card > div {
  min-width: 0;
  padding: 27px 27px 24px;
}

.product-route-card h2 {
  margin: 0;
  font-family: var(--ui);
  font-size: 18px;
  line-height: 1.25;
}

.product-route-card > div > p:not(.section-label) {
  display: -webkit-box;
  overflow: hidden;
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-route-card .text-link {
  margin-top: 20px;
}

.prose-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 90px;
}

.prose-grid > .section-label {
  margin-top: 8px !important;
}

/* «Overview» оформлен как «Description» на страницах продуктов — серифный
   заголовок (Times New Roman), а не мелкая золотая метка. */
.prose-grid > .display-title {
  margin: 0;
  font-size: 44px;
  line-height: 1.06;
}

.route-prose {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.65;
}

.route-prose p {
  margin: 0;
}

.route-prose p + p {
  margin-top: 24px;
}

.uses-grid {
  display: grid;
  gap: 18px;
  margin: 70px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.use-card {
  min-height: 220px;
  padding: 32px;
  color: white;
  background: #58699f;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 18px) 100%, 0 100%, 0 12px);
}

.use-card > span,
.service-route-card > span {
  color: var(--gold-soft);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.use-card h3 {
  margin: 38px 0 12px;
  font-family: var(--ui);
  font-size: 17px;
}

.use-card p {
  margin: 38px 0 0;
  color: #eef2ff;
  font-size: 13px;
  line-height: 1.52;
}

.use-card h3 + p {
  margin-top: 12px;
}

.request-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 92px;
}

.request-grid--single {
  display: block;
}

.request-grid--single .lead-panel {
  max-width: 760px;
  margin-inline: auto;
}

.documents-panel > .display-title,
.lead-panel > .display-title {
  font-size: clamp(47px, 4.5vw, 62px);
}

.documents-panel > p:not(.section-label),
.lead-panel > p:not(.section-label) {
  margin: 28px 0 0;
  color: #d7dcef;
  font-size: 14px;
  line-height: 1.55;
}

.documents-panel > ul {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.documents-panel > ul > li {
  display: grid;
  align-items: center;
  min-height: 70px;
  padding: 14px 18px;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  background: rgba(136, 164, 215, 0.12);
  border: 1px solid rgba(203, 220, 255, 0.18);
}

.documents-panel > ul > li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold-soft);
  background: rgba(202, 158, 103, 0.12);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
}

.documents-panel > ul > li > strong {
  font-family: var(--ui);
  font-size: 13px;
}

.documents-panel > ul > li > em {
  color: #bfc6df;
  font-size: 10px;
  font-style: normal;
}

.detail-lead-form {
  display: grid;
  gap: 18px;
  margin-top: 35px;
}

.detail-lead-form label {
  display: grid;
  gap: 8px;
}

.detail-lead-form label > span {
  color: var(--gold-soft);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-lead-form input,
.detail-lead-form textarea {
  width: 100%;
  color: white;
  background: rgba(136, 164, 215, 0.1);
  border: 1px solid rgba(203, 220, 255, 0.24);
  border-radius: 0;
  outline: none;
  font: inherit;
  font-size: 13px;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.detail-lead-form input {
  height: 52px;
  padding-inline: 15px;
}

.detail-lead-form textarea {
  min-height: 145px;
  padding: 14px 15px;
  resize: vertical;
}

.detail-lead-form input:focus,
.detail-lead-form textarea:focus {
  background: rgba(136, 164, 215, 0.18);
  border-color: var(--gold);
}

.detail-lead-form .form-note {
  color: #aeb6d2;
}

.related-section .product-route-card {
  display: block;
}

.related-section .product-route-card figure {
  height: 190px;
  min-height: 0;
}

.service-route-grid {
  display: grid;
  gap: 18px;
  margin-top: 70px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-route-card {
  min-height: 245px;
  padding: 32px 29px;
  color: white;
  background: #58699f;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 18px) 100%, 0 100%, 0 12px);
}

.service-route-card h3 {
  margin: 42px 0 13px;
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.25;
}

.service-route-card p {
  margin: 0;
  color: #eef2ff;
  font-size: 12px;
  line-height: 1.5;
}

.service-outro-route .prose-grid > .display-title {
  font-size: clamp(47px, 4.5vw, 62px);
}

@media (max-width: 1040px) {
  .route-hero__grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 54px;
  }

  .product-route-card {
    grid-template-columns: 160px 1fr;
  }

  .request-grid {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .route-hero,
  .route-hero__grid {
    min-height: 0;
  }

  .route-hero__grid,
  .route-heading,
  .prose-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .route-hero__grid {
    gap: 48px;
    padding-block: 75px 88px;
  }

  .route-hero__media {
    max-width: 620px;
  }

  .route-section {
    padding-block: 88px;
  }

  .route-heading,
  .prose-grid,
  .request-grid {
    gap: 42px;
  }

  .detail-card-grid,
  .detail-card-grid--three,
  .service-route-grid,
  .uses-grid {
    grid-template-columns: 1fr;
  }

  .product-route-card {
    grid-template-columns: 210px 1fr;
  }

  .related-section .product-route-card {
    display: grid;
  }

  .related-section .product-route-card figure {
    height: auto;
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .route-hero__copy > .display-title,
  .route-hero--product .route-hero__copy > .display-title,
  .route-heading > .display-title,
  .documents-panel > .display-title,
  .lead-panel > .display-title,
  .service-outro-route .prose-grid > .display-title {
    font-size: 45px;
  }

  .route-hero__copy > p:not(.section-label):not(.service-tagline),
  .route-heading > p,
  .route-prose {
    font-size: 14px;
  }

  .product-route-card,
  .related-section .product-route-card {
    display: block;
  }

  .product-route-card figure,
  .related-section .product-route-card figure {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .use-card,
  .service-route-card {
    min-height: 0;
  }

  .documents-panel > ul > li {
    grid-template-columns: 44px 1fr;
  }

  .documents-panel > ul > li > em {
    grid-column: 2;
  }
}

/* --------------------------------------------------------------------------
   Pixel-locked desktop pass from the packaged Illustrator PDFs.
   These backgrounds contain vector artwork only: all PDF glyphs and linked
   raster images are removed by tools/extract-design-vectors.sh.
   -------------------------------------------------------------------------- */

@media (min-width: 821px) {
  .site-header {
    height: 65px;
    box-sizing: border-box;
  }

  .header-inner {
    height: 64px;
  }

  /*
   * Illustrator's homepage artwork is authored on a 1440 px canvas. Keep the
   * decorative vectors on that canvas on wide monitors; stretching them to the
   * viewport moves long diagonal/vertical strokes across copy and cards.
   */
  .home-design-page .motif-art {
    right: auto;
    left: 50%;
    width: min(100%, 1440px);
    max-width: 1440px;
    transform: translateX(-50%);
  }

  .about-design-page main {
    background: url("assets/vectors/about-desktop-background.svg") center top / 1440px 3122px no-repeat;
  }

  .about-design-page .about-hero,
  .about-design-page .about-panel,
  .about-design-page .about-cta {
    background-color: transparent;
  }

  .about-design-page .about-hero__geometry,
  .about-design-page .motif-art,
  .about-design-page .about-panel__ribbon-title > img {
    display: none;
  }

  .about-design-page .about-panel--team {
    height: 504px;
  }

  .about-design-page .about-panel--ahead {
    height: 507px;
  }

  .about-design-page .about-cta {
    height: 511px;
  }

  .about-design-page .site-footer {
    height: 196px;
  }

  .about-panel--business .about-panel__copy > .display-title,
  .about-panel--team .about-panel__copy > .display-title {
    transform: translateY(-3px);
  }

  .about-hero__heading .display-title,
  .about-panel__copy .display-title,
  .about-cta__grid > .display-title,
  .products-showcase__heading .display-title,
  .category-template-hero__copy .display-title {
    font-size: 68px;
    line-height: 1;
    letter-spacing: 0;
  }

  .about-hero__heading .display-title {
    margin-top: 58px;
    transform: translateX(-2px);
  }

  .about-panel__copy strong {
    font-weight: 600;
  }

  .about-hero__intro,
  .about-panel__copy > p,
  .about-cta__copy {
    font-size: 15px;
    line-height: 1.2;
  }

  .about-hero__intro {
    margin-left: 16px;
  }

  .about-panel--business .about-panel__media,
  .about-panel--team .about-panel__media {
    width: 496px;
    transform: translateX(4px);
  }

  .about-panel--business .about-panel__copy > p,
  .about-panel--team .about-panel__copy > p {
    margin-left: -78px;
    margin-top: 90px;
  }

  .about-panel--values .about-panel__ribbon-title,
  .about-panel--ahead .about-panel__ribbon-title {
    transform: translate(115px, -1px);
  }

  .about-panel--values .about-panel__copy > p,
  .about-panel--ahead .about-panel__copy > p {
    margin-left: -12px;
  }

  .about-panel--values .about-panel__copy > p {
    margin-top: 63px;
  }

  .about-panel--values .about-panel__copy > p + p {
    margin-top: 18px;
  }

  .about-panel--ahead .about-panel__copy > p {
    margin-top: 39px;
  }

  .about-cta__grid {
    padding-top: 149px;
  }

  .about-cta__copy {
    margin-left: 4px;
  }

  .about-cta__actions,
  .about-cta__actions .button {
    width: 329px;
  }

  .about-cta__actions .button {
    background: transparent;
    border-color: transparent;
    clip-path: none;
    font-size: 21px;
    transform: none;
  }

  .about-cta__actions .button--contact {
    color: #101326;
  }

  .about-cta__actions .button--gold {
    color: white;
  }

  .about-cta__actions .button:hover,
  .about-cta__actions .button:focus-visible {
    background: transparent;
    border-color: transparent;
    transform: none;
  }

  .about-cta__actions {
    gap: 18px;
    margin-top: 66px;
  }

  .products-showcase {
    background: url("assets/vectors/products-desktop-background.svg") center top / 1440px 950px no-repeat;
  }

  .products-showcase__hero-art,
  .products-showcase__lower-art {
    display: none;
  }

  .products-showcase__intro > p {
    margin-top: 70px;
    margin-left: 16px;
  }

  .products-showcase__heading .display-title {
    margin-top: 54px;
    transform: translateX(-2px);
  }

  .category-template-hero__geometry,
  .product-template-hero__geometry {
    height: 590px;
  }

  .category-template-hero__intro {
    margin-left: 16px;
  }

  .category-template-hero__copy .display-title {
    margin-top: 58px;
    transform: translateX(-2px);
  }

  .category-template-portfolio__inner {
    padding-bottom: 74px;
  }

  .category-product-card__top > strong {
    font-size: 65px;
  }

  .category-product-card__top > .category-product-card__badge--compact {
    font-size: 50px;
    letter-spacing: -0.045em;
  }

  .category-product-card__top > strong:has(br) {
    font-size: 44px;
    line-height: 0.88;
  }

  .category-product-card > p {
    font-size: 15px;
    line-height: 1.2;
  }

  .category-product-card > span {
    font-size: 15px;
  }

  .category-template-cta {
    font-size: 21px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .category-alcohols .category-template-portfolio {
    background: url("assets/vectors/alcohols-portfolio-background.svg") center top / 1440px 1073px no-repeat;
  }

  .category-alcohols .category-template-portfolio__art {
    display: none;
  }

  .category-alcohols .category-product-card,
  .category-alcohols .category-product-card:hover,
  .category-alcohols .category-product-card:focus-visible,
  .category-alcohols .category-template-cta {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    clip-path: none;
    transform: none;
  }

  .product-ena-96 main {
    background: url("assets/vectors/ena-product-background.svg") center top / 1440px 2248px no-repeat;
  }

  .product-ena-96 .product-template-hero,
  .product-ena-96 .product-template-description,
  .product-ena-96 .product-template-uses,
  .product-ena-96 .product-template-request {
    background-color: transparent;
  }

  .product-ena-96 .product-template-hero__geometry,
  .product-ena-96 .product-template-uses__art,
  .product-ena-96 .product-template-title > img {
    display: none;
  }

  .product-ena-96 .use-card,
  .product-ena-96 .documents-panel > ul > li,
  .product-ena-96 .documents-panel > ul > li > span,
  .product-ena-96 .detail-lead-form input,
  .product-ena-96 .detail-lead-form textarea,
  .product-ena-96 .detail-lead-form .button--form,
  .product-ena-96 .product-template-more {
    background: transparent;
    border-color: transparent;
    clip-path: none;
  }

  .product-template-hero__copy {
    padding-top: 139px;
    padding-left: 77px;
  }

  .product-template-hero__copy .breadcrumbs {
    margin-left: 11px;
  }

  .product-template-hero__copy .display-title {
    margin-top: 59px;
    font-size: 64px;
    line-height: 1.0625;
    letter-spacing: 0;
    transform: translateX(2px);
  }

  .product-template-hero__copy .display-title > span {
    display: block;
    width: max-content;
    white-space: nowrap;
  }

  .product-pharma-96 .product-template-hero__copy .display-title {
    font-size: 60px;
  }

  .product-fuel-99-9 .product-template-hero__copy .display-title {
    font-size: 54px;
  }

  .product-industrial-99 .product-template-hero__copy .display-title,
  .product-heads-tails .product-template-hero__copy .display-title {
    font-size: 45px;
  }

  .product-ddgs .product-template-hero__copy .display-title {
    font-size: 50px;
  }

  .product-liquid-co2 .product-template-hero__copy .display-title {
    font-size: 47px;
  }

  .product-template-hero__link {
    margin-top: 30px;
  }

  .product-template-description__grid {
    align-items: start;
    grid-template-columns: 360px 1fr;
    gap: 168px;
    padding-top: 71px;
  }

  .product-template-description .display-title,
  .product-template-title--uses .display-title,
  .product-template-request .product-template-title .display-title {
    font-size: 64px;
    line-height: 1.0625;
    letter-spacing: 0;
  }

  .product-template-description p {
    margin-top: 3px;
    font-size: 15px;
    line-height: 1.2;
  }

  .product-template-title--uses {
    padding-left: 77px;
  }

  .product-template-title--uses .display-title {
    transform: translateY(9px);
  }

  .product-design-page:not(.product-ena-96) .product-template-uses {
    background-color: var(--blue-soft);
    background-image: url("assets/vectors/product-uses-background.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 1440px 260px;
  }

  .product-ena-96 .product-template-uses {
    background-color: transparent;
    background-image: none;
  }

  .product-template-uses__art,
  .product-template-title--uses > img {
    display: none;
  }

  .product-template-uses__grid {
    margin-top: 27px;
  }

  .product-template-uses .use-card > span {
    font-size: 49px;
  }

  .product-template-uses .use-card p,
  .product-template-uses .use-card h3 + p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.2;
  }

  .product-template-request__grid {
    gap: 32px;
  }

  .product-template-request .documents-panel .product-template-title {
    padding-left: 77px;
  }

  .product-template-request .lead-panel .product-template-title {
    padding-left: 126px;
  }

  .product-template-request .lead-panel > p {
    width: 447px;
    margin-left: 49px;
  }

  .product-template-request .product-template-title .section-label {
    margin-bottom: 16px !important;
  }

  .product-template-request .documents-panel > p,
  .product-template-request .lead-panel > p {
    font-size: 15px;
    line-height: 1.2;
  }

  .product-template-request .documents-panel > ul > li > span {
    font-size: 16px;
  }

  .product-template-request .documents-panel > ul > li > strong {
    font-size: 21px;
  }

  .product-template-request .documents-panel > ul > li > em {
    font-size: 13px;
  }

  .product-template-request .documents-panel > ul > li {
    height: 67px;
    min-height: 67px;
    padding-inline: 18px;
  }

  .product-template-request .documents-panel > ul {
    gap: 20.5px;
    margin-top: 36.5px;
  }

  .product-template-request .detail-lead-form {
    gap: 12.5px;
    margin-top: 38.5px;
  }

  .product-template-request .detail-lead-form .form-row {
    gap: 10px;
  }

  .product-template-request .detail-lead-form input,
  .product-template-request .detail-lead-form textarea {
    font-size: 15px;
    padding-inline: 24px;
  }

  .product-template-request .detail-lead-form input {
    height: 54px;
  }

  .product-template-request .detail-lead-form textarea {
    height: 117px;
    min-height: 117px;
  }

  .product-template-request .detail-lead-form .button--form {
    height: 67px;
    min-height: 67px;
    font-size: 21px;
  }

  .product-template-request .detail-lead-form .form-note {
    font-size: 13px;
  }

  .product-ena-96 .product-template-more {
    bottom: 81px;
  }

  .product-ena-96 .use-card:nth-child(2) > span,
  .product-ena-96 .use-card:nth-child(2) > p {
    transform: translateX(3px);
  }

  .product-design-page:not(.product-ena-96) .product-template-description {
    height: auto;
    min-height: 252px;
  }

  .product-design-page:not(.product-ena-96) .product-template-description__grid {
    height: auto;
    min-height: 252px;
    padding-block: 71px 60px;
  }

  .footer-inner {
    justify-content: flex-start;
    padding-left: 240px;
    transform: translateY(-10px);
  }

  .footer-inner p {
    font-size: 15px;
    line-height: 1.2;
  }
}
