:root {
  --hx-navy: #071b2f;
  --hx-navy-soft: #0d2945;
  --hx-blue: #046eb6;
  --hx-blue-dark: #035891;
  --hx-green: #5ea73d;
  --hx-ink: #102435;
  --hx-muted: #607080;
  --hx-line: #d9e1e7;
  --hx-pale: #f2f6f8;
  --hx-white: #fff;
  --hx-shadow: 0 18px 45px rgba(7, 27, 47, 0.12);
  --hx-container: 1240px;
  --hx-gutter: clamp(20px, 4vw, 42px);
  --hx-section: clamp(76px, 9vw, 132px);
  --hx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--hx-ink);
  background: var(--hx-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--hx-navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(42px, 5.3vw, 76px);
}

h2 {
  font-size: clamp(31px, 3.5vw, 50px);
}

h3 {
  font-size: clamp(20px, 2vw, 26px);
}

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

:focus-visible {
  outline: 3px solid var(--hx-green);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - (var(--hx-gutter) * 2)), var(--hx-container));
  margin-inline: auto;
}

.section {
  padding-block: var(--hx-section);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--hx-white);
  background: var(--hx-navy);
  white-space: normal;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--hx-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--hx-green);
  content: "";
}

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

.button,
.wp-element-button,
button[type="submit"] {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 25px;
  border: 2px solid var(--hx-blue);
  border-radius: 0;
  color: var(--hx-white);
  background: var(--hx-blue);
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  border-color: var(--hx-blue-dark);
  background: var(--hx-blue-dark);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--hx-white);
  background: transparent;
}

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

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

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

.button--outline {
  color: var(--hx-blue);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 5px;
  border-bottom: 1px solid var(--hx-blue);
  color: var(--hx-blue);
  font-weight: 700;
  line-height: 1.4;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 25px;
  color: var(--hx-navy);
}

.text-link--light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--hx-white);
}

.text-link--light:hover {
  color: var(--hx-green);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: var(--hx-white);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(7, 27, 47, 0.12);
}

.header-utility {
  color: rgba(255, 255, 255, 0.78);
  background: var(--hx-navy);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.header-utility__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-utility p {
  margin: 0;
}

.header-utility__contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-utility a:hover {
  color: var(--hx-white);
}

.header-main__inner {
  display: flex;
  min-height: 86px;
  align-items: stretch;
}

.site-brand {
  display: flex;
  flex: 0 1 340px;
  align-items: center;
  padding-right: 26px;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 250px;
  max-height: 64px;
}

.site-brand-text {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.site-brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  color: var(--hx-white);
  background: var(--hx-blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.site-brand-mark::after {
  position: absolute;
  width: 7px;
  height: 7px;
  margin: 31px 0 0 32px;
  background: var(--hx-green);
  content: "";
}

.site-brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.site-brand-copy strong {
  overflow: hidden;
  color: var(--hx-navy);
  font-size: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-brand-copy small {
  overflow: hidden;
  margin-top: 5px;
  color: var(--hx-muted);
  font-size: 9px;
  letter-spacing: 0.07em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.primary-navigation {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.primary-navigation .menu,
.primary-navigation .sub-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation > .menu,
.primary-navigation > div > .menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.primary-navigation .menu-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.primary-navigation .menu > .menu-item > a {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 0 clamp(12px, 1.3vw, 21px);
  color: var(--hx-ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-navigation .menu > .menu-item > a::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  background: var(--hx-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--hx-ease);
}

.primary-navigation .menu > .menu-item:hover > a::after,
.primary-navigation .menu > .current-menu-item > a::after,
.primary-navigation .menu > .current-menu-ancestor > a::after,
.primary-navigation .menu > .menu-item > a:focus-visible::after {
  transform: scaleX(1);
}

.primary-navigation .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 1px);
  left: 0;
  width: 220px;
  padding: 9px 0;
  visibility: hidden;
  border-top: 3px solid var(--hx-blue);
  background: var(--hx-white);
  box-shadow: var(--hx-shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.primary-navigation .sub-menu .sub-menu {
  top: -12px;
  left: 100%;
}

.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu,
.primary-navigation .menu-item.submenu-open > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-navigation .sub-menu .menu-item {
  display: block;
}

.primary-navigation .sub-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--hx-ink);
  font-size: 14px;
}

.primary-navigation .sub-menu a:hover,
.primary-navigation .sub-menu a:focus-visible {
  color: var(--hx-blue);
  background: var(--hx-pale);
}

.submenu-toggle {
  position: absolute;
  z-index: 2;
  right: 2px;
  top: 50%;
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--hx-muted);
  background: transparent;
  transform: translateY(-50%);
}

.submenu-toggle::before {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translate(-1px, -1px);
}

.submenu-toggle[aria-expanded="true"]::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.header-cta {
  display: inline-flex;
  min-width: 130px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-left: 18px;
  color: var(--hx-white);
  background: var(--hx-blue);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease;
}

.header-cta:hover {
  background: var(--hx-blue-dark);
}

.menu-toggle {
  display: none;
}

/* Homepage hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100vh - 122px));
  overflow: hidden;
  color: var(--hx-white);
  background: linear-gradient(118deg, #071b2f 0%, #0a3154 62%, #046eb6 140%);
  isolation: isolate;
}

.home-hero.has-image {
  background-image: linear-gradient(90deg, rgba(3, 18, 33, 0.96) 0%, rgba(3, 22, 39, 0.86) 44%, rgba(3, 25, 44, 0.36) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 38%;
  height: 7px;
  background: linear-gradient(90deg, var(--hx-blue), var(--hx-green));
  content: "";
}

.home-hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.home-hero__inner {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.62fr);
  padding-block: clamp(90px, 12vh, 150px) 120px;
}

.home-hero .eyebrow {
  color: #8fcaed;
}

.home-hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  color: var(--hx-white);
  font-size: clamp(46px, 5.4vw, 78px);
  letter-spacing: -0.045em;
}

.home-hero__lead {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.85;
}

.home-hero__panel {
  position: relative;
  padding: 35px 32px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(3, 18, 33, 0.68);
  backdrop-filter: blur(8px);
}

.home-hero__panel::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 4px;
  height: 72px;
  background: var(--hx-green);
  content: "";
}

.home-hero__panel-label {
  margin-bottom: 18px;
  color: #8fcaed;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.home-hero__panel ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-hero__panel li {
  display: grid;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  gap: 1px 16px;
  grid-template-columns: 34px 1fr;
}

.home-hero__panel li > span {
  color: var(--hx-green);
  font-size: 11px;
  font-weight: 800;
  grid-row: span 2;
}

.home-hero__panel strong {
  color: var(--hx-white);
  font-size: 16px;
}

.home-hero__panel small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.home-hero__foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.home-hero__foot p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.home-hero__foot span {
  margin-right: 14px;
  color: var(--hx-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Shared section patterns */
.section-heading {
  max-width: 780px;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  gap: clamp(30px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
}

.section-heading--split > p,
.section-heading--split > div:last-child > p {
  margin-bottom: 18px;
  color: var(--hx-muted);
  font-size: 17px;
}

.strengths-section {
  position: relative;
  overflow: hidden;
}

.strengths-section::after {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid var(--hx-line);
  content: "";
  transform: rotate(32deg);
}

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

.strength-grid article {
  min-height: 280px;
  padding: clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--hx-line);
  border-bottom: 1px solid var(--hx-line);
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--hx-ease);
}

.strength-grid article:hover {
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  background: var(--hx-navy);
  transform: translateY(-8px);
}

.strength-grid article > span {
  display: block;
  margin-bottom: clamp(45px, 6vw, 84px);
  color: var(--hx-blue);
  font-size: 12px;
  font-weight: 800;
}

.strength-grid article:hover > span {
  color: var(--hx-green);
}

.strength-grid h3 {
  margin-bottom: 14px;
  transition: color 220ms ease;
}

.strength-grid article:hover h3 {
  color: var(--hx-white);
}

.strength-grid p {
  margin-bottom: 0;
  color: var(--hx-muted);
  transition: color 220ms ease;
}

.strength-grid article:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.products-section,
.news-section,
.archive-section {
  background: var(--hx-pale);
}

.card-grid {
  display: grid;
  gap: 28px;
}

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

.content-card {
  min-width: 0;
  background: var(--hx-white);
  transition: box-shadow 220ms ease, transform 220ms var(--hx-ease);
}

.content-card:hover {
  box-shadow: var(--hx-shadow);
  transform: translateY(-7px);
}

.content-card__media,
.project-card__media,
.news-card__media,
.product-overview__media,
.project-overview__media,
.about-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dfe8ed;
}

.content-card__media {
  aspect-ratio: 1.4;
}

.content-card__media img,
.project-card__media img,
.news-card__media img,
.about-media img,
.product-overview__media img,
.project-overview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--hx-ease);
}

.content-card:hover .content-card__media img,
.project-card:hover .project-card__media img,
.news-card:hover .news-card__media img {
  transform: scale(1.045);
}

.media-placeholder {
  position: absolute;
  display: grid;
  inset: 0;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, #0d2945, #046eb6);
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  width: 44%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.media-placeholder::before {
  transform: rotate(45deg);
}

.media-placeholder::after {
  transform: rotate(-45deg);
}

.media-placeholder span {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.content-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--hx-white);
  background: var(--hx-blue);
  font-size: 18px;
  transition: background 180ms ease;
}

.content-card:hover .content-card__arrow {
  background: var(--hx-green);
}

.content-card__body {
  min-height: 170px;
  padding: 27px 28px 30px;
}

.card-kicker {
  min-height: 1.4em;
  margin-bottom: 9px;
  color: var(--hx-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card h3,
.project-card h3,
.news-card h3 {
  margin-bottom: 11px;
  font-size: 22px;
}

.content-card h3 a:hover,
.project-card h3 a:hover,
.news-card h3 a:hover {
  color: var(--hx-blue);
}

.content-card__body > p:last-child,
.project-card__body > p:last-child,
.news-card__body > p {
  margin-bottom: 0;
  color: var(--hx-muted);
  font-size: 14px;
}

.about-section {
  padding-block: calc(var(--hx-section) + 10px);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.85fr);
}

.about-media {
  min-height: 600px;
}

.about-media::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 35%;
  background: var(--hx-green);
  content: "";
}

.about-media__label {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 245px;
  padding: 24px 28px;
  color: var(--hx-white);
  background: var(--hx-blue);
}

.about-media__label span,
.about-media__label strong {
  display: block;
}

.about-media__label span {
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.about-media__label strong {
  font-size: 20px;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy__lead {
  margin-bottom: 34px;
  color: var(--hx-muted);
  font-size: 17px;
}

.about-copy dl {
  display: grid;
  padding-block: 26px;
  margin-bottom: 34px;
  border-top: 1px solid var(--hx-line);
  border-bottom: 1px solid var(--hx-line);
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.about-copy dt {
  margin-bottom: 4px;
  color: var(--hx-blue);
  font-size: 12px;
  font-weight: 800;
}

.about-copy dd {
  color: var(--hx-ink);
  font-size: 14px;
}

.projects-section {
  color: rgba(255, 255, 255, 0.68);
  background: var(--hx-navy);
}

.projects-section .section-heading h2,
.projects-section .project-card h3,
.projects-section .eyebrow {
  color: var(--hx-white);
}

.projects-section .section-heading--split > div:last-child > p {
  color: rgba(255, 255, 255, 0.62);
}

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

.project-card {
  min-width: 0;
}

.project-card__media {
  aspect-ratio: 0.92;
}

.project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 18, 33, 0.55));
}

.project-card__arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--hx-white);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.project-card:hover .project-card__arrow {
  border-color: var(--hx-green);
  background: var(--hx-green);
}

.project-card__body {
  padding: 24px 4px 0;
}

.project-card__body > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.archive-section .project-card h3,
.archive-section .project-card__body > p:last-child {
  color: var(--hx-ink);
}

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

.news-card {
  min-width: 0;
  background: var(--hx-white);
  transition: box-shadow 220ms ease, transform 220ms var(--hx-ease);
}

.news-card:hover {
  box-shadow: var(--hx-shadow);
  transform: translateY(-6px);
}

.news-card__media {
  aspect-ratio: 1.55;
}

.news-card__body {
  padding: 25px 27px 30px;
}

.news-card__date {
  margin-bottom: 10px !important;
  color: var(--hx-blue) !important;
  font-size: 12px !important;
  font-weight: 700;
}

.news-card .text-link {
  margin-top: 22px;
  font-size: 13px;
}

.empty-state {
  padding: clamp(35px, 5vw, 65px);
  border: 1px solid var(--hx-line);
  text-align: center;
  background: var(--hx-white);
}

.empty-state p:last-child {
  margin-bottom: 0;
}

.empty-state .button {
  margin-top: 12px;
}

.empty-state--dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

/* Contact form */
.contact-section,
.product-inquiry {
  background: #e8f0f4;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(440px, 1.2fr);
}

.contact-copy {
  position: sticky;
  top: 160px;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--hx-muted);
  font-size: 17px;
}

.contact-copy address {
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid #c7d4dc;
  font-style: normal;
}

.contact-copy address div {
  display: grid;
  margin-bottom: 22px;
  gap: 3px;
}

.contact-copy address span {
  color: var(--hx-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-copy address strong {
  font-size: 16px;
  font-weight: 600;
}

.inquiry-form-wrap {
  padding: clamp(28px, 4vw, 50px);
  border-top: 5px solid var(--hx-blue);
  background: var(--hx-white);
  box-shadow: 0 18px 45px rgba(7, 27, 47, 0.07);
}

.form-notice {
  padding: 14px 17px;
  margin-bottom: 22px;
  border-left: 4px solid;
  font-weight: 600;
}

.form-notice.is-success {
  border-color: var(--hx-green);
  color: #285b17;
  background: #edf7e9;
}

.form-notice.is-error {
  border-color: #c83d3d;
  color: #812424;
  background: #fff0f0;
}

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

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

.field label {
  color: var(--hx-ink);
  font-size: 13px;
  font-weight: 700;
}

.field label span {
  color: #bb3030;
}

.field input,
.field textarea,
.search-form .search-field {
  width: 100%;
  border: 1px solid #bdcbd4;
  border-radius: 0;
  color: var(--hx-ink);
  background: var(--hx-white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input {
  min-height: 50px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.search-form .search-field:focus {
  outline: 0;
  border-color: var(--hx-blue);
  box-shadow: 0 0 0 3px rgba(4, 110, 182, 0.14);
}

.field-help {
  margin: 8px 0 20px;
  color: var(--hx-muted);
  font-size: 12px;
}

.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--hx-muted);
  font-size: 13px;
  line-height: 1.65;
  cursor: pointer;
}

.field-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--hx-blue);
}

.field-consent a {
  margin-left: 6px;
  color: var(--hx-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-consent input:focus-visible {
  outline: 3px solid rgba(4, 110, 182, 0.24);
  outline-offset: 2px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.form-submit p {
  max-width: 390px;
  margin: 0;
  color: var(--hx-muted);
  font-size: 12px;
}

.form-submit .button {
  min-width: 160px;
}

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

/* Footer */
.site-footer {
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  background: #041321;
}

.footer-grid {
  display: grid;
  padding-block: clamp(68px, 8vw, 110px);
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(300px, 1.3fr) minmax(180px, 0.6fr) minmax(280px, 0.9fr);
}

.site-footer h2 {
  margin-bottom: 22px;
  color: var(--hx-white);
  font-size: 18px;
}

.footer-brand__mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--hx-white);
  background: var(--hx-blue);
  font-weight: 800;
}

.footer-brand h2 {
  margin-bottom: 6px;
  font-size: clamp(21px, 2vw, 27px);
}

.footer-brand > p {
  font-size: 11px;
  letter-spacing: 0.07em;
}

.footer-brand .footer-note {
  max-width: 430px;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0;
}

.footer-menu,
.footer-menu .menu,
.legal-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li,
.footer-menu .menu li {
  margin-bottom: 10px;
}

.footer-menu a:hover,
.footer-contact a:hover,
.legal-menu a:hover {
  color: var(--hx-white);
}

.footer-contact address {
  font-style: normal;
}

.footer-contact address p {
  display: grid;
  margin-bottom: 15px;
  gap: 3px;
}

.footer-contact address span {
  color: #72bde9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.legal-menu {
  display: flex;
  gap: 18px;
}

.mobile-dock {
  display: none;
}

/* Inner pages */
.inner-hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background: var(--hx-navy);
}

.inner-hero::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
  transform: rotate(35deg);
}

.inner-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 6px;
  background: linear-gradient(90deg, var(--hx-blue), var(--hx-green));
  content: "";
}

.inner-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(75px, 10vw, 130px) 34px;
}

.inner-hero .eyebrow {
  color: #8fcaed;
}

.inner-hero h1 {
  max-width: 950px;
  margin-bottom: 16px;
  color: var(--hx-white);
  font-size: clamp(38px, 5vw, 66px);
}

.inner-hero__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 42px;
  font-size: 17px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 8px;
  list-style: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--hx-green);
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--hx-white);
}

.prose {
  max-width: 900px;
  color: #384d5e;
  font-size: 17px;
}

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

.prose > *:last-child {
  margin-bottom: 0;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 1.8em;
  margin-bottom: 0.7em;
}

.prose h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.prose h3 {
  font-size: 24px;
}

.prose a {
  color: var(--hx-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 1.4em;
}

.prose blockquote {
  padding: 24px 30px;
  margin: 36px 0;
  border-left: 5px solid var(--hx-blue);
  color: var(--hx-navy);
  background: var(--hx-pale);
  font-size: 19px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
}

.prose th,
.prose td {
  padding: 12px 15px;
  border: 1px solid var(--hx-line);
  text-align: left;
}

.prose th {
  color: var(--hx-white);
  background: var(--hx-navy);
}

.page-content .prose {
  margin-inline: auto;
}

.page-featured,
.single-featured {
  margin-bottom: 45px;
}

.page-featured img,
.single-featured img {
  width: 100%;
}

.inner-cta {
  padding-block: clamp(55px, 7vw, 90px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--hx-blue);
}

.inner-cta__grid {
  display: grid;
  align-items: center;
  gap: 40px;
  grid-template-columns: 1fr auto;
}

.inner-cta .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.inner-cta h2 {
  margin-bottom: 12px;
  color: var(--hx-white);
}

.inner-cta p:last-child {
  margin-bottom: 0;
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.archive-filters a {
  padding: 9px 18px;
  border: 1px solid #bfcdd6;
  color: var(--hx-muted);
  background: var(--hx-white);
  font-size: 13px;
  font-weight: 600;
}

.archive-filters a:hover,
.archive-filters a.is-active {
  border-color: var(--hx-blue);
  color: var(--hx-white);
  background: var(--hx-blue);
}

.archive-grid {
  margin-bottom: 55px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.navigation.pagination .page-numbers {
  display: grid;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  place-items: center;
  border: 1px solid var(--hx-line);
  background: var(--hx-white);
}

.navigation.pagination .page-numbers.current,
.navigation.pagination a.page-numbers:hover {
  border-color: var(--hx-blue);
  color: var(--hx-white);
  background: var(--hx-blue);
}

/* Detail pages */
.product-overview,
.project-overview {
  display: grid;
  align-items: start;
  gap: clamp(42px, 7vw, 95px);
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
}

.product-overview__media,
.project-overview__media {
  min-height: 520px;
}

.product-overview__summary {
  padding-top: 12px;
}

.product-overview__summary h2 {
  margin-bottom: 20px;
}

.product-lead {
  color: var(--hx-muted);
  font-size: 18px;
}

.term-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 21px;
  margin-block: 25px;
  border-top: 1px solid var(--hx-line);
  border-bottom: 1px solid var(--hx-line);
}

.term-links span {
  margin-right: 5px;
  color: var(--hx-muted);
  font-size: 12px;
}

.term-links a {
  padding: 4px 11px;
  color: var(--hx-blue);
  background: #eaf4fa;
  font-size: 12px;
  font-weight: 600;
}

.spec-box {
  padding: 25px 28px;
  margin-bottom: 28px;
  border-left: 4px solid var(--hx-blue);
  background: var(--hx-pale);
}

.spec-box h3 {
  margin-bottom: 13px;
  font-size: 17px;
}

.spec-box ul {
  padding-left: 18px;
  margin: 0;
  color: var(--hx-muted);
  font-size: 14px;
}

.product-detail,
.project-detail {
  padding-top: clamp(70px, 8vw, 115px);
  margin-inline: auto;
}

.detail-heading {
  padding-bottom: 22px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--hx-line);
}

.detail-heading span {
  color: var(--hx-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.detail-heading h2 {
  margin: 5px 0 0;
}

.project-facts {
  border-top: 4px solid var(--hx-blue);
}

.project-facts div {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid var(--hx-line);
  gap: 20px;
  grid-template-columns: 100px 1fr;
}

.project-facts dt {
  color: var(--hx-muted);
  font-size: 12px;
}

.project-facts dd {
  color: var(--hx-navy);
  font-weight: 700;
}

.article-layout {
  display: grid;
  align-items: start;
  gap: clamp(45px, 7vw, 95px);
  grid-template-columns: minmax(0, 1fr) 310px;
}

.article-main {
  max-width: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 28px;
  padding-bottom: 20px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--hx-line);
  color: var(--hx-muted);
  font-size: 12px;
}

.article-aside {
  position: sticky;
  top: 155px;
  padding: 30px;
  border-top: 5px solid var(--hx-blue);
  background: var(--hx-pale);
}

.article-aside h2 {
  font-size: 25px;
}

.article-aside > p:not(.eyebrow) {
  color: var(--hx-muted);
  font-size: 14px;
}

.post-navigation-wrap {
  margin-top: 70px;
}

.post-navigation .nav-links {
  display: grid;
  border-top: 1px solid var(--hx-line);
  border-left: 1px solid var(--hx-line);
  grid-template-columns: repeat(2, 1fr);
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  border-right: 1px solid var(--hx-line);
  border-bottom: 1px solid var(--hx-line);
}

.post-navigation a {
  display: grid;
  min-height: 110px;
  align-content: center;
  padding: 24px;
  color: var(--hx-navy);
  font-weight: 700;
}

.post-navigation a:hover {
  color: var(--hx-blue);
  background: var(--hx-pale);
}

.post-navigation a span {
  display: block;
  margin-bottom: 5px;
  color: var(--hx-muted);
  font-size: 11px;
  font-weight: 500;
}

.post-navigation .nav-next {
  text-align: right;
}

/* About and service templates */
.about-page .about-copy.prose {
  max-width: none;
}

.principles-section {
  background: var(--hx-pale);
}

.service-process {
  background: var(--hx-pale);
}

.process-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hx-line);
  list-style: none;
}

.process-list li {
  display: grid;
  padding: clamp(25px, 4vw, 45px) 0;
  border-bottom: 1px solid var(--hx-line);
  gap: 30px;
  grid-template-columns: 70px 1fr;
}

.process-list li > span {
  color: var(--hx-blue);
  font-size: 13px;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 7px;
}

.process-list p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--hx-muted);
}

/* Search and 404 */
.error-page__inner {
  max-width: 760px;
  text-align: center;
}

.error-code {
  margin-bottom: 8px;
  color: var(--hx-blue);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.error-page__inner > p:not(.error-code) {
  color: var(--hx-muted);
}

.error-page__inner .button-row {
  justify-content: center;
  margin-top: 30px;
}

.search-form {
  display: flex;
  max-width: 650px;
  margin: 28px auto 0;
}

.search-form label {
  flex: 1 1 auto;
}

.search-form .search-field {
  min-height: 52px;
  padding: 11px 14px;
}

.search-form .search-submit {
  min-height: 52px;
  padding: 10px 22px;
  border: 0;
  color: var(--hx-white);
  background: var(--hx-blue);
  font-weight: 700;
}

/* Progressive reveal */
.js.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--hx-ease), transform 650ms var(--hx-ease);
}

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

/* Tablet */
@media (max-width: 1080px) {
  .site-brand {
    flex-basis: 280px;
  }

  .site-brand-copy small {
    display: none;
  }

  .header-cta {
    min-width: 110px;
    margin-left: 8px;
  }

  .primary-navigation .menu > .menu-item > a {
    padding-inline: 12px;
    font-size: 14px;
  }

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

  .project-grid {
    gap: 20px;
  }
}

@media (max-width: 980px) {
  :root {
    --hx-section: clamp(68px, 9vw, 96px);
  }

  .header-utility {
    display: none;
  }

  .header-main__inner {
    min-height: 74px;
    align-items: center;
  }

  .site-brand {
    flex: 1 1 auto;
    padding-right: 15px;
  }

  .custom-logo {
    max-width: 220px;
    max-height: 54px;
  }

  .site-brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--hx-line);
    color: var(--hx-navy);
    background: var(--hx-white);
  }

  .menu-toggle__bars {
    display: grid;
    width: 20px;
    gap: 4px;
  }

  .menu-toggle__bars i {
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] .menu-toggle__bars i:nth-child(2) {
    opacity: 0;
  }

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

  .header-cta {
    display: none;
  }

  .primary-navigation {
    position: fixed;
    z-index: 1001;
    top: 74px;
    right: 0;
    bottom: 0;
    display: block;
    width: min(88vw, 420px);
    padding: 24px var(--hx-gutter) 90px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--hx-white);
    box-shadow: -25px 20px 60px rgba(7, 27, 47, 0.18);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 300ms var(--hx-ease), visibility 300ms;
  }

  .primary-navigation::before {
    display: block;
    padding-bottom: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--hx-line);
    color: var(--hx-blue);
    content: "NAVIGATION";
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  body.nav-open::after {
    position: fixed;
    z-index: 999;
    inset: 74px 0 0;
    background: rgba(3, 18, 33, 0.58);
    content: "";
  }

  .primary-navigation > .menu,
  .primary-navigation > div > .menu,
  .primary-navigation .menu-item {
    display: block;
  }

  .primary-navigation .menu > .menu-item > a {
    min-height: 0;
    padding: 14px 36px 14px 0;
    border-bottom: 1px solid var(--hx-line);
    font-size: 17px;
  }

  .primary-navigation .menu > .menu-item > a::after {
    display: none;
  }

  .submenu-toggle {
    top: 14px;
    right: 0;
    width: 34px;
    height: 34px;
    border: 1px solid var(--hx-line);
    transform: none;
  }

  .primary-navigation .sub-menu,
  .primary-navigation .sub-menu .sub-menu {
    position: static;
    display: none;
    width: auto;
    padding: 7px 0 7px 16px;
    visibility: visible;
    border-top: 0;
    border-left: 2px solid var(--hx-blue);
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .primary-navigation .menu-item:hover > .sub-menu,
  .primary-navigation .menu-item:focus-within > .sub-menu {
    display: none;
  }

  .primary-navigation .menu-item.submenu-open > .sub-menu {
    display: block;
  }

  .primary-navigation .sub-menu a {
    padding: 9px 10px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__inner {
    gap: 50px;
    grid-template-columns: 1fr;
    padding-block: 95px 130px;
  }

  .home-hero__content {
    max-width: 780px;
  }

  .home-hero__panel {
    max-width: 640px;
  }

  .section-heading--split,
  .about-grid,
  .contact-grid,
  .product-overview,
  .project-overview,
  .article-layout {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
  }

  .about-media {
    min-height: 520px;
  }

  .about-copy {
    max-width: 760px;
  }

  .contact-copy,
  .article-aside {
    position: static;
  }

  .contact-copy {
    max-width: 700px;
  }

  .product-overview__media,
  .project-overview__media {
    min-height: 430px;
  }

  .article-aside {
    max-width: 600px;
  }
}

/* Small screens */
@media (max-width: 720px) {
  :root {
    --hx-gutter: 20px;
  }

  body {
    padding-bottom: 62px;
    font-size: 15px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  h2 {
    font-size: clamp(29px, 8vw, 39px);
  }

  .site-brand-copy strong {
    max-width: 205px;
    font-size: 14px;
  }

  .home-hero.has-image {
    background-image: linear-gradient(90deg, rgba(3, 18, 33, 0.95), rgba(3, 22, 39, 0.76)), var(--hero-image);
  }

  .home-hero__inner {
    padding-block: 75px 148px;
  }

  .home-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .home-hero__lead {
    font-size: 16px;
  }

  .home-hero__panel {
    padding: 28px 22px 20px;
  }

  .home-hero__foot {
    min-height: 94px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .home-hero__foot p:first-child {
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .strength-grid,
  .card-grid--products,
  .project-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .strength-grid article {
    min-height: 230px;
  }

  .strength-grid article > span {
    margin-bottom: 45px;
  }

  .content-card__media {
    aspect-ratio: 1.45;
  }

  .about-media {
    min-height: 420px;
  }

  .about-copy dl {
    gap: 13px;
  }

  .project-card__media {
    aspect-ratio: 1.12;
  }

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

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

  .form-submit .button {
    width: 100%;
  }

  .inner-hero__inner {
    padding-block: 65px 28px;
  }

  .inner-hero__inner > p:not(.eyebrow) {
    margin-bottom: 32px;
    font-size: 15px;
  }

  .inner-hero h1 {
    font-size: clamp(35px, 10vw, 50px);
  }

  .inner-cta__grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .inner-cta .button {
    width: 100%;
  }

  .product-overview__media,
  .project-overview__media {
    min-height: 330px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .post-navigation .nav-next {
    text-align: left;
  }

  .process-list li {
    gap: 15px;
    grid-template-columns: 45px 1fr;
  }

  .footer-grid {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
    gap: 7px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 62px;
    border-top: 1px solid var(--hx-line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 25px rgba(7, 27, 47, 0.08);
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-dock a {
    display: grid;
    place-content: center;
    color: var(--hx-muted);
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
  }

  .mobile-dock a:hover,
  .mobile-dock a:focus-visible {
    color: var(--hx-blue);
  }

  .mobile-dock span {
    display: block;
    margin-bottom: 3px;
    color: var(--hx-blue);
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .site-brand-copy strong {
    max-width: 175px;
  }

  .site-brand-mark {
    display: none;
  }

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

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

  .inquiry-form-wrap {
    padding-inline: 20px;
  }

  .project-facts div {
    gap: 12px;
    grid-template-columns: 80px 1fr;
  }
}

@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;
  }

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

@media print {
  .site-header,
  .site-footer,
  .mobile-dock,
  .inner-cta,
  .inquiry-form-wrap {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
  }

  .section {
    padding-block: 30px;
  }
}
