:root {
  --hy-ink: #101c25;
  --hy-navy: #142d3a;
  --hy-blue: #21566d;
  --hy-orange: #c84e2c;
  --hy-orange-dark: #a93d21;
  --hy-cloud: #f0f2f1;
  --hy-white: #ffffff;
  --hy-mist: #dbe1e1;
  --hy-steel: #52636b;
  --hy-line: #c7d0d1;
  --hy-dark-line: rgba(255, 255, 255, 0.16);
  --z-header: 30;
  --z-menu: 40;
}

body.theme-a {
  background: var(--hy-cloud);
  color: var(--hy-ink);
  font-family: "Source Sans 3", sans-serif;
}

.a-shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.a-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(16, 28, 37, 0.96);
  color: var(--hy-white);
  border-bottom: 1px solid var(--hy-dark-line);
  backdrop-filter: blur(18px);
}

.a-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.a-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--hy-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.a-logo__mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1;
}

.a-logo__dot {
  width: 7px;
  height: 7px;
  margin-left: -7px;
  align-self: flex-end;
  background: var(--hy-orange);
}

.a-links {
  display: flex;
  align-items: center;
  gap: 27px;
}

.a-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.a-links a:hover,
.a-links a[aria-current="page"] {
  color: var(--hy-white);
}

.a-nav__cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--hy-orange);
  color: var(--hy-white) !important;
}

.a-nav__cta:hover {
  background: var(--hy-orange-dark);
}

.a-menu {
  display: none;
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--hy-white);
  font-weight: 700;
  cursor: pointer;
}

.a-mobile {
  position: fixed;
  inset: 74px 0 auto;
  z-index: var(--z-menu);
  padding: 12px 24px 24px;
  background: var(--hy-ink);
  border-top: 1px solid var(--hy-dark-line);
  box-shadow: 0 24px 50px rgba(8, 18, 24, 0.26);
}

.a-mobile a {
  display: block;
  padding: 14px 0;
  color: var(--hy-white);
  border-bottom: 1px solid var(--hy-dark-line);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.a-hero {
  background: var(--hy-ink);
  color: var(--hy-white);
  overflow: hidden;
}

.a-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  min-height: min(790px, calc(100vh - 74px));
}

.a-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(82px, 10vw, 150px) clamp(42px, 6vw, 88px) clamp(82px, 10vw, 150px) 0;
}

.a-kicker {
  margin: 0 0 24px;
  color: #f4a88e;
  font-size: 14px;
  font-weight: 700;
}

.a-hero h1,
.a-page-hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.a-hero h1 strong {
  color: #f49a78;
  font-weight: 600;
}

.a-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
  text-wrap: pretty;
}

.a-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.a-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background 180ms ease, color 180ms ease;
}

.a-button:hover {
  transform: translateY(-2px);
}

.a-button--primary {
  border-color: var(--hy-orange);
  background: var(--hy-orange);
  color: var(--hy-white);
}

.a-button--primary:hover {
  border-color: var(--hy-orange-dark);
  background: var(--hy-orange-dark);
}

.a-button--light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--hy-white);
}

.a-button--light:hover {
  background: var(--hy-white);
  color: var(--hy-ink);
}

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

.a-hero__visual {
  position: relative;
  min-height: 640px;
}

.a-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--hy-ink) 0%, rgba(16, 28, 37, 0.42) 15%, transparent 45%);
  pointer-events: none;
}

.a-hero__visual img {
  width: calc(100% + max(24px, (100vw - 1200px) / 2));
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.7) contrast(1.05) brightness(0.84);
}

.a-hero__stamp {
  position: absolute;
  right: 24px;
  bottom: 26px;
  z-index: 2;
  width: min(290px, calc(100% - 48px));
  padding: 18px 20px;
  background: rgba(16, 28, 37, 0.9);
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 12px;
  line-height: 1.5;
}

.a-scope-bar {
  background: var(--hy-orange);
  color: var(--hy-white);
}

.a-scope-bar__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.a-scope-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.a-scope-bar a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.a-scope-bar a:hover {
  background: rgba(109, 31, 13, 0.18);
}

.a-section {
  padding: clamp(78px, 9vw, 128px) 0;
}

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

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

.a-section--ink {
  background: var(--hy-ink);
  color: var(--hy-white);
}

.a-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: start;
  margin-bottom: clamp(52px, 7vw, 84px);
}

.a-heading__aside {
  color: var(--hy-blue);
  font-weight: 700;
}

.a-heading h2,
.a-split h2,
.a-rfq h2,
.a-page-section h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.a-heading p,
.a-split__copy > p,
.a-page-section__lead {
  max-width: 66ch;
  margin: 22px 0 0;
  color: var(--hy-steel);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
}

.a-section--navy .a-heading__aside,
.a-section--ink .a-heading__aside {
  color: #f4a88e;
}

.a-section--navy .a-heading p,
.a-section--ink .a-heading p,
.a-section--navy .a-split__copy > p,
.a-section--ink .a-split__copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.a-solutions {
  border-top: 1px solid var(--hy-line);
}

.a-solution {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.78fr) minmax(280px, 1.22fr) 48px;
  gap: 28px;
  align-items: center;
  min-height: 154px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hy-line);
  text-decoration: none;
  transition: background 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.a-solution:hover {
  background: #e8eceb;
  transform: translateX(8px);
}

.a-solution__number {
  color: var(--hy-orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.a-solution h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(29px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.a-solution p {
  max-width: 60ch;
  margin: 0;
  color: var(--hy-steel);
  line-height: 1.65;
}

.a-solution__arrow {
  font-size: 28px;
  text-align: right;
}

.a-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: center;
}

.a-split--reverse .a-split__visual {
  order: 2;
}

.a-split__visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #cfd6d5;
}

.a-split__visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.04);
}

.a-visual-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 265px;
  padding: 14px 16px;
  background: rgba(16, 28, 37, 0.9);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.a-material-board {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: var(--hy-ink);
}

.a-swatch {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background-color: #d8d9d5;
}

.a-swatch--stone {
  grid-row: 1 / 3;
  background:
    linear-gradient(112deg, transparent 0 39%, rgba(255, 255, 255, 0.8) 40% 40.6%, transparent 41.5%),
    linear-gradient(64deg, transparent 0 64%, rgba(122, 129, 129, 0.35) 65% 65.7%, transparent 66.5%),
    linear-gradient(155deg, #c8cbc8, #f0f0ed 48%, #b8bdbb);
}

.a-swatch--terrazzo {
  background-color: #c6c9c2;
  background-image:
    radial-gradient(circle at 18% 22%, #7c8582 0 4px, transparent 5px),
    radial-gradient(circle at 67% 31%, #8f5d49 0 6px, transparent 7px),
    radial-gradient(circle at 42% 72%, #ece8df 0 8px, transparent 9px),
    radial-gradient(circle at 82% 81%, #637374 0 5px, transparent 6px);
  background-size: 76px 76px;
}

.a-swatch--clay {
  background:
    repeating-linear-gradient(90deg, transparent 0 83px, rgba(255, 255, 255, 0.28) 84px 86px),
    repeating-linear-gradient(0deg, transparent 0 83px, rgba(255, 255, 255, 0.28) 84px 86px),
    linear-gradient(135deg, #9b533c, #c77a5c);
}

.a-swatch span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(16, 28, 37, 0.88);
  color: var(--hy-white);
  font-size: 12px;
  font-weight: 700;
}

.a-spec-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid currentColor;
}

.a-spec-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) 1.45fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid currentColor;
}

.a-spec-list dt {
  font-weight: 700;
}

.a-spec-list dd {
  margin: 0;
  color: inherit;
  opacity: 0.72;
}

.a-check-board {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  background: var(--hy-white);
  border: 1px solid var(--hy-line);
  color: var(--hy-ink);
}

.a-check-board::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border: 60px solid rgba(33, 86, 109, 0.08);
  border-radius: 50%;
}

.a-check-board__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--hy-ink);
  font-weight: 700;
}

.a-check-board__id {
  color: var(--hy-orange);
}

.a-check-lines {
  display: grid;
  gap: 0;
  margin: 32px 0;
}

.a-check-line {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--hy-line);
}

.a-check-line i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hy-blue);
  color: var(--hy-blue);
  font-size: 11px;
  font-style: normal;
}

.a-check-line small {
  color: var(--hy-steel);
}

.a-check-board__foot {
  max-width: 45ch;
  color: var(--hy-steel);
  font-size: 13px;
  line-height: 1.55;
}

.a-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--hy-dark-line);
  border-bottom: 1px solid var(--hy-dark-line);
}

.a-process article {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid var(--hy-dark-line);
}

.a-process article:last-child {
  border-right: 0;
}

.a-process strong {
  display: block;
  color: #f4a88e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.a-process h3 {
  margin: 54px 0 10px;
  font-size: 18px;
}

.a-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.55;
}

.a-about-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.a-about-strip__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.a-about-strip__copy p {
  max-width: 64ch;
  margin: 0 0 22px;
  color: var(--hy-steel);
  font-size: 18px;
  line-height: 1.7;
}

.a-rfq {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: start;
}

.a-rfq__aside > p {
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.a-rfq__aside ul {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.a-rfq__aside li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hy-dark-line);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.a-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(28px, 5vw, 50px);
  background: var(--hy-white);
  color: var(--hy-ink);
}

.a-field {
  display: grid;
  gap: 8px;
}

.a-field--full {
  grid-column: 1 / -1;
}

.a-field label {
  font-size: 13px;
  font-weight: 700;
}

.a-field input,
.a-field select,
.a-field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #849398;
  border-radius: 0;
  background: transparent;
  color: var(--hy-ink);
}

.a-field input::placeholder,
.a-field textarea::placeholder {
  color: #59676c;
  opacity: 1;
}

.a-field textarea {
  min-height: 120px;
  resize: vertical;
}

.a-field input[type="file"] {
  font-size: 13px;
}

.a-form button {
  grid-column: 1 / -1;
  min-height: 56px;
  border: 0;
  background: var(--hy-orange);
  color: var(--hy-white);
  font-weight: 700;
  cursor: pointer;
}

.a-form button:hover {
  background: var(--hy-orange-dark);
}

.a-form__status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--hy-blue);
  font-size: 13px;
  line-height: 1.5;
}

.a-footer {
  padding: 62px 0 30px;
  background: #0b151c;
  color: var(--hy-white);
}

.a-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.65fr 0.85fr;
  gap: 44px;
}

.a-footer h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.a-footer h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.a-footer p,
.a-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.a-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.a-footer a:hover {
  color: var(--hy-white);
}

.a-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--hy-dark-line);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

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

.a-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 640px;
  align-items: stretch;
}

.a-page-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(74px, 9vw, 120px) clamp(38px, 6vw, 78px) clamp(74px, 9vw, 120px) 0;
}

.a-page-hero__copy p:last-of-type {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.65;
}

.a-page-hero__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.a-page-hero__visual img {
  width: calc(100% + max(24px, (100vw - 1200px) / 2));
  max-width: none;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.78);
}

.a-page-section {
  padding: clamp(78px, 9vw, 124px) 0;
}

.a-page-section--white {
  background: var(--hy-white);
}

.a-page-section--navy {
  background: var(--hy-navy);
  color: var(--hy-white);
}

.a-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hy-line);
  border: 1px solid var(--hy-line);
}

.a-page-grid article {
  min-height: 270px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--hy-white);
}

.a-page-grid h3 {
  margin: 0 0 15px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 1.04;
}

.a-page-grid p {
  margin: 0;
  color: var(--hy-steel);
  line-height: 1.65;
}

.a-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hy-line);
}

.a-spec-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--hy-white);
}

.a-spec-table th,
.a-spec-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--hy-line);
  text-align: left;
  vertical-align: top;
}

.a-spec-table th {
  background: #e8eceb;
  font-size: 13px;
}

.a-spec-table td {
  color: var(--hy-steel);
  line-height: 1.5;
}

.a-page-cta {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px;
  align-items: end;
  padding: clamp(38px, 6vw, 72px);
  background: var(--hy-orange);
  color: var(--hy-white);
}

.a-page-cta h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.a-page-cta p {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.a-page-cta .a-button {
  justify-self: end;
}

.a-boundary {
  padding: 26px 28px;
  background: #e5e9e8;
  border: 1px solid var(--hy-line);
  color: var(--hy-steel);
  line-height: 1.65;
}

.a-boundary strong {
  color: var(--hy-ink);
}

.a-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 18px;
  color: var(--hy-steel);
  font-size: 13px;
}

.a-breadcrumb a {
  text-decoration: none;
}

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

.a-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--hy-line);
  border: 1px solid var(--hy-line);
}

.a-family-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 5vw, 58px);
  background: var(--hy-white);
  text-decoration: none;
}

.a-family-card:hover {
  background: #e8eceb;
}

.a-family-card__code {
  color: var(--hy-orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.a-family-card h2,
.a-family-card h3 {
  max-width: 560px;
  margin: 58px 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(39px, 4.6vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.a-family-card p {
  max-width: 58ch;
  margin: 0;
  color: var(--hy-steel);
  line-height: 1.65;
}

.a-family-card__link {
  margin-top: auto;
  padding-top: 42px;
  color: var(--hy-blue);
  font-weight: 700;
}

.a-product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.a-product-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--hy-white);
  border: 1px solid var(--hy-line);
  text-decoration: none;
}

.a-product-card:hover {
  border-color: var(--hy-blue);
  transform: translateY(-3px);
}

.a-product-card small,
.a-article-card small,
.a-project-card small {
  color: var(--hy-orange);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.a-product-card h3 {
  margin: 44px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.02;
}

.a-product-card p {
  margin: 0;
  color: var(--hy-steel);
  line-height: 1.58;
}

.a-product-card span {
  margin-top: auto;
  padding-top: 30px;
  color: var(--hy-blue);
  font-weight: 700;
}

.a-index-note {
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid var(--hy-line);
  background: #e8eceb;
  color: var(--hy-steel);
  line-height: 1.65;
}

.a-article-grid,
.a-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.a-article-card,
.a-project-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--hy-white);
  border-top: 5px solid var(--hy-blue);
  text-decoration: none;
}

.a-article-card--featured {
  grid-column: span 2;
  background: var(--hy-ink);
  color: var(--hy-white);
  border-top-color: var(--hy-orange);
}

.a-article-card h2,
.a-article-card h3,
.a-project-card h2,
.a-project-card h3 {
  margin: 52px 0 15px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(31px, 3.6vw, 45px);
  font-weight: 600;
  line-height: 1;
}

.a-article-card p,
.a-project-card p {
  margin: 0;
  color: var(--hy-steel);
  line-height: 1.65;
}

.a-article-card--featured p {
  color: rgba(255, 255, 255, 0.72);
}

.a-article-card span,
.a-project-card span {
  margin-top: auto;
  padding-top: 36px;
  font-weight: 700;
}

.a-article-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.a-toc {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-top: 4px solid var(--hy-orange);
  background: var(--hy-white);
}

.a-toc strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
}

.a-toc a {
  display: block;
  padding: 8px 0;
  color: var(--hy-steel);
  font-size: 14px;
  text-decoration: none;
}

.a-prose {
  max-width: 820px;
}

.a-prose > p:first-child {
  margin-top: 0;
  color: var(--hy-ink);
  font-size: 22px;
  line-height: 1.6;
}

.a-prose h2 {
  margin: 70px 0 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1;
}

.a-prose h3 {
  margin: 38px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
}

.a-prose p,
.a-prose li {
  color: var(--hy-steel);
  font-size: 18px;
  line-height: 1.75;
}

.a-prose li + li {
  margin-top: 8px;
}

.a-prose .a-table-wrap {
  margin-block: 30px;
}

.a-answer {
  margin: 28px 0;
  padding: 26px 28px;
  background: var(--hy-navy);
  color: var(--hy-white);
  font-size: 18px;
  line-height: 1.65;
}

.a-answer strong {
  color: #f4a88e;
}

.a-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.a-proof-placeholder {
  padding: clamp(34px, 6vw, 68px);
  background: #e8eceb;
  border: 1px dashed var(--hy-steel);
}

.a-proof-placeholder h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
}

.a-proof-placeholder p {
  max-width: 68ch;
  margin: 0;
  color: var(--hy-steel);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .a-links {
    display: none;
  }

  .a-menu {
    display: block;
  }

  .a-hero__grid,
  .a-page-hero__inner {
    grid-template-columns: 1fr;
  }

  .a-hero__copy,
  .a-page-hero__copy {
    padding-right: 0;
  }

  .a-hero__visual,
  .a-page-hero__visual {
    min-height: 520px;
  }

  .a-hero__visual img,
  .a-page-hero__visual img {
    width: 100%;
  }

  .a-hero__visual::after {
    background: linear-gradient(180deg, var(--hy-ink) 0%, transparent 28%);
  }

  .a-heading,
  .a-split,
  .a-about-strip,
  .a-rfq {
    grid-template-columns: 1fr;
  }

  .a-split--reverse .a-split__visual {
    order: 0;
  }

  .a-solution {
    grid-template-columns: 64px minmax(200px, 0.9fr) 1.1fr 36px;
  }

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

  .a-process article:nth-child(2n) {
    border-right: 0;
  }

  .a-process article:last-child {
    grid-column: 1 / -1;
    min-height: 190px;
  }

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

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

  .a-product-list,
  .a-article-grid,
  .a-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .a-shell {
    width: min(100% - 28px, 1200px);
  }

  .a-nav {
    min-height: 68px;
  }

  .a-mobile {
    inset-block-start: 68px;
  }

  .a-hero h1,
  .a-page-hero h1 {
    font-size: clamp(50px, 15vw, 67px);
  }

  .a-hero__copy,
  .a-page-hero__copy {
    padding-block: 70px;
  }

  .a-hero__visual,
  .a-page-hero__visual {
    min-height: 420px;
  }

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

  .a-scope-bar a {
    min-height: 74px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .a-heading {
    gap: 24px;
  }

  .a-heading h2,
  .a-split h2,
  .a-rfq h2,
  .a-page-section h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .a-solution {
    grid-template-columns: 44px 1fr 28px;
    gap: 14px;
    min-height: 0;
    padding: 24px 0;
  }

  .a-solution p {
    grid-column: 2 / 4;
  }

  .a-solution__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .a-split__visual,
  .a-material-board,
  .a-check-board {
    min-height: 430px;
  }

  .a-material-board {
    grid-template-columns: 1fr 1fr;
  }

  .a-spec-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .a-process {
    grid-template-columns: 1fr;
  }

  .a-process article,
  .a-process article:nth-child(2n),
  .a-process article:last-child {
    min-height: 0;
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--hy-dark-line);
  }

  .a-process h3 {
    margin-top: 26px;
  }

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

  .a-field--full,
  .a-form button,
  .a-form__status {
    grid-column: auto;
  }

  .a-footer__grid,
  .a-page-grid,
  .a-page-cta,
  .a-family-grid,
  .a-product-list,
  .a-article-grid,
  .a-project-grid,
  .a-article-layout {
    grid-template-columns: 1fr;
  }

  .a-article-card--featured {
    grid-column: auto;
  }

  .a-toc {
    position: static;
  }

  .a-footer__bottom {
    flex-direction: column;
  }

  .a-page-cta .a-button {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .a-hero__copy > * {
    animation: hy-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .a-hero__copy > *:nth-child(2) {
    animation-delay: 70ms;
  }

  .a-hero__copy > *:nth-child(3) {
    animation-delay: 140ms;
  }

  .a-hero__copy > *:nth-child(4) {
    animation-delay: 210ms;
  }

  .a-hero__visual img {
    animation: hy-image-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes hy-rise {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes hy-image-in {
  from {
    opacity: 0.55;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.a-contact-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.a-contact-panel h3,
.a-contact-panel p { margin: 0; }

.a-contact-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.a-contact-panel small { color: rgba(255, 255, 255, 0.68); }
.a-footer a[href^="tel:"], .a-footer__bottom a { color: inherit; }
