:root {
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --ink: #07151d;
  --ink-2: #0b222d;
  --ink-3: #153440;
  --blue: #168bd0;
  --blue-bright: #4ebaf0;
  --sky: #bde9fb;
  --paper: #ffffff;
  --soft: #f1f5f5;
  --line: #d5dede;
  --muted: #617079;
  --success: #32b59a;
  --shadow: 0 24px 80px rgba(5, 21, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.shell {
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--blue-bright);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 24px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  background: var(--blue);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 12px 19px;
}

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

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--blue-bright);
  background: var(--blue-bright);
  color: var(--ink);
}

.button-ghost,
.button-ghost-light {
  background: transparent;
}

.button-ghost {
  color: var(--ink);
}

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

.button-ghost-light:hover,
.button-ghost-light:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

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

.arrow-icon {
  display: inline-flex;
  font-size: 1.3em;
  line-height: 1;
  transition: transform 180ms ease;
}

a:hover .arrow-icon,
a:focus-visible .arrow-icon {
  transform: translateX(4px);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 9999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: white;
  color: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 21, 29, 0.97);
  color: white;
  backdrop-filter: blur(18px);
}

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

.brand {
  display: block;
  width: 156px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

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

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a.active {
  color: white;
}

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

.header-actions {
  display: none;
  align-items: center;
  gap: 18px;
}

.header-whatsapp {
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-whatsapp span {
  color: var(--success);
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: white;
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  align-items: center;
  background: var(--ink);
  color: white;
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 16s ease-out both;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 26, 0.95) 0%, rgba(5, 18, 26, 0.73) 47%, rgba(5, 18, 26, 0.2) 78%),
    linear-gradient(0deg, rgba(5, 18, 26, 0.72), transparent 45%);
}

@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding-block: 110px 180px;
}

.home-hero-content h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7.2vw, 7.2rem);
}

.home-hero-content h1 span {
  color: var(--blue-bright);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof > div {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 18px;
  padding: 20px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.hero-proof span {
  max-width: 135px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Shared sections */
.two-column-intro,
.story-grid,
.product-overview-grid,
.service-intro,
.project-index-intro,
.news-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.two-column-intro h2,
.story-grid h2,
.service-intro h2,
.project-index-intro h2,
.news-page-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.intro-copy,
.story-copy,
.service-intro > p,
.project-index-intro > p,
.news-page-intro > p {
  padding-top: 48px;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p:last-of-type {
  margin-bottom: 34px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 58px;
}

.section-heading-row h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.section-heading-light > p {
  max-width: 410px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.65);
}

/* Featured products */
.featured-grid {
  display: grid;
  min-height: 780px;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.featured-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--ink-2);
  color: white;
}

.featured-card:first-child {
  grid-row: 1 / span 2;
}

.featured-card img,
.featured-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-card img {
  object-fit: cover;
  transition: transform 550ms cubic-bezier(.2,.75,.2,1);
}

.featured-card-shade {
  background: linear-gradient(0deg, rgba(3, 17, 24, 0.9), rgba(3, 17, 24, 0.02) 70%);
}

.featured-card:hover img {
  transform: scale(1.045);
}

.featured-card-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
}

.featured-card-content p {
  margin-bottom: 10px;
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-card-content h3 {
  max-width: 520px;
  margin: 0;
  padding-right: 70px;
}

.featured-card-content > a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

/* Capabilities */
.capabilities-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 80px;
  margin-bottom: 70px;
}

.capabilities-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.capabilities-heading > p {
  align-self: end;
  margin-bottom: 8px;
  color: var(--muted);
}

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

.capability-row {
  display: grid;
  grid-template-columns: 90px 0.7fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row > span {
  color: var(--blue);
  font-family: var(--font-display);
}

.capability-row h3,
.capability-row p {
  margin: 0;
}

.capability-row h3 {
  font-size: 1.55rem;
}

.capability-row p {
  color: var(--muted);
}

/* Project preview */
.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.market-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--ink-2);
}

.market-card img,
.market-card-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.market-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.market-card:hover img {
  transform: scale(1.04);
}

.market-card-overlay {
  background: linear-gradient(0deg, rgba(4, 18, 25, 0.88), rgba(4, 18, 25, 0.12) 75%);
}

.market-card-top {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-card h3 {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 24px;
  left: 30px;
  margin: 0;
  color: white;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

/* Interactive maps */
.map-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  margin-bottom: 54px;
}

.map-section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
}

.map-section-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
}

.global-map-section .map-section-heading > p,
.chile-map-section .map-section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.interactive-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.interactive-map-layout-global {
  grid-template-columns: minmax(0, 1.45fr) minmax(390px, 0.72fr);
  align-items: start;
}

.map-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.map-stage-world {
  aspect-ratio: 1200 / 560;
  background:
    radial-gradient(circle at 32% 38%, rgba(22, 139, 208, 0.18), transparent 35%),
    linear-gradient(145deg, #0b222d, #07151d);
}

.map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-country {
  fill: #1b5065;
  stroke: rgba(125, 213, 249, 0.48);
  stroke-linejoin: round;
  stroke-width: 0.75;
  transition: fill 220ms ease;
  vector-effect: non-scaling-stroke;
}

.map-country-presence {
  fill: #277b9b;
  stroke: rgba(168, 230, 255, 0.8);
}

.map-stage-world:hover .map-country {
  fill: #205d74;
}

.map-stage-world:hover .map-country-presence {
  fill: #2c88aa;
}

.map-marker {
  position: absolute;
  z-index: 3;
  top: var(--marker-y);
  left: var(--marker-x);
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-marker > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(78, 186, 240, 0.2), 0 8px 22px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, background 180ms ease;
}

.map-marker::after {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: max-content;
  max-width: 180px;
  padding: 5px 8px;
  border-radius: 3px;
  background: rgba(4, 18, 25, 0.92);
  color: #fff;
  content: attr(data-title);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.map-marker:hover::after,
.map-marker:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.map-marker:hover > span,
.map-marker:focus-visible > span,
.map-marker.is-active > span {
  width: 20px;
  height: 20px;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(78, 186, 240, 0.26), 0 8px 25px rgba(0, 0, 0, 0.35);
}

.map-marker:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

.map-detail {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--line);
  background: #fff;
}

.map-detail-global {
  min-height: 100%;
  align-self: stretch;
  padding: clamp(32px, 3vw, 46px);
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--ink-2);
  color: #fff;
}

.map-detail-kicker {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-detail-global h3 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 2.4vw, 2.7rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.map-detail-global > span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-detail-global > p:not(.map-detail-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-detail-hint {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.interactive-map-layout-chile {
  grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
}

.map-stage-chile {
  min-height: 880px;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 50% 38%, rgba(22, 139, 208, 0.2), transparent 42%),
    linear-gradient(145deg, #0b222d, #07151d);
}

.chile-map-graphic {
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: 50%;
  aspect-ratio: 360 / 1100;
  filter: drop-shadow(0 0 18px rgba(78, 186, 240, 0.16));
  transform: translateX(-50%);
}

.chile-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chile-land {
  fill: #277b9b;
  stroke: rgba(168, 230, 255, 0.8);
  stroke-linejoin: round;
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
}

.map-marker-project > span {
  border-color: #fff;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(78, 186, 240, 0.2), 0 8px 22px rgba(0, 0, 0, 0.3);
}

.map-marker-project.is-active > span,
.map-marker-project:hover > span,
.map-marker-project:focus-visible > span {
  background: #fff;
  box-shadow: 0 0 0 7px rgba(78, 186, 240, 0.26), 0 8px 25px rgba(0, 0, 0, 0.35);
}

.map-marker-project::after {
  content: attr(data-client);
}

.map-detail-project {
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--ink-2);
  color: #fff;
}

.map-detail-project > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.map-detail-project > div > span {
  color: var(--blue-bright);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-detail-project > div > strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.map-detail-project .text-link {
  align-self: flex-start;
  margin-top: 36px;
  color: #fff;
}

.map-detail-project .text-link::after {
  background: rgba(255, 255, 255, 0.75);
}

/* Clients */
.clients-copy {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 60px;
}

.clients-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.logo-wall,
.representation-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-tile,
.representation-logos > div {
  display: grid;
  min-height: 135px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.logo-tile img,
.representation-logos img {
  max-width: 120px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: 180ms ease;
}

.logo-tile:hover img,
.representation-logos > div:hover img {
  filter: none;
  opacity: 1;
}

/* News strip */
.news-strip {
  padding-block: 100px;
}

.news-strip-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
}

.news-strip-inner > div:first-child h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
}

.news-feature {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  background: white;
  box-shadow: var(--shadow);
}

.news-feature > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.news-feature > div {
  padding: 42px;
}

.news-feature > div > p {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-feature h3 {
  margin-bottom: 30px;
}

.home-news-heading {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 48px;
}

.home-news-heading > div {
  max-width: 780px;
}

.home-news-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
}

.home-news-heading > .text-link {
  flex: 0 0 auto;
  margin-bottom: 9px;
}

.home-news-carousel {
  position: relative;
}

.home-news-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  box-shadow: var(--shadow);
}

.home-news-viewport::-webkit-scrollbar {
  display: none;
}

.home-news-track {
  display: flex;
}

.home-news-slide {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  min-height: 420px;
  background: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-news-media {
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  background: #fff;
}

.home-news-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  padding: 34px;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.home-news-slide:hover .home-news-media img {
  transform: scale(1.025);
}

.home-news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
  background: var(--soft);
}

.home-news-content > p {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-news-content h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.04;
}

.home-news-excerpt {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.home-news-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.home-news-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  place-items: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-news-controls button:hover,
.home-news-controls button:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.home-news-controls p {
  min-width: 58px;
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-news-empty {
  padding: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.page-hero-image {
  min-height: min(690px, 78svh);
}

.page-hero-background,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-background {
  object-fit: cover;
}

.page-hero-shade {
  background: linear-gradient(90deg, rgba(5, 19, 27, 0.95), rgba(5, 19, 27, 0.72) 53%, rgba(5, 19, 27, 0.18));
}

.page-hero:not(.page-hero-image)::after {
  position: absolute;
  right: -8vw;
  bottom: -20vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(78, 186, 240, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 7vw rgba(78, 186, 240, 0.04), 0 0 0 14vw rgba(78, 186, 240, 0.025);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding-block: 80px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.breadcrumb a:hover {
  color: white;
}

.page-hero h1 {
  max-width: 1020px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6.4vw, 6.5rem);
}

.page-hero-description {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
}

/* Company */
.story-sticky {
  position: sticky;
  top: 130px;
}

.story-copy .large-copy {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 680px;
}

.image-stack img:first-child {
  width: 84%;
  height: 570px;
  object-fit: cover;
}

.image-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 300px;
  border: 12px solid var(--soft);
  object-fit: cover;
}

.why-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.mini-stats {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.mini-stats > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.mini-stats strong {
  font-family: var(--font-display);
  font-weight: 600;
}

.mini-stats span {
  color: var(--muted);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.mission-grid article {
  position: relative;
  min-height: 590px;
  padding: clamp(45px, 7vw, 90px);
  background: var(--ink);
}

.mission-grid article > span {
  position: absolute;
  top: 36px;
  right: 40px;
  color: rgba(255, 255, 255, 0.23);
  font-family: var(--font-display);
  font-size: 4rem;
}

.mission-grid h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.mission-grid article > p:last-child {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.65);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.values-grid > div {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid span {
  color: var(--blue);
  font-size: 0.75rem;
}

.values-grid h2 {
  margin: 120px 0 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

/* Catalog */
.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-tabs button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.filter-tabs button:hover,
.filter-tabs button.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.search-field {
  display: flex;
  width: min(300px, 100%);
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.search-field input {
  width: 100%;
  padding: 10px 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-field span {
  font-size: 1.35rem;
}

.catalog-count {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1.2;
  overflow: hidden;
  background: var(--soft);
}

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

.product-card:hover .product-card-image img {
  transform: scale(1.035);
}

.product-card-number {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 8px 0;
}

.product-status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgba(22, 139, 208, 0.35);
  border-radius: 2px;
  background: rgba(78, 186, 240, 0.12);
  color: #086da7;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card-body > .product-status {
  color: #086da7;
}

.card-kicker {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.product-card-body > p:not(.card-kicker) {
  color: var(--muted);
}

.product-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.empty-state {
  padding: 80px 20px;
  text-align: center;
}

.representation-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: center;
}

.representation-grid > div:first-child > p:last-child {
  color: var(--muted);
}

.representation-logos {
  grid-template-columns: repeat(4, 1fr);
}

/* Product detail */
.product-detail-hero {
  padding-block: 90px;
  background: var(--soft);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.breadcrumb-dark {
  margin-bottom: 56px;
  color: var(--muted);
}

.breadcrumb-dark a:hover {
  color: var(--ink);
}

.product-detail-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
}

.product-detail-status {
  margin-bottom: 20px;
}

.product-lead {
  max-width: 670px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 1.12rem;
}

.product-detail-image {
  position: relative;
  min-width: 0;
}

.product-hero-stage {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.product-hero-main {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  cursor: zoom-in;
}

.product-hero-main img {
  display: block;
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  transition: transform 350ms ease, opacity 180ms ease;
}

.product-hero-video,
.product-hero-video video,
.product-hero-video iframe,
.product-hero-external-video {
  display: block;
  width: 100%;
  aspect-ratio: 1.05;
  border: 0;
  background: #030d12;
}

.product-hero-video video {
  object-fit: contain;
}

.product-hero-external-video {
  display: grid;
  place-items: center;
  padding: 40px;
}

.product-hero-main:hover img,
.product-hero-main:focus-visible img {
  transform: scale(1.018);
}

.product-hero-open {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 66px;
  padding: 8px 11px;
  background: rgba(7, 21, 29, 0.88);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-hero-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(7, 21, 29, 0.9);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  pointer-events: none;
  text-transform: uppercase;
}

.product-hero-gallery.is-video-active .product-hero-caption {
  top: 0;
  bottom: auto;
}

.product-hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(7, 21, 29, 0.78);
  color: white;
  cursor: pointer;
  font-size: 1.15rem;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.product-hero-arrow:hover,
.product-hero-arrow:focus-visible {
  border-color: white;
  background: var(--blue);
}

.product-hero-prev {
  left: 16px;
}

.product-hero-next {
  right: 16px;
}

.product-hero-thumbnails {
  display: flex;
  gap: 9px;
  margin-top: 10px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  scrollbar-color: var(--blue) rgba(7, 21, 29, 0.12);
  scrollbar-width: thin;
}

.product-hero-thumbnails button {
  position: relative;
  flex: 0 0 82px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--ink);
  cursor: pointer;
  opacity: 0.62;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.product-hero-thumbnails button:hover,
.product-hero-thumbnails button:focus-visible,
.product-hero-thumbnails button.is-active {
  border-color: var(--blue);
  opacity: 1;
}

.product-hero-thumbnails img {
  display: block;
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.product-hero-video-thumb span {
  position: absolute;
  inset: auto 5px 5px;
  padding: 4px 5px;
  background: rgba(3, 13, 18, 0.86);
  color: white;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.product-description {
  padding-top: 47px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-list > div {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
}

.feature-list p {
  margin: 55px 0 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.product-video {
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.product-video video {
  display: block;
  width: 100%;
  max-height: 720px;
  aspect-ratio: 16 / 9;
  background: #030d12;
  object-fit: contain;
}

.gallery-grid button {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--ink-2);
  cursor: zoom-in;
}

.gallery-grid button:first-child {
  grid-column: span 8;
}

.gallery-grid button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.035);
}

.gallery-grid button span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 7px 10px;
  background: rgba(7, 21, 29, 0.82);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-grid button:hover span,
.gallery-grid button:focus-visible span {
  opacity: 1;
}

.gallery-grid.gallery-count-1 button:first-child {
  grid-column: 2 / span 10;
}

.image-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 60px;
  background: rgba(3, 12, 17, 0.94);
  cursor: zoom-out;
}

.image-modal img {
  max-width: min(1400px, 94vw);
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 30px 100px #000;
  cursor: default;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 2rem;
}

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

.related-grid > a {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.related-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  opacity: 0.7;
  transition: 300ms ease;
}

.related-grid > a:hover img {
  opacity: 0.5;
  transform: scale(1.03);
}

.related-grid > a > div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 24px;
}

.related-grid span {
  grid-column: 1 / -1;
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 8px 0 0;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 340px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid article > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-grid h3 {
  margin: 95px 0 18px;
}

.service-grid p {
  color: var(--muted);
}

.systems-list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.systems-list > a {
  display: grid;
  grid-template-columns: 65px 180px minmax(0, 1fr) 40px;
  gap: 35px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.systems-list > a > span {
  color: var(--blue-bright);
  font-size: 0.75rem;
}

.systems-list img {
  width: 180px;
  height: 105px;
  object-fit: cover;
}

.systems-list h3 {
  margin-bottom: 8px;
}

.systems-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

/* Projects */
.project-index-intro {
  margin-bottom: 80px;
}

.project-index-list {
  border-top: 1px solid var(--line);
}

.project-index-list > a {
  display: grid;
  grid-template-columns: 250px 70px minmax(0, 1fr) 50px;
  gap: 35px;
  align-items: center;
  min-height: 250px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.project-index-image {
  height: 200px;
  overflow: hidden;
}

.project-index-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-index-list > a:hover img {
  transform: scale(1.035);
}

.project-index-number {
  color: var(--blue);
  font-size: 0.75rem;
}

.project-index-copy p {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-index-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.project-index-copy span {
  color: var(--muted);
}

.market-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.market-hero > img,
.market-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.market-hero > img {
  object-fit: cover;
}

.market-hero-shade {
  background: linear-gradient(90deg, rgba(5, 19, 27, 0.93), rgba(5, 19, 27, 0.42) 65%, rgba(5, 19, 27, 0.1));
}

.market-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
}

.market-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 0.82;
}

.market-hero-inner > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.market-overview-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

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

.market-highlights > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.market-highlights span {
  color: var(--blue);
  font-size: 0.75rem;
}

.market-highlights p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 125px;
}

.contact-list {
  margin: 45px 0 35px;
  border-top: 1px solid var(--line);
}

.contact-list > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list p {
  margin: 0;
}

.contact-list a:hover {
  color: var(--blue);
}

.contact-form-card {
  padding: clamp(35px, 5vw, 70px);
  background: var(--soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-form label > span {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9eaaaa;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.quote-form input,
.quote-form select {
  height: 48px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.form-submit-row p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-status {
  margin-top: 18px;
  padding: 10px;
  border-left: 3px solid var(--success);
  background: white;
  font-size: 0.8rem;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.careers-grid > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.careers-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}

.careers-grid small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

/* News */
.news-page-intro {
  margin-bottom: 70px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-grid article {
  background: var(--soft);
}

.news-grid article > img {
  width: 100%;
  height: 260px;
  padding: 22px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.news-grid article > div {
  padding: 36px;
}

.news-grid article span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-grid article h2 {
  margin: 15px 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.news-grid article p {
  color: var(--muted);
}

/* Contact CTA */
.contact-cta {
  padding-block: 95px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.contact-cta h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.contact-cta-action p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.site-footer {
  background: #040e13;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 0.65fr 0.8fr 1fr;
  gap: 60px;
  padding-block: 90px 70px;
}

.footer-lead h2 {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.footer-column a:hover {
  color: white;
}

.footer-title {
  margin-bottom: 14px;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact p:not(.footer-title) {
  margin: 8px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  object-position: top;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .shell { width: min(100% - 48px, 1280px); }
  .header-actions { display: flex; }
  .primary-nav {
    position: fixed;
    z-index: 999;
    top: 84px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-inline: 24px;
    background: var(--ink);
    opacity: 0;
    transition: 240ms ease;
  }
  .primary-nav.is-open { max-height: calc(100vh - 84px); padding-bottom: 28px; opacity: 1; }
  .primary-nav > a:not(.button) { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1rem; }
  .primary-nav > a:not(.button)::after { display: none; }
  .nav-contact { margin-top: 18px; }
  .featured-grid { min-height: 680px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 0.7fr 0.8fr; }
  .footer-contact { grid-column: 2 / -1; }
  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .gallery-grid button { grid-column: span 6; }
  .gallery-grid button:first-child { grid-column: span 12; }
  .market-card { min-height: 460px; }
  .interactive-map-layout-global { grid-template-columns: 1fr; }
  .map-detail-global { min-height: 320px; }
}

@media (max-width: 820px) {
  .section { padding-block: 85px; }
  h2 { font-size: clamp(2.15rem, 8vw, 3.5rem); }
  .home-hero { min-height: 790px; }
  .home-hero-content { padding-block: 80px 240px; }
  .home-hero-content h1 { font-size: clamp(3.15rem, 12vw, 5.4rem); }
  .home-hero-overlay { background: linear-gradient(90deg,rgba(5,18,26,.94),rgba(5,18,26,.58)),linear-gradient(0deg,rgba(5,18,26,.82),transparent); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div { min-height: 56px; padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-proof > div:first-child { padding-left: 0; }
  .hero-proof strong { width: 75px; font-size: 1.4rem; }
  .hero-proof span { max-width: none; }
  .two-column-intro,.story-grid,.product-overview-grid,.service-intro,.project-index-intro,.news-page-intro,.capabilities-heading,.clients-copy,.news-strip-inner,.why-grid,.representation-grid,.market-overview-grid,.contact-layout,.careers-grid,.contact-cta-inner { grid-template-columns: 1fr; gap: 42px; }
  .intro-copy,.story-copy,.service-intro>p,.project-index-intro>p,.news-page-intro>p,.product-description { padding-top: 0; }
  .story-sticky,.contact-details { position: static; }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: 25px; }
  .featured-grid { min-height: 0; grid-template-columns: 1fr; grid-template-rows: none; }
  .featured-card,.featured-card:first-child { min-height: 430px; grid-row: auto; }
  .capability-row { grid-template-columns: 50px 1fr; gap: 16px; }
  .capability-row p { grid-column: 2; }
  .project-preview-grid { grid-template-columns: 1fr; }
  .market-card { min-height: 480px; }
  .map-section-heading,.interactive-map-layout,.interactive-map-layout-chile { grid-template-columns: 1fr; }
  .map-section-heading { gap: 28px; }
  .map-stage-world { min-height: 0; }
  .map-detail { min-height: 360px; }
  .map-stage-chile { min-height: 760px; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature > img { min-height: 290px; }
  .home-news-heading { align-items: flex-start; flex-direction: column; gap: 24px; }
  .home-news-heading > .text-link { margin-bottom: 0; }
  .home-news-slide { grid-template-columns: 1fr; min-height: 0; }
  .home-news-media { min-height: 270px; }
  .home-news-media img { height: 270px; padding: 26px; }
  .home-news-content { min-height: 340px; padding: 38px; }
  .page-hero,.page-hero-image { min-height: 590px; }
  .page-hero h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .image-stack { min-height: 560px; }
  .image-stack img:first-child { height: 480px; }
  .image-stack img:last-child { height: 240px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-grid article { min-height: 470px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-tools { align-items: stretch; flex-direction: column; }
  .search-field { width: 100%; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-copy { order: 2; }
  .product-detail-image { order: 1; }
  .feature-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 170px; }
  .gallery-grid button,.gallery-grid button:first-child,.gallery-grid.gallery-count-1 button:first-child { grid-column: span 12; }
  .related-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .systems-list > a { grid-template-columns: 45px 130px 1fr 30px; gap: 18px; }
  .systems-list img { width: 130px; height: 90px; }
  .project-index-list > a { grid-template-columns: 160px 45px 1fr 25px; gap: 18px; }
  .project-index-image { height: 160px; }
  .market-hero,.market-hero-inner { min-height: 650px; }
  .market-hero h1 { font-size: clamp(4.8rem, 20vw, 9rem); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-lead { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 32px); }
  .section { padding-block: 68px; }
  .header-inner { min-height: 72px; }
  .brand { width: 124px; }
  .brand img { height: 52px; }
  .primary-nav { top: 72px; }
  .header-whatsapp { display: none; }
  .home-hero { min-height: 790px; }
  .home-hero-content { padding-top: 58px; }
  .home-hero-content h1 { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .section-heading-row { margin-bottom: 40px; }
  .featured-card,.featured-card:first-child { min-height: 360px; }
  .featured-card-content { right: 22px; bottom: 22px; left: 22px; }
  .capability-row { padding: 23px 0; }
  .logo-wall { grid-template-columns: repeat(2,1fr); }
  .logo-tile { min-height: 110px; }
  .news-feature > div { padding: 28px; }
  .home-news-heading { margin-bottom: 32px; }
  .home-news-media { min-height: 220px; }
  .home-news-media img { height: 220px; padding: 20px; }
  .home-news-content { min-height: 320px; padding: 28px; }
  .home-news-content h3 { font-size: 2rem; }
  .home-news-controls { justify-content: center; }
  .map-section-heading { margin-bottom: 36px; }
  .map-stage-world { height: auto; min-height: 0; aspect-ratio: 1200 / 560; }
  .map-marker { width: 32px; height: 32px; }
  .map-marker::after { display: none; }
  .map-detail { min-height: 0; padding: 30px 26px; }
  .map-stage-chile { min-height: 720px; }
  .map-detail-project > div { grid-template-columns: 1fr; gap: 7px; padding: 18px 0; }
  .news-grid article > img { height: 220px; padding: 18px; }
  .page-hero,.page-hero-image { min-height: 540px; }
  .page-hero-inner { padding-block: 60px; }
  .breadcrumb { margin-bottom: 38px; }
  .page-hero h1 { font-size: 3rem; }
  .image-stack { min-height: 440px; }
  .image-stack img:first-child { width: 92%; height: 380px; }
  .image-stack img:last-child { width: 55%; height: 180px; border-width: 8px; }
  .mini-stats > div { grid-template-columns: 90px 1fr; }
  .mission-grid article { min-height: auto; padding: 50px 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid > div { min-height: 160px; }
  .values-grid h2 { margin-top: 55px; }
  .product-grid { grid-template-columns: 1fr; }
  .representation-logos { grid-template-columns: repeat(2,1fr); }
  .product-detail-hero { padding-block: 55px; }
  .product-detail-copy h1 { font-size: 2.8rem; }
  .feature-list { margin-top: 45px; }
  .image-modal { padding: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 270px; }
  .service-grid h3 { margin-top: 55px; }
  .systems-list > a { grid-template-columns: 35px 1fr 25px; }
  .systems-list img { display: none; }
  .systems-list p { display: none; }
  .project-index-list > a { grid-template-columns: 1fr 35px; gap: 16px; padding: 28px 0; }
  .project-index-image { grid-column: 1 / -1; height: 230px; }
  .project-index-number { display: none; }
  .project-index-copy h2 { font-size: 2.6rem; }
  .market-hero,.market-hero-inner { min-height: 590px; }
  .market-hero h1 { font-size: 4.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .careers-grid > img { height: 350px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-block: 65px 45px; }
  .footer-lead,.footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

/* WordPress integration */
.primary-nav .menu-item,
.primary-nav ul,
.primary-nav li {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-content {
  font-size: 1.05rem;
}

.entry-narrow {
  width: min(820px, calc(100% - 80px));
}

.entry-content > * + * {
  margin-top: 1.4em;
}

.entry-content a:not(.button) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-description > :last-child,
.entry-content > :last-child {
  margin-bottom: 0;
}

[hidden] {
  display: none !important;
}

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

.form-message {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: #eaf6fc;
  color: var(--ink);
  font-weight: 700;
}

.form-message-error {
  border-left-color: #c0362c;
  background: #fff0ee;
}

.wp-block-image img,
.entry-content img {
  height: auto;
}

.alignwide {
  width: min(1100px, 100%);
  max-width: none;
  margin-inline: auto;
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

@media (max-width: 560px) {
  .entry-narrow { width: calc(100% - 32px); }
}
