:root {
  --blue-950: #002d55;
  --blue-900: #003c6f;
  --blue-800: #00528d;
  --blue-700: #066cab;
  --blue-100: #e8f3fb;
  --blue-050: #f3f8fc;
  --green-700: #4f8f2d;
  --green-500: #7db52c;
  --orange-600: #e86114;
  --orange-500: #f47421;
  --ink: #102a43;
  --muted: #52677a;
  --line: #d9e4ec;
  --white: #fff;
  --surface: #f7fafc;
  --shadow: 0 20px 50px rgb(0 45 85 / 10%);
  --shell: min(1180px, calc(100% - 48px));
  font-family: "Inter Variable", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #4db9ff;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p,
li,
label,
input,
textarea,
select {
  font-size: 1rem;
  line-height: 1.65;
}

p {
  color: var(--muted);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange-600);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  color: var(--white);
  background: var(--blue-900);
}

.utility-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}

.utility-bar a,
.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(217 228 236 / 75%);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 168px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav a {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: #213f5b;
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  background: var(--blue-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease-out;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  min-width: 48px;
  min-height: 48px;
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  color: var(--blue-900);
  background: transparent;
  cursor: pointer;
}

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(360px, 42%) 1fr;
  color: var(--white);
  background: var(--blue-950);
}

.hero__content {
  min-height: 610px;
  padding: clamp(64px, 7vw, 112px) clamp(36px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__content p {
  max-width: 43ch;
  margin-bottom: 32px;
  color: #dcebf6;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.hero__media {
  min-height: 610px;
}

.hero__media img {
  height: 100%;
  min-height: 610px;
}

.media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--blue-100);
}

.media picture,
.media img {
  width: 100%;
  height: 100%;
}

.media img {
  object-fit: cover;
  transition: transform 350ms ease-out;
}

.media:hover img {
  transform: scale(1.018);
}

.media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 7px 11px;
  color: var(--white);
  background: rgb(0 35 66 / 82%);
  font-size: 0.7rem;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #a9d964;
}

.accent-line {
  width: 54px;
  height: 4px;
  margin: 0 0 24px;
  display: block;
  background: var(--green-500);
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

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

.button--primary {
  color: var(--white);
  background: var(--orange-600);
}

.button--primary:hover {
  background: #c94f0e;
}

.button--outline {
  border-color: var(--blue-700);
  color: var(--blue-800);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--blue-800);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-600);
  font-weight: 750;
}

.text-link svg {
  width: 18px;
}

.section {
  padding-block: clamp(72px, 8vw, 122px);
}

.section--soft {
  background: var(--surface);
}

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

.section--navy p {
  color: #cfe2f0;
}

.section-title {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.section-title h2 {
  position: relative;
}

.section-title h2::after {
  width: 42px;
  height: 3px;
  margin-top: 16px;
  display: block;
  background: var(--green-500);
  content: "";
}

.section-title p {
  max-width: 64ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-title--light h2,
.section-title--light p {
  color: var(--white);
}

.split-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.split-intro .section-title {
  margin-bottom: 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.fact-grid div {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.fact-grid div:last-child {
  border-right: 0;
}

.fact-grid strong,
.fact-grid span {
  display: block;
}

.fact-grid strong {
  color: var(--blue-800);
  font-size: 2.2rem;
}

.fact-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  min-width: 0;
  border-bottom: 3px solid var(--green-500);
  background: var(--white);
}

.service-card__media {
  aspect-ratio: 1.38;
}

.service-card__body {
  padding: 28px;
}

.service-card__body > svg {
  margin-bottom: 20px;
  color: var(--blue-700);
}

.service-card__body p {
  min-height: 78px;
}

.feature-split,
.editorial-split,
.feature-band,
.environment-feature,
.world-week,
.resource-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.feature-split {
  gap: 70px;
}

.feature-split__media {
  min-height: 560px;
}

.feature-split__content {
  padding-block: 40px;
  align-self: center;
}

.feature-split__content h2 {
  max-width: 13ch;
}

.check-list {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  width: 24px;
  min-width: 24px;
  color: var(--green-700);
}

.method-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
}

.method-step {
  position: relative;
  min-width: 0;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
}

.method-step:last-child {
  border-right: 0;
}

.method-step svg {
  margin-bottom: 16px;
  color: var(--blue-700);
}

.method-step__number {
  position: absolute;
  top: 20px;
  right: 18px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 800;
}

.method-step p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.method-band--dark {
  border-color: rgb(255 255 255 / 20%);
}

.method-band--dark .method-step {
  border-color: rgb(255 255 255 / 20%);
}

.method-band--dark .method-step svg,
.method-band--dark .method-step h3 {
  color: var(--white);
}

.method-band--dark .method-step__number {
  color: #9ed85a;
}

.international-teaser {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  border: 1px solid var(--line);
}

.international-teaser > div {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.tag {
  width: fit-content;
  padding: 6px 9px;
  display: inline-block;
  color: var(--white);
  background: var(--blue-800);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.editorial-grid article {
  min-width: 0;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.editorial-grid .media {
  height: 230px;
  margin-bottom: 18px;
}

.editorial-grid small {
  margin: 15px 0 7px;
  display: block;
  color: var(--green-700);
  font-weight: 750;
}

.editorial-grid h3 {
  min-height: 58px;
}

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

.water-cta {
  color: var(--white);
  background-color: var(--blue-950);
  background-image: url("/assets/images/ai-water-1440.webp");
  background-position: center;
  background-size: cover;
}

.water-cta__inner {
  min-height: 300px;
  padding-block: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.water-cta h2 {
  max-width: 16ch;
  margin-bottom: 12px;
  color: var(--white);
}

.water-cta p {
  max-width: 54ch;
  margin-bottom: 0;
  color: #dcebf6;
}

.site-footer {
  padding-top: 68px;
  color: #dcebf6;
  background: #00223f;
}

.site-footer__grid {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.3fr 0.8fr;
  gap: 48px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: #bcd2e2;
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.65;
}

.site-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 18px;
  padding: 6px;
  background: var(--white);
}

.footer-links {
  display: grid;
  gap: 5px;
}

.footer-legal {
  min-height: 66px;
  padding-block: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgb(255 255 255 / 15%);
  color: #9db8ca;
  font-size: 0.74rem;
}

.footer-legal a {
  color: #9db8ca;
}

.editorial-split {
  gap: 64px;
}

.editorial-split > .media {
  min-height: 440px;
}

.legal-facts {
  max-width: 540px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line);
}

.legal-facts p {
  margin: 0;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.legal-facts p:last-child {
  border-right: 0;
}

.legal-facts span,
.legal-facts strong {
  display: block;
}

.legal-facts span {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.legal-facts strong {
  margin-top: 4px;
  color: var(--blue-800);
  font-size: 1.25rem;
}

.values-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.values-grid article,
.principle-grid article {
  padding: 28px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.principle-grid article {
  border-color: var(--line);
}

.values-grid article:last-child,
.principle-grid article:last-child {
  border-right: 0;
}

.values-grid svg,
.principle-grid svg {
  margin-bottom: 20px;
  color: #a9d964;
}

.principle-grid svg {
  width: 42px;
  height: 42px;
  color: var(--blue-700);
}

.values-grid h3 {
  color: var(--white);
}

.values-grid p,
.principle-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.principle-grid--light h3,
.principle-grid--light p {
  color: var(--white);
}

.principle-grid--light article {
  border-color: rgb(255 255 255 / 20%);
}

.principle-grid--light svg {
  color: #a9d964;
}

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

.mosaic--empresa {
  min-height: 660px;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 1fr 1fr;
}

.mosaic--empresa .media:first-child {
  grid-row: 1 / 3;
}

.mosaic--empresa .media:last-child {
  grid-column: 1 / 3;
  height: 260px;
}

.offices-intro {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 60px;
}

.photo-ribbon {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}

.photo-ribbon .media {
  min-width: 0;
  height: 220px;
}

.photo-ribbon figcaption {
  right: auto;
  left: 0;
  max-width: 100%;
  font-size: 0.6rem;
}

.feature-band {
  gap: 60px;
  align-items: center;
}

.feature-band h2 {
  color: var(--white);
}

.feature-band .media {
  height: 450px;
}

.visual-gallery .photo-ribbon {
  margin-top: 20px;
}

.filter-bar {
  position: sticky;
  z-index: 50;
  top: 104px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(12px);
}

.filter-bar .shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
}

.filter-bar button {
  position: relative;
  min-height: 48px;
  padding: 0 8px;
  flex: 0 0 auto;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 650;
  cursor: pointer;
}

.filter-bar button::after {
  position: absolute;
  right: 8px;
  bottom: 0;
  left: 8px;
  height: 3px;
  background: var(--blue-700);
  content: "";
  transform: scaleX(0);
}

.filter-bar button.is-active {
  color: var(--blue-800);
}

.filter-bar button.is-active::after {
  transform: scaleX(1);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.project-grid article {
  position: relative;
  min-width: 0;
  background: var(--blue-950);
}

.project-grid .media {
  height: 330px;
}

.project-grid article > span {
  position: absolute;
  bottom: 82px;
  left: 18px;
  padding: 5px 8px;
  color: var(--white);
  background: var(--green-700);
  font-size: 0.68rem;
  font-weight: 750;
}

.project-grid h2 {
  margin: 0;
  padding: 18px 18px 0;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.project-grid p {
  display: none;
}

.case-study {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  background: var(--white);
}

.case-study > div {
  padding: clamp(34px, 5vw, 64px);
}

.case-study h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.case-study p {
  margin-bottom: 16px;
}

.case-study p strong {
  display: block;
  color: var(--blue-800);
}

.case-study .media {
  min-height: 560px;
}

.mosaic--territory {
  min-height: 800px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 1fr);
}

.mosaic--territory .media:first-child {
  grid-row: 1 / 3;
}

.dark-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dark-cards article {
  border-bottom: 2px solid var(--green-500);
}

.dark-cards .media {
  height: 250px;
}

.dark-cards h3 {
  margin-top: 22px;
  color: var(--white);
}

.environment-feature {
  background: var(--white);
}

.environment-feature .media {
  min-height: 480px;
}

.environment-feature > div {
  padding: clamp(36px, 6vw, 76px);
}

.concept-flow {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.concept-flow span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--blue-800);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
}

.mosaic--international {
  min-height: 650px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-template-rows: repeat(2, 1fr);
}

.mosaic--international .media:first-child {
  grid-row: 1 / 3;
}

.mosaic--international .media:last-child {
  grid-column: 2 / 4;
}

.global-map__layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px;
  align-items: center;
}

.global-map__layout > .media {
  aspect-ratio: 16 / 9;
}

.event-list h3 {
  margin-bottom: 20px;
}

.event-list article {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.event-list article > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-800);
  font-size: 0.75rem;
  font-weight: 800;
}

.event-list p,
.event-list small {
  margin: 3px 0 0;
  display: block;
  line-height: 1.35;
}

.event-list small {
  color: var(--green-700);
  font-weight: 700;
}

.world-week {
  background: var(--white);
}

.world-week > div {
  padding: clamp(34px, 5vw, 58px);
}

.world-week .media {
  min-height: 360px;
}

.resource-feature {
  color: var(--white);
  background: var(--blue-950);
}

.resource-feature > div {
  padding: clamp(36px, 6vw, 72px);
}

.resource-feature h2,
.resource-feature p {
  color: var(--white);
}

.resource-feature .media {
  min-height: 430px;
}

.newsletter {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 60px;
}

.newsletter form label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 750;
}

.newsletter form > div {
  display: flex;
}

.newsletter input {
  min-height: 52px;
  padding-inline: 16px;
  flex: 1;
  border: 1px solid #9db8ca;
  color: var(--ink);
  background: var(--white);
}

.newsletter button,
.contact-form > button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: var(--orange-600);
  font-weight: 750;
  cursor: pointer;
}

.newsletter small,
.contact-form small {
  margin-top: 7px;
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.form-success {
  display: none;
  margin-top: 12px;
  color: #236b23;
  font-weight: 700;
}

.is-success .form-success {
  display: block;
}

.contact-band {
  border-bottom: 1px solid var(--line);
  background: var(--blue-050);
}

.contact-band .shell {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
}

.contact-band a,
.contact-band .shell > span {
  padding: 22px 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.contact-band .shell > span:last-child {
  border-right: 0;
}

.contact-band svg {
  width: 36px;
  height: 36px;
  color: var(--blue-700);
}

.contact-band small,
.contact-band strong {
  display: block;
}

.contact-band small {
  color: var(--muted);
}

.contact-band strong {
  color: var(--blue-900);
  font-size: 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
}

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

.contact-form > label:not(.checkbox) {
  display: grid;
  gap: 6px;
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid #9eb3c3;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

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

.checkbox {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
}

.checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.contact-form > button {
  width: fit-content;
}

.contact-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 0.78fr 1.22fr auto;
  gap: 7px;
}

.contact-collage .media:nth-child(2) {
  grid-row: 1 / 3;
  grid-column: 2;
}

.contact-collage .media:nth-child(3) {
  grid-column: 1;
}

.direct-email {
  min-height: 110px;
  padding: 24px 28px;
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--blue-900);
}

.direct-email a {
  margin-top: 7px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 750;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

.office-grid article {
  padding-bottom: 36px;
  border-bottom: 2px solid var(--green-500);
}

.office-grid .media {
  height: 360px;
  margin-bottom: 24px;
}

.office-grid h3 {
  color: var(--green-700);
  font-size: 1.45rem;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion h3 {
  margin: 0;
}

.accordion button {
  width: 100%;
  min-height: 64px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: var(--blue-900);
  background: transparent;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.accordion svg {
  transition: transform 180ms ease-out;
}

.accordion svg.is-open {
  transform: rotate(180deg);
}

.accordion__body {
  max-width: 78ch;
  padding: 0 16px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.empty-state {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.legal-page {
  max-width: 880px;
  min-height: 60vh;
}

.legal-page h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}

.not-found {
  min-height: 70vh;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 36px, 980px);
  }

  .site-header__inner {
    min-height: 88px;
  }

  .brand img {
    width: 142px;
  }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }

  .hero,
  .hero__content,
  .hero__media,
  .hero__media img {
    min-height: 540px;
  }

  .hero {
    grid-template-columns: 46% 54%;
  }

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

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-step {
    border-bottom: 1px solid var(--line);
  }

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

  .photo-ribbon {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-ribbon .media {
    height: 190px;
  }
}

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

  html {
    scroll-padding-top: 88px;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__inner > span {
    display: none;
  }

  .site-header__inner {
    min-height: 82px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    padding: 20px 24px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    font-size: 1rem;
  }

  .primary-nav a::after {
    right: auto;
    width: 42px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: 500px;
    padding: 70px 28px;
  }

  .hero__media,
  .hero__media img {
    min-height: 420px;
  }

  .split-intro,
  .feature-split,
  .editorial-split,
  .feature-band,
  .environment-feature,
  .world-week,
  .resource-feature,
  .newsletter,
  .contact-layout,
  .global-map__layout,
  .case-study,
  .offices-intro {
    grid-template-columns: 1fr;
  }

  .feature-split {
    gap: 36px;
  }

  .international-teaser {
    grid-template-columns: 1fr;
  }

  .international-teaser .media {
    height: 390px;
  }

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

  .mosaic--territory,
  .mosaic--international,
  .mosaic--empresa {
    min-height: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .mosaic--territory .media,
  .mosaic--international .media,
  .mosaic--empresa .media {
    min-height: 260px;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .contact-band .shell {
    grid-template-columns: 1fr;
  }

  .contact-band a,
  .contact-band .shell > span {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .section {
    padding-block: 68px;
  }

  .hero__content {
    min-height: 470px;
    padding: 58px 22px;
  }

  .hero__media,
  .hero__media img {
    min-height: 330px;
  }

  .service-grid,
  .editorial-grid,
  .project-grid,
  .office-grid,
  .values-grid,
  .principle-grid,
  .method-band,
  .fact-grid,
  .photo-ribbon,
  .concept-flow {
    grid-template-columns: 1fr;
  }

  .service-card__body p {
    min-height: 0;
  }

  .method-step,
  .values-grid article,
  .principle-grid article,
  .fact-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .photo-ribbon .media {
    height: 250px;
  }

  .filter-bar {
    top: 82px;
  }

  .project-grid .media {
    height: 360px;
  }

  .mosaic--territory,
  .mosaic--international,
  .mosaic--empresa {
    grid-template-columns: 1fr;
  }

  .contact-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contact-collage .media,
  .direct-email {
    min-height: 260px;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .direct-email {
    min-height: 110px;
  }

  .newsletter form > div {
    flex-direction: column;
  }

  .newsletter button {
    min-height: 52px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .water-cta__inner {
    min-height: 360px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Approved-preview alignment pass */
:root {
  --blue-950: #002f58;
  --blue-900: #00427a;
  --blue-800: #075a9f;
  --green-700: #568d2a;
  --green-500: #78b82a;
  --orange-600: #f06413;
  --orange-500: #f47721;
  --ink: #092f61;
  --muted: #465b70;
  --surface: #f3f8fc;
  --shell: min(1280px, calc(100% - 64px));
  font-family: "Inter Variable", Inter, system-ui, sans-serif;
}

h1,
h2,
h3,
.button,
.primary-nav {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 5.1vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h3 {
  letter-spacing: -0.01em;
}

.site-header__inner {
  min-height: 126px;
}

.brand img {
  width: 210px;
}

.primary-nav a {
  color: #0b2c51;
  font-size: 1rem;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 600px;
  grid-template-columns: minmax(390px, 37%) 1fr;
  background: linear-gradient(135deg, #003a6e 0%, #002f58 100%);
}

.hero__content {
  min-height: 600px;
  padding: 70px clamp(42px, 5vw, 82px);
}

.hero__content p {
  max-width: 38ch;
  margin-bottom: 28px;
  color: #f2f7fb;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero__media,
.hero__media img {
  min-height: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button--light {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.button--light:hover {
  color: var(--blue-950);
  background: #fff;
}

.hero__dots {
  margin-top: 54px;
  display: flex;
  gap: 14px;
}

.hero__dots button {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 58%);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: #fff;
}

.hero__controls {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.hero__controls button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--orange-600);
  background: #fff;
  box-shadow: 0 8px 22px rgb(0 0 0 / 16%);
  cursor: pointer;
}

.section {
  padding-block: clamp(58px, 5.5vw, 86px);
}

.section-title {
  margin-bottom: clamp(26px, 3vw, 42px);
}

.section-title p {
  font-size: 1rem;
}

.home-capabilities {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 2.2fr;
  gap: 36px;
}

.home-capabilities .section-title {
  margin-bottom: 20px;
}

.home-capabilities .service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

.service-card__media {
  height: 220px;
}

.service-card__body {
  position: relative;
  min-height: 100px;
  padding: 18px 18px 20px 58px;
}

.service-card__body > svg {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--blue-700);
}

.service-card__body h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.service-card__body p,
.service-card__body .text-link {
  display: none;
}

.feature-split {
  width: 100%;
  max-width: none;
  padding: 0;
  grid-template-columns: 38% 62%;
  gap: 0;
  background: linear-gradient(90deg, #fff 0%, #f5f9fc 100%);
}

.feature-split--reverse .feature-split__content {
  padding: clamp(64px, 8vw, 118px) max(42px, calc((100vw - 1280px) / 2));
  padding-right: clamp(50px, 7vw, 112px);
  grid-column: 1;
}

.feature-split--reverse .feature-split__media {
  grid-column: 2;
  grid-row: 1;
}

.feature-split__media {
  min-height: 500px;
}

.feature-split__content h2 {
  max-width: 14ch;
}

.home-projects__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.compact-filters {
  padding-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: #4e6073;
  font-size: 0.92rem;
}

.compact-filters span {
  padding-bottom: 8px;
  border-bottom: 3px solid transparent;
}

.compact-filters .is-active {
  border-color: var(--blue-700);
  color: var(--blue-800);
  font-weight: 800;
}

.project-strip {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.project-strip article {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.project-strip .media {
  height: 320px;
}

.project-strip .media figcaption {
  display: none;
}

.project-strip article > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 16px 16px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(transparent, rgb(0 35 66 / 90%));
}

.project-strip article > div span {
  color: #dcebf6;
  font-size: 0.78rem;
}

.international-band {
  background: #edf5fb;
}

.international-band__inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  align-items: stretch;
}

.international-band__inner > div {
  padding: 38px 26px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.international-band h2 {
  max-width: 20ch;
  margin: 0;
  font-size: 2rem;
}

.international-band__event {
  flex-direction: row !important;
  align-items: center;
  gap: 20px;
}

.international-band__event svg {
  width: 44px;
  height: 44px;
  color: var(--blue-700);
}

.international-band__event p {
  margin: 0;
}

.international-band .media {
  min-height: 190px;
}

.water-cta {
  background-position: center;
}

.water-cta__inner {
  min-height: 300px;
}

.water-cta__inner::after {
  width: min(360px, 35%);
}

.company-timeline .section-title {
  margin-bottom: 30px;
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.timeline-grid::before {
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 2px;
  background: #9db1c3;
  content: "";
}

.timeline-grid article {
  position: relative;
  padding-top: 34px;
}

.timeline-grid article::before {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.timeline-grid strong {
  color: var(--blue-700);
  font-size: 1.15rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.9fr 1.05fr;
  background: var(--surface);
}

.mission-vision > div {
  padding: 54px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-vision h2 {
  font-size: 1.55rem;
}

.mission-vision .media {
  min-height: 410px;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.capability-strip article {
  border: 1px solid var(--line);
  background: #fff;
}

.capability-strip .media {
  height: 180px;
}

.capability-strip svg {
  margin: 14px 14px 4px;
  color: var(--blue-700);
}

.capability-strip h3 {
  padding: 0 14px 18px;
  font-size: 1rem;
}

.company-territory {
  display: grid;
  grid-template-columns: 0.72fr 1.6fr;
  align-items: center;
  gap: 38px;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.office-cards article {
  border: 1px solid var(--line);
  background: #fff;
}

.office-cards .media {
  height: 230px;
}

.office-cards h3,
.office-cards p {
  margin: 14px 18px 0;
}

.office-cards p {
  margin-bottom: 18px;
}

.legal-strip {
  color: var(--blue-800);
  background: #edf5fb;
}

.legal-strip .shell {
  min-height: 122px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.legal-strip span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-strip svg {
  width: 36px;
  height: 36px;
}

.process-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.process-strip .shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.process-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue-800);
  font-weight: 700;
}

.process-strip svg {
  width: 29px;
  height: 29px;
}

.solution-details {
  background: var(--surface);
}

.solution-detail {
  width: var(--shell);
  margin-inline: auto;
  padding-block: 38px;
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) 1.55fr;
  align-items: center;
  gap: 44px;
}

.solution-detail + .solution-detail {
  border-top: 1px solid var(--line);
}

.solution-detail--reverse {
  grid-template-columns: 1.55fr minmax(240px, 0.62fr);
}

.solution-detail--reverse .solution-detail__copy {
  grid-column: 2;
}

.solution-detail--reverse .solution-detail__gallery {
  grid-column: 1;
  grid-row: 1;
}

.solution-detail__copy h2 {
  max-width: 12ch;
  color: var(--blue-900);
}

.solution-detail__gallery {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.solution-detail__gallery .media:first-child {
  grid-row: 1 / -1;
}

.solution-detail__gallery .media {
  min-height: 200px;
}

.solution-detail__gallery .media--captioned {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  background: #fff;
}

.solution-detail__gallery .media--captioned picture {
  min-height: 0;
  display: block;
  overflow: hidden;
}

.solution-detail__gallery .media--captioned figcaption {
  position: static;
  padding: 9px 11px;
  border-top: 1px solid var(--line);
  color: #40576c;
  background: #fff;
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.territory-banner {
  display: grid;
  grid-template-columns: 31% 69%;
  background: #fff;
}

.territory-banner__copy {
  padding: 58px max(34px, calc((100vw - 1280px) / 2));
  padding-right: 44px;
}

.territory-banner .media {
  min-height: 390px;
}

.project-grid {
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}

.project-grid article {
  position: relative;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--blue-950);
}

.project-grid .media,
.project-grid .media img {
  height: 330px;
}

.project-grid .media figcaption {
  right: auto;
  left: 0;
  padding: 4px 8px;
  background: rgb(0 35 66 / 78%);
}

.project-grid article > span,
.project-grid article > h2 {
  position: absolute;
  z-index: 2;
  right: 16px;
  left: 16px;
  color: #fff;
}

.project-grid article > span {
  bottom: 44px;
  padding: 0;
  background: transparent;
}

.project-grid article > h2 {
  bottom: 14px;
  margin: 0;
  font-size: 1.15rem;
}

.project-grid article > p {
  display: none;
}

.case-study {
  gap: 0;
  grid-template-columns: 0.72fr 1.35fr;
}

.case-study > div {
  padding: 46px;
  background: #eef5fa;
}

.case-study .media {
  min-height: 500px;
}

.territory-pair,
.archive-band {
  display: grid;
  grid-template-columns: 0.78fr 1.4fr;
  align-items: center;
  gap: 34px;
}

.territory-pair .media {
  min-height: 360px;
}

.archive-band .photo-ribbon {
  grid-template-columns: repeat(4, 1fr);
}

.archive-band .photo-ribbon .media:nth-child(n+5) {
  display: none;
}

.editorial-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.editorial-grid article:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.editorial-grid article:first-child .media {
  height: 440px;
}

.editorial-grid article:first-child h3 {
  font-size: 2rem;
}

.editorial-grid .media {
  height: 200px;
}

.contact-layout {
  grid-template-columns: 0.92fr 1.1fr;
}

.contact-collage {
  min-height: 720px;
}

.site-footer__grid {
  grid-template-columns: 1.2fr repeat(4, 0.8fr);
  gap: 42px;
}

.site-footer h2 {
  font-size: 1rem;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .home-capabilities {
    grid-template-columns: 1fr;
  }

  .home-capabilities .service-grid,
  .capability-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-strip article:nth-child(n+4) {
    display: none;
  }

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

  .company-territory,
  .territory-pair,
  .archive-band {
    grid-template-columns: 1fr;
  }

  .solution-detail,
  .solution-detail--reverse {
    grid-template-columns: 0.72fr 1.4fr;
  }

  .solution-detail--reverse .solution-detail__copy {
    grid-column: 1;
  }

  .solution-detail--reverse .solution-detail__gallery {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 88px;
  }

  .brand img {
    width: 150px;
  }

  .primary-nav {
    top: 88px;
  }

  .hero,
  .hero__content,
  .hero__media,
  .hero__media img {
    min-height: 0;
  }

  .hero__content {
    min-height: 500px;
  }

  .hero__media,
  .hero__media img {
    min-height: 420px;
  }

  .hero__dots {
    margin-top: 34px;
  }

  .hero__controls {
    right: 18px;
    bottom: 18px;
  }

  .home-capabilities .service-grid,
  .capability-strip,
  .project-grid,
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-split,
  .territory-banner,
  .international-band__inner,
  .company-territory,
  .mission-vision,
  .solution-detail,
  .solution-detail--reverse,
  .territory-pair,
  .archive-band {
    grid-template-columns: 1fr;
  }

  .feature-split--reverse .feature-split__media,
  .solution-detail--reverse .solution-detail__copy,
  .solution-detail--reverse .solution-detail__gallery {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-split--reverse .feature-split__content,
  .territory-banner__copy {
    padding: 58px 24px;
  }

  .international-band__inner > div {
    padding: 32px 0;
  }

  .international-band .media {
    min-height: 260px;
  }

  .timeline-grid,
  .legal-strip .shell,
  .process-strip .shell {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    gap: 18px;
  }

  .timeline-grid::before,
  .timeline-grid article::before {
    display: none;
  }

  .timeline-grid article {
    padding: 0;
  }

  .legal-strip .shell,
  .process-strip .shell {
    padding-block: 24px;
    gap: 18px;
  }

  .process-strip span {
    justify-content: flex-start;
  }

  .solution-detail,
  .solution-detail--reverse {
    gap: 24px;
  }

  .solution-detail__gallery {
    min-height: 520px;
  }

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

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

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero__content {
    min-height: 470px;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .home-capabilities .service-grid,
  .capability-strip,
  .project-grid,
  .editorial-grid,
  .office-cards {
    grid-template-columns: 1fr;
  }

  .project-strip {
    grid-template-columns: 1fr;
  }

  .project-strip article:nth-child(n+3) {
    display: none;
  }

  .home-projects__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-filters {
    padding-bottom: 20px;
    gap: 16px;
  }

  .mission-vision,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .solution-detail__gallery {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .solution-detail__gallery .media:first-child {
    grid-row: auto;
  }

  .solution-detail__gallery .media {
    min-height: 250px;
  }

  .editorial-grid article:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-grid article:first-child .media {
    height: 260px;
  }
}

/* Homepage fidelity pass: responsive to real desktop and ultrawide browser widths. */
.route-inicio .service-card__media {
  height: auto;
  aspect-ratio: 1.43 / 1;
}

.route-inicio .service-card__ai-icon {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.route-inicio .home-projects {
  padding-block: 58px 48px;
}

.route-inicio .home-projects__head {
  align-items: flex-start;
}

.route-inicio .home-projects .section-title {
  margin-bottom: 22px;
}

.route-inicio .home-projects .section-title h2 {
  max-width: 18ch;
}

.route-inicio .compact-filters {
  padding-top: 37px;
  padding-bottom: 0;
}

.route-inicio .project-strip .media {
  height: auto;
  aspect-ratio: 0.74 / 1;
}

.route-inicio .international-band__inner {
  min-height: 0;
  height: clamp(170px, 10vw, 230px);
  grid-template-columns: 0.9fr 1.1fr 1fr;
}

.route-inicio .international-band__inner > div {
  padding-block: 28px;
}

.route-inicio .international-band h2 {
  max-width: 19ch;
  font-size: clamp(1.55rem, 1.65vw, 2.3rem);
}

.route-inicio .international-band .media {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.route-inicio .international-band .media picture,
.route-inicio .international-band .media img {
  display: block;
  height: 100%;
}

@media (min-width: 821px) {
  .route-inicio .feature-split {
    min-height: clamp(360px, 24vw, 520px);
  }

  .route-inicio .feature-split--reverse .feature-split__content {
    padding: clamp(32px, 3vw, 54px) clamp(42px, 5vw, 112px);
  }

  .route-inicio .feature-split__content h2 {
    font-size: clamp(2.15rem, 2.8vw, 3.2rem);
  }

  .route-inicio .feature-split__media,
  .route-inicio .feature-split__media img {
    min-height: clamp(360px, 24vw, 520px);
    height: clamp(360px, 24vw, 520px);
  }
}

@media (min-width: 1600px) {
  body.route-inicio {
    --shell: min(90vw, 2800px);
  }

  .route-inicio .home-capabilities {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 2.28fr);
    gap: clamp(42px, 4vw, 96px);
  }

  .route-inicio .home-capabilities .service-grid {
    gap: clamp(20px, 1.25vw, 34px);
  }

  .route-inicio .service-card__body {
    padding-right: clamp(18px, 1.2vw, 32px);
  }

  .route-inicio .project-strip article > div {
    padding: clamp(52px, 4vw, 84px) clamp(16px, 1.25vw, 32px) clamp(16px, 1.25vw, 30px);
  }
}

@media (max-width: 820px) {
  .route-inicio .service-card__ai-icon {
    width: 36px;
    height: 36px;
  }

  .route-inicio .compact-filters {
    padding-top: 0;
  }

  .route-inicio .international-band__inner {
    height: auto;
  }

  .route-inicio .international-band .media {
    height: 260px;
    min-height: 260px;
  }
}

/* Actualidad: índice y artículos individuales */
.editorial-card__image {
  display: block;
  color: inherit;
}

.editorial-card__image:focus-visible {
  outline: 3px solid var(--blue-700);
  outline-offset: 4px;
}

.article-page {
  background: #fff;
}

.article-header {
  padding-block: clamp(56px, 7vw, 108px) clamp(38px, 5vw, 68px);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(38px, 5vw, 72px);
  color: var(--blue-950);
  font-weight: 750;
  text-decoration: none;
}

.article-back:hover {
  color: var(--orange-600);
}

.article-header h1 {
  max-width: 18ch;
  margin: 14px 0 22px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.article-deck {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 20px 2px 0;
  border-radius: 50%;
  background: var(--green-500);
}

.article-featured {
  height: clamp(360px, 52vw, 720px);
}

.article-featured img {
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 320px);
  justify-content: space-between;
  gap: clamp(44px, 8vw, 120px);
  padding-block: clamp(56px, 7vw, 104px);
}

.article-body {
  color: var(--blue-950);
}

.article-body .article-lead,
.article-body > p:first-child {
  margin: 0 0 48px;
  color: var(--blue-950);
  font-size: clamp(1.2rem, 1.65vw, 1.52rem);
  line-height: 1.65;
}

.article-body section + section {
  margin-top: 42px;
}

.article-body h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.article-aside {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: clamp(26px, 3vw, 38px);
  background: var(--blue-050);
}

.article-aside h2 {
  margin: 12px 0 14px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.08;
}

.article-aside p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.article-aside .button {
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .article-header h1 {
    font-size: clamp(2.65rem, 13vw, 4.6rem);
  }

  .article-featured {
    height: min(76vw, 520px);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  .article-header {
    padding-top: 42px;
  }

  .article-back {
    margin-bottom: 34px;
  }

  .article-meta {
    display: grid;
    gap: 6px;
  }

  .article-meta span + span::before {
    display: none;
  }
}

/* WordPress navigation markup */
.primary-nav .primary-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: inherit;
  list-style: none;
}

.primary-nav .primary-menu > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after,
.primary-nav .current-menu-ancestor > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 820px) {
  .primary-nav .primary-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav .primary-menu > li {
    width: 100%;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
