@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/montserrat-latin-variable.woff2") format("woff2");
}

:root {
  --navy: #0b0e26;
  --navy-soft: #12172f;
  --ink: #393d50;
  --ink-deep: #202538;
  --cyan: #00bcd4;
  --blue: #105085;
  --blue-bright: #2695f1;
  --yellow: #f6d652;
  --paper: #ffffff;
  --mist: #f4f6f7;
  --line: #dfe3e7;
  --muted: #71778a;
  --surface: #fafbfc;
  --shadow-sm: 0 12px 32px rgba(12,19,41,.07);
  --shadow-md: 0 24px 64px rgba(12,19,41,.12);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --steel: #aab5c3;
  --font: var(--font-montserrat, Montserrat), Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 152px;
  scrollbar-width: thin;
  scrollbar-color: #105085 transparent;
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  min-height: 64px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, var(--cyan), #105085 72%);
  box-shadow: none;
}
html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #25d7e9, #12639e 72%);
}
html::-webkit-scrollbar-corner { background: transparent; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

.site-shell { position: relative; overflow: clip; }

body, button, input, select, textarea { font-family: var(--font); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { border-radius: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
::selection { color: white; background: var(--blue); }

.skip-link { position: fixed; z-index: 10000; top: 12px; left: 12px; padding: 10px 14px; color: white; background: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.wide-container { width: min(100% - 56px, 1210px); margin-inline: auto; }
.content-container { width: min(100% - 56px, 1120px); margin-inline: auto; }
.section-pad { padding-block: clamp(62px,5.5vw,84px); }
.compact-top { padding-top: 16px; }

.kicker {
  display: inline-block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker.light { color: #8de5ef; }

.section-title h2 {
  margin: 12px 0 0;
  color: var(--ink-deep);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-transform: uppercase;
}
.section-title .kicker { position: relative; padding-left: 32px; }
.section-title .kicker::before { content: ""; position: absolute; top: .65em; left: 0; width: 20px; height: 2px; background: var(--cyan); }

.section-title.center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-title.center > p { max-width: 650px; margin: 22px auto 0; color: var(--muted); }

.section-title.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}

.section-title.split > div { max-width: 650px; }
.section-title.split > p { max-width: 410px; margin: 0 0 5px; color: var(--muted); }
.section-title.center .single-line-title { max-width: none; white-space: nowrap; }
.activity-section .section-title.center { width: min(100% - 56px,1210px); max-width: none; }
.activity-section .section-title.center h2 { width: 100%; text-align: center; }
.page-transition {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  visibility: hidden;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(ellipse at center, rgba(16,80,133,.2) 0, transparent 48%),
    rgba(11,14,38,.82);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px) saturate(108%);
  transition: opacity .28s ease, visibility .28s ease;
}

.page-transition.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.transition-orbit {
  position: relative;
  display: grid;
  width: 164px;
  height: 86px;
  isolation: isolate;
  place-items: center;
}

.transition-orbit::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -48px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,188,212,.22), rgba(38,149,241,.07) 38%, transparent 70%);
  filter: blur(14px);
  opacity: 0;
}

.transition-orbit span {
  position: relative;
  z-index: 1;
  display: block;
  width: 106px;
  height: 49px;
  background: url('/genevois-tg-vector-v6.svg') center / contain no-repeat;
  opacity: 0;
  will-change: clip-path, opacity, transform;
}

.transition-orbit span::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url('/genevois-tg-vector-v6.svg') center / contain no-repeat;
  filter: blur(8px);
  opacity: .22;
}

.transition-orbit span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(0,188,212,.25) 42%, #fff 50%, rgba(124,244,255,.5) 57%, transparent 74%) 150% 0 / 250% 100% no-repeat;
  -webkit-mask: url('/genevois-tg-vector-v6.svg') center / contain no-repeat;
  mask: url('/genevois-tg-vector-v6.svg') center / contain no-repeat;
  opacity: 0;
}

.page-transition.is-active .transition-orbit::before {
  animation: transition-halo .72s cubic-bezier(.22,1,.36,1) both;
}

.page-transition.is-active .transition-orbit span {
  animation: signature-reveal .72s cubic-bezier(.22,1,.36,1) both;
}

.page-transition.is-active .transition-orbit span::after {
  animation: signature-sheen .72s cubic-bezier(.22,1,.36,1) both;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #d5d9e7;
  background: transparent;
  box-shadow: 0 8px 30px rgba(7, 10, 29, 0.14);
}

.topbar {
  min-height: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: var(--navy);
  transition: background-color .35s ease, border-color .35s ease;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 34px; gap: 30px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: #abb3c8; font-size: 12px; transition: color .25s ease; }
.topbar a:hover { color: white; }
.topbar svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.topbar-contact { display: flex; gap: 30px; }

.nav-shell {
  background: var(--navy);
  transition: background-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled .topbar {
  border-color: rgba(255,255,255,.08);
  background: rgba(11,14,38,.68);
  backdrop-filter: blur(14px) saturate(130%);
}
.site-header.is-scrolled .nav-shell {
  background: rgba(11,14,38,.82);
  box-shadow: 0 12px 32px rgba(5,8,25,.14);
  backdrop-filter: blur(14px) saturate(130%);
}
.nav-inner { display: flex; align-items: center; min-height: 78px; transition: min-height .35s var(--ease-out); }
.site-header.is-scrolled .nav-inner { min-height: 68px; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { width: 264px; filter: invert(1); }

.main-nav { display: flex; align-items: stretch; min-height: inherit; }
.main-nav > a,
.nav-dropdown > a {
  position: relative;
  display: flex;
  align-items: center;
  padding-inline: 18px;
  color: #c3c8d7;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}

.main-nav > a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 18px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.main-nav > a:hover,
.nav-dropdown > a:hover,
.main-nav .is-active { color: white; }
.main-nav > a:hover::after,
.nav-dropdown > a:hover::after,
.main-nav .is-active::after { transform: scaleX(1); }

.main-nav .nav-cta {
  align-self: center;
  min-height: 40px;
  margin-left: 12px;
  padding-inline: 17px;
  color: white;
  background: var(--blue-bright);
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--cyan); }
.main-nav .nav-cta:focus-visible { outline-color: white; }

.nav-dropdown { position: relative; display: flex; }
.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: -120px;
  display: flex;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
  width: min(800px,calc(100vw - 56px));
  padding: 0;
  visibility: hidden;
  border-top: 3px solid var(--cyan);
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 10, 29, .24);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-dropdown:hover .mega-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.mega-menu-category { display: flex; min-height: 134px; flex-direction: column; gap: 7px; padding: 17px 18px; color: #646b7d; border-right: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.mega-menu-category:nth-child(4) { border-right: 0; }
.mega-menu-category span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.mega-menu-category strong { color: var(--ink-deep); font-size: 13px; line-height: 1.25; text-transform: uppercase; transition: color .25s ease; }
.mega-menu-category small { margin-top: auto; color: var(--muted); font-size: 10.5px; line-height: 1.5; transition: color .25s ease; }
.mega-menu-category:hover { color: white; background: var(--navy); }
.mega-menu-category:hover strong { color: white; }
.mega-menu-category:hover small { color: rgba(255,255,255,.68); }
.mega-menu-all { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; color: var(--ink-deep); border-top: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; transition: color .25s ease, background .25s ease; }
.mega-menu-all b { color: var(--cyan); font-size: 17px; }
.mega-menu-all:hover { color: white; background: var(--navy); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; color: white; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; }
.home-hero { position: relative; height: clamp(620px,calc(100svh - 112px),790px); min-height: 620px; overflow: hidden; background: #071426; }
.hero-slide { position: absolute; inset: 0; overflow: hidden; opacity: 0; animation: hero-fade 12s infinite; }
.hero-slide::after { content: ""; position: absolute; inset: -1.5%; background-image: var(--hero-image); background-position: var(--hero-position, center); background-repeat: no-repeat; background-size: cover; transform: scale(1.025); animation: hero-photo-drift 12s ease-in-out infinite alternate; }
.hero-slide-one { --hero-image: url('/images/114.webp'); --hero-position: center 55%; }
.hero-slide-two { --hero-image: url('/images/115.webp'); --hero-position: center 18%; animation-delay: 6s; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,15,35,.99) 0%, rgba(3,18,42,.93) 26%, rgba(4,24,51,.66) 47%, rgba(5,29,57,.18) 71%, rgba(5,18,36,.06) 84%), linear-gradient(180deg, rgba(4,13,29,.05), rgba(4,13,29,.3)); }

.hero-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(6.2vw, 70px);
  display: flex;
  width: min(51vw, 760px);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: left;
}

.hero-panel > * { opacity: 0; transform: translateY(18px); animation: hero-copy-in .78s cubic-bezier(.22,1,.36,1) forwards; }
.hero-kicker { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; animation-delay: .2s; }
.hero-panel h1 { display: flex; max-width: 760px; margin: 27px 0 0; flex-direction: column; color: white; font-size: clamp(44px, 5.15vw, 72px); font-weight: 680; letter-spacing: -.065em; line-height: .82; text-transform: uppercase; animation-delay: .3s; }
.hero-panel h1 > span:first-child { font-size: .55em; font-weight: 520; letter-spacing: -.02em; line-height: 1; }
.hero-panel h1 > span:last-child { white-space: nowrap; }
.hero-panel h1 small { color: var(--cyan); font-size: .33em; font-weight: 800; letter-spacing: .03em; vertical-align: baseline; }
.hero-meta { display: flex; align-items: center; gap: 14px; margin-top: 28px; animation-delay: .4s; }
.hero-meta i { display: block; width: 44px; height: 1px; background: rgba(255,255,255,.28); }
.hero-meta > span { color: rgba(255,255,255,.62); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.hero-year { color: var(--cyan); font-size: clamp(15px, 1.5vw, 20px); letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.hero-panel p { max-width: 620px; margin: 34px 0 0; color: rgba(255,255,255,.78); font-size: clamp(13px, 1.2vw, 16px); line-height: 1.65; text-align: justify; text-align-last: left; text-justify: inter-word; hyphens: none; word-break: normal; animation-delay: .5s; }
.hero-panel a { display: inline-flex; width: max-content; align-items: center; gap: 13px; margin-top: 34px; padding-bottom: 7px; border-bottom: 2px solid var(--cyan); color: white; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; animation-delay: .6s; transition: color .25s ease, gap .25s ease; }
.hero-panel a::after { content: "→"; color: var(--cyan); font-size: 15px; line-height: 1; }
.hero-panel a:hover { gap: 19px; color: var(--cyan); }
.hero-progress { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: rgba(255,255,255,.18); }
.hero-progress span { display: block; height: 100%; background: var(--cyan); transform-origin: left; animation: progress 6s linear infinite; }

.home-intro { position: relative; padding-top: clamp(48px,4.2vw,64px); padding-bottom: 48px; overflow: hidden; background: white; }
.intro-copy { max-width: 980px; text-align: center; }
.intro-copy p { margin: 16px 0 0; color: var(--ink); font-size: clamp(19px, 2.3vw, 28px); font-weight: 500; line-height: 1.55; }
.intro-manifesto { display: grid; width: min(100% - 80px,1260px); max-width: none; grid-template-columns: minmax(0,1fr) 136px; align-items: center; gap: clamp(30px,3.4vw,50px); text-align: left; }
.intro-manifesto p { max-width: 1050px; font-size: clamp(17px,1.35vw,21px); line-height: 1.55; text-align: justify; text-align-last: left; text-justify: inter-word; hyphens: none; word-break: normal; }
.intro-stamp { display: grid; aspect-ratio: 1; align-content: center; padding: 18px; border: 1px solid var(--line); background: linear-gradient(135deg,#fff,#f5f8f9); text-align: center; transform: rotate(2deg); }
.intro-stamp strong { color: var(--blue); font-size: 30px; letter-spacing: -.06em; line-height: 1; }
.intro-stamp span { margin-top: 9px; color: var(--muted); font-size: 8.5px; font-weight: 750; letter-spacing: .08em; line-height: 1.55; text-transform: uppercase; }

.process-ribbon { position: relative; height: 94px; overflow: visible; contain: layout; background: white; }
.process-ribbon-band { position: absolute; top: 18px; left: -80px; width: calc(100% + 160px); height: 58px; overflow: hidden; color: white; border-block: 1px solid rgba(126,229,239,.22); background: linear-gradient(100deg,#15354c 0%,#1d4b64 48%,#15354c 100%); transform: rotate(-1.1deg); transform-origin: center; }
.process-ribbon-band::before, .process-ribbon-band::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: min(10vw, 150px); pointer-events: none; }
.process-ribbon-band::before { left: 0; background: linear-gradient(90deg, #15354c, transparent); }
.process-ribbon-band::after { right: 0; background: linear-gradient(270deg, #15354c, transparent); }
.process-ribbon-track { display: flex; width: max-content; height: 100%; align-items: center; animation: process-ribbon-flow 28s linear infinite; backface-visibility: hidden; }
.process-ribbon-group { display: flex; flex-shrink: 0; align-items: center; }
.process-ribbon-group span { display: grid; min-width: 238px; grid-template-columns: minmax(160px,1fr) 34px; align-items: center; column-gap: 18px; padding-inline: 14px; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.process-ribbon-group em { font-style: normal; text-align: center; }
.process-ribbon-group i { display: block; width: 34px; height: 1px; background: rgba(126,229,239,.3); }
.process-ribbon-group b { color: #7ee5ef; font-size: 9px; letter-spacing: .08em; }
.process-ribbon-pulse { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; height: 2px; overflow: hidden; background: rgba(126,229,239,.1); }
.process-ribbon-pulse span { display: block; width: 18%; height: 100%; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: process-ribbon-pulse 4.8s cubic-bezier(.45,0,.55,1) infinite; }
.process-ribbon + .activity-section { padding-top: 46px; }
.activity-section { background: white; }
.activity-columns { display: flex; align-items: stretch; gap: 20px; margin-top: 38px; }
.activity-item { position: relative; flex: 1; min-width: 0; padding: 12px 12px 24px; border: 1px solid transparent; background: white; text-align: center; transition: border-color .35s ease, box-shadow .4s var(--ease-out), transform .4s var(--ease-out); }
.activity-item::before { content: ""; position: absolute; top: 0; left: 12px; width: 34px; height: 2px; background: var(--cyan); transform: scaleX(.35); transform-origin: left; transition: width .4s var(--ease-out), transform .4s var(--ease-out); }
.activity-item:hover { border-color: var(--line); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.activity-item:hover::before { width: calc(100% - 24px); transform: scaleX(1); }
.activity-image { position: relative; display: block; height: 178px; overflow: hidden; background: var(--mist); transition: box-shadow .4s ease, transform .4s cubic-bezier(.22,1,.36,1); }
.activity-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: filter .55s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.activity-image > span { position: absolute; z-index: 3; right: 12px; bottom: 10px; display: grid; width: 34px; height: 34px; place-items: center; color: white; background: var(--cyan); font-size: 10px; font-weight: 800; transition: background .3s ease, transform .4s cubic-bezier(.22,1,.36,1); }
.activity-item:hover .activity-image,
.activity-image:focus-visible { box-shadow: 0 14px 30px rgba(11,14,38,.16); transform: translateY(-2px); }
.activity-item:hover .activity-image img,
.activity-image:focus-visible img { filter: saturate(1.08) contrast(1.035); transform: scale(1.045); }
.activity-item:hover .activity-image > span,
.activity-image:focus-visible > span { background: var(--blue); transform: translate(-4px,-4px) rotate(-4deg); }
.activity-item h3 { margin: 24px 0 10px; color: var(--ink-deep); font-size: 17px; font-weight: 750; line-height: 1.28; text-transform: uppercase; }
.activity-item p { min-height: 78px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.activity-item ul { margin: 17px 0 0; padding: 15px 0 0; border-top: 1px solid var(--line); list-style: none; }
.activity-item li { margin: 4px 0; color: #646b7e; font-size: 11px; }

.parallax-band { position: relative; display: grid; min-height: clamp(360px,36vw,460px); overflow: hidden; place-items: center; color: white; background: linear-gradient(rgba(10,15,39,.62), rgba(10,15,39,.74)), url('/images/114.webp') center 55% / cover fixed; }
.parallax-copy { position: relative; z-index: 1; width: min(100% - 56px, 780px); text-align: center; }
.parallax-copy > span { color: #83e5ef; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.parallax-copy h2 { margin: 13px 0; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; text-transform: uppercase; }
.parallax-copy p { margin: 0 auto; color: rgba(255,255,255,.78); font-size: 16px; }

.outline-button,
.solid-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.outline-button { border: 2px solid var(--ink); }
.outline-button.light { margin-top: 28px; border-color: rgba(255,255,255,.75); color: white; }
.outline-button:hover { color: white; border-color: var(--cyan); background: var(--cyan); }
.outline-button.light:hover { color: var(--navy); border-color: white; background: white; }
.solid-button { color: white; background: var(--cyan); }
.solid-button:hover { background: var(--blue); transform: translateY(-2px); }
.dark-button { color: white; background: var(--navy); }
.dark-button:hover { background: var(--blue); transform: translateY(-2px); }
.featured-work { padding-block: clamp(48px,4.2vw,64px); background: white; }
.featured-work-heading h2 { max-width: none; font-size: clamp(24px,2.8vw,38px); white-space: nowrap; }
.featured-work-heading > p { max-width: 760px; margin: 18px 0 0; color: var(--muted); }
.feature-list { margin-top: 28px; }
.feature-row { display: flex; align-items: center; gap: clamp(32px,4.5vw,58px); padding-block: clamp(24px,2.7vw,34px); border-top: 1px solid var(--line); }
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row:nth-child(even) { flex-direction: row-reverse; }
.feature-photo { position: relative; flex: 0 1 590px; height: 340px; overflow: hidden; background: var(--mist); box-shadow: var(--shadow-sm); transition: box-shadow .4s ease, transform .45s var(--ease-out); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; transition: filter .45s ease, transform .7s var(--ease-out); }
.feature-photo > span { position: absolute; right: 0; bottom: 0; padding: 13px 18px; color: white; background: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transform: translateY(100%); transition: transform .3s ease; }
.feature-photo:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-photo:hover img { filter: saturate(1.08); transform: scale(1.025); }
.feature-photo:hover > span { transform: translateY(0); }
.feature-copy { min-width: 0; flex: 1 1 420px; }
.feature-number { display: block; margin-bottom: 18px; color: #a1a7b4; font-size: 12px; }
.feature-copy h3 { margin: 12px 0 16px; color: var(--ink-deep); font-size: clamp(24px,2.8vw,37px); line-height: 1.15; text-transform: uppercase; }
.feature-copy p { margin: 0; color: var(--muted); }
.text-arrow { display: inline-flex; gap: 14px; margin-top: 26px; padding-bottom: 3px; border-bottom: 1px solid #aeb4be; color: var(--ink-deep); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-arrow span { transition: transform .2s ease; }
.text-arrow:hover { color: var(--cyan); border-color: var(--cyan); }
.text-arrow:hover span { transform: translateX(5px); }

.cinematic-section { position: relative; display: grid; min-height: 540px; overflow: hidden; contain: layout paint; align-items: center; color: white; background: #071426; }
.cinematic-slides, .cinematic-slide, .cinematic-slide picture, .cinematic-slide img, .cinematic-shade { position: absolute; inset: 0; }
.cinematic-slide picture { display: block; }
.cinematic-slides { left: 42%; overflow: hidden; }
.cinematic-slide { margin: 0; opacity: 0; animation: cinematic-slide 18s linear infinite; }
.cinematic-slide:nth-child(2) { animation-delay: 6s; }
.cinematic-slide:nth-child(3) { animation-delay: 12s; }
.cinematic-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.02) contrast(1.02); animation: cinematic-drift 6s ease-in-out infinite alternate; }
.cinematic-slide:first-child img { object-position: center 48%; }
.cinematic-slide:nth-child(2) img { object-position: center 42%; }
.cinematic-slide:nth-child(3) img { object-position: center 48%; }
.cinematic-slide figcaption { position: absolute; z-index: 2; right: max(28px, calc((100vw - 1400px) / 2)); bottom: 32px; display: flex; align-items: baseline; gap: 12px; color: rgba(255,255,255,.78); font-size: 9px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.cinematic-slide figcaption span { color: #7ee5ef; }
.cinematic-shade { z-index: 1; background: linear-gradient(90deg, rgba(4,13,29,.94) 0%, rgba(4,13,29,.83) 32%, rgba(4,13,29,.34) 68%, rgba(4,13,29,.22)), linear-gradient(180deg, rgba(5,15,31,.2), rgba(5,15,31,.52)); }
.cinematic-content { position: relative; z-index: 3; width: 100%; padding: 58px clamp(28px,3vw,52px); }
.cinematic-copy { max-width: 520px; }
.cinematic-copy h2 { margin: 12px 0 16px; font-size: clamp(26px, 2.65vw, 36px); letter-spacing: -.025em; line-height: 1.08; text-transform: uppercase; }
.cinematic-copy > p { max-width: 510px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.cinematic-facts { display: flex; width: min(100%,510px,calc(42vw - clamp(28px,3vw,52px) - 20px)); gap: clamp(25px, 4vw, 52px); margin-top: 24px; padding-block: 16px; border-block: 1px solid rgba(255,255,255,.18); }
.cinematic-facts p { display: flex; flex-direction: column; margin: 0; opacity: 0; transform: translateY(12px); }
.cinematic-copy.is-visible .cinematic-facts p { animation: cinematic-fact .65s cubic-bezier(.22,1,.36,1) forwards; animation-delay: .24s; }
.cinematic-copy.is-visible .cinematic-facts p:nth-child(2) { animation-delay: .37s; }
.cinematic-copy.is-visible .cinematic-facts p:nth-child(3) { animation-delay: .5s; }
.cinematic-facts strong { color: #7ee5ef; font-size: 21px; line-height: 1; }
.cinematic-facts span { margin-top: 6px; color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.cinematic-link { margin-top: 22px; }
.cinematic-progress { display: flex; width: 200px; gap: 7px; margin-top: 24px; }
.cinematic-progress span { position: relative; flex: 1; height: 2px; overflow: hidden; background: rgba(255,255,255,.2); }
.cinematic-progress span::after { content: ""; position: absolute; inset: 0; background: #7ee5ef; transform: scaleX(0); transform-origin: left; animation: cinematic-progress 18s linear infinite; }
.cinematic-progress span:nth-child(2)::after { animation-delay: 6s; }
.cinematic-progress span:nth-child(3)::after { animation-delay: 12s; }

.visual-archive { position: relative; overflow: hidden; background: var(--mist); }
.archive-marquee { width: 100%; margin-top: 18px; padding-block: 12px; overflow: hidden; }
.archive-marquee-track { display: flex; width: max-content; gap: 12px; animation: marquee 42s linear infinite; }
.archive-marquee figure { position: relative; width: 310px; height: 220px; margin: 0; overflow: hidden; background: #e5e8eb; transform: translateZ(0); transform-origin: center; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.archive-marquee img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,1,.36,1), filter .65s ease; }
.archive-marquee figure:hover { z-index: 2; transform: scale(1.018) rotate(.45deg); }
.archive-marquee figure:nth-child(even):hover { transform: scale(1.018) rotate(-.45deg); }
.archive-marquee figure:hover img { filter: saturate(1.05) contrast(1.02); transform: scale(1.012); }
.center-action { margin-top: 45px; text-align: center; }

.contact-strip { position: relative; overflow: hidden; color: var(--navy); border-top: 1px solid var(--line); background: white; }
.contact-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 52px; min-height: 164px; padding-block: 30px; }
.contact-strip h2 { max-width: 650px; margin: 8px 0 0; font-size: clamp(23px, 2.45vw, 32px); line-height: 1.18; text-transform: uppercase; }
.site-inicio .contact-strip h2,
.site-servicios .contact-strip h2 { max-width: none; white-space: nowrap; }
.contact-strip .kicker { color: var(--blue); }
.contact-strip .dark-button { min-width: 224px; flex: 0 0 auto; color: var(--navy); border: 1px solid #adb4bf; background: transparent; white-space: nowrap; }
.contact-strip .dark-button:hover { color: white; border-color: var(--navy); background: var(--navy); }

@media (min-width: 701px) {
  .site-inicio .contact-strip-inner { width: min(100% - 56px, 1280px); }
}
.page-heading > div > span,
.contact-heading-inner > span { color: #8be5ef; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.catalog-strip { position: relative; background: linear-gradient(90deg,#e2e5e8,#d5dae0,#e2e5e8); }
.site-empresa .catalog-strip::before,
.page-catalog-strip::before { content: ""; position: absolute; z-index: 3; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg,var(--cyan),#8cecf4 50%,var(--cyan)); box-shadow: 0 0 8px rgba(0,191,222,.7), 0 2px 12px rgba(0,116,183,.32); animation: section-separator-glow 2.6s ease-in-out infinite; pointer-events: none; }
.catalog-strip > div { display: flex; align-items: center; justify-content: center; gap: 30px; min-height: 104px; text-transform: uppercase; }
.site-empresa .catalog-strip > div { min-height: 158px; flex-direction: column; gap: 6px; text-align: center; }
.company-catalog-message { display: flex; max-width: 860px; align-items: center; flex-direction: column; gap: 8px; }
.company-catalog-message p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; text-transform: none; }
.page-catalog-strip > div { min-height: 158px; flex-direction: column; gap: 8px; padding-inline: 190px; text-align: center; text-transform: none; }
.page-catalog-strip > div span { text-transform: uppercase; }
.page-catalog-strip > div strong { max-width: 980px; color: var(--ink-deep); font-size: 15px; font-weight: 700; line-height: 1.45; }
.catalog-strip span { color: var(--blue); font-size: 12px; font-weight: 800; }
.catalog-strip strong { font-size: 15px; }
.catalog-scroll-arrow { position: absolute; z-index: 2; top: 50%; display: grid; width: 32px; height: 32px; place-items: center; transform: translateY(-50%); }
.catalog-scroll-arrow-left { left: max(44px,calc(50% - 330px)); }
.catalog-scroll-arrow-right { right: max(44px,calc(50% - 330px)); }
.catalog-scroll-arrow .service-scroll-arrows { transform: scale(1.02); }
.page-catalog-strip .catalog-scroll-arrow-left { left: max(44px,calc(50% - 535px)); }
.page-catalog-strip .catalog-scroll-arrow-right { right: max(44px,calc(50% - 535px)); }
.page-catalog-strip .service-scroll-arrows { transform: scale(1.15); }
.page-catalog-strip .service-scroll-arrows i { opacity: .82; filter: drop-shadow(0 2px 4px rgba(0,188,212,.3)); animation-name: catalog-chevron; animation-duration: 1.35s; }
.company-story { position: relative; overflow: clip; color: white; background: linear-gradient(132deg,#20536b 0%,#19445f 48%,#215a70 100%); }
.company-story::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 16%,rgba(100,229,231,.2),transparent 30%),radial-gradient(circle at 90% 74%,rgba(114,192,218,.2),transparent 34%),radial-gradient(ellipse at 52% 108%,rgba(8,29,47,.34),transparent 58%); pointer-events: none; }
.section-title.center.company-story-heading { position: relative; z-index: 1; max-width: none; }
.company-story-heading .kicker { color: #8de5ef; }
.company-story-heading h2 { max-width: none; color: white; white-space: nowrap; }

.company-archive { position: relative; overflow: hidden; background: #ede9df; }
.company-archive::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg,rgba(255,255,255,.72),transparent 48%),radial-gradient(circle at 88% 12%,rgba(0,188,212,.08),transparent 25%); pointer-events: none; }
.company-archive-layout { position: relative; }
.site-empresa .section-pad { padding-block: clamp(48px,4.5vw,68px); }
.company-archive-copy { padding: 4px 0 6px 28px; border-left: 3px solid var(--cyan); }
.company-archive-copy .kicker { color: var(--blue); }
.company-archive-copy h2 { max-width: none; margin: 15px 0 0; color: var(--ink-deep); font-size: clamp(27px,2.8vw,40px); letter-spacing: -.045em; line-height: 1.03; text-transform: uppercase; white-space: nowrap; }
.company-archive-copy > p { max-width: 940px; margin: 22px 0 0; color: #586075; font-size: 15px; line-height: 1.72; }
.company-archive-gallery { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr); grid-template-rows: auto auto; gap: 18px; align-items: stretch; margin-top: clamp(30px,3.2vw,46px); }
.company-archive-sheet { position: relative; margin: 0; padding: 13px; border: 1px solid rgba(12,44,75,.12); background: rgba(255,255,255,.68); box-shadow: 0 18px 42px rgba(34,29,18,.1); }
.company-archive-sheet-main { display: flex; flex-direction: column; grid-column: 1; grid-row: 1 / 3; }
.company-archive-sheet-secondary { grid-column: 2; grid-row: 1; }
.company-archive-sheet-wide { grid-column: 2; grid-row: 2; }
.company-archive-sheet img { display: block; width: 100%; height: auto; filter: sepia(.06) contrast(1.025); }
.company-archive-sheet figcaption { display: grid; grid-template-columns: minmax(120px,.42fr) minmax(0,1fr); gap: 16px; align-items: baseline; margin-top: 13px; padding: 0 2px 1px; line-height: 1.45; }
.company-archive-sheet figcaption strong { color: var(--blue); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.company-archive-sheet figcaption span { color: #727382; font-size: 10px; }
.company-archive-sheet-main figcaption { grid-template-columns: max-content minmax(0,1fr); }
.company-archive-sheet-main figcaption strong { white-space: nowrap; }
.company-archive-details { display: grid; gap: 0; margin: auto 2px 1px; padding-top: 18px; }
.company-archive-details div { display: grid; grid-template-columns: 96px minmax(0,1fr); gap: 18px; padding: 14px 0; border-top: 1px solid rgba(12,44,75,.12); }
.company-archive-details dt { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.company-archive-details dd { margin: 0; color: #5f6677; font-size: 11px; line-height: 1.5; }
.company-archive-sheet-secondary figcaption,
.company-archive-sheet-wide figcaption { grid-template-columns: max-content minmax(0,1fr); }
.company-archive-sheet-secondary figcaption strong,
.company-archive-sheet-wide figcaption strong { white-space: nowrap; }

.history-section { background: white; }
.site-empresa .history-section { background: var(--mist); }
.history-heading h2 { max-width: none; font-size: clamp(25px,2.85vw,39px); white-space: nowrap; }
.history-heading > p { max-width: 760px; margin: 18px 0 0; color: var(--muted); }
.timeline { position: relative; display: flex; margin-top: 76px; padding-top: 37px; }
.timeline::before,
.timeline::after { content: ""; position: absolute; z-index: 0; top: 0; right: 0; left: 0; height: 1px; background: var(--line); }
.timeline::after { height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transform-origin: left center; }
.timeline.is-visible::after { animation: timeline-draw 2.2s cubic-bezier(.22,1,.36,1) .18s forwards; }
.timeline article { --timeline-delay: .3s; position: relative; z-index: 1; flex: 1; min-height: 155px; padding: 4px 34px 22px 0; opacity: 0; transform: translateY(16px); }
.timeline article:nth-child(2) { --timeline-delay: .72s; }
.timeline article:nth-child(3) { --timeline-delay: 1.14s; }
.timeline article:nth-child(4) { --timeline-delay: 1.56s; }
.timeline.is-visible article { animation: timeline-step-in .62s cubic-bezier(.22,1,.36,1) var(--timeline-delay) forwards; }
.timeline article::before { content: ""; position: absolute; z-index: 2; top: -43px; left: 0; width: 10px; height: 10px; border: 3px solid white; border-radius: 50%; background: white; box-shadow: 0 0 0 1px var(--cyan); transform: scale(.72); }
.timeline.is-visible article::before { animation: timeline-node-in .55s cubic-bezier(.22,1,.36,1) var(--timeline-delay) forwards; }
.timeline article > span { color: var(--blue); font-size: 11px; font-weight: 800; }
.timeline h3 { margin: 10px 0 8px; font-size: 16px; text-transform: uppercase; }
.timeline p { max-width: 230px; margin: 0; color: var(--muted); font-size: 12px; }
.company-gallery { position: relative; overflow: hidden; background: linear-gradient(180deg,white,#f7f8f9); }
.company-gallery .section-title { margin-bottom: 4px; }
.company-gallery-viewport { padding-block: 12px; overflow: hidden; }
.company-gallery-track { display: flex; width: max-content; gap: 12px; animation: company-gallery-flow 42s linear infinite; }
.company-gallery figure { position: relative; flex: 0 0 310px; height: 220px; margin: 0; overflow: hidden; transform: translateZ(0); transform-origin: center; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.company-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,1,.36,1), filter .65s ease; }
.company-gallery figure:hover { z-index: 2; transform: scale(1.018) rotate(.45deg); }
.company-gallery figure:nth-child(even):hover { transform: scale(1.018) rotate(-.45deg); }
.company-gallery figure:hover img { filter: saturate(1.05) contrast(1.02); transform: scale(1.012); }
.page-heading { position: relative; display: grid; min-height: 470px; overflow: hidden; place-items: center; color: white; background-color: var(--navy); background-position: center; background-size: cover; text-align: center; }
.page-heading::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,15,35,.99) 0%,rgba(3,18,42,.93) 26%,rgba(4,24,51,.66) 47%,rgba(5,29,57,.18) 71%,rgba(5,18,36,.06) 84%),linear-gradient(180deg,rgba(4,13,29,.05),rgba(4,13,29,.3)); }
.page-heading::after { display: none; }
.service-heading { background-image: url('/images/proyectos/seleccion/marquesina-industrial/03.jpg'); background-position: center 54%; }
.service-heading,
.projects-heading-page { min-height: 390px; }
.service-heading h1,
.projects-heading-page h1 { margin-bottom: 0; }
.service-heading p { font-size: 14px; }
.projects-heading-page { background-image: url('/images/116.webp'); background-position: center 48%; }
.page-heading > div { position: relative; z-index: 1; width: min(100% - 56px,850px); margin-inline: auto; }
.page-heading h1 { margin: 14px 0 16px; font-size: clamp(31px,3.4vw,48px); letter-spacing: -.05em; line-height: .98; text-transform: uppercase; }
.page-heading p { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.76); }
.service-intro { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.service-intro::before,
.projects-intro::before { content: ""; position: absolute; z-index: 3; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg,var(--cyan),#8cecf4 50%,var(--cyan)); box-shadow: 0 0 8px rgba(0,191,222,.7), 0 2px 12px rgba(0,116,183,.32); animation: section-separator-glow 2.6s ease-in-out infinite; pointer-events: none; }
.service-intro-panel { position: relative; display: grid; min-height: 158px; grid-template-columns: minmax(0,1fr) 148px; align-items: stretch; }
.service-intro-panel::before { display: none; }
.service-intro-copy { display: flex; flex-direction: column; justify-content: center; padding: 28px 46px 28px 0; }
.service-intro-copy .kicker { display: flex; align-items: center; gap: 14px; }
.service-intro-copy .kicker::before { content: ""; width: 34px; height: 2px; flex: 0 0 auto; background: var(--cyan); }
.service-intro-copy p { max-width: 900px; margin: 13px 0 0; color: var(--ink); font-size: clamp(16px,1.35vw,19px); line-height: 1.5; }
.service-intro-scroll { position: relative; display: flex; overflow: hidden; align-items: center; flex-direction: column; justify-content: center; gap: 10px; color: var(--blue); border-left: 1px solid var(--line); transition: color .3s ease, background .3s ease; }
.service-intro-scroll:hover { color: var(--ink-deep); background: var(--mist); }
.service-intro-scroll > span:first-child { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.service-scroll-arrows { display: grid; gap: 0; transform: scale(.94); }
.service-scroll-arrows i { width: 12px; height: 12px; border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); opacity: .42; transform: rotate(45deg); animation: service-chevron 1.8s ease-in-out infinite; transition: opacity .25s ease; }
.service-intro-scroll:hover .service-scroll-arrows i { opacity: .82; }
.service-scroll-arrows i:nth-child(2) { animation-delay: .16s; }
.service-scroll-arrows i:nth-child(3) { animation-delay: .32s; }
.service-index { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 38px; border-block: 1px solid var(--line); }
.service-index a { position: relative; display: flex; min-height: 148px; flex-direction: column; gap: 10px; justify-content: space-between; padding: 20px 20px 18px; color: var(--ink-deep); border-right: 1px solid var(--line); overflow: hidden; transition: color .35s ease, background .35s ease, transform .35s ease; }
.service-index a:first-child { border-left: 1px solid var(--line); }
.service-index a::before { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.22,1,.36,1); }
.service-index a:hover { color: white; background: var(--navy); transform: translateY(-7px); }
.service-index a:hover::before { transform: scaleX(1); }
.service-index a > span { color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.service-index strong { max-width: 220px; font-size: clamp(16px,1.3vw,20px); line-height: 1.1; text-transform: uppercase; }
.service-index small { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: color .35s ease; }
.service-index a:hover small { color: rgba(255,255,255,.72); }
.service-index small b { color: var(--cyan); font-size: 17px; }
.service-detail-list { background: white; }
.service-detail { position: relative; display: flex; align-items: stretch; min-height: 440px; color: inherit; border-top: 1px solid var(--line); scroll-margin-top: 152px; }
.service-detail:nth-child(even) { flex-direction: row-reverse; }
.service-detail-photo { position: relative; flex: 1.08; min-width: 0; overflow: hidden; background: white; }
.service-detail-photo::after { display: none; }
.service-detail-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.96) contrast(1.01); transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.service-detail-construccion .service-detail-photo { flex: .78; }
.service-detail-construccion .service-detail-copy { flex: 1.22; }
.service-detail:hover .service-detail-photo img,
.service-detail:focus-visible .service-detail-photo img { filter: saturate(1) contrast(1.02); transform: scale(1.015); }
.service-detail:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }
.service-detail-copy { position: relative; display: flex; flex: .92; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(38px,5vw,70px); background: var(--mist); overflow: hidden; }
.service-detail-copy::after { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg,var(--cyan) 0 88px,var(--line) 88px); pointer-events: none; }
.service-detail-copy > * { position: relative; z-index: 1; }
.service-detail-eyebrow { display: flex; align-items: center; gap: 14px; }
.service-detail-eyebrow small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-detail-copy h2 { margin: 8px 0 16px; color: var(--ink-deep); font-size: clamp(25px,3vw,37px); line-height: 1.12; text-transform: uppercase; }
.service-detail-copy > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; }
.service-detail-copy ul { width: 100%; margin: 18px 0 0; padding: 11px 0; border-block: 1px solid var(--line); list-style: none; }
.service-detail-copy li { position: relative; padding: 5px 0 5px 18px; font-size: 12px; }
.service-detail-copy li::before { content: ""; position: absolute; top: 14px; left: 0; width: 6px; height: 2px; background: var(--cyan); }

@media (min-width: 701px) {
  .company-opening { min-height: var(--company-opening-height,calc(100svh - 112px)); background: white; }
  .service-detail { height: 440px; min-height: 440px; }
  .service-detail-photo img { position: absolute; inset: 0; }
  .service-detail-construccion .service-detail-photo img { object-position: center bottom !important; }
}
.projects-intro { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.projects-intro-copy .kicker { max-width: none; }
.projects-intro-copy p { max-width: 900px; }
.project-explorer { overflow: hidden; background: white; }
.project-family-nav { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; padding-block: 16px 24px; }
.project-family-nav a { position: relative; display: flex; min-height: 130px; padding: 22px 20px; overflow: hidden; flex-direction: column; border: 1px solid #d9dee3; color: #656c7b; background: linear-gradient(135deg,#fff,#fbfcfd); transition: opacity .55s ease, color .25s ease, border-color .25s ease, background .25s ease, box-shadow .35s ease, transform .55s var(--ease-out); }
.project-family-nav.is-waiting a { opacity: 0; transform: translateY(26px); pointer-events: none; }
.project-family-nav.is-ready a { opacity: 1; transform: translateY(0); }
.project-family-nav.is-ready a:nth-child(2) { transition-delay: .06s; }
.project-family-nav.is-ready a:nth-child(3) { transition-delay: .12s; }
.project-family-nav.is-ready a:nth-child(4) { transition-delay: .18s; }
.project-family-nav a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out); }
.project-family-nav a:hover { z-index: 1; color: var(--navy); border-color: var(--cyan); background: #f7fbfc; box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.project-family-nav a:hover::after { transform: scaleX(1); }
.project-family-nav a > span { color: var(--cyan); font-size: 10px; font-weight: 800; }
.project-family-nav strong { max-width: 210px; margin-top: 13px; color: var(--ink-deep); font-size: 13px; line-height: 1.28; text-transform: uppercase; }
.project-family-nav small { margin-top: auto; color: #7f8694; font-size: 9px; letter-spacing: .055em; text-transform: uppercase; }
.project-groups { background: white; }
.project-group { padding-block: 68px; border-top: 1px solid var(--line); background: var(--mist); scroll-margin-top: 150px; }
.project-group:nth-child(even) { background: var(--mist); }
.project-group:last-child { padding-bottom: 44px; }
.project-group-head { position: relative; display: grid; grid-template-columns: 50px minmax(0,1fr); align-items: start; column-gap: 30px; row-gap: 16px; margin-bottom: 34px; padding-bottom: 22px; }
.project-group-head::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: linear-gradient(90deg,var(--cyan) 0 70px,var(--line) 70px); }
.project-group-head > span { grid-row: 1 / span 2; color: #a0a6b0; font-size: 12px; }
.project-group-head small { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.project-group-head h2 { margin: 8px 0 0; color: var(--ink-deep); font-size: clamp(25px,3vw,38px); line-height: 1.08; text-transform: uppercase; }
.project-group-head p { grid-column: 2; max-width: 820px; margin: 0; color: var(--muted); font-size: 13px; }
.project-card-grid { display: block; columns: 2; column-gap: 24px; }
.project-card { position: relative; display: inline-flex; width: 100%; min-width: 0; margin: 0 0 24px; padding: 0; overflow: hidden; break-inside: avoid-column; flex-direction: column; border: 1px solid #dce1e5; cursor: pointer; color: inherit; background: white; text-align: left; box-shadow: 0 14px 36px rgba(19,29,48,.04); transition: border-color .3s ease, box-shadow .4s var(--ease-out), transform .4s var(--ease-out); }
.project-card::after { content: ""; position: absolute; z-index: 3; top: 0; left: 0; width: 4px; height: 0; background: var(--cyan); transition: height .45s var(--ease-out); }
.project-card:first-child { display: grid; column-span: all; grid-template-columns: minmax(0,1.3fr) minmax(380px,.7fr); }
.project-card:first-child .project-card-copy { min-height: 100%; justify-content: center; padding: clamp(34px,4vw,50px); }
.project-card:first-child .project-card-copy strong { font-size: clamp(22px,2.2vw,32px); }
.project-card:hover { border-color: #aebbc7; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.project-card:hover::after,
.project-card.is-active::after { height: 100%; }
.project-card.is-active { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,188,212,.12), 0 20px 42px rgba(19,29,48,.1); }
.project-card-photo { position: relative; display: block; overflow: hidden; background: #edf0f2; }
.project-card-photo img { display: block; width: 100%; height: auto; filter: saturate(.96); transition: filter .4s ease, transform .5s ease; }
.project-card:hover .project-card-photo img { filter: saturate(1.06); transform: scale(1.018); }
.project-card-photo > span { position: absolute; right: 0; bottom: 0; padding: 10px 13px; color: white; background: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transform: translateY(100%); transition: transform .25s ease; }
.project-card:hover .project-card-photo > span,
.project-card.is-active .project-card-photo > span { transform: translateY(0); }
.project-card-copy { display: flex; width: 100%; min-width: 0; min-height: 245px; padding: 25px 27px 22px; flex-direction: column; align-items: flex-start; }
.project-card-copy small { color: var(--blue); font-size: 10px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.project-card-copy strong { max-width: 100%; margin-top: 9px; overflow-wrap: anywhere; color: var(--ink-deep); font-size: 19px; line-height: 1.22; text-transform: uppercase; }
.project-card-copy > p { max-width: 100%; margin: 14px 0 18px; overflow-wrap: anywhere; color: var(--muted); font-size: 12px; line-height: 1.55; }
.project-card-copy > span { display: flex; width: 100%; justify-content: space-between; margin-top: auto; padding-top: 18px; color: #7f8693; border-top: 1px solid var(--line); font-size: 10px; text-transform: uppercase; }
.project-card-copy b { color: var(--cyan); font-size: 13px; }
.project-card-grid .project-card:nth-child(2) { transition-delay: .08s; }
.project-card-grid .project-card:nth-child(3) { transition-delay: .12s; }
.project-card-grid .project-card:nth-child(4) { transition-delay: .16s; }

.project-modal { position: fixed; z-index: 200; inset: 0; display: grid; padding: 24px; place-items: center; background: rgba(3,8,20,.68); backdrop-filter: blur(8px) saturate(.9); animation: project-modal-in .25s ease both; }
.project-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: default; background: transparent; }
.project-modal-panel { position: relative; z-index: 1; display: grid; width: min(1400px,100%); height: min(900px,calc(100vh - 48px)); grid-template-columns: minmax(360px,430px) minmax(0,1fr); overflow: hidden; background: transparent; box-shadow: 0 30px 100px rgba(0,0,0,.42); }
.project-modal-close { position: absolute; z-index: 3; top: 16px; right: 16px; display: grid; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.45); cursor: pointer; place-items: center; color: white; background: rgba(6,12,29,.72); font-size: 25px; line-height: 1; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.project-modal-close:hover { color: var(--navy); border-color: var(--cyan); background: var(--cyan); }
.project-modal-copy { display: flex; min-width: 0; padding: clamp(42px,5vw,70px) clamp(28px,4vw,48px); flex-direction: column; color: white; background: var(--navy); }
.project-modal-copy > span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-modal-copy h2 { max-width: 100%; margin: 18px 0 13px; overflow-wrap: anywhere; color: white; font-size: clamp(23px,2.35vw,34px); letter-spacing: -.025em; line-height: 1.08; text-transform: uppercase; }
.project-modal-copy strong { color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.project-modal-copy p { margin: 30px 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.65; }
.project-modal-copy small { margin-top: auto; padding-top: 20px; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.16); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.project-modal-gallery { position: relative; display: grid; min-width: 0; min-height: 0; grid-template-rows: minmax(0,1fr) 104px; overflow: hidden; background: rgba(7,12,29,.64); }
.project-modal-image { min-width: 0; min-height: 0; overflow: hidden; background: transparent; }
.project-modal-canvas { position: relative; display: flex; width: 100%; height: 100%; padding: clamp(34px,4vw,70px); align-items: center; justify-content: center; overflow: hidden; }
.project-modal-image img { position: relative; z-index: 2; display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; flex: 0 1 auto; pointer-events: none; user-select: none; box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.project-modal-prev, .project-modal-next { position: absolute; z-index: 3; top: calc(50% - 52px); display: grid; width: 46px; height: 46px; padding: 0; border: 0; cursor: pointer; place-items: center; color: white; background: rgba(7,15,34,.76); font-size: 18px; transform: translateY(-50%); transition: background .2s ease; }
.project-modal-prev { left: 18px; }
.project-modal-next { right: 18px; }
.project-modal-prev:hover, .project-modal-next:hover { background: var(--cyan); }
.project-modal-thumbs { display: flex; gap: 7px; padding: 10px; overflow-x: auto; color-scheme: dark; border-top: 1px solid rgba(255,255,255,.08); background: rgba(5,10,24,.78); scrollbar-width: thin; }
.project-modal-thumbs button { flex: 0 0 112px; min-width: 0; padding: 4px; overflow: hidden; border: 1px solid transparent; cursor: pointer; background: rgba(255,255,255,.07); opacity: .58; transition: opacity .2s ease, border-color .2s ease, background .2s ease; }
.project-modal-thumbs button:hover, .project-modal-thumbs button.is-active { border-color: var(--cyan); opacity: 1; }
.project-modal-thumbs button.is-active { background: rgba(0,188,212,.12); }
.project-modal-thumbs img { width: 100%; height: 74px; object-fit: cover; object-position: center; }
@keyframes project-modal-in { from { opacity: 0; } to { opacity: 1; } }
.hero-slide,
.hero-slide::after,
.hero-progress span,
.process-ribbon-track,
.process-ribbon-pulse span,
.cinematic-slide,
.cinematic-slide img,
.cinematic-progress span::after,
.archive-marquee-track,
.company-gallery-track { animation-play-state: paused; }
.home-hero.is-animating .hero-slide,
.home-hero.is-animating .hero-slide::after,
.home-hero.is-animating .hero-progress span,
.process-ribbon.is-animating .process-ribbon-track,
.process-ribbon.is-animating .process-ribbon-pulse span,
.cinematic-section.is-animating .cinematic-slide,
.cinematic-section.is-animating .cinematic-slide img,
.cinematic-section.is-animating .cinematic-progress span::after,
.archive-marquee.is-animating .archive-marquee-track,
.company-gallery.is-animating .company-gallery-track { animation-play-state: running; }
.activity-section,
.featured-work,
.cinematic-section,
.visual-archive { content-visibility: auto; contain-intrinsic-size: auto 720px; }
.contact-opening { display: flex; height: calc(100svh - 112px); min-height: 0; overflow: hidden; flex-direction: column; background: var(--navy); }
.contact-heading { position: relative; flex: 0 0 176px; color: white; border-top: 2px solid var(--cyan); background: linear-gradient(90deg,#193b57 0%,#285975 50%,#193b57 100%); }
.contact-heading-inner { display: flex; min-height: 176px; align-items: center; flex-direction: column; justify-content: center; padding-block: 34px; text-align: center; animation: interior-in .9s cubic-bezier(.22,1,.36,1) both; }
.contact-heading h1 { margin: 10px 0 0; font-size: clamp(33px,3.9vw,50px); letter-spacing: -.045em; line-height: 1; text-transform: uppercase; }
.contact-scroll-arrow-left { left: max(32px,calc(50% - 455px)); }
.contact-scroll-arrow-right { right: max(32px,calc(50% - 455px)); }
.contact-scroll-arrow .service-scroll-arrows { transform: scale(1.15); }
.contact-scroll-arrow .service-scroll-arrows i { opacity: .86; filter: drop-shadow(0 2px 5px rgba(0,188,212,.42)); animation-name: catalog-chevron; animation-duration: 1.3s; }
.map-hero { position: relative; min-height: 0; overflow: hidden; flex: 1 1 auto; background: #eef1f3; }
.map-hero iframe { display: block; width: 100%; height: 100%; border: 0; filter: none; transform: none; }
.contact-main { background: var(--mist); }
.contact-layout { display: flex; align-items: flex-start; gap: clamp(55px, 8vw, 105px); }
.contact-information { position: sticky; top: 190px; flex: 0 1 500px; padding-top: 18px; }
.contact-information h2 { margin: 12px 0 20px; color: var(--ink-deep); font-size: clamp(28px,2.8vw,38px); letter-spacing: -.025em; line-height: 1.12; text-transform: uppercase; }
.contact-information h2 span { display: block; white-space: nowrap; }
.contact-information > p { margin: 0; color: var(--muted); }
.contact-information dl { margin: 36px 0; border-top: 1px solid var(--line); }
.contact-information dl > div { position: relative; padding: 16px 0; border-bottom: 1px solid var(--line); transition: padding-left .25s ease, border-color .25s ease; }
.contact-information dl > div:hover { padding-left: 12px; border-color: var(--cyan); }
.contact-information dt { color: #8c929e; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-information dd { margin: 4px 0 0; color: var(--ink-deep); font-size: 14px; }
.contact-information dd a:hover { color: var(--cyan); }
.contact-layout > div:last-child { flex: 0 1 590px; }
.contact-form { position: relative; padding: clamp(32px, 4vw, 52px); border-top: 3px solid var(--cyan); background: white; box-shadow: var(--shadow-md); }
.form-title { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-title span { color: var(--ink-deep); font-size: 18px; font-weight: 750; text-transform: uppercase; }
.form-title small { color: #858c98; font-size: 10px; }
.form-columns { display: flex; gap: 20px; }
.contact-form label { display: flex; flex: 1; flex-direction: column; gap: 7px; margin-bottom: 20px; color: #596071; font-size: 10px; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #aeb4bf; outline: none; color: var(--ink); background: transparent; font-size: 14px; font-weight: 450; letter-spacing: 0; text-transform: none; transition: border-color .2s ease; }
.contact-form input,
.contact-form select { height: 40px; }
.contact-form textarea { min-height: 120px; padding: 9px 0; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 1px 0 var(--cyan); }
.contact-form textarea::placeholder { color: #9aa0aa; }
.contact-form .privacy-field { flex-direction: row; align-items: center; gap: 10px; margin-top: 2px; color: #747b88; font-size: 10px; font-weight: 500; line-height: 1.5; letter-spacing: 0; text-transform: none; }
.privacy-field input { flex: 0 0 15px; width: 15px; height: 15px; margin: 0; accent-color: var(--cyan); }
.privacy-field span { min-width: 0; }
.privacy-field a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.form-button { width: 100%; border: 0; cursor: pointer; }
.form-button:disabled { cursor: wait; opacity: .72; }
.form-button span { margin-left: 10px; transition: transform .2s ease; }
.form-button:hover span { transform: translateX(5px); }
.form-turnstile { display: none; margin: 0 0 14px; min-height: 65px; }
.form-turnstile.is-ready { display: flex; justify-content: center; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-help,
.form-status { margin: 12px 0 0; min-height: 20px; color: var(--blue); font-size: 13px; line-height: 1.45; text-align: center; }
.form-status.is-success { color: #1e8a4c; font-weight: 600; }
.form-status.is-error { color: #c62828; font-weight: 600; }
.site-footer { position: relative; overflow: hidden; color: #aab1c2; background: var(--navy); }
.footer-columns { position: relative; display: flex; gap: 48px; padding-block: 58px 22px; }
.footer-columns > div { display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.footer-columns .footer-identity { flex: 1.2; }
.footer-identity img { width: 255px; margin-bottom: 22px; filter: invert(1); }
.footer-identity p { max-width: 320px; padding-left: 18px; border-left: 2px solid rgba(0,188,212,.55); }
.footer-columns h3 { margin: 0 0 18px; color: white; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.footer-columns a,
.footer-columns p { margin: 0 0 8px; font-size: 11px; line-height: 1.55; }
.footer-columns a { transition: color .2s ease, transform .2s ease; }
.footer-columns a:hover { color: var(--cyan); transform: translateX(3px); }
.footer-bottom { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); align-items: end; gap: 28px; padding-block: 13px 15px; border-top: 1px solid rgba(255,255,255,.12); color: #8c94a8; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.footer-bottom > span:last-child { text-align: right; }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; font-size: 9px; letter-spacing: .02em; text-align: center; text-transform: none; }
.footer-legal-links a { color: #8c94a8; transition: color .2s ease; }
.footer-legal-links a:hover { color: var(--cyan); }
.legal-page { background: var(--mist); }
.legal-hero { padding: clamp(76px,7vw,112px) 0 clamp(42px,4vw,64px); color: white; background: linear-gradient(135deg,#080c24 0%,#102446 100%); }
.legal-hero .kicker { color: var(--cyan); }
.legal-hero h1 { max-width: 900px; margin: 14px 0 0; font-size: clamp(34px,4.2vw,60px); letter-spacing: -.045em; line-height: 1; text-transform: uppercase; }
.legal-document { padding-block: clamp(52px,5vw,80px); }
.legal-content { max-width: 920px; }
.legal-content section { padding: 0 0 28px; }
.legal-content section + section { padding-top: 28px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 14px; color: var(--ink-deep); font-size: clamp(19px,2vw,25px); letter-spacing: -.02em; line-height: 1.2; text-transform: uppercase; }
.legal-content h3 { margin: 20px 0 8px; color: var(--ink-deep); font-size: 15px; }
.legal-content p,
.legal-content li,
.legal-content dd { color: #596176; font-size: 14px; line-height: 1.75; }
.legal-content p { margin: 0 0 13px; }
.legal-content ul { margin: 0 0 13px; padding-left: 22px; }
.legal-content li + li { margin-top: 7px; }
.legal-content dl { display: grid; grid-template-columns: minmax(170px,220px) 1fr; margin: 0; border-top: 1px solid var(--line); }
.legal-content dt,
.legal-content dd { margin: 0; padding: 11px 0; border-bottom: 1px solid var(--line); }
.legal-content dt { color: var(--ink-deep); font-size: 11px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.legal-content a { color: var(--blue); font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 901px) {
  .footer-columns .footer-services { flex: 1.15; }
  .footer-columns .footer-projects { flex: .85; }
  .footer-services a:first-of-type { white-space: nowrap; }
}
[data-reveal],
[data-company-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .85s var(--ease-out); }
[data-reveal].is-visible,
[data-company-reveal].is-visible { opacity: 1; transform: translateY(0); }
.company-archive-copy[data-reveal] { transform: translate3d(0,22px,0); }
.company-archive-sheet-main[data-reveal] { transform: translate3d(-34px,20px,0); transition-delay: .08s; }
.company-archive-sheet-secondary[data-reveal] { transform: translate3d(34px,18px,0); transition-delay: .16s; }
.company-archive-sheet-wide[data-reveal] { transform: translate3d(34px,18px,0); transition-delay: .24s; }
.company-archive-copy[data-reveal].is-visible,
.company-archive-sheet[data-reveal].is-visible { transform: translate3d(0,0,0); }
.feature-row:nth-child(odd)[data-reveal] { transform: translate3d(-28px,24px,0); }
.feature-row:nth-child(even)[data-reveal] { transform: translate3d(28px,24px,0); }
.feature-row[data-reveal].is-visible { transform: translate3d(0,0,0); }
.activity-item:nth-child(2) { transition-delay: .08s; }
.activity-item:nth-child(3) { transition-delay: .16s; }
.activity-item:nth-child(4) { transition-delay: .24s; }

@keyframes hero-fade {
  0% { opacity: 0; }
  4%, 46% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.hero-panel::before { display: none; }
@keyframes hero-photo-drift { from { transform: scale(1.025) translate3d(0,0,0); } to { transform: scale(1.055) translate3d(-.45%, -.25%, 0); } }
@keyframes hero-copy-in { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-accent-in { to { opacity: 1; transform: scaleX(1); } }
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes process-ribbon-flow { to { transform: translate3d(-16.666667%,0,0); } }
@keyframes process-ribbon-pulse { from { transform: translateX(-110%); } to { transform: translateX(660%); } }
@keyframes interior-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { to { transform: translateX(calc(-50% - 6px)); } }
@keyframes timeline-draw { to { transform: scaleX(1); } }
@keyframes timeline-draw-vertical { to { transform: scaleY(1); } }
@keyframes timeline-step-in { to { opacity: 1; transform: translateY(0); } }
@keyframes timeline-node-in {
  55% { background: white; box-shadow: 0 0 0 1px var(--cyan), 0 0 0 8px rgba(0,188,218,.12); transform: scale(1.18); }
  100% { background: var(--cyan); box-shadow: 0 0 0 1px var(--cyan); transform: scale(1); }
}
@keyframes company-gallery-flow { to { transform: translateX(calc(-50% - 6px)); } }
@keyframes section-separator-glow {
  0%,100% { opacity: .72; box-shadow: 0 0 6px rgba(0,191,222,.5), 0 2px 10px rgba(0,116,183,.22); }
  50% { opacity: 1; box-shadow: 0 0 13px rgba(0,211,238,.95), 0 3px 18px rgba(0,116,183,.48); }
}
@keyframes service-chevron { 0%,100% { opacity: .18; transform: translateY(-3px) rotate(45deg); } 45% { opacity: 1; transform: translateY(3px) rotate(45deg); } }
@keyframes catalog-chevron { 0%,100% { opacity: .38; transform: translateY(-2px) rotate(45deg); } 50% { opacity: 1; transform: translateY(5px) rotate(45deg); } }
@keyframes mobile-timeline-node-glow {
  0% { box-shadow: 0 0 0 0 rgba(0,188,212,0),0 0 5px rgba(0,188,212,.18); filter: brightness(.92); }
  48% { box-shadow: 0 0 0 7px rgba(0,188,212,.14),0 0 20px rgba(0,188,212,.7); filter: brightness(1.2); }
  100% { box-shadow: 0 0 0 1px rgba(0,188,212,.45),0 0 12px rgba(0,188,212,.3); filter: brightness(1); }
}
@keyframes cinematic-slide { 0% { opacity: 0; clip-path: inset(0 100% 0 0); } 4%, 29% { opacity: 1; clip-path: inset(0); } 36%, 100% { opacity: 0; clip-path: inset(0 0 0 8%); } }
@keyframes cinematic-drift { from { transform: scale(1.008) translate3d(0,0,0); } to { transform: scale(1.035) translate3d(-.65%, -.4%, 0); } }
@keyframes cinematic-progress { 0% { transform: scaleX(0); opacity: 1; } 30% { transform: scaleX(1); opacity: 1; } 35%, 100% { transform: scaleX(1); opacity: 0; } }
@keyframes cinematic-fact { to { opacity: 1; transform: translateY(0); } }
@keyframes signature-reveal {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; transform: translateY(3px) scale(.975); }
  18% { opacity: 1; }
  66%, 100% { clip-path: inset(0); opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes signature-sheen {
  0%, 18% { background-position: 150% 0; opacity: 0; }
  30% { opacity: .9; }
  72% { background-position: -150% 0; opacity: .65; }
  100% { background-position: -150% 0; opacity: 0; }
}
@keyframes transition-halo {
  0% { opacity: 0; transform: scale(.6); }
  35% { opacity: .8; }
  100% { opacity: 0; transform: scale(1.2); }
}

@media (max-width: 1080px) {
  .brand img { width: 220px; }
  .main-nav > a, .nav-dropdown > a { padding-inline: 11px; font-size: 10px; }
  .main-nav > a::after, .nav-dropdown > a::after { right: 11px; left: 11px; }
  .activity-columns { gap: 18px; }
  .cinematic-copy { max-width: 500px; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; z-index: 20; top: 100%; right: 0; left: 0; display: none; min-height: 0; padding: 12px 28px 28px; background: var(--navy); box-shadow: 0 24px 40px rgba(5,8,25,.28); }
  .main-nav.is-open { display: flex; flex-direction: column; align-items: stretch; }
  .main-nav > a, .nav-dropdown > a { min-height: 48px; padding-inline: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .main-nav > a::after, .nav-dropdown > a::after { right: auto; bottom: 9px; left: 0; width: 34px; }
  .main-nav .nav-cta { align-self: stretch; justify-content: center; margin: 18px 0 0; }
  .nav-dropdown { display: block; }
  .mega-menu { display: none; }
}

@media (max-width: 1180px) {
  .brand-rail,
  .site-shell::before { display: none; }
}

@media (min-width: 901px) {
  #grupo-estructuras .project-group-head h2 { font-size: clamp(20px,2.4vw,34px); white-space: nowrap; }
  #grupo-estructuras .project-group-head > p { max-width: none; font-size: clamp(11px,1.05vw,13px); white-space: nowrap; }
}

@media (max-width: 900px) {
  .contact-opening { height: calc(100svh - 106px); }
  .service-index { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-index a:nth-child(2) { border-right: 1px solid var(--line); }
  .service-index a:nth-child(n+3) { border-top: 1px solid var(--line); }
  .site-header { position: sticky; }
  .topbar-inner > a:first-child { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .nav-inner { min-height: 72px; }
  .site-header.is-scrolled .nav-inner { min-height: 62px; }
  .brand img { width: 205px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; z-index: 20; top: 100%; right: 0; left: 0; display: none; min-height: 0; padding: 12px 28px 28px; background: var(--navy); box-shadow: 0 24px 40px rgba(5,8,25,.28); }
  .main-nav.is-open { display: flex; flex-direction: column; align-items: stretch; }
  .main-nav > a, .nav-dropdown > a { min-height: 48px; padding-inline: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .main-nav > a::after, .nav-dropdown > a::after { right: auto; bottom: 9px; left: 0; width: 34px; }
  .main-nav .nav-cta { align-self: stretch; justify-content: center; margin: 18px 0 0; }
  .nav-dropdown { display: block; }
  .mega-menu { display: none; }
  .home-hero { height: 560px; min-height: 560px; }
  .hero-panel { left: 46px; width: min(62vw,620px); }
  .hero-panel h1 { font-size: clamp(43px,7vw,62px); }
  .activity-columns { padding-bottom: 14px; overflow-x: auto; scroll-snap-type: x proximity; }
  .activity-item { flex: 0 0 265px; scroll-snap-align: start; }
  .feature-row { gap: 32px; }
  .feature-photo { height: 300px; }
  .cinematic-section { min-height: 520px; }
  .cinematic-slides { left: 0; }
  .cinematic-shade { background: linear-gradient(90deg, rgba(4,13,29,.94), rgba(4,13,29,.74) 62%, rgba(4,13,29,.38)); }
  .cinematic-facts { width: min(100%,510px); }
  .project-family-nav { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-group-head { grid-template-columns: 44px minmax(0,1fr); }
  .project-group-head > p { grid-column: 2; max-width: 620px; }
  .project-card-grid { columns: 2; }
  .project-card:first-child { grid-template-columns: minmax(0,1fr) minmax(340px,.85fr); }
  .project-card:first-child .project-card-copy { padding: 32px; }
  .project-modal-panel { grid-template-columns: minmax(300px,340px) minmax(0,1fr); }
  .project-modal-copy { padding: 44px 28px; }
  .project-modal-copy h2 { font-size: clamp(21px,3vw,28px); }
  .intro-manifesto { grid-template-columns: minmax(0,1fr) 112px; gap: 28px; }
  .service-detail-copy { padding: 55px 44px; }
  .footer-columns { flex-wrap: wrap; }
  .footer-columns > div { flex: 1 1 40%; }
}
@media (min-width: 701px) and (max-width: 900px) {
  .hero-panel { left: clamp(32px,5vw,46px); width: min(68vw,580px); }
  .hero-panel h1 { font-size: clamp(37px,5.4vw,48px); line-height: .86; }
  .activity-columns {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
    padding-bottom: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .activity-item { width: 100%; max-width: 330px; min-width: 0; padding: 10px 10px 20px; justify-self: center; flex: none; scroll-snap-align: none; }
  .activity-image { height: auto; aspect-ratio: 1.5; }
  .activity-item h3 { margin: 18px 0 9px; font-size: 15.5px; line-height: 1.24; }
  .activity-item p { min-height: 0; font-size: 11.5px; line-height: 1.58; }
  .activity-item ul { margin-top: 14px; padding-top: 13px; }
  .activity-item li { font-size: 10.5px; line-height: 1.45; }
  .company-archive-gallery {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-template-rows: auto;
    align-items: start;
  }
  .company-archive-sheet-main { grid-column: 1 / -1; grid-row: auto; }
  .company-archive-sheet-secondary { grid-column: 1; grid-row: auto; }
  .company-archive-sheet-wide { grid-column: 2; grid-row: auto; }
  .company-archive-sheet-secondary figcaption,
  .company-archive-sheet-wide figcaption { grid-template-columns: 1fr; gap: 4px; }
  .company-archive-sheet-secondary figcaption strong,
  .company-archive-sheet-wide figcaption strong { white-space: normal; }
  .company-timeline {
    display: flex;
    gap: 0;
    margin-top: 58px;
    padding-top: 34px;
  }
  .company-timeline::before,
  .company-timeline::after { display: block; }
  .company-timeline article {
    min-width: 0;
    min-height: 150px;
    padding: 4px 18px 22px 0;
    border-top: 0;
  }
  .company-timeline article::before { top: -40px; left: 0; }
  .company-timeline h3 { font-size: 15px; }
  .company-timeline p { max-width: none; font-size: 11.5px; line-height: 1.58; }
  .service-detail,
  .service-detail:nth-child(even) {
    height: auto;
    min-height: 0;
    flex-direction: column;
  }
  .service-detail-photo,
  .service-detail-construccion .service-detail-photo {
    height: clamp(300px,45vw,380px);
    flex: none;
  }
  .service-detail-copy,
  .service-detail-construccion .service-detail-copy {
    min-height: 0;
    padding: 40px clamp(32px,5vw,48px) 44px;
    flex: none;
    overflow: visible;
  }
  .contact-layout { flex-direction: column; gap: 44px; }
  .contact-information { position: static; top: auto; width: 100%; max-width: 760px; flex: none; }
  .contact-layout > div:last-child { width: 100%; flex: none; }
  .contact-strip-inner {
    align-items: center;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
    padding-block: 38px;
    text-align: center;
  }
  .contact-strip h2,
  .site-inicio .contact-strip h2,
  .site-servicios .contact-strip h2 {
    max-width: 34rem;
    margin-inline: auto;
    font-size: clamp(21px,3.2vw,26px);
    line-height: 1.18;
    white-space: normal;
  }
  .contact-strip .dark-button { align-self: center; }
  .contact-form { padding: clamp(28px,4vw,38px); }
}
@media (min-width: 701px) and (max-width: 1420px) {
  .cinematic-slides { left: 0; }
  .cinematic-shade {
    background:
      linear-gradient(90deg,rgba(4,13,29,.97) 0%,rgba(4,13,29,.88) 38%,rgba(4,13,29,.56) 66%,rgba(4,13,29,.24) 100%),
      linear-gradient(180deg,rgba(5,15,31,.18),rgba(5,15,31,.48));
  }
  .cinematic-copy { max-width: min(540px,62vw); }
  .cinematic-facts { width: min(100%,510px); }
}

@media (min-width: 701px) and (max-width: 1180px) {
  .wide-container,
  .content-container { max-width: calc(100% - 56px); }
  .feature-row > *,
  .contact-layout > *,
  .service-detail > *,
  .project-group-head > *,
  .intro-manifesto > * { min-width: 0; }
  .section-title.center .single-line-title,
  .featured-work-heading h2,
  .company-story-heading h2,
  .company-archive-copy h2,
  .history-heading h2,
  #grupo-estructuras .project-group-head h2,
  #grupo-estructuras .project-group-head > p,
  .contact-information h2 span { white-space: normal; }
  .page-catalog-strip > div { padding-inline: clamp(78px,13vw,154px); }
  .service-detail-copy h2,
  .project-group-head h2,
  .project-group-head p { overflow-wrap: break-word; }
  .hero-panel h1 { max-width: 680px; }
  .page-heading h1 { font-size: clamp(30px,3.5vw,42px); line-height: 1.02; }
  .page-heading p { font-size: 14px; line-height: 1.6; }
  .section-title h2,
  .featured-work-heading h2,
  .company-story-heading h2,
  .company-archive-copy h2,
  .history-heading h2 { font-size: clamp(24px,3vw,34px); line-height: 1.13; }
  .intro-manifesto p { font-size: clamp(15px,1.7vw,18px); line-height: 1.65; }
  .page-catalog-strip > div strong { max-width: 860px; font-size: clamp(12px,1.35vw,14px); line-height: 1.55; }
  .feature-copy h3 { font-size: clamp(20px,2.55vw,30px); line-height: 1.16; }
  .feature-copy p { font-size: 13px; line-height: 1.65; }
  .service-intro-copy p { font-size: clamp(15px,1.45vw,17px); line-height: 1.55; }
  .service-detail-copy h2 { font-size: clamp(22px,2.55vw,30px); line-height: 1.16; }
  .service-detail-copy > p { font-size: 13px; line-height: 1.62; }
  .service-detail-copy li { font-size: 11.5px; line-height: 1.5; }
  .project-group-head h2,
  #grupo-estructuras .project-group-head h2 { font-size: clamp(21px,2.65vw,31px); line-height: 1.14; }
  .project-group-head p,
  #grupo-estructuras .project-group-head > p { font-size: 12px; line-height: 1.6; }
  .project-card-copy strong,
  .project-card:first-child .project-card-copy strong { font-size: clamp(18px,2vw,25px); line-height: 1.24; }
  .contact-information h2 { font-size: clamp(24px,2.7vw,32px); line-height: 1.15; }
  .topbar-inner > a:first-child { display: none; }
  .topbar-inner { justify-content: stretch; }
  .topbar-contact { width: 100%; justify-content: space-between; }
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 50px 56px;
    padding-block: 52px 28px;
  }
  .footer-columns > div,
  .footer-columns .footer-identity,
  .footer-columns .footer-services,
  .footer-columns .footer-projects {
    min-width: 0;
    align-items: center;
    text-align: center;
  }
  .footer-identity img { margin-inline: auto; }
  .footer-identity p {
    max-width: 280px;
    padding: 14px 0 0;
    border-top: 2px solid rgba(0,188,212,.55);
    border-left: 0;
  }
  .footer-columns a,
  .footer-columns p { max-width: 100%; }
  .footer-services a:first-of-type { white-space: normal; }
  .footer-bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-bottom > span:last-child { text-align: center; }
  .footer-legal-links { align-items: center; flex-direction: column; justify-content: center; text-align: center; }
}

@media (min-width: 701px) and (max-width: 820px) {
  .feature-row,
  .feature-row:nth-child(even) { align-items: stretch; flex-direction: column; gap: 22px; }
  .feature-photo { width: 100%; height: clamp(280px,45vw,340px); flex: none; }
  .feature-copy { width: 100%; flex: none; }
  .project-card:first-child { display: flex; flex-direction: column; }
  .project-card:first-child .project-card-copy {
    min-height: 245px;
    justify-content: flex-start;
    padding: 28px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .service-detail,
  .service-detail:nth-child(even) { height: clamp(420px,40vw,440px); min-height: 420px; }
  .service-detail-copy { padding: clamp(32px,4vw,52px); overflow: visible; }
  .contact-strip-inner { gap: 28px; }
  .contact-strip-inner > div { min-width: 0; }
  .contact-strip h2,
  .site-inicio .contact-strip h2,
  .site-servicios .contact-strip h2 {
    max-width: none;
    font-size: clamp(22px,2.5vw,28px);
    white-space: normal;
  }
}

@media (min-width: 901px) and (max-width: 1079px) {
  .activity-columns {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
    padding-bottom: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .activity-item { width: 100%; max-width: 330px; min-width: 0; padding: 10px 10px 20px; justify-self: center; flex: none; scroll-snap-align: none; }
  .activity-image { width: 100%; height: auto; aspect-ratio: 1.5; }
  .activity-item h3 { margin: 18px 0 9px; font-size: clamp(15px,1.55vw,17px); line-height: 1.24; }
  .activity-item p { min-height: 0; font-size: 11.5px; line-height: 1.58; }
  .activity-item ul { margin-top: 14px; padding-top: 13px; }
  .activity-item li { font-size: 10.5px; line-height: 1.45; }
}

@media (min-width: 1080px) and (max-width: 1180px) {
  .activity-columns { gap: 18px; }
  .activity-item { padding: 10px 10px 20px; }
  .activity-image { height: auto; aspect-ratio: 1.5; }
  .activity-item h3 { margin: 18px 0 9px; font-size: 15px; line-height: 1.24; }
  .activity-item p { min-height: 0; font-size: 11px; line-height: 1.55; }
  .activity-item ul { margin-top: 14px; padding-top: 13px; }
  .activity-item li { font-size: 10px; line-height: 1.45; }
}

@media (max-width: 700px) {
  .service-index { grid-template-columns: 1fr; margin-top: 30px; }
  .service-index a { min-height: 118px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
  .service-index a:first-child { border-top: 0; }
  .service-index strong { max-width: none; }
  .wide-container, .content-container { width: min(100% - 40px, 1210px); }
  .section-pad { padding-block: 48px; }
  .compact-top { padding-top: 10px; }
  .topbar-contact { width: 100%; justify-content: space-between; gap: 12px; }
  .topbar a { font-size: 9px; }
  .topbar svg { width: 14px; height: 14px; }
  .nav-inner { min-height: 68px; }
  .site-header.is-scrolled .nav-inner { min-height: 58px; }
  .brand img { width: 174px; }
  .home-hero { height: auto; min-height: 0; padding-top: 56.25vw; background: var(--navy); }
  .hero-slide { inset: 0 0 auto; height: 56.25vw; }
  .hero-slide::after { inset: 0; background-size: 100% auto; transform: none; animation: none; }
  .hero-slide-one, .hero-slide-two { --hero-position: center top; }
  .hero-shade { inset: 0 0 auto; height: 56.25vw; background: radial-gradient(ellipse at 50% 52%,rgba(3,15,35,.64) 0%,rgba(3,15,35,.56) 25%,rgba(3,15,35,.14) 56%,transparent 74%),linear-gradient(90deg,rgba(3,15,35,.24) 0%,rgba(3,18,42,.18) 30%,rgba(4,24,51,.14) 62%,rgba(5,18,36,.08) 100%),linear-gradient(180deg,rgba(4,13,29,.05),rgba(4,13,29,.22)); }
  .hero-panel { position: relative; top: auto; bottom: auto; left: auto; display: flex; width: 100%; padding: 34px 20px 40px; background: var(--navy); }
  .hero-panel::before { margin-bottom: 17px; opacity: 1; transform: none; animation: none; }
  .hero-panel > * { opacity: 1; transform: none; animation: none; }
  .hero-kicker { font-size: clamp(7px,2.25vw,8.5px); letter-spacing: .09em; white-space: nowrap; }
  .hero-panel h1 { max-width: 340px; margin-top: 21px; font-size: 36px; line-height: .88; }
  .hero-panel h1 > span:last-child { white-space: normal; }
  .hero-meta { margin-top: 22px; }
  .hero-meta > span { font-size: 7px; }
  .hero-year { font-size: 13px; }
  .hero-panel p { max-width: 34rem; margin-top: 21px; color: rgba(255,255,255,.74); font-size: 12px; line-height: 1.65; text-align: left; }
  .hero-panel a { margin-top: 26px; color: white; }
  .hero-progress { top: calc(56.25vw - 3px); bottom: auto; }
  .intro-copy p { font-size: 15px; line-height: 1.68; }
  .intro-manifesto { display: block; width: min(100% - 40px,1260px); text-align: center; }
  .intro-manifesto p { max-width: 35rem; margin-inline: auto; font-size: 15px; line-height: 1.68; text-align: center; text-align-last: center; }
  .intro-stamp { width: 116px; margin: 26px auto 0; }
  .home-intro { padding-top: 42px; padding-bottom: 40px; }
  .process-ribbon { height: 72px; overflow: hidden; contain: layout; background: white; }
  .process-ribbon-band { top: 7px; left: -80px; width: calc(100% + 160px); height: 58px; border: 0; clip-path: none; outline: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(126,229,239,.22); transform: translate3d(0,0,0) rotate(-1.1deg); transform-origin: center; backface-visibility: hidden; -webkit-backface-visibility: hidden; will-change: transform; }
  .process-ribbon-group { height: 100%; align-items: center; }
  .process-ribbon-group span { min-width: 205px; height: 100%; grid-template-columns: minmax(142px,1fr) 24px; align-items: center; column-gap: 11px; padding-inline: 14px; font-size: 9.5px; transform: none; }
  .process-ribbon-group em { display: flex; height: 100%; align-items: center; justify-content: center; line-height: 1; white-space: nowrap; transform: none; }
  .process-ribbon-group i { align-self: center; width: 24px; transform: none; }
  .process-ribbon + .activity-section { padding-top: 38px; }
  .section-title h2 { font-size: clamp(25px,7.5vw,31px); line-height: 1.08; }
  .section-title.split { align-items: center; flex-direction: column; gap: 18px; text-align: center; }
  .section-title.split > div,
  .section-title.split > p { margin-inline: auto; }
  .section-title.center .single-line-title { white-space: normal; }
  .activity-columns { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; padding: 0; overflow: visible; scroll-snap-type: none; }
  .activity-item { width: 100%; max-width: 330px; margin-inline: auto; padding: 10px 10px 22px; scroll-snap-align: none; }
  .activity-item h3 { margin-top: 20px; font-size: 16px; }
  .activity-item p { min-height: 0; font-size: 12px; }
  .activity-image { height: auto; aspect-ratio: 1.5; }
  .activity-image img { width: 100%; height: 100%; object-fit: cover; }
  .site-inicio .parallax-band,
  .site-inicio .featured-work { display: none; }
  .parallax-band {
    min-height: 0;
    padding: calc(56.25vw + 54px) 16px 64px;
    isolation: isolate;
    background: #071426;
  }
  .parallax-band::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 56.25vw;
    background: url('/images/114.webp') center / 100% auto no-repeat;
    transform: translate3d(0, var(--mobile-parallax-y, 0), 0) scale(1.12);
    transform-origin: center;
    will-change: transform;
  }
  .parallax-band::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: 56.25vw;
    background: linear-gradient(rgba(10,15,39,.2), rgba(10,15,39,.52));
    transform: translate3d(0, var(--mobile-parallax-y, 0), 0) scale(1.12);
    transform-origin: center;
    will-change: transform;
    pointer-events: none;
  }
  .parallax-band::after { bottom: auto; border: 0; }
  .parallax-copy { position: relative; z-index: 2; }
  .featured-work { padding-block: 42px; }
  .featured-work-heading h2 { white-space: normal; }
  .featured-work-heading > p { margin-top: 14px; }
  .feature-list { margin-top: 18px; }
  .feature-row, .feature-row:nth-child(even) { align-items: stretch; flex-direction: column; gap: 18px; padding-block: 24px; }
  .feature-photo { flex-basis: auto; height: auto; background: white; box-shadow: none; }
  .feature-photo::before { display: none; }
  .feature-photo img { height: auto; object-fit: contain; }
  .feature-copy { flex-basis: auto; text-align: center; }
  .feature-number { margin-bottom: 14px; }
  .cinematic-section { display: block; min-height: 0; padding-top: 75vw; }
  .cinematic-slides { top: 0; right: 0; bottom: auto; left: 0; height: 75vw; background: #071426; }
  .cinematic-slide { bottom: auto; height: 75vw; }
  .cinematic-slide img { height: 100%; object-fit: contain; animation-name: none; }
  .cinematic-content { padding: 44px 20px 54px; background: #071426; }
  .cinematic-shade { top: 0; bottom: auto; height: 75vw; background: linear-gradient(180deg, rgba(4,13,29,.12), rgba(4,13,29,.48)); }
  .cinematic-slide figcaption { right: 16px; bottom: 16px; }
  .cinematic-facts { gap: 22px; }
  .cinematic-progress { width: 180px; }
  .archive-marquee-track { align-items: center; }
  .archive-marquee figure { display: block; flex: 0 0 auto; width: 78vw; height: auto; aspect-ratio: 4 / 3; background: var(--navy); }
  .site-inicio .archive-marquee figure { width: 68vw; max-width: 260px; }
  .archive-marquee img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .contact-strip-inner { align-items: center; flex-direction: column; gap: 22px; min-height: 0; padding-block: 38px; text-align: center; }
  .contact-strip h2,
  .site-inicio .contact-strip h2,
  .site-servicios .contact-strip h2 { max-width: 34rem; margin-inline: auto; font-size: 25px; white-space: normal; }
  .contact-strip .dark-button { width: auto; min-width: 224px; align-self: center; white-space: nowrap; }
  .page-heading::after { display: none; }
  .company-opening { min-height: var(--company-opening-height,calc(100svh - 102px)); background: white; }
  .catalog-strip > div { flex-direction: column; gap: 2px; min-height: 92px; }
  .site-empresa .catalog-strip > div { gap: 2px; min-height: 92px; }
  .page-catalog-strip > div { min-height: 126px; gap: 7px; padding: 22px 48px; }
  .page-catalog-strip > div span { font-size: 10px; letter-spacing: .08em; }
  .page-catalog-strip > div strong { font-size: 12px; line-height: 1.5; }
  .page-catalog-strip .catalog-scroll-arrow-left { left: 14px; }
  .page-catalog-strip .catalog-scroll-arrow-right { right: 14px; }
  .catalog-scroll-arrow { width: 28px; height: 28px; }
  .catalog-scroll-arrow-left { left: 8px; }
  .catalog-scroll-arrow-right { right: 8px; }
  .catalog-scroll-arrow .service-scroll-arrows { transform: scale(.72); }
  .company-story-heading h2 { white-space: normal; }
  .company-archive-copy { padding-left: 18px; }
  .company-archive-copy h2 { font-size: 30px; }
  .company-archive-copy h2 { white-space: normal; }
  .company-archive-copy > p { margin-top: 20px; font-size: 13px; }
  .company-archive-gallery { grid-template-columns: 1fr; grid-template-rows: auto; gap: 18px; margin-top: 36px; }
  .company-archive-sheet-main,
  .company-archive-sheet-secondary,
  .company-archive-sheet-wide { width: 100%; grid-column: 1; grid-row: auto; }
  .company-archive-sheet { padding: 9px; }
  .company-archive-sheet-main { display: block; }
  .company-archive-sheet-main figcaption strong { white-space: normal; }
  .company-archive-sheet figcaption { grid-template-columns: 1fr; gap: 4px; }
  .company-archive-details { margin: 12px 2px 0; padding-top: 0; }
  .company-archive-details div { grid-template-columns: 82px minmax(0,1fr); gap: 12px; padding: 12px 0; }
  .history-heading h2 { white-space: normal; }
  .history-heading > p { margin-top: 14px; }
  .company-timeline { display: grid; gap: 22px; margin-top: 42px; padding: 0; }
  .company-timeline::before,
  .company-timeline::after { display: none; }
  .company-timeline article {
    --mobile-timeline-axis: 11px;
    width: calc(100% - 28px);
    min-height: 0;
    margin: 0;
    padding: 35px 0 10px;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .55s ease, transform .65s cubic-bezier(.22,1,.36,1);
  }
  .company-timeline article:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    text-align: right;
    transform: translateX(24px);
  }
  .company-timeline.is-visible article { animation: none; }
  .company-timeline article.is-in-view { opacity: 1; transform: translateX(0); }
  .company-timeline article::before {
    top: var(--mobile-timeline-axis);
    left: 0;
    width: 100%;
    height: 1px;
    border: 0;
    border-radius: 0;
    background: rgba(16,80,133,.4);
    box-shadow: none !important;
    filter: none;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .72s cubic-bezier(.22,1,.36,1) .08s;
    animation: none !important;
  }
  .company-timeline article:nth-child(even)::before {
    right: 0;
    left: auto;
    background: rgba(16,80,133,.4);
    transform-origin: left center;
  }
  .company-timeline article.is-in-view::before { transform: scaleX(1); }
  .company-timeline article::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: var(--mobile-timeline-axis);
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 1px rgba(0,188,212,.45),0 0 18px rgba(0,188,212,.28);
    transform: translate(-50%,-50%) scale(.55);
    transition: transform .45s cubic-bezier(.22,1,.36,1) .18s;
  }
  .company-timeline article:nth-child(even)::after { right: 0; left: auto; transform: translate(50%,-50%) scale(.55); }
  .company-timeline article.is-in-view::after { transform: translate(-50%,-50%) scale(1); animation: mobile-timeline-node-glow .9s cubic-bezier(.22,1,.36,1) .12s both; }
  .company-timeline article:nth-child(even).is-in-view::after { transform: translate(50%,-50%) scale(1); }
  .company-timeline article > span { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
  .company-timeline h3 { margin: 7px 0 7px; font-size: 18px; }
  .company-timeline p { max-width: 285px; font-size: 12px; line-height: 1.6; }
  .company-timeline article:nth-child(even) p { margin-left: auto; }
  .company-gallery-track { align-items: center; }
  .company-gallery figure { display: block; flex: 0 0 auto; width: 78vw; height: auto; aspect-ratio: 4 / 3; background: var(--navy); }
  .company-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .page-heading { display: block; min-height: 0; padding-top: 75vw; background-color: var(--navy); background-position: center top; background-repeat: no-repeat; background-size: 100% auto; }
  .page-heading::before { bottom: auto; height: 75vw; }
  .page-heading::after { display: none; }
  .page-heading > div { width: 100%; padding: 42px 20px 48px; background: var(--navy); }
  .service-heading > div::after,
  .projects-heading-page > div::after { display: none; }
  .page-heading h1 { font-size: 32px; }
  .service-heading,
  .projects-heading-page { padding-top: 62vw; }
  .service-heading::before,
  .projects-heading-page::before { height: 62vw; }
  .service-heading > div,
  .projects-heading-page > div { padding: 32px 20px 38px; text-align: center; }
  .service-heading h1,
  .projects-heading-page h1 { font-size: 32px; }
  .page-heading p { margin-inline: auto; }
  .projects-heading-page { padding-top: 75vw; background-position: center top; background-size: 100% auto; }
  .projects-heading-page::before { height: 75vw; }
  .service-intro { padding-block: 0; }
  .service-intro-panel { min-height: 0; grid-template-columns: 1fr; }
  .service-intro-copy { padding: 38px 0 32px; }
  .service-intro-copy p { margin-top: 15px; font-size: 16px; }
  .service-intro-scroll { min-height: 82px; flex-direction: row; gap: 20px; border-top: 1px solid var(--line); border-left: 0; }
  .service-scroll-arrows i { width: 10px; height: 10px; }
  .projects-intro { padding-block: 0; }
  .project-explorer { padding-bottom: 0; }
  .project-family-nav { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; padding-block: 16px 28px; }
  .project-family-nav a { min-height: 112px; padding: 16px 14px; }
  .project-family-nav strong { margin-top: 9px; font-size: 11px; }
  .project-group { padding-block: 50px; scroll-margin-top: 102px; }
  .project-group-head { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 28px; padding-bottom: 22px; }
  .project-group-head > p { margin-top: 7px; }
  .project-card-grid { columns: 1; }
  .project-card { margin-bottom: 14px; }
  .project-card:first-child { display: block; grid-column: auto; }
  .project-card:first-child .project-card-copy { min-height: 225px; justify-content: flex-start; padding: 22px 22px 19px; }
  .project-card:first-child .project-card-copy strong { font-size: 19px; }
  .project-card-copy { min-height: 225px; padding: 22px 22px 19px; }
  .project-modal { padding: 0; place-items: stretch; backdrop-filter: none; }
  .project-modal-panel { width: 100%; height: 100dvh; grid-template-columns: 1fr; grid-template-rows: auto minmax(0,1fr); overflow-y: auto; }
  .project-modal-close { position: fixed; top: 10px; right: 10px; }
  .project-modal-copy { min-height: 0; padding: 28px 66px 24px 20px; }
  .project-modal-copy h2 { margin-block: 11px 8px; font-size: 23px; }
  .project-modal-copy p { margin: 16px 0 0; font-size: 11px; }
  .project-modal-copy small { display: none; }
  .project-modal-gallery { min-height: 60vh; grid-template-rows: minmax(0,1fr) 92px; }
  .project-modal-canvas { padding: 18px; }
  .project-modal-prev, .project-modal-next { width: 40px; height: 40px; }
  .project-modal-prev { left: 8px; }
  .project-modal-next { right: 8px; }
  .project-modal-thumbs { padding: 8px; }
  .project-modal-thumbs button { flex-basis: 94px; }
  .project-modal-thumbs img { height: 64px; }
  .service-detail, .service-detail:nth-child(even) { flex-direction: column; min-height: 0; }
  .service-detail-photo { height: auto; flex: none; background: white; }
  .service-detail-photo img { height: auto; object-fit: contain; }
  .service-detail-construccion .service-detail-photo { height: 300px; }
  .service-detail-construccion .service-detail-photo img { height: 100%; object-fit: cover; }
  .service-detail-copy { flex: none; padding: 34px 20px 40px; text-align: center; }
  .service-detail-eyebrow { justify-content: center; }
  .service-detail-copy h2 { font-size: 26px; }
  .service-detail-copy p { margin-inline: auto; }
  .service-detail-copy ul { text-align: left; }
  .service-detail-construccion .service-detail-photo,
  .service-detail-construccion .service-detail-copy { flex: none; }
  .archive-project { padding-block: 42px; }
  .archive-project-head { position: static; top: auto; align-items: flex-start; flex-direction: column; gap: 8px; padding-block: 10px 18px; background: transparent; box-shadow: none; backdrop-filter: none; }
  .archive-project:nth-child(even) .archive-project-head { background: transparent; }
  .archive-project-head > div { width: 100%; flex-basis: auto; }
  .archive-project-head > p { max-width: none; margin: 5px 0 0; }
  .archive-project-number { flex-basis: auto; }
  .archive-project-track { margin-top: 18px; padding-inline: 16px; }
  .archive-project-track figure:not(.rotate-image) > div { height: auto; }
  .archive-project-track figure:not(.rotate-image) img { max-width: 86vw; max-height: 310px; }
  .archive-project-track .rotate-image > div { width: 230px; height: 310px; }
  .archive-project-foot { gap: 20px; }
  .contact-opening { height: calc(100svh - 102px); }
  .contact-heading { flex-basis: 142px; }
  .contact-heading-inner { min-height: 142px; padding-block: 28px; }
  .contact-heading h1 { font-size: 32px; }
  .contact-scroll-arrow-left { left: 12px; }
  .contact-scroll-arrow-right { right: 12px; }
  .contact-scroll-arrow .service-scroll-arrows { transform: scale(.9); }
  .contact-information h2 { font-size: 26px; }
  .contact-layout { flex-direction: column; }
  .contact-information { position: static; flex-basis: auto; }
  .contact-layout > div:last-child { width: 100%; flex-basis: auto; }
  .contact-form { padding: 30px 22px; }
  .form-columns { flex-direction: column; gap: 0; }
  .form-title { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-columns { flex-direction: column; gap: 24px; padding-block: 40px 30px; }
  .footer-columns > div { flex-basis: auto; }
  .footer-bottom { display: flex; align-items: flex-start; flex-direction: column; gap: 8px; text-align: left; }
  .footer-bottom > span:last-child { text-align: left; }
  .footer-legal-links { align-items: flex-start; flex-direction: column; gap: 6px; text-align: left; }
  .legal-hero { padding-top: 58px; }
  .legal-content dl { grid-template-columns: 1fr; }
  .legal-content dt { padding-bottom: 0; border-bottom: 0; }
  .legal-content dd { padding-top: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal],
  [data-company-reveal] { opacity: 1; transform: none; }
  .hero-panel::before { opacity: 1; transform: none; }
  .timeline::after { transform: none; }
  .timeline article { opacity: 1; transform: none; }
  .timeline article::before { background: var(--cyan); transform: none; }
  .company-gallery-viewport { overflow-x: auto; scrollbar-color: var(--cyan) transparent; }
  .company-gallery-track { animation: none; }
  .process-ribbon-track { animation: none; transform: none; }
  .hero-slide-one { opacity: 1; }
  .cinematic-slide:first-child { opacity: 1; clip-path: none; }
  .cinematic-slide:not(:first-child) { display: none; }
  .cinematic-progress span:first-child::after { opacity: 1; transform: scaleX(1); }
}

.service-heading::before,
.projects-heading-page::before { background: radial-gradient(ellipse at 50% 52%,rgba(3,15,35,.64) 0%,rgba(3,15,35,.56) 25%,rgba(3,15,35,.14) 56%,transparent 74%),linear-gradient(90deg,rgba(3,15,35,.24) 0%,rgba(3,18,42,.18) 30%,rgba(4,24,51,.14) 62%,rgba(5,18,36,.08) 100%),linear-gradient(180deg,rgba(4,13,29,.05),rgba(4,13,29,.22)); }
@media (min-width: 701px) {
  .service-heading,
  .projects-heading-page {
    min-height: clamp(350px,21vw,400px);
  }

  .company-opening {
    min-height: 0;
  }

  .page-heading {
    align-items: end;
  }

  .page-heading {
    place-items: end stretch;
    text-align: left;
  }

  .page-heading > div {
    z-index: 3;
    width: min(calc(100% - 112px),1280px);
    margin-inline: auto;
    padding: 0 0 clamp(72px,5vw,88px);
    text-align: left;
  }

  .page-heading h1 {
    max-width: 900px;
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(34px,3.25vw,48px);
    line-height: .98;
  }

  .page-heading p {
    margin-right: 0;
    margin-left: 0;
  }

  .page-heading::after,
  .contact-heading::after,
  .legal-hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -1px;
    bottom: -1px;
    left: -1px;
    display: block;
    height: clamp(64px,5vw,86px);
    background: var(--inner-hero-cut,white);
    clip-path: polygon(0 58%,55% 58%,66% 92%,100% 68%,100% 100%,0 100%);
    filter: drop-shadow(0 -4px 0 var(--cyan)) drop-shadow(0 -8px 12px rgba(0,188,212,.18));
    pointer-events: none;
  }

  .contact-opening {
    position: relative;
    height: clamp(350px,21vw,400px);
    min-height: 350px;
  }

  .contact-opening .map-hero {
    position: absolute;
    inset: 0;
  }

  .contact-heading {
    --inner-hero-cut: var(--mist);
    position: absolute;
    z-index: 2;
    inset: 0;
    border-top: 0;
    background: linear-gradient(90deg,rgba(3,15,35,.9) 0%,rgba(3,18,42,.66) 38%,rgba(4,24,51,.2) 72%,rgba(5,18,36,.08) 100%),linear-gradient(180deg,rgba(4,13,29,.08),rgba(4,13,29,.28));
    pointer-events: none;
  }

  .contact-heading-inner {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 112px),1280px);
    min-height: 100%;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 0 clamp(72px,5vw,88px);
    text-align: left;
  }

  .contact-heading h1 {
    margin: 14px 0 0;
    font-size: clamp(34px,3.25vw,48px);
  }

  .contact-scroll-arrow {
    display: none;
  }

  .legal-hero {
    --inner-hero-cut: white;
    position: relative;
    display: flex;
    min-height: clamp(350px,21vw,400px);
    overflow: hidden;
    align-items: flex-end;
    padding: 0;
    background: radial-gradient(circle at 78% 22%,rgba(0,188,212,.18),transparent 25%),linear-gradient(125deg,#070b22 0%,#102b4a 68%,#173d58 100%);
  }

  .legal-hero .content-container {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 112px),1280px);
    padding-bottom: clamp(72px,5vw,88px);
  }

  .legal-hero h1 {
    font-size: clamp(34px,3.25vw,48px);
  }

  .site-empresa .catalog-strip,
  .page-catalog-strip {
    border-bottom: 1px solid var(--line);
    background: white;
  }

  .site-empresa .catalog-strip::before,
  .page-catalog-strip::before,
  .service-intro::before,
  .projects-intro::before {
    display: none;
  }

  .site-empresa .catalog-strip > div,
  .page-catalog-strip > div {
    min-height: 0;
    padding: clamp(26px,2.1vw,34px) 56px clamp(30px,2.4vw,38px);
    gap: 10px;
    background: white;
  }

  .page-catalog-strip > div span {
    color: var(--blue);
    font-size: 11px;
    letter-spacing: .12em;
  }

  .page-catalog-strip > div strong {
    max-width: 1080px;
    color: var(--ink-deep);
    font-size: clamp(21px,1.8vw,28px);
    font-weight: 500;
    letter-spacing: -.018em;
    line-height: 1.38;
  }

  .site-empresa .catalog-strip > div strong {
    color: var(--ink-deep);
    font-size: clamp(20px,1.8vw,27px);
    font-weight: 500;
    letter-spacing: -.015em;
  }

  .site-empresa .catalog-scroll-arrow,
  .page-catalog-strip .catalog-scroll-arrow {
    display: none;
  }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .page-heading > div,
  .contact-heading-inner,
  .legal-hero .content-container {
    width: min(calc(100% - 64px),1280px);
  }

  .page-heading::after,
  .contact-heading::after,
  .legal-hero::after {
    height: 82px;
  }
}

@media (max-width: 700px) {
  .page-heading {
    display: grid;
    min-height: 330px;
    padding-top: 0;
    align-items: end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .page-heading::before {
    inset: 0;
    height: auto;
  }

  .page-heading::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -1px;
    bottom: -1px;
    left: -1px;
    display: block;
    height: 54px;
    background: white;
    clip-path: polygon(0 58%,55% 58%,66% 92%,100% 68%,100% 100%,0 100%);
    filter: drop-shadow(0 -2px 0 var(--cyan));
    pointer-events: none;
  }

  .service-heading > div,
  .projects-heading-page > div {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px 68px;
    background: transparent;
    text-align: left;
  }

  .page-heading h1,
  .page-heading p {
    margin-right: 0;
    margin-left: 0;
  }

  .service-heading,
  .projects-heading-page {
    min-height: 330px;
    padding-top: 0;
  }

  .service-heading::before,
  .projects-heading-page::before {
    height: auto;
  }

  .service-heading {
    background-position: 42% center;
  }

  .projects-heading-page {
    background-position: 44% center;
    background-size: cover;
  }

  .site-empresa .catalog-strip,
  .page-catalog-strip {
    border-bottom: 1px solid var(--line);
    background: white;
  }

  .site-empresa .catalog-strip::before,
  .page-catalog-strip::before,
  .service-intro::before,
  .projects-intro::before {
    display: none;
  }

  .site-empresa .catalog-strip > div,
  .page-catalog-strip > div {
    min-height: 0;
    padding: 42px 20px 50px;
    gap: 12px;
    background: white;
  }

  .page-catalog-strip > div strong {
    max-width: 560px;
    color: var(--ink-deep);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -.012em;
    line-height: 1.42;
  }

  .site-empresa .catalog-scroll-arrow,
  .page-catalog-strip .catalog-scroll-arrow {
    display: none;
  }

  .contact-heading-inner {
    position: relative;
    align-items: flex-start;
    padding-right: 20px;
    padding-left: 20px;
    text-align: left;
  }

  .contact-opening {
    position: relative;
    height: 330px;
    min-height: 330px;
  }

  .contact-opening .map-hero {
    position: absolute;
    inset: 0;
  }

  .contact-heading {
    position: absolute;
    z-index: 2;
    inset: 0;
    flex: none;
    border-top: 0;
    background: linear-gradient(90deg,rgba(3,15,35,.88),rgba(3,18,42,.5) 62%,rgba(4,24,51,.12)),linear-gradient(180deg,rgba(4,13,29,.04),rgba(4,13,29,.34));
    pointer-events: none;
  }

  .contact-heading::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -1px;
    bottom: -1px;
    left: -1px;
    display: block;
    height: 54px;
    background: var(--mist);
    clip-path: polygon(0 58%,55% 58%,66% 92%,100% 68%,100% 100%,0 100%);
    filter: drop-shadow(0 -2px 0 var(--cyan));
    pointer-events: none;
  }

  .contact-heading-inner {
    z-index: 3;
    width: 100%;
    min-height: 100%;
    justify-content: flex-end;
    padding: 0 20px 68px;
  }

  .contact-scroll-arrow {
    display: none;
  }

  .legal-hero {
    position: relative;
    display: flex;
    min-height: 330px;
    overflow: hidden;
    align-items: flex-end;
    padding: 0;
    background: radial-gradient(circle at 86% 10%,rgba(0,188,212,.16),transparent 28%),linear-gradient(125deg,#070b22 0%,#102b4a 100%);
  }

  .legal-hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -1px;
    bottom: -1px;
    left: -1px;
    display: block;
    height: 54px;
    background: white;
    clip-path: polygon(0 58%,55% 58%,66% 92%,100% 68%,100% 100%,0 100%);
    filter: drop-shadow(0 -2px 0 var(--cyan));
    pointer-events: none;
  }

  .legal-hero .content-container {
    position: relative;
    z-index: 3;
    padding-top: 24px;
    padding-bottom: 70px;
  }

  .legal-hero h1 {
    font-size: 32px;
  }
}
.page-heading::after,
.legal-hero::after {
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0 58H55L66 92L100 68V100H0Z' fill='%23ffffff'/%3E%3Cpath d='M0 58H55L66 92L100 68' fill='none' stroke='%2300bcd4' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  clip-path: none;
  filter: none;
}

.contact-heading::after {
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0 58H55L66 92L100 68V100H0Z' fill='%23f2f4f6'/%3E%3Cpath d='M0 58H55L66 92L100 68' fill='none' stroke='%2300bcd4' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  clip-path: none;
  filter: none;
}
.legal-hero::after {
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0 58H55L66 92L100 68V100H0Z' fill='%23f4f6f7'/%3E%3Cpath d='M0 58H55L66 92L100 68' fill='none' stroke='%2300bcd4' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.map-hero iframe {
  position: absolute;
  top: 0;
  left: -420px;
  width: calc(100% + 840px);
}

@media (max-width: 1180px) {
  .main-nav {
    background: rgba(11,14,38,.94);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    backdrop-filter: blur(14px) saturate(120%);
    max-height: calc(100dvh - 102px);
    overflow-y: auto;
    overscroll-behavior: auto;
  }
}

@media (max-width: 700px) {
  .service-heading,
  .projects-heading-page,
  .legal-hero { min-height: 252px; }

  .contact-opening {
    height: 252px;
    min-height: 252px;
  }

  .legal-hero .content-container {
    width: 100%;
    margin: 0;
    padding: 0 20px 58px;
  }
  .company-opening { min-height: 0 !important; }

  .service-heading,
  .projects-heading-page {
    min-height: 252px;
  }

  .service-heading > div,
  .projects-heading-page > div,
  .contact-heading-inner,
  .legal-hero .content-container {
    text-align: left;
  }

  .service-heading > div > span,
  .projects-heading-page > div > span,
  .contact-heading-inner > span,
  .legal-hero .kicker {
    font-size: 9px;
    letter-spacing: .14em;
    line-height: 1.35;
  }

  .service-heading h1,
  .projects-heading-page h1,
  .contact-heading h1,
  .legal-hero h1 {
    margin-top: 10px;
    font-size: clamp(27px,8vw,31px);
    letter-spacing: -.045em;
    line-height: 1;
  }

  .page-heading::after,
  .contact-heading::after,
  .legal-hero::after {
    height: 36px;
  }

  .site-empresa .catalog-strip > div,
  .page-catalog-strip > div {
    padding-top: 22px;
    padding-bottom: 26px;
    gap: 8px;
  }

  .page-catalog-strip > div strong {
    font-size: 17px;
    line-height: 1.45;
  }

  .contact-form input,
  .contact-form select { min-height: 44px; }

}
.service-heading > div,
.projects-heading-page > div,
.contact-heading-inner,
.legal-hero .content-container { padding-bottom: 58px; }
.legal-hero h1 { margin-bottom: 16px; }
@media (max-width: 1050px) {
  .service-heading h1,
  .projects-heading-page h1,
  .legal-hero h1 { margin-bottom: 0; }
}
html { scroll-padding-top: 88px; background: var(--navy); }
.site-shell { --header-expanded: 108px; padding-top: var(--header-expanded); background-image: linear-gradient(to bottom,var(--navy) 0,var(--navy) var(--header-expanded),transparent var(--header-expanded)); }
.site-shell::before { display: none; }
.site-header { position: fixed; inset: 0 0 auto; width: 100%; background: transparent; }
.topbar { height: 30px; min-height: 0; overflow: hidden; background: var(--navy); transition: height .32s var(--ease-out); }
.topbar-inner { height: 30px; min-height: 0; opacity: 1; visibility: visible; transform: none; transition: opacity .18s ease, transform .32s var(--ease-out), visibility 0s; }
.nav-inner { height: 78px; min-height: 0; transition: height .32s var(--ease-out); }
.brand img { width: 222px; height: auto; transition: width .25s var(--ease-out); }
.main-nav { height: 100%; min-height: 0; }
.main-nav > a::after, .nav-dropdown > a::after { bottom: 22px; }
.site-header.is-scrolled .topbar { height: 0; min-height: 0; border-width: 0; opacity: 1; visibility: visible; background: rgba(11,14,38,.68); }
.site-header.is-scrolled .topbar-inner { opacity: 0; transform: translateY(-8px); visibility: hidden; transition: opacity .18s ease, transform .32s var(--ease-out), visibility 0s .32s; }
.site-header.is-scrolled .nav-inner { height: 66px; min-height: 0; }
.site-header.is-scrolled .main-nav > a::after,
.site-header.is-scrolled .nav-dropdown > a::after { bottom: 16px; }
.nav-dropdown:focus-within .mega-menu { visibility: visible; opacity: 1; transform: none; }

@media (min-width: 981px) and (max-width: 1180px) {
  .menu-toggle { display: none; }
  .main-nav, .main-nav.is-open { position: static; display: flex; flex-direction: row; align-items: stretch; height: 100%; max-height: none; padding: 0; overflow: visible; background: transparent; box-shadow: none; backdrop-filter: none; }
  .main-nav > a, .nav-dropdown > a { min-height: 0; border-bottom: 0; padding-inline: 11px; }
  .main-nav > a::after, .nav-dropdown > a::after { right: 11px; left: 11px; width: auto; }
  .main-nav .nav-cta { align-self: center; margin: 0 0 0 12px; min-height: 40px; padding-inline: 17px; }
  .nav-dropdown { display: flex; }
  .mega-menu { display: grid; }
}
@media (max-width: 980px) {
  .site-shell { --header-expanded: 114px; }
  .topbar { display: block; height: 34px; }
  .topbar-inner { height: 34px; }
  .topbar-inner > a:first-child { display: none; }
  .topbar-contact { width: 100%; justify-content: space-between; gap: 12px; }
  .nav-inner { height: 80px; min-height: 0; }
  .brand img { width: 205px; }
  .site-header.is-scrolled .nav-inner { height: 64px; min-height: 0; }
  .site-header.is-scrolled .brand img { width: 180px; }
  .menu-toggle { display: block; position: relative; width: 46px; height: 46px; padding: 0; flex: 0 0 46px; -webkit-tap-highlight-color: transparent; }
  .menu-toggle span { position: absolute; top: 22px; left: 11px; width: 24px; height: 2px; margin: 0; transform-origin: center; pointer-events: none; transition: transform .25s var(--ease-out); }
  .menu-toggle span:nth-child(1) { transform: translateY(-7px); }
  .menu-toggle span:nth-child(2) { opacity: 1; transform: scaleX(1); transition: opacity .08s .18s, transform .08s .18s; }
  .menu-toggle span:nth-child(3) { transform: translateY(7px); }
  .menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); transition: none; }
  .menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }
  .main-nav { height: auto; max-height: calc(100dvh - 114px); padding: 20px 28px 28px; overflow-y: auto; overscroll-behavior: auto; }
  .site-header.is-scrolled .main-nav { max-height: calc(100dvh - 64px); }
  .main-nav > a, .nav-dropdown > a { min-height: 54px; }
  .main-nav .nav-cta { min-height: 50px; }
  .main-nav > a::after, .nav-dropdown > a::after, .site-header.is-scrolled .main-nav > a::after, .site-header.is-scrolled .nav-dropdown > a::after { bottom: 9px; }
}
@media (max-width: 640px) {
  .site-shell { --header-expanded: 106px; }
  .topbar .wide-container { width: calc(100% - 32px); }
  .topbar a { font-size: 11px; gap: 6px; white-space: nowrap; }
  .topbar svg { width: 13px; height: 13px; flex: 0 0 13px; }
  .nav-inner { height: 72px; }
  .brand img { width: 186px; }
  .site-header.is-scrolled .nav-inner { height: 60px; }
  .site-header.is-scrolled .brand img { width: 167px; }
  .main-nav { max-height: calc(100dvh - 106px); padding-inline: 22px; }
  .site-header.is-scrolled .main-nav { max-height: calc(100dvh - 60px); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar, .topbar-inner, .site-header.is-scrolled .topbar-inner, .nav-inner, .brand img, .menu-toggle span { transition: none; }
}
.site-empresa .empresa-heading {
  background-image: url("/images/estructura-nitida-v2.png");
  background-size: auto max(92vw,165%);
  background-position: left 45%;
  background-repeat: no-repeat;
}
@media (min-width: 981px) {
  .site-empresa .empresa-heading { background-position: left 54%; }
}
.site-empresa .empresa-heading > div { animation: none; }
.site-empresa .company-story { padding-block: clamp(30px,3.5vw,48px); background: var(--mist); color: var(--ink); }
.site-empresa .company-archive,
.site-empresa .history-section { padding-block: clamp(30px,3.5vw,48px); }
.site-empresa .catalog-strip > .content-container { min-height: 0; padding-top: 22px; padding-bottom: 22px; }
.site-empresa .company-story::before { display: none; }
.site-empresa .company-story-heading { margin: 0 auto 32px; padding: 0; text-align: center; }
.site-empresa .company-story-heading { animation: story-heading-load .72s var(--ease-out) backwards; }
@keyframes story-heading-load { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }
.story-motion .story-chapter.story-initial-reveal { animation: story-content-load .72s var(--ease-out) backwards; }
@keyframes story-content-load { from { opacity: 0; } to { opacity: 1; } }
.site-empresa .company-story-heading .kicker { display: inline-flex; align-items: center; gap: 12px; padding: 0; color: var(--blue); font-size: 12px; letter-spacing: .2em; }
.site-empresa .company-story-heading .kicker::before,
.site-empresa .company-story-heading .kicker::after { content: ""; position: static; width: 32px; height: 2px; background: var(--cyan); }
.site-empresa .company-story-heading h2 { max-width: none; margin-top: 16px; color: var(--navy); font-size: clamp(28px,3vw,42px); font-weight: 650; letter-spacing: -.035em; line-height: 1.2; white-space: normal; }
.story-chapters { display: grid; grid-template-columns: 1fr; gap: 0; border-bottom: 1px solid #cbd8df; }
.story-chapter {
  position: relative; display: grid; grid-template-columns: 150px minmax(0,1fr); gap: 38px;
  padding: 32px 0; border: 0; border-top: 1px solid #cbd8df;
  background: transparent; min-width: 0; isolation: isolate;
  transition: transform .35s var(--ease-out),border-color .35s,box-shadow .35s;
}
.story-chapter::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 74px; height: 3px;
  background: linear-gradient(90deg,var(--blue),var(--cyan)); transform: scaleX(.12); transform-origin: left;
  transition: transform .8s var(--ease-out);
}
.story-chapter.has-entered::before { transform: scaleX(1); }
.story-chapter-label { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin: 0; padding: 0; }
.story-number { color: var(--blue); font-size: clamp(48px,5vw,72px); font-weight: 500; letter-spacing: -.065em; line-height: 1; font-variant-numeric: tabular-nums; }
.story-chapter-label > span:last-child { color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.story-chapter-copy { display: grid; grid-template-columns: minmax(200px,.8fr) minmax(0,1.2fr); column-gap: 38px; align-content: start; }
.story-chapter h3 { grid-column: 1; grid-row: 1 / span 2; margin: 0; color: var(--navy); font-size: clamp(23px,2.3vw,30px); font-weight: 650; letter-spacing: -.025em; line-height: 1.25; }
.story-chapter p { grid-column: 2; }
.story-chapter p { margin: 0 0 16px; color: var(--ink); font-size: 16px; line-height: 1.8; }
.story-chapter p:last-child { margin-bottom: 0; }
@media (hover: hover) and (pointer: fine) {
  .story-chapter:hover { border-color: #8bafbe; }
}
.story-motion .company-story-heading,
.story-motion .story-chapter { opacity: 0; transition: opacity .4s ease, border-color .35s, box-shadow .35s; }
.story-motion .company-story-heading > *,
.story-motion .story-chapter-label,
.story-motion .story-chapter-copy { transform: translateY(22px); transition: transform .55s var(--ease-out); }
.story-motion .company-story-heading.has-entered,
.story-motion .story-chapter.has-entered { opacity: 1; transition-duration: .7s; }
.story-motion .company-story-heading.has-entered > *,
.story-motion .has-entered .story-chapter-label,
.story-motion .has-entered .story-chapter-copy { transform: none; }
.story-motion .story-chapter:nth-child(2).has-entered,
.story-motion .story-chapter:nth-child(2).has-entered > * { transition-delay: .1s; }
.story-motion .story-chapter:nth-child(3).has-entered,
.story-motion .story-chapter:nth-child(3).has-entered > * { transition-delay: .2s; }
@media (max-width: 980px) {
  .story-chapter { grid-template-columns: 120px minmax(0,1fr); gap: 28px; padding: 28px 0; }
  .story-chapter-copy { display: block; }
  .story-chapter h3 { max-width: 600px; margin-bottom: 18px; }
  .story-motion .story-chapter.has-entered,
  .story-motion .story-chapter.has-entered > * { transition-delay: 0s; }
}
@media (max-width: 560px) {
  .site-empresa .company-story > .wide-container { width: calc(100% - 40px); }
  .site-empresa .company-story-heading { margin-bottom: 28px; }
  .story-chapter { display: block; padding: 26px 0; }
  .story-chapter-label { flex-direction: row; align-items: center; margin-bottom: 20px; padding: 0; }
  .story-chapter h3 { font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-empresa .company-story-heading { animation: none; }
  .story-motion .story-chapter.story-initial-reveal { animation: none; }
  .site-empresa .empresa-heading > div { animation: none; }
  .story-chapter, .story-chapter::before, .story-motion .company-story-heading, .story-motion .story-chapter, .story-motion .company-story-heading > *, .story-motion .story-chapter > * { opacity: 1; transform: none; transition: none !important; }
  .story-chapter:hover { transform: none; }
}
.site-inicio .home-hero { width: 100%; max-width: none; }
@media (min-width: 701px) {
  .site-inicio .home-hero {
    display: flex;
    align-items: center;
    height: auto;
    min-height: max(420px,calc(100svh - var(--header-expanded,108px)));
  }
  .site-inicio .hero-panel {
    position: relative;
    inset: auto;
    margin-left: max(6.2vw,40px);
    padding-block: clamp(28px,5svh,60px);
    flex: 0 0 auto;
  }
}
@media (min-width: 701px) and (max-width: 900px) {
  .site-inicio .hero-panel { margin-left: clamp(32px,5vw,46px); }
}
@media (min-width: 701px) and (max-height: 700px) {
  .site-inicio .hero-panel { padding-block: 24px; }
  .site-inicio .hero-panel h1 { margin-top: 18px; }
  .site-inicio .hero-meta { margin-top: 18px; }
  .site-inicio .hero-panel p,
  .site-inicio .hero-panel a { margin-top: 22px; }
}
.site-inicio .process-ribbon { height: 84px; overflow: hidden; }
.site-inicio .process-ribbon-band { top: 8px; left: 0; width: 100%; height: 68px; transform: none; border-block: 1px solid rgba(126,229,239,.25); box-shadow: none; }
.site-inicio .process-ribbon-track { animation: process-ribbon-flow var(--ribbon-duration,48s) linear infinite; animation-play-state: paused; }
.site-inicio .process-ribbon.is-animating .process-ribbon-track { animation-play-state: running; }
.site-inicio .process-ribbon-group span { display: flex; min-width: 0; gap: 40px; padding: 0 20px; font-size: 14px; font-weight: 650; letter-spacing: .12em; white-space: nowrap; }
.site-inicio .process-ribbon-group em { line-height: 1.4; }
.site-inicio .process-ribbon-group i { width: 5px; height: 5px; flex: 0 0 5px; background: #7ee5ef; transform: rotate(45deg); opacity: .65; }
.site-inicio .process-ribbon-band::before { width: clamp(32px,7vw,110px); }
.site-inicio .process-ribbon-band::after { width: clamp(32px,7vw,110px); }
.site-inicio .process-ribbon-pulse { display: none; }
@media (max-width: 700px) {
  .site-inicio .process-ribbon { height: 74px; }
  .site-inicio .process-ribbon-band { top: 7px; height: 60px; }
  .site-inicio .process-ribbon-group span { padding-inline: 16px; gap: 32px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-inicio .process-ribbon { height: auto; padding-block: 8px; }
  .site-inicio .process-ribbon-band { position: relative; top: auto; height: auto; padding: 16px; }
  .site-inicio .process-ribbon-track { width: 100%; animation: none; transform: none; }
  .site-inicio .process-ribbon-group { width: 100%; flex-wrap: wrap; justify-content: center; gap: 14px; }
  .site-inicio .process-ribbon-group span { padding: 0; }
  .site-inicio .process-ribbon-group i,
  .site-inicio .process-ribbon-group:not(:first-child),
  .site-inicio .process-ribbon-band::before,
  .site-inicio .process-ribbon-band::after { display: none; }
}
