/* Diseño original NETSS; fuentes locales en assets/fonts. */
@font-face {
  font-family: Netss Sans;
  src: url(../fonts/netss-sans-400.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Netss Sans;
  src: url(../fonts/netss-sans-500.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Netss Sans;
  src: url(../fonts/netss-sans-700.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Netss Sans;
  src: url(../fonts/netss-sans-900.woff2) format("woff2");
  font-weight: 900;
  font-display: swap;
}
:root {
  --blue: #006ec7;
  --navy: #003688;
  --ink: #182f46;
  --gray: #4d5357;
  --muted: #61717e;
  --line: #dce4ea;
  --soft: #f3f6f8;
  --white: #fff;
  --cyan: #00a1de;
  --deep: #071f38;
  --radius: 3px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  font:
    400 16px/1.65 "Netss Sans",
    Arial,
    sans-serif;
  color: var(--gray);
  background: white;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
p + p {
  margin-top: 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #efab33;
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
.icon {
  width: 24px;
  height: 24px;
  flex: none;
}
.reverse {
  transform: rotate(180deg);
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 108px 0;
}
.soft {
  background: var(--soft);
}
.lead {
  font-size: 1.15rem;
  line-height: 1.7;
}
.eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  margin: 0 0 22px;
}
.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: currentColor;
  flex: none;
}
.text-blue {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 23px;
  min-height: 54px;
  line-height: 1.3;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  transition:
    background 0.2s,
    transform 0.2s;
  color: var(--white);
  text-align: left;
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button-primary {
  background: var(--blue);
}
.button-primary:hover {
  background: var(--navy);
}
.button-outline {
  background: transparent;
  color: var(--navy);
  border-color: #becbd5;
}
.button-outline:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.button-white {
  background: white;
  color: var(--navy);
}
.button-white:hover {
  background: #e6f4ff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--blue);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
}
.text-link .icon {
  width: 20px;
  height: 20px;
}
.text-link:hover {
  color: var(--navy);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 48px;
}
.section-heading > p,
.section-heading > div:last-child:not(:first-child) {
  max-width: 380px;
}
.section-heading .button {
  margin-top: 22px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.split-copy h2 {
  margin-bottom: 24px;
}
.split-copy .button {
  margin-top: 30px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
}
.skip-link:focus {
  top: 20px;
}
.sr-only {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
}
[hidden] {
  display: none !important;
}
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.8125rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 38px;
}
.topbar .container > span {
  margin-right: auto;
  font-size: 0.8125rem;
}
.topbar a {
  display: flex;
  gap: 9px;
  align-items: center;
}
.topbar .icon {
  width: 15px;
  height: 15px;
}
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 30;
  border-bottom: 1px solid #edf1f4;
}
.header-inner {
  min-height: 99px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  width: 178px;
  flex-shrink: 0;
}
.site-header nav {
  display: flex;
  gap: 29px;
  margin-left: auto;
  align-self: stretch;
  align-items: center;
}
.site-header nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  padding: 35px 0;
  position: relative;
  white-space: nowrap;
}
.site-header nav a[aria-current="page"],
.site-header nav a:hover {
  color: var(--blue);
}
.site-header nav a[aria-current="page"]:after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
}
.header-inner > .button {
  margin-left: 8px;
  gap: 15px;
  padding: 15px 17px;
}
.menu-toggle {
  display: none;
}
.hero {
  background: var(--deep);
  color: white;
}
.hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-images {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-photo.active {
  opacity: 1;
}
.hero-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      90deg,
      rgba(3, 22, 45, 0.9) 0%,
      rgba(3, 22, 45, 0.75) 37%,
      rgba(3, 22, 45, 0.26) 80%
    ),
    linear-gradient(0deg, rgba(3, 22, 45, 0.55), transparent 35%);
}
.hero-inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 28px;
  min-height: 628px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 195px;
  column-gap: 40px;
  align-content: space-between;
}
.hero .eyebrow {
  color: #fff;
  margin-bottom: 22px;
  font-size: 0.875rem;
}
.hero .eyebrow > span {
  background: var(--cyan);
}
.hero h1 {
  color: white;
  font-size: clamp(3rem, 4.6vw, 4.65rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  max-width: 940px;
  min-height: 2.3em;
}
.hero h1 span {
  color: #b4d8f5;
}
.hero-content > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.65;
  margin-top: 25px;
  min-height: 3.3em;
  color: #e5eef5;
}
.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}
.hero-actions .button {
  padding: 19px 24px;
}
.hero-secondary {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: white;
}
.hero-secondary:hover {
  color: #a7d9ff;
}
.hero-side {
  border-left: 1px solid #ffffff40;
  padding-left: 30px;
  align-self: center;
}
.hero-side > strong {
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.hero-side > strong span {
  font-size: 2.4rem;
  color: #6bc8ff;
}
.hero-side p {
  font-size: 0.9375rem;
  line-height: 1.45;
  margin-top: 15px;
  color: #f1f5f9;
}
.hero-side-line {
  height: 1px;
  width: 42px;
  background: #85cafa;
  margin: 22px 0;
}
.hero-side > span {
  font-size: 0.875rem;
  color: #d2e3f1;
  line-height: 1.6;
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
}
.hero-bottom > span {
  font-size: 0.875rem;
  border-left: 2px solid var(--cyan);
  padding-left: 12px;
  color: #e0ebf5;
}
.slider-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-controls > span {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-right: 12px;
}
.slider-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff55;
  background: transparent;
  color: white;
  border-radius: 2px;
}
.slider-controls button:hover {
  background: white;
  color: var(--navy);
}
.slider-controls .icon {
  width: 19px;
  height: 19px;
}
.hero-tabbar {
  background: var(--deep);
  border-top: 1px solid #ffffff23;
}
.hero-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.hero-tab {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  column-gap: 14px;
  align-items: center;
  min-height: 106px;
  padding: 22px;
  border: 0;
  border-right: 1px solid #ffffff20;
  background: none;
  text-align: left;
  color: #bbcbd8;
}
.hero-tab:first-child {
  border-left: 1px solid #ffffff20;
}
.hero-tab > span {
  font-size: 0.75rem;
  color: #84a5c2;
  width: 100%;
  letter-spacing: 0.1em;
}
.hero-tab strong {
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 500;
  max-width: 130px;
}
.hero-tab > .icon {
  margin-left: auto;
  width: 25px;
  height: 25px;
  opacity: 0.7;
}
.hero-tab[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
}
.hero-tab[aria-pressed="true"]:after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 3px;
  background: var(--cyan);
  left: 0;
  right: 0;
}
.hero-tab[aria-pressed="true"] > span {
  color: #b6d8f8;
}
.hero-tab:hover {
  background: #113b63;
}
.hero-tab[aria-pressed="true"] > .icon {
  opacity: 1;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 30px 23px 25px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.25s;
  min-width: 0;
}
.service-card:last-child {
  border-right: 0;
}
.service-card:hover {
  background: #f4f8fc;
}
.service-card:before {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  top: -1px;
  height: 3px;
  background: var(--service-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.service-card:hover:before {
  transform: scaleX(1);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.service-icon {
  display: grid;
  place-items: center;
  color: var(--blue);
  width: 50px;
  height: 50px;
  background: #edf5fc;
  border-radius: 3px;
}
.service-icon .icon {
  width: 29px;
  height: 29px;
}
.card-number {
  font-size: 0.8125rem;
  color: #7890a1;
}
.service-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  min-height: 4em;
  margin-bottom: 18px;
}
.service-card > p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.service-card .text-link {
  margin-top: auto;
  font-size: 0.875rem;
  gap: 10px;
}
.service-card .service-icon {
  color: var(--service-color);
}
.image-composition {
  position: relative;
  padding-bottom: 48px;
}
.image-composition > img {
  width: calc(100% - 25px);
  height: 495px;
  object-fit: cover;
  object-position: 60% 50%;
}
.image-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  padding: 29px 34px;
  color: white;
  border-left: 4px solid var(--cyan);
}
.big-stat {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.035em;
}
.big-stat > span {
  font-size: 2.5rem;
  color: #91d7ff;
}
.image-caption p {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.about-note {
  border-left: 3px solid var(--blue);
  padding: 10px 0 10px 20px;
  color: var(--ink);
  font-size: 1rem;
  margin-top: 24px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.benefit-grid article {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.benefit-number {
  font-size: 1rem;
  color: var(--blue);
  font-weight: 500;
}
.benefit-grid h3 {
  margin: 20px 0 16px;
  font-size: 1.45rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.featured-project {
  padding: 32px;
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.featured-project:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
}
.project-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blue);
  margin-bottom: 48px;
}
.project-topline > span {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.project-place {
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.featured-project h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 20px;
}
.featured-project > p:not(.project-place) {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 25px;
}
.featured-project .text-link {
  margin-top: auto;
}
.contact-cta {
  background: var(--navy);
  color: white;
  padding: 68px 0;
}
.contact-cta .eyebrow {
  color: #bedcff;
}
.contact-cta h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer {
  background: var(--deep);
  color: #c2d0dc;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 1fr 1.25fr;
  gap: 60px;
  padding-top: 78px;
  padding-bottom: 65px;
}
.footer h2 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 23px;
  font-weight: 500;
}
.footer p,
.footer address,
.footer a {
  font-size: 0.875rem;
  line-height: 1.75;
}
.footer-brand img {
  width: 177px;
  margin-bottom: 23px;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer li {
  margin-bottom: 8px;
}
.footer a:hover {
  color: white;
}
.footer-contact > a {
  display: block;
  margin-bottom: 8px;
}
.footer-contact address {
  margin-top: 21px;
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid #ffffff20;
  font-size: 0.8125rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page-banner {
  position: relative;
  isolation: isolate;
  background: var(--deep);
  color: white;
  padding: 80px 0;
  overflow: hidden;
}
.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  z-index: -2;
  opacity: 0.44;
}
.page-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 30, 60, 0.95),
    rgba(3, 30, 60, 0.15)
  );
  z-index: -1;
}
.page-banner h1 {
  color: white;
  font-size: clamp(2.5rem, 4.3vw, 4rem);
  max-width: 1000px;
}
.page-banner .lead {
  color: #e6eff8;
  max-width: 655px;
  margin-top: 26px;
}
.page-banner .eyebrow {
  color: #bcdef7;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.about-facts > div {
  padding: 38px;
}
.about-facts > div:nth-child(2) {
  border-left: 1px solid var(--line);
}
.about-facts strong {
  font-size: 4.25rem;
  line-height: 1;
  color: var(--navy);
}
.about-facts strong span {
  font-size: 2.5rem;
}
.about-facts p {
  font-size: 0.9375rem;
  margin-top: 20px;
}
.about-facts .fact-wide {
  grid-column: 1/-1;
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 27px 38px;
}
.fact-wide > span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.fact-wide > strong {
  font-size: 1.15rem;
  line-height: 1.5;
}
.history-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mission-grid article {
  padding: 45px;
  background: var(--soft);
  border-top: 3px solid var(--blue);
}
.mission-grid article:last-child {
  background: var(--navy);
  color: #e8f1f7;
}
.mission-grid article:last-child h2 {
  color: white;
}
.mission-grid article:last-child .eyebrow {
  color: #bddfff;
}
.mission-grid h2 {
  margin-bottom: 25px;
}
.mission-grid p:not(.eyebrow) {
  font-size: 1.15rem;
}
.values-section {
  margin-top: 85px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 40px;
}
.values-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.values-grid article > span {
  color: var(--blue);
  font-size: 0.875rem;
}
.values-grid h3 {
  margin: 18px 0 14px;
}
.values-grid p {
  font-size: 0.9375rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.team-card {
  min-width: 0;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
}
.team-portrait {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #edf1f4;
}
.team-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-copy {
  padding: 28px;
}
.team-card .team-role {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--blue);
  font-weight: 500;
  margin: 0 0 10px;
}
.team-card h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0;
  overflow-wrap: break-word;
}
.team-card .team-label {
  margin: 24px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.team-qualifications {
  margin: 0;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.team-qualifications li + li {
  margin-top: 8px;
}
.team-qualifications li::marker {
  color: var(--blue);
}
.services-layout {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 64px;
  padding-top: 85px;
  padding-bottom: 95px;
}
.services-index {
  position: sticky;
  top: 138px;
  align-self: start;
}
.services-index .eyebrow {
  font-size: 0.75rem;
}
.services-index nav {
  border-top: 1px solid var(--line);
  margin-bottom: 35px;
}
.services-index nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}
.services-index nav a > span {
  font-size: 0.8125rem;
  color: var(--blue);
}
.services-index nav a .icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
}
.services-index nav a:hover {
  color: var(--blue);
}
.services-index > p:not(.eyebrow) {
  font-size: 0.9375rem;
  margin-bottom: 12px;
}
.service-section {
  padding: 0 0 75px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 125px;
}
.service-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.service-section-intro {
  position: relative;
}
.service-section-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 4.5rem;
  line-height: 1;
  color: #e9eff4;
  font-weight: 700;
}
.service-section-intro .service-icon {
  margin-bottom: 24px;
  width: 65px;
  height: 65px;
  color: var(--service-color);
}
.service-section-intro h2 {
  font-size: 2.15rem;
  max-width: 650px;
  margin-bottom: 24px;
}
.service-section-intro .lead {
  font-size: 1.1rem;
}
.service-details {
  margin-top: 35px;
}
.service-detail {
  border-top: 1px solid var(--line);
}
.service-detail:last-of-type {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.service-detail summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 23px 0;
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 500;
}
.service-detail summary .icon {
  width: 19px;
  height: 19px;
  color: var(--blue);
  transition: transform 0.2s;
}
.service-detail[open] summary {
  color: var(--blue);
}
details[open] summary > .icon {
  transform: rotate(45deg);
}
.service-detail > div {
  padding: 0 40px 27px 0;
  font-size: 1rem;
}
.outcome {
  border-left: 3px solid var(--service-color);
  background: var(--soft);
  padding: 20px 24px;
  margin: 28px 0;
}
.outcome strong {
  color: var(--ink);
  font-weight: 500;
}
.outcome p {
  font-size: 0.9375rem;
  margin-top: 7px;
}
.experience-intro {
  padding: 60px 0 45px;
  border-bottom: 1px solid var(--line);
}
.experience-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 60px;
}
.experience-intro .lead {
  max-width: 500px;
  color: var(--ink);
  font-size: 1.35rem;
}
.experience-intro .container > p:last-child {
  grid-column: 1/-1;
  font-size: 0.9375rem;
  max-width: 850px;
  margin-top: 0;
}
.country-line {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 500;
}
.country-line span + span {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.portfolio-index {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 35px 0 15px;
}
.portfolio-index a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--navy);
}
.portfolio-index .icon {
  height: 15px;
  width: 15px;
  transform: rotate(90deg);
}
.portfolio-index a:hover {
  background: var(--soft);
}
.portfolio-section {
  padding-top: 55px;
  padding-bottom: 30px;
  scroll-margin-top: 110px;
}
.portfolio-section:last-child {
  padding-bottom: 85px;
}
.portfolio-heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 28px;
}
.portfolio-heading h2 {
  font-size: 1.85rem;
}
.portfolio-heading > .icon {
  color: var(--blue);
  width: 29px;
  height: 29px;
}
.project-row {
  border-top: 1px solid var(--line);
  scroll-margin-top: 130px;
}
.project-row:last-child {
  border-bottom: 1px solid var(--line);
}
.project-row summary {
  display: grid;
  grid-template-columns: 135px 1fr 26px;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
}
.project-year {
  color: var(--blue);
  font-weight: 500;
  font-size: 1.1rem;
  align-self: start;
  margin-top: 4px;
}
.project-title > .project-place {
  font-size: 0.75rem;
  margin-bottom: 6px;
}
.project-title > span:last-child {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.project-row summary > .icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
}
.project-row[open] {
  background: #f5f8fb;
  padding-left: 20px;
  padding-right: 20px;
}
.project-description {
  padding: 0 54px 30px 163px;
}
.project-description p {
  max-width: 800px;
  margin-bottom: 18px;
}
.project-row:target {
  border-left: 3px solid var(--blue);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-information h2 {
  margin-bottom: 23px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 30px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.contact-method > .icon {
  color: var(--blue);
  width: 26px;
  height: 26px;
}
.contact-method > div > span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}
.contact-method a {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
  overflow-wrap: anywhere;
}
.contact-method a:hover {
  color: var(--blue);
}
.contact-method address {
  font-size: 1rem;
  max-width: 320px;
}
.contact-form-card {
  padding: 40px;
  background: var(--soft);
  border-top: 3px solid var(--blue);
}
.contact-form-card h2 {
  font-size: 1.65rem;
}
.form-intro {
  font-size: 0.875rem;
  margin-top: 10px;
  margin-bottom: 29px;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 20px;
}
.field label {
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}
.field {
  min-width: 0;
}
.field.full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd6df;
  border-radius: 2px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font-size: 1rem;
}
input::placeholder,
textarea::placeholder {
  color: #75818b;
  opacity: 1;
}
select {
  padding-right: 20px;
  text-overflow: ellipsis;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 0.875rem;
  margin: 24px 0;
  color: var(--muted);
  line-height: 1.6;
}
.form-result {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 30px;
}
.form-result h3 {
  margin-bottom: 15px;
}
.form-result p {
  font-size: 0.9375rem;
}
.form-result textarea {
  margin: 20px 0;
  font-size: 0.9375rem;
}
.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-result #copy-status {
  margin-top: 14px;
  color: var(--navy);
}
@media (min-width: 1500px) {
  .hero-inner {
    min-height: 700px;
    padding-top: 115px;
  }
  .hero h1 {
    font-size: 5.1rem;
  }
  .hero-tab {
    min-height: 110px;
  }
}
@media (max-width: 1180px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 22px;
  }
  .brand {
    width: 150px;
  }
  .site-header nav {
    gap: 20px;
  }
  .header-inner > .button {
    display: none;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 150px;
    column-gap: 20px;
  }
  .hero-side {
    padding-left: 20px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 5.6vw, 4.2rem);
  }
  .hero-tab {
    padding: 18px 15px;
  }
  .hero-tab > .icon {
    display: none;
  }
  .hero-tab strong {
    max-width: 140px;
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
  }
  .service-card {
    background: white;
    border: 0;
  }
  .service-card h3 {
    min-height: 2.6em;
  }
  .split {
    gap: 45px;
  }
  .footer-main {
    gap: 30px;
  }
  .services-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 45px;
  }
  .contact-layout {
    gap: 40px;
  }
  .team-grid {
    gap: 22px;
  }
  .team-copy {
    padding: 24px;
  }
  .image-caption {
    padding: 25px;
  }
  .section-heading {
    gap: 35px;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 75px 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-side {
    display: none;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 6.5vw, 4rem);
    max-width: 760px;
  }
  .hero-inner {
    min-height: 575px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .image-composition {
    max-width: 650px;
  }
  .image-composition > img {
    height: 410px;
  }
  .split-copy {
    max-width: 720px;
  }
  .benefit-grid {
    gap: 25px;
  }
  .featured-grid {
    gap: 15px;
  }
  .featured-project {
    padding: 24px;
  }
  .featured-project h3 {
    font-size: 1.25rem;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > p,
  .section-heading > div:last-child:not(:first-child) {
    max-width: 310px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 70px;
  }
  .footer-brand {
    max-width: 310px;
  }
  .history-layout {
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-layout {
    grid-template-columns: 1fr;
    padding-top: 50px;
    gap: 50px;
  }
  .services-index {
    position: static;
  }
  .services-index nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
  }
  .services-index > p:not(.eyebrow),
  .services-index > .text-link {
    display: none;
  }
  .services-index nav {
    margin: 0;
  }
  .service-section-intro h2 {
    font-size: 2rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-information {
    max-width: 600px;
  }
  .contact-form-card {
    max-width: 760px;
  }
  .experience-intro .container {
    gap: 22px 35px;
  }
  .country-line {
    gap: 15px;
  }
  .country-line span + span {
    padding-left: 15px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 96px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .topbar .container {
    min-height: 34px;
    justify-content: space-between;
    gap: 10px;
  }
  .topbar .container > span {
    display: none;
  }
  .topbar a {
    font-size: 0.75rem;
  }
  .topbar .icon {
    display: none;
  }
  .header-inner {
    min-height: 78px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand {
    width: 148px;
  }
  .js .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
  }
  .site-header nav {
    margin: 0;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 0;
    padding: 8px 0 18px;
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }
  .site-header nav a[aria-current="page"]:after {
    display: none;
  }
  .hero-inner {
    min-height: 610px;
    padding-top: 50px;
    padding-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 9vw, 3.7rem);
    line-height: 1.12;
    letter-spacing: -0.028em;
    min-height: 3.4em;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 23px;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 1.0625rem;
    margin-top: 22px;
    min-height: 4.7em;
    max-width: 490px;
  }
  .hero-stage:after {
    background: linear-gradient(
        90deg,
        rgba(3, 22, 45, 0.88),
        rgba(3, 22, 45, 0.46)
      ),
      linear-gradient(0deg, rgba(3, 22, 45, 0.7), transparent 50%);
  }
  .hero-photo {
    object-position: 63% center;
  }
  .hero-actions {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 26px;
  }
  .hero-actions .button {
    padding: 17px 21px;
    min-height: 54px;
  }
  .hero-secondary {
    font-size: 0.875rem;
  }
  .hero-bottom {
    margin-top: 32px;
    align-items: flex-end;
  }
  .hero-bottom > span {
    max-width: 190px;
    line-height: 1.4;
    font-size: 0.8125rem;
  }
  .slider-controls {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .slider-controls > span {
    font-size: 0.75rem;
    margin-right: 0;
    flex-basis: 100%;
    text-align: right;
    margin-bottom: 6px;
  }
  .slider-controls button {
    width: 36px;
    height: 36px;
  }
  .hero-tabs {
    width: 100%;
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
  .hero-tab {
    min-height: 103px;
    padding: 17px 13px;
    scroll-snap-align: start;
    align-content: start;
    row-gap: 8px;
  }
  .hero-tab strong {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
  }
  .hero-tab > span {
    font-size: 0.75rem;
  }
  .section {
    padding: 60px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p,
  .section-heading > div:last-child:not(:first-child) {
    max-width: none;
    margin-top: 24px;
  }
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 2rem;
  }
  .section-heading h2 br,
  .split-copy h2 br {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 0;
  }
  .service-card {
    padding: 26px;
    border-bottom: 1px solid var(--line);
  }
  .service-card-top {
    margin-bottom: 22px;
  }
  .service-card h3 {
    min-height: 0;
    font-size: 1.3rem;
    margin-bottom: 14px;
    max-width: 350px;
  }
  .service-card > p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .service-card .text-link {
    font-size: 0.9375rem;
  }
  .service-icon {
    width: 46px;
    height: 46px;
  }
  .image-composition > img {
    height: 360px;
    width: calc(100% - 14px);
  }
  .image-caption {
    padding: 22px;
    gap: 18px;
  }
  .big-stat {
    font-size: 3.6rem;
  }
  .image-caption p {
    font-size: 0.875rem;
  }
  .split {
    gap: 35px;
  }
  .lead {
    font-size: 1.0625rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .benefit-grid article {
    padding-top: 22px;
  }
  .benefit-grid h3 {
    margin-top: 15px;
    font-size: 1.35rem;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .featured-project {
    padding: 27px;
  }
  .project-topline {
    margin-bottom: 30px;
  }
  .featured-project h3 {
    font-size: 1.45rem;
  }
  .featured-project > p:not(.project-place) {
    font-size: 1rem;
  }
  .contact-cta {
    padding: 55px 0;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .cta-inner h2 {
    font-size: 2rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-top: 55px;
    padding-bottom: 45px;
  }
  .footer-brand {
    grid-column: 1/-1;
    max-width: 360px;
  }
  .footer-contact {
    grid-column: 1/-1;
    max-width: 450px;
  }
  .footer-bottom {
    display: block;
    font-size: 0.8125rem;
  }
  .footer-bottom span {
    display: block;
  }
  .footer-bottom span + span {
    margin-top: 8px;
  }
  .page-banner {
    padding: 55px 0;
  }
  .page-banner h1 {
    font-size: clamp(2.2rem, 7.5vw, 3rem);
    line-height: 1.12;
  }
  .page-banner .lead {
    font-size: 1rem;
  }
  .about-facts > div {
    padding: 25px;
  }
  .about-facts strong {
    font-size: 3.5rem;
  }
  .about-facts p {
    font-size: 0.875rem;
  }
  .about-facts .fact-wide {
    padding: 24px;
  }
  .history-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mission-grid article {
    padding: 30px;
  }
  .mission-grid p:not(.eyebrow) {
    font-size: 1.0625rem;
  }
  .values-section {
    margin-top: 60px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .values-grid h3 {
    margin: 15px 0 12px;
  }
  .values-grid p {
    font-size: 1rem;
  }
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .team-copy {
    padding: 24px;
  }
  .team-card h3 {
    font-size: 1.5rem;
  }
  .services-index nav {
    grid-template-columns: 1fr;
  }
  .services-index nav a {
    padding: 15px 0;
  }
  .services-layout {
    gap: 45px;
    padding-bottom: 60px;
  }
  .service-section {
    padding-bottom: 45px;
    margin-bottom: 45px;
  }
  .service-section-intro h2 {
    font-size: 1.9rem;
  }
  .service-section-intro .lead {
    font-size: 1rem;
  }
  .service-detail summary {
    font-size: 1rem;
    padding: 21px 0;
    gap: 16px;
  }
  .service-detail > div {
    padding-right: 4px;
  }
  .outcome {
    padding: 20px;
  }
  .experience-intro {
    padding: 40px 0;
  }
  .experience-intro .container {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .experience-intro .lead {
    font-size: 1.2rem;
  }
  .country-line {
    justify-content: flex-start;
    font-size: 1.1rem;
  }
  .portfolio-index {
    padding: 25px 0 0;
    gap: 8px;
  }
  .portfolio-index a {
    font-size: 0.8125rem;
    padding: 10px;
  }
  .portfolio-section {
    padding-top: 45px;
  }
  .portfolio-heading {
    align-items: flex-start;
    gap: 13px;
  }
  .portfolio-heading h2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .portfolio-heading > .icon {
    width: 26px;
  }
  .project-row summary {
    grid-template-columns: 1fr 24px;
    gap: 9px 12px;
    padding: 24px 0;
  }
  .project-year {
    grid-column: 1;
    font-size: 0.9375rem;
  }
  .project-title {
    grid-column: 1;
  }
  .project-row summary > .icon {
    grid-column: 2;
    grid-row: 1/3;
  }
  .project-title > span:last-child {
    font-size: 1.0625rem;
    line-height: 1.5;
  }
  .project-title > .project-place {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  .project-description {
    padding: 0 0 26px;
  }
  .project-description p {
    font-size: 0.9375rem;
  }
  .project-row[open] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contact-method a {
    font-size: 1.125rem;
  }
  .contact-form-card {
    padding: 28px 22px;
  }
  .contact-form-card h2 {
    font-size: 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .field.full {
    grid-column: auto;
  }
  .contact-layout {
    gap: 38px;
  }
  .contact-information h2 {
    font-size: 1.85rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .featured-project:hover {
    transform: none;
  }
}
.services-catalog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.catalog-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  scroll-margin-top: 120px;
}
.catalog-image-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.catalog-image-link img {
  height: 285px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.catalog-image-link:hover img {
  transform: scale(1.035);
}
.catalog-number {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 12px 23px;
  font-weight: 700;
  font-size: 1.35rem;
}
.catalog-copy {
  padding: 35px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.catalog-copy .eyebrow {
  margin-bottom: 13px;
}
.catalog-copy h2 {
  font-size: 1.9rem;
  margin-bottom: 18px;
}
.catalog-copy h2 a:hover {
  color: var(--blue);
}
.catalog-copy ul {
  padding-left: 19px;
  margin: 22px 0 28px;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.catalog-copy li {
  margin-bottom: 7px;
}
.catalog-copy li::marker {
  color: var(--blue);
}
.catalog-copy .button {
  align-self: flex-start;
  margin-top: auto;
}
.catalog-card:last-child {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.catalog-card:last-child .catalog-image-link img {
  height: 100%;
  min-height: 460px;
}
.service-hero {
  background: var(--deep);
  color: #e0eaf3;
  overflow: hidden;
}
.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  min-height: 480px;
  align-items: stretch;
}
.service-hero-copy {
  padding: 40px 0 60px;
  align-self: center;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: #bfcede;
  margin-bottom: 40px;
}
.breadcrumbs a:hover {
  color: white;
}
.service-hero .eyebrow {
  color: #9bd5fa;
  margin-bottom: 18px;
}
.service-hero h1 {
  color: white;
  font-size: clamp(2.7rem, 4.2vw, 4.1rem);
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 25px;
}
.service-hero .lead {
  max-width: 510px;
}
.service-hero .button {
  margin-top: 30px;
}
.service-hero-visual {
  position: relative;
  min-height: 480px;
}
.service-hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #051e3940, transparent 50%);
  pointer-events: none;
}
.service-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-photo-number {
  position: absolute;
  bottom: 10px;
  right: 22px;
  color: white;
  opacity: 0.87;
  font-size: 6.3rem;
  line-height: 1;
  font-weight: 700;
  z-index: 1;
  letter-spacing: -0.04em;
}
.service-page-layout {
  padding-top: 75px;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 75px;
}
.service-page-layout .services-index nav a {
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 16px 0;
}
.other-service-links {
  padding-top: 35px;
}
.other-service-links nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 700;
}
.service-overview {
  padding-bottom: 16px;
}
.service-overview .service-icon {
  margin-bottom: 24px;
  width: 58px;
  height: 58px;
}
.service-overview h2 {
  font-size: 2.15rem;
  margin-bottom: 28px;
  max-width: 740px;
}
.service-overview > p {
  margin-top: 18px;
}
.specialty-section {
  border-top: 1px solid var(--line);
  padding-top: 37px;
  margin-top: 40px;
  scroll-margin-top: 125px;
}
.specialty-title {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.specialty-title > span {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  padding-top: 5px;
  flex: none;
}
.specialty-title h2 {
  font-size: 1.65rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.specialty-section p {
  font-size: 1rem;
  line-height: 1.8;
}
.specialty-list {
  padding: 22px 26px 22px 45px;
  margin: 20px 0;
  background: var(--soft);
  border-left: 3px solid var(--blue);
}
.specialty-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.specialty-list li:last-child {
  margin-bottom: 0;
}
.specialty-list li::marker {
  color: var(--blue);
}
.service-page-contact {
  background: var(--soft);
  border-top: 3px solid var(--blue);
  padding: 35px;
  margin-top: 50px;
}
.service-page-contact h2 {
  font-size: 1.8rem;
  margin-bottom: 17px;
}
.service-page-contact .button {
  margin-top: 24px;
}
.service-page-contact > .text-link {
  display: flex;
  margin-top: 22px;
}
@media (max-width: 1100px) {
  .service-hero-inner {
    gap: 35px;
  }
  .service-hero h1 {
    font-size: 3rem;
  }
  .service-page-layout {
    gap: 45px;
    grid-template-columns: 230px minmax(0, 1fr);
  }
  .catalog-copy {
    padding: 28px;
  }
  .catalog-copy h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 900px) {
  .service-hero-inner {
    gap: 28px;
    min-height: 430px;
  }
  .service-hero-visual {
    min-height: 430px;
  }
  .service-hero h1 {
    font-size: 2.65rem;
  }
  .service-hero .lead {
    font-size: 1.0625rem;
  }
  .service-page-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .other-service-links {
    display: none;
  }
  .service-page-layout .services-index nav {
    grid-template-columns: 1fr 1fr;
  }
  .services-catalog {
    gap: 24px;
  }
  .catalog-image-link img {
    height: 235px;
  }
  .catalog-card:last-child {
    display: flex;
    grid-column: auto;
  }
  .catalog-card:last-child .catalog-image-link img {
    height: 235px;
    min-height: 0;
  }
}
@media (max-width: 680px) {
  .services-catalog {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .catalog-copy {
    padding: 27px 24px;
  }
  .catalog-copy h2 {
    font-size: 1.75rem;
  }
  .catalog-copy ul {
    font-size: 0.9375rem;
  }
  .catalog-image-link img,
  .catalog-card:last-child .catalog-image-link img {
    height: 245px;
  }
  .service-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }
  .service-hero-copy {
    padding: 30px 0 36px;
    align-self: stretch;
  }
  .breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.8125rem;
  }
  .service-hero h1 {
    font-size: clamp(2.55rem, 9vw, 3.4rem);
    max-width: 500px;
  }
  .service-hero .lead {
    font-size: 1.0625rem;
  }
  .service-hero-visual {
    min-height: 240px;
    height: 240px;
    margin: 0 -20px;
  }
  .service-photo-number {
    font-size: 5rem;
  }
  .service-page-layout {
    padding-top: 40px;
    gap: 33px;
  }
  .service-page-layout .services-index nav {
    grid-template-columns: 1fr;
  }
  .service-page-layout .services-index nav a {
    padding: 12px 0;
    font-size: 0.9375rem;
  }
  .service-overview h2 {
    font-size: 1.8rem;
  }
  .service-overview > p {
    font-size: 1rem;
  }
  .specialty-section {
    padding-top: 30px;
    margin-top: 30px;
  }
  .specialty-title h2 {
    font-size: 1.4rem;
  }
  .specialty-title {
    gap: 12px;
    margin-bottom: 18px;
  }
  .specialty-list {
    padding: 20px 20px 20px 35px;
  }
  .service-page-contact {
    padding: 27px 24px;
  }
  .service-page-contact h2 {
    font-size: 1.55rem;
  }
}
@media print {
  .site-header,
  .topbar,
  .footer,
  .hero-tabbar,
  .slider-controls,
  .contact-cta,
  .menu-toggle,
  .button,
  .portfolio-index,
  .services-index {
    display: none !important;
  }
  body {
    font-size: 11pt;
    color: #222;
  }
  .container {
    width: 100%;
  }
  .section,
  .page-banner {
    padding: 25px 0;
  }
  .page-banner,
  .hero {
    color: #222;
    background: #fff;
  }
  .page-banner h1,
  .hero h1,
  .hero p {
    color: #222;
  }
  .banner-image,
  .hero-images,
  .hero-stage:after,
  .page-banner:after {
    display: none;
  }
  .hero-inner {
    min-height: 0;
    padding: 15px 0;
    display: block;
  }
  .hero h1 {
    font-size: 32pt;
    min-height: 0;
  }
  .hero-content > p {
    min-height: 0;
  }
  .hero-side,
  .hero-bottom {
    display: none;
  }
  .split,
  .contact-layout,
  .services-layout,
  .history-layout {
    display: block;
  }
  .service-card,
  .featured-project,
  .team-card,
  .project-row {
    break-inside: avoid;
  }
  .service-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .service-detail > div,
  .project-description {
    display: block !important;
  }
  .services-content {
    width: 100%;
  }
  .service-hero {
    background: white;
    color: #222;
  }
  .service-hero h1 {
    color: #222;
  }
  .service-hero-inner {
    display: block;
  }
  .service-hero-visual {
    display: none;
  }
  .specialty-title {
    break-after: avoid;
  }
}

@media (min-width: 901px) {
  .service-page-layout .services-index {
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 10px;
  }
}

/* Crawlable hierarchy shared by corporate and service pages. */
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}
.breadcrumbs li {
  display: inline;
  min-width: 0;
  overflow-wrap: anywhere;
}
.breadcrumbs li + li:before {
  content: "/";
  margin-right: 12px;
  opacity: 0.6;
}
.breadcrumbs [aria-current="page"] {
  color: inherit;
}
.breadcrumb-bar {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.breadcrumb-bar .breadcrumbs {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}
.breadcrumb-bar .breadcrumbs a {
  color: var(--navy);
}
.service-hero .breadcrumbs {
  font-size: 0.875rem;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.portfolio-heading h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Client marks: balanced proportions, grayscale-to-color hover on fine pointers. */
.client-section {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.client-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.client-tile {
  min-width: 0;
  background: #fff;
  border: 1px solid #e1e7ed;
  border-radius: 4px;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}
.client-tile figure {
  margin: 0;
  padding: 28px 18px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
}
.client-logo-stage {
  height: 106px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
}
.client-logo-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition:
    filter 0.4s ease,
    opacity 0.4s ease;
}
.client-tile figcaption {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: auto;
}
.client-tile-dark {
  background: #080e15;
  border-color: #182332;
}
.client-tile-dark figcaption {
  color: #d7e0e9;
}
.client-tile-dark img {
  mix-blend-mode: screen;
}
@media (hover: hover) and (pointer: fine) {
  .client-logo-stage img {
    filter: grayscale(1);
    opacity: 0.66;
  }
  .client-tile-dark img {
    filter: grayscale(1) brightness(1.5);
    opacity: 0.95;
  }
  .client-tile:hover {
    border-color: #a4c8e3;
    box-shadow: 0 6px 20px rgba(0, 54, 136, 0.07);
  }
  .client-tile:hover img {
    filter: grayscale(0);
    opacity: 1;
  }
  .client-tile-dark:hover {
    background: #0b2038;
    border-color: #416c98;
  }
  .client-tile-dark {
    transition:
      background-color 0.4s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }
  .client-tile-dark:hover img {
    filter: grayscale(0) brightness(1.5);
  }
}
@media (max-width: 1100px) {
  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .client-tile figure {
    padding: 24px 15px 18px;
  }
  .client-logo-stage {
    height: 96px;
  }
}
@media (max-width: 560px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .client-tile figure {
    padding: 22px 13px 17px;
  }
  .client-logo-stage {
    height: 90px;
    margin-bottom: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .client-tile,
  .client-logo-stage img {
    transition: none !important;
  }
}
@media print {
  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .client-tile {
    break-inside: avoid;
  }
  .client-logo-stage img {
    filter: none;
    opacity: 1;
  }
  .client-tile-dark {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
