@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/poppins@5.3.0/latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/poppins@5.3.0/latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/poppins@5.3.0/latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #e51d2a;
  --red-dark: #b50e17;
  --ink: #07080a;
  --ink-2: #101217;
  --ink-3: #191c22;
  --white: #ffffff;
  --mist: #f3f4f6;
  --muted: #a6aab3;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(7, 8, 10, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  --font-primary: "Poppins", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --container: min(1160px, calc(100vw - 64px));
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
li {
  text-wrap: pretty;
}

body.menu-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(--red);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(7, 8, 10, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  isolation: isolate;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.brand-mark img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.34));
}

.brand-mark-standalone {
  margin-bottom: 50px;
}

.primary-nav {
  justify-self: end;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  transition: right 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 5px 7px 5px 18px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(229, 29, 42, 0.22);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta::after {
  content: "";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white) url("/assets/icon-arrow-dark.svg") center / 15px 15px no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ff3542;
  border-color: #ff3542;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(229, 29, 42, 0.34);
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after {
  background: var(--white) url("/assets/icon-arrow-dark.svg") center / 15px 15px no-repeat;
  color: transparent;
  transform: translate(2px, -2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 34px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(700px, 88svh, 820px);
  height: auto;
  overflow: hidden;
  align-items: end;
  background: var(--ink);
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.72) contrast(1.1);
  opacity: 0.72;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.72) 45%, rgba(7, 8, 10, 0.18) 78%),
    linear-gradient(0deg, var(--ink) 0%, rgba(7, 8, 10, 0.02) 52%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(18px, 7vw, 110px);
  width: clamp(90px, 12vw, 170px);
  height: 58%;
  background: linear-gradient(180deg, rgba(255, 52, 61, 0.8), rgba(255, 52, 61, 0));
  clip-path: polygon(36% 0, 100% 0, 64% 100%, 0 100%);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding: 150px 0 72px;
}

.hero-copy {
  max-width: 820px;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.62;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 6px 7px 6px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(229, 29, 42, 0.18);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "";
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white) url("/assets/icon-arrow-dark.svg") center / 17px 17px no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translate(2px, -2px);
}

.button:not(.button-secondary):not(.button-dark):not(.button-light):hover,
.button:not(.button-secondary):not(.button-dark):not(.button-light):focus-visible {
  background: #ff3542;
  border-color: #ff3542;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(7, 8, 10, 0.18);
}

.button-dark::after,
.button-light::after {
  background: var(--red) url("/assets/icon-arrow-light.svg") center / 17px 17px no-repeat;
  color: transparent;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--red);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(7, 8, 10, 0.14);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(650px, 100%);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof span {
  padding: 16px 18px 16px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.kinetic-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 15px 0;
  background: var(--red);
  color: var(--white);
  transform: rotate(-1.25deg) scale(1.025);
  transform-origin: center;
}

.kinetic-track {
  width: max-content;
  font-size: clamp(0.86rem, 1.4vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}

.kinetic-track span {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin: 0 22px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: 0.12em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(76px, 8vw, 112px) 0;
}

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

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

.section-dark-deep {
  background: var(--ink-2);
}

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

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 68px);
}

.section-heading h2,
.split-copy h2,
.contact-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.9vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > div:last-child > p,
.split-copy > p,
.contact-copy > p,
.page-hero .page-lead {
  margin: 0;
  color: #555b65;
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

.section-dark .section-heading > div:last-child > p,
.section-red .section-heading > div:last-child > p,
.contact-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  border-bottom: 1px solid currentColor;
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.service-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid-4 .service-card {
  padding: 27px;
}

.service-grid-4 .service-card h3 {
  margin-top: 46px;
}

.service-card {
  position: relative;
  min-height: 286px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--white);
  overflow: hidden;
  transition: color 250ms ease, background-color 250ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -72% 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}

.service-card:hover,
.service-card:focus-within {
  background: var(--ink);
  color: var(--white);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scale(1.8);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-number {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card:hover .service-number,
.service-card:focus-within .service-number {
  color: var(--white);
}

.service-card h3 {
  max-width: 280px;
  margin: 54px 0 14px;
  font-size: clamp(1.35rem, 1.8vw, 1.78rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0;
  color: #686d76;
  line-height: 1.55;
  transition: color 250ms ease;
}

.service-card:hover p,
.service-card:focus-within p {
  color: rgba(255, 255, 255, 0.74);
}

.service-card a {
  position: absolute;
  inset: 0;
}

.service-card a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -5px;
}

.catalogue-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid var(--line-dark);
  background: #f7f7f8;
}

.catalogue-jump p {
  max-width: 720px;
  margin: 0;
  color: #555b65;
}

.catalogue-jump .text-link {
  flex: 0 0 auto;
  margin-top: 0;
}

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

.equipment-card {
  padding: clamp(26px, 3.4vw, 38px);
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.equipment-card-wide {
  grid-column: 1 / -1;
}

.equipment-card-wide .equipment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
}

.equipment-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.equipment-card-header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.equipment-card-header span {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.equipment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.equipment-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.equipment-name {
  color: #2c3036;
  font-weight: 720;
  line-height: 1.38;
}

.equipment-name small {
  display: block;
  margin-top: 4px;
  color: #717680;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.equipment-price {
  color: var(--red-dark);
  font-weight: 900;
  white-space: nowrap;
}

.catalogue-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--red);
  background: rgba(229, 29, 42, 0.065);
  color: #555b65;
}

.catalogue-note strong {
  color: var(--ink);
}

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

.package-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
}

.package-card .package-label {
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 28px 0 8px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.package-price {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.package-card > p:not(.package-price) {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.package-card ul {
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
}

.package-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

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

.audience-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.audience-card strong {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: auto 0 15px;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.audience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  min-height: 640px;
  gap: 14px;
}

.visual-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--ink-3);
}

.visual-card:first-child {
  grid-row: 1 / 3;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 300ms ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 18% 0 0;
  background: linear-gradient(0deg, rgba(3, 4, 6, 0.96) 0%, rgba(3, 4, 6, 0.68) 42%, transparent 100%);
  pointer-events: none;
}

.visual-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.14);
}

.visual-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
}

.visual-label span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 8, 10, 0.9);
  color: #ff4a56;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.visual-label h3 {
  max-width: 19ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2.3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.86);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(52px, 8vw, 108px);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 120px;
}

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

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

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.principle h3 {
  margin: 0 0 7px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

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

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 110px 0.75fr 1.25fr;
  align-items: baseline;
  gap: 32px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list li::before {
  content: "0" counter(process);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 0;
  color: #656a72;
}

.faq-list {
  max-width: 960px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 58px 27px 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--red);
  font-size: 2rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 780px;
  margin: -5px 0 30px;
  color: rgba(255, 255, 255, 0.64);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}

.contact-page-section {
  padding-top: 158px;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 120px solid rgba(255, 52, 61, 0.11);
  border-radius: 50%;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.02fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: start;
}

.contact-copy h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

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

.contact-copy .contact-intro {
  margin-top: 26px;
}

.contact-meta {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.52);
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.contact-direct a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-intro {
  margin: 0 0 30px;
  font-size: 1.12rem;
  font-weight: 700;
}

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

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

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd2d7;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 52, 61, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b9099;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 23px 0;
  color: #60656e;
  font-size: 0.86rem;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.privacy-check a {
  color: var(--ink);
  text-decoration: underline;
}

.form-note,
.form-status {
  color: #6d727a;
  font-size: 0.8rem;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand .brand-mark {
  margin-bottom: 20px;
}

.footer-brand p,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.58);
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-column address {
  display: grid;
  gap: 9px;
  font-style: normal;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mobile-contact-bar {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.page-hero-media,
.page-hero-media::after,
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-media img {
  object-fit: cover;
  opacity: 0.5;
}

.page-hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(7, 8, 10, 0.97), rgba(7, 8, 10, 0.45)), linear-gradient(0deg, var(--ink), transparent 55%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding: 150px 0 70px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.page-hero .page-lead {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.content-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(46px, 7vw, 98px);
}

.content-grid h2,
.rich-content h2 {
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -0.043em;
  text-wrap: balance;
}

.rich-content h3 {
  margin: 44px 0 10px;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.rich-content p,
.rich-content li {
  color: #5d626b;
  font-size: 1.05rem;
}

.rich-content ul {
  margin: 20px 0;
  padding-left: 1.2em;
}

.rich-content li + li {
  margin-top: 8px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.feature-item {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
}

.feature-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature-item p {
  margin: 0;
  font-size: 0.97rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding: clamp(38px, 6vw, 70px);
  background: var(--red);
  color: var(--white);
}

.cta-panel h2 {
  max-width: 740px;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.mini-nav a {
  padding: 10px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #4e535c;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.legal-page {
  padding: 150px 0 100px;
  background: var(--white);
  color: var(--ink);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0 0 45px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.048em;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
  color: #555b64;
}

.legal-content a {
  text-decoration: underline;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2,.8,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

  .nav-shell { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 78px 0 0;
    display: none;
    padding: 40px 18px;
    background: rgba(7, 8, 10, 0.98);
    overflow-y: auto;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { width: min(100%, 760px); margin: auto; flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav a { display: block; padding: 18px 0; font-size: 1rem; }

  .section-heading,
  .split,
  .contact-layout,
  .content-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .split-copy { position: static; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 310px; }
  .visual-grid { min-height: 610px; }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-card:last-child { grid-column: 1 / -1; }
  .equipment-card-wide .equipment-list { grid-template-columns: 1fr; }
  .contact-layout { gap: 55px; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-brand { grid-column: 1 / -1; }
  .process-list li { grid-template-columns: 70px 0.8fr 1.2fr; gap: 20px; }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 30px); }

  body { padding-bottom: 76px; }
  .nav-shell { min-height: 70px; gap: 10px; }
  .brand-mark { width: 50px; height: 50px; }
  .primary-nav { top: 70px; }
  .nav-cta { display: none; }

  .hero { min-height: 680px; height: auto; }
  .hero-content { padding: 132px 0 58px; }
  .hero h1 { font-size: clamp(2.9rem, 13.2vw, 4.15rem); line-height: 0.97; }
  .hero-media::after { background: linear-gradient(0deg, var(--ink) 0%, rgba(7,8,10,.35) 62%), linear-gradient(90deg, rgba(7,8,10,.9), rgba(7,8,10,.28)); }
  .hero::after { right: -20px; opacity: 0.4; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof span { padding: 11px 0; }
  .hero-proof span + span { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }

  .section { padding: 70px 0; }
  .section-heading h2,
  .split-copy h2,
  .contact-copy h2,
  .cta-panel h2 { font-size: clamp(2rem, 9.5vw, 3rem); line-height: 1.07; }
  .page-hero h1 { font-size: clamp(2.55rem, 11vw, 3.65rem); line-height: 1.01; }
  .contact-copy h1 { font-size: clamp(2.55rem, 11vw, 3.65rem); line-height: 1.01; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; padding: 26px; }
  .service-card h3 { margin-top: 45px; }
  .equipment-grid,
  .package-grid { grid-template-columns: 1fr; }
  .package-card:last-child { grid-column: auto; }
  .equipment-card-wide { grid-column: auto; }
  .equipment-card { padding: 24px 21px; }
  .equipment-list li { gap: 14px; }
  .catalogue-jump { align-items: flex-start; padding: 20px; }
  .catalogue-note { grid-template-columns: 1fr; gap: 6px; }
  .package-card { min-height: 0; padding: 26px; }
  .package-card ul { margin-top: 24px; }
  .visual-grid { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .visual-card, .visual-card:first-child { grid-row: auto; min-height: 330px; }
  .visual-card:first-child { min-height: 440px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .process-list p { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-form { margin-inline: -1px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 550px; }
  .page-hero-content { padding: 132px 0 58px; }
  .contact-page-section { padding-top: 132px; }
  .feature-list { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; padding: 38px 25px; }

  .mobile-contact-bar {
    position: fixed;
    z-index: 120;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: 70px;
    padding: 8px 8px max(8px, env(safe-area-inset-bottom));
    background: rgba(7, 8, 10, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .mobile-contact-bar a:first-child {
    border-color: var(--red);
    background: var(--red);
    box-shadow: 0 8px 24px rgba(229, 29, 42, 0.25);
  }
}

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


/* Clientes y portfolio real · 2026-09-11 */
.client-group { margin-top: 38px; }
.client-group + .client-group { margin-top: 28px; }
.client-group-title { margin: 0 0 14px; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #777d86; }
.section-dark .client-group-title { color: rgba(255,255,255,.48); }
.client-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.client-tile { min-height: 108px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 22px 24px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.78); color: var(--ink); }
.client-tile strong { font-size: 1rem; line-height: 1.25; letter-spacing: -.015em; }
.client-tile span { color: #747982; font-size: .77rem; }
.section-dark .client-tile { border-color: var(--line); background: rgba(255,255,255,.055); color: var(--white); }
.section-dark .client-tile span { color: rgba(255,255,255,.5); }
.client-tile-public { border-left: 3px solid var(--red); }
.project-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.project-card { overflow: hidden; border: 1px solid var(--line-dark); background: var(--white); color: var(--ink); }
.project-media { margin: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-2); }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.project-card:hover .project-media img { transform: scale(1.025); }
.project-body { padding: 26px 28px 30px; }
.project-body h3 { margin: 4px 0 10px; font-size: clamp(1.25rem,2vw,1.7rem); line-height: 1.15; letter-spacing: -.03em; }
.project-body p { margin: 0; color: #646a73; }
.project-meta { margin-bottom: 7px !important; color: var(--red) !important; font-size: .72rem !important; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 980px) {
  .client-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .primary-nav ul { gap: 14px; }
}
@media (max-width: 680px) {
  .client-grid, .project-grid { grid-template-columns: 1fr; }
  .client-tile { min-height: 92px; }
  .project-body { padding: 22px; }
}


/* Responsive image picture wrappers - SEO/performance 2026-09-11 */
.hero-media picture,
.page-hero-media picture,
.visual-card picture,
.project-media picture { display: block; width: 100%; height: 100%; }

/* Mobile navigation viewport fix · 2026-09-11
   Keep the fixed menu relative to the viewport (not the blurred header),
   allow independent touch scrolling and prevent the mobile contact bar
   from covering the final navigation items. */
@media (max-width: 980px) {
  .site-header.menu-visible {
    background: rgba(7, 8, 10, 0.99);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .primary-nav {
    inset: 78px 0 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding-bottom: max(36px, env(safe-area-inset-bottom));
  }

  .primary-nav ul {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 680px) {
  .primary-nav {
    inset: 70px 0 0;
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    padding: 22px 18px calc(34px + env(safe-area-inset-bottom));
  }

  body.menu-open .mobile-contact-bar {
    display: none;
  }
}


/* Mobile navigation v5 — isolated viewport overlay
   The mobile panel is mounted directly under <body> by site.js so no header,
   filter, transform or container can become its containing block. */
.mobile-menu-layer {
  display: none;
}

@media (max-width: 980px) {
  .primary-nav {
    display: none !important;
  }

  .site-header {
    z-index: 220;
  }

  .site-header.menu-visible {
    background: #07080a;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .mobile-menu-layer {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: none;
    width: 100%;
    height: var(--ltf-visual-height, 100vh);
    height: var(--ltf-visual-height, 100dvh);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    background: #07080a;
    color: var(--white);
  }

  .mobile-menu-layer.is-open {
    display: block;
  }

  .mobile-menu-layer__inner {
    width: min(calc(100% - 36px), 760px);
    min-height: 100%;
    margin-inline: auto;
    padding: 98px 0 max(44px, env(safe-area-inset-bottom));
  }

  .mobile-menu-layer ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-layer li {
    margin: 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu-layer a {
    display: flex;
    align-items: center;
    min-height: 64px;
    padding: 16px 2px;
    color: rgba(255,255,255,.86);
    font-size: clamp(.96rem, 4vw, 1.08rem);
    font-weight: 760;
    line-height: 1.25;
    letter-spacing: .065em;
    text-transform: uppercase;
  }

  .mobile-menu-layer a[aria-current="page"] {
    color: var(--white);
  }

  .mobile-menu-layer a[aria-current="page"]::before {
    content: "";
    flex: 0 0 18px;
    width: 18px;
    height: 2px;
    margin-right: 11px;
    background: var(--red);
  }

  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.menu-open .mobile-contact-bar {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .mobile-menu-layer__inner {
    width: calc(100% - 30px);
    padding-top: 84px;
    padding-bottom: max(34px, env(safe-area-inset-bottom));
  }

  .mobile-menu-layer a {
    min-height: 60px;
    padding-block: 15px;
  }
}

@media (max-width: 680px) and (max-height: 520px) {
  .mobile-menu-layer__inner {
    padding-top: 74px;
  }

  .mobile-menu-layer a {
    min-height: 52px;
    padding-block: 11px;
    font-size: .9rem;
  }
}


/* v6 — client logo wall. Brand artwork sits on a neutral canvas so original colours remain intact. */
.client-logo-tile {
  align-items: center;
  text-align: center;
  padding: 16px 18px 18px;
  gap: 8px;
  overflow: hidden;
}
.client-logo-frame {
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  margin-bottom: 2px;
  background: #fff;
  border: 1px solid rgba(20,22,26,.08);
  border-radius: 10px;
  box-sizing: border-box;
}
.client-logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  object-position: center;
}
.client-logo-frame--failed {
  display: none;
}
.client-logo-tile strong {
  margin-top: 2px;
}
.section-dark .client-logo-frame {
  background: #fff;
  border-color: rgba(255,255,255,.16);
}
@media (max-width: 520px) {
  .client-logo-tile { min-height: 122px; padding: 14px 15px 16px; }
  .client-logo-frame { height: 66px; padding: 8px 14px; }
  .client-logo-frame img { max-height: 48px; }
}

/* v7 — municipal references. Coats of arms sit on the same neutral canvas as client brands,
   with extra vertical room so heraldic marks and horizontal institutional signatures remain legible. */
.client-public-logo-tile {
  min-height: 158px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-left: 0;
}
.client-public-logo-frame {
  height: 86px;
  width: 100%;
  padding: 6px 12px;
  background: #fff;
}
.client-public-logo-frame img {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 74px;
  object-fit: contain;
  object-position: center;
}
.client-public-logo-tile strong,
.client-public-logo-tile span { text-align: center; }
@media (max-width: 720px) {
  .client-public-logo-tile { min-height: 146px; }
  .client-public-logo-frame { height: 78px; padding: 5px 10px; }
  .client-public-logo-frame img { max-height: 68px; }
}
