:root {
  --ink: #070a0d;
  --ink-soft: #151a20;
  --paper: #f6f7f5;
  --white: #ffffff;
  --muted: #66717c;
  --line: rgba(9, 15, 21, .13);
  --gold: #c9a24c;
  --gold-light: #f1d484;
  --green: #1f9d55;
  --blue: #c9a24c;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(7, 10, 13, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 6vw, 132px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  background: rgba(7, 10, 13, .28);
  backdrop-filter: blur(14px);
  transition: background .22s ease, box-shadow .22s ease, min-height .22s ease;
}
.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(7, 10, 13, .92);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 230px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 900;
  font-size: 21px;
  line-height: 1;
}
.brand strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
}
.brand small {
  display: block;
  margin-top: 2px;
  max-width: 210px;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav > a,
.nav-dropdown > a {
  padding: 12px 0;
  opacity: .88;
  transition: color .18s ease, opacity .18s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-light);
  opacity: 1;
}
.nav-cta {
  min-width: 122px;
  text-align: center;
  padding: 12px 18px !important;
  color: var(--ink) !important;
  background: var(--white);
  border-radius: 999px;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 260px;
  padding: 12px;
  background: rgba(7,10,13,.96);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.dropdown-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--white);
  text-transform: none;
}
.dropdown-panel a:hover { background: rgba(255,255,255,.08); }
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-weight: 900;
}

.hero,
.video-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 122px clamp(22px, 10vw, 190px) 70px;
  color: var(--white);
}
.page-hero { min-height: 72svh; }
.contact-hero { min-height: 70svh; }
.hero-bg,
.hero-scrim,
.video-hero video {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(9,15,21,.88), rgba(9,15,21,.54) 45%, rgba(9,15,21,.32)),
    linear-gradient(180deg, rgba(9,15,21,.35), rgba(9,15,21,.16));
}
.hero-amp {
  position: absolute;
  right: clamp(-76px, -3vw, 38px);
  bottom: -92px;
  color: rgba(255,255,255,.92);
  font-size: clamp(280px, 42vw, 680px);
  font-weight: 900;
  line-height: .72;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: .95;
  letter-spacing: 0;
}
.page-hero .hero-copy h1,
.video-hero .hero-copy h1,
.contact-hero .hero-copy h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.4vw, 78px);
}
.hero-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  font-weight: 700;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--gold-light); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.58); }
.btn-dark { background: var(--ink); color: var(--white); }

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}
.news-strip {
  display: grid;
  grid-template-columns: minmax(220px, 31vw) 1fr;
  min-height: 54px;
  overflow: hidden;
  background: #dedede;
  color: var(--ink);
  font-weight: 900;
}
.news-strip strong {
  display: grid;
  place-items: center;
  padding: 16px 22px;
  background: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
}
.news-track {
  display: flex;
  align-items: center;
  gap: 52px;
  white-space: nowrap;
  overflow: hidden;
}
.news-track span {
  animation: ticker 24s linear infinite;
}
@keyframes ticker { to { transform: translateX(-420px); } }

.split-section,
.angled-feature,
.metrics,
.service-detail,
.form-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 125px) 0;
}
.split-section {
  display: grid;
  grid-template-columns: .58fr 1fr 1.1fr;
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
}
.section-kicker {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.02;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { margin: 0 0 10px; font-size: clamp(21px, 2vw, 28px); line-height: 1.12; }
p { font-size: 16px; line-height: 1.65; }
.split-copy p,
.angled-feature p,
.metrics p,
.detail-copy p,
.form-section p {
  color: var(--muted);
  font-weight: 650;
}
.image-stack {
  position: relative;
  min-height: 330px;
}
.image-stack img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}
.floating-note,
.angled-feature aside {
  position: absolute;
  left: -90px;
  bottom: 36px;
  width: min(420px, 92%);
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-top: 7px solid var(--blue);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}
.angled-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}
.angled-feature img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}
.angled-feature aside {
  left: auto;
  right: 19%;
  bottom: 66px;
}
.services-preview {
  padding: clamp(62px, 8vw, 108px) 0 0;
  color: var(--white);
  background: var(--ink);
}
.services-preview .container { margin-bottom: 38px; }
.service-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-band {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  isolation: isolate;
}
.service-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--band) center/cover;
  filter: grayscale(.15);
  transform: scale(1.04);
  transition: transform .3s ease;
}
.service-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(201,162,76,.38), rgba(7,10,13,.88));
  mix-blend-mode: multiply;
}
.service-band:nth-child(2)::after { background: linear-gradient(180deg, rgba(31,157,85,.38), rgba(7,10,13,.9)); }
.service-band:nth-child(3)::after { background: linear-gradient(180deg, rgba(201,162,76,.42), rgba(7,10,13,.9)); }
.service-band:hover::before { transform: scale(1.12); }
.service-band span {
  color: var(--gold-light);
  font-weight: 900;
}
.service-band p {
  max-width: 360px;
  color: rgba(255,255,255,.84);
  font-weight: 750;
}
.metrics {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.metric-grid article {
  min-height: 150px;
  padding: 26px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.metric-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1;
}
.metric-grid span {
  color: var(--muted);
  font-weight: 800;
}

.history-section {
  padding: clamp(60px, 8vw, 96px) 0;
  background: var(--blue);
  color: var(--white);
}
.history-section p { max-width: 960px; color: rgba(255,255,255,.9); font-weight: 700; }
.history-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-top: 34px;
  scrollbar-width: thin;
}
.history-row article {
  min-height: 300px;
  padding: 38px 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}
.history-row strong {
  display: block;
  margin-bottom: 26px;
  font-size: 48px;
  line-height: 1;
}
.history-row p { color: var(--ink); font-size: 15px; }

.focus-section {
  padding: clamp(72px, 9vw, 128px) 0;
}
.focus-section .container { text-align: center; }
.focus-section .container p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 650;
}
.focus-slider {
  position: relative;
  width: min(760px, calc(100% - 44px));
  margin: 70px auto 0;
  min-height: 170px;
}
.focus-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 34px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.focus-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.orb {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 10px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    conic-gradient(from 35deg, #b8923e, #f4e6b7, #d5b766, #8b6b24, #b8923e) border-box;
  box-shadow: 0 16px 30px rgba(7,10,13,.16);
  font-weight: 900;
}
.focus-dots {
  position: absolute;
  top: 50%;
  right: -70px;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}
.focus-dots button {
  width: 9px;
  height: 28px;
  border: 0;
  border-radius: 99px;
  background: #d1d1d1;
  cursor: pointer;
}
.focus-dots button.is-active { background: var(--ink); }

.hover-explainer {
  padding: clamp(70px, 8vw, 118px) 0;
}
.hover-grid {
  width: min(1180px, calc(100% - 44px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hover-grid article {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(7,10,13,.15);
}
.hover-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.hover-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,10,13,.88));
}
.hover-grid h3,
.hover-grid p {
  position: relative;
  z-index: 1;
  margin-inline: 24px;
  color: var(--white);
}
.hover-grid h3 { margin-top: 205px; }
.hover-grid p {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
  font-weight: 750;
}
.hover-grid article:hover img,
.hover-grid article:focus img { transform: scale(1.1); }
.hover-grid article:hover p,
.hover-grid article:focus p { opacity: 1; transform: translateY(0); }
.join-band,
.service-end {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 7vw, 86px) clamp(22px, 8vw, 140px);
  background: var(--paper);
}
.join-band { text-align: center; grid-template-columns: 1fr; }
.join-band p { max-width: 760px; margin-inline: auto; color: var(--muted); font-weight: 700; }

.service-detail {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}
.service-detail:nth-of-type(odd) { direction: rtl; }
.service-detail:nth-of-type(odd) > * { direction: ltr; }
.carousel {
  position: relative;
  overflow: hidden;
}
.car-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track article {
  position: relative;
  min-height: 430px;
  scroll-snap-align: start;
}
.car-track img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.car-track article h3,
.car-track article p {
  position: absolute;
  left: 56px;
  right: 28px;
  bottom: 55px;
  z-index: 1;
  color: var(--white);
}
.car-track article h3 { bottom: 120px; }
.car-track article p {
  margin: 0;
  max-width: 430px;
  font-weight: 800;
}
.car-track article::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  height: 155px;
  background: var(--ink);
  border-top: 6px solid var(--blue);
}
.car-btn {
  position: absolute;
  top: 39%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(7,10,13,.62);
  cursor: pointer;
}
.car-btn:hover { background: var(--ink); }
.car-btn.prev { left: 14px; }
.car-btn.next { right: 14px; }
.service-end {
  color: var(--white);
  background: var(--ink);
}
.service-end p { color: rgba(255,255,255,.78); }

.contact-grid {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.map-row {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 40px 0 clamp(56px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.map-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201,162,76,.88), rgba(7,10,13,.82)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 38px);
}
.map-card.alt {
  background:
    linear-gradient(135deg, rgba(31,157,85,.86), rgba(7,10,13,.82)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 38px);
}
.map-card span { color: var(--gold-light); font-weight: 900; text-transform: uppercase; }
.map-card strong { font-size: clamp(36px, 5vw, 70px); line-height: 1; }
.map-card p { max-width: 430px; font-weight: 800; }
.form-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}
.contact-form .wide { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(7,10,13,.18);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}
.contact-form button { justify-self: start; }

.site-footer {
  color: rgba(255,255,255,.82);
  background: #202020;
}
.footer-main {
  min-height: 128px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto 1fr 1fr;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}
.footer-brand strong { color: var(--white); }
.footer-cta {
  min-width: 160px;
  padding: 13px 22px;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-columns {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-columns h3 { color: var(--white); font-size: 16px; }
.footer-columns a,
.footer-columns p {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.45;
}
.legal-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 20px;
  color: rgba(255,255,255,.82);
  background: #111111;
  font-size: 13px;
  font-weight: 800;
}
.compact .footer-main { min-height: 116px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .site-header { padding-inline: 22px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 22px 22px;
    background: rgba(7,10,13,.96);
    border-bottom: 1px solid rgba(255,255,255,.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav > a,
  .nav-dropdown > a { padding: 15px 0; }
  .dropdown-panel {
    position: static;
    min-width: 0;
    padding: 4px 0 8px 12px;
    box-shadow: none;
    border: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .dropdown-panel a { padding: 10px 12px; }
  .hero-amp { opacity: .18; }
  .split-section,
  .angled-feature,
  .metrics,
  .service-detail,
  .form-section {
    grid-template-columns: 1fr;
  }
  .split-section { align-items: start; }
  .floating-note,
  .angled-feature aside {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -42px;
    width: min(92%, 420px);
  }
  .service-bands,
  .hover-grid,
  .metric-grid,
  .contact-grid,
  .map-row,
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 30px;
  }
  .focus-dots { right: -28px; }
}

@media (max-width: 680px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  .brand strong { font-size: 20px; }
  .site-header { min-height: 66px; }
  .hero,
  .video-hero {
    min-height: 86svh;
    padding: 112px 22px 54px;
  }
  .hero-copy h1,
  .page-hero .hero-copy h1,
  .video-hero .hero-copy h1,
  .contact-hero .hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .news-strip {
    grid-template-columns: 1fr;
  }
  .news-strip strong { justify-content: start; place-items: center start; }
  .news-track { padding: 14px 22px; }
  .split-section,
  .angled-feature,
  .metrics,
  .service-detail,
  .form-section {
    width: min(100% - 32px, 1180px);
    padding-block: 58px;
  }
  .service-bands,
  .hover-grid,
  .metric-grid,
  .contact-grid,
  .map-row,
  .footer-columns,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .service-band { min-height: 300px; }
  .history-row {
    grid-template-columns: repeat(4, minmax(245px, 78vw));
  }
  .focus-slider {
    min-height: 260px;
    margin-top: 44px;
  }
  .focus-slide {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    justify-items: center;
  }
  .focus-dots {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 280px;
    transform: none;
  }
  .focus-dots button {
    width: 28px;
    height: 9px;
  }
  .car-track { grid-auto-columns: 92%; }
  .car-track article { min-height: 390px; }
  .car-track img { height: 270px; }
  .car-track article::after {
    left: 16px;
    right: 16px;
  }
  .car-track article h3,
  .car-track article p {
    left: 34px;
    right: 28px;
  }
  .join-band,
  .service-end {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.02);
}
.services-head {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.lang-mini {
  display: flex;
  gap: 26px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}
.service-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 76px;
}
.service-carousel .service-bands {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 33.3333%;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.service-carousel .service-bands::-webkit-scrollbar { display: none; }
.service-carousel .service-band {
  scroll-snap-align: start;
  min-height: 390px;
}
.service-carousel .service-band p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, max-height .22s ease, margin .22s ease;
}
.service-carousel .service-band:hover p,
.service-carousel .service-band:focus p {
  opacity: 1;
  max-height: 150px;
  margin-top: 16px;
  transform: translateY(0);
}
.service-carousel .service-band:hover::after,
.service-carousel .service-band:focus::after {
  background: linear-gradient(180deg, rgba(201,162,76,.42), rgba(7,10,13,.96));
}
.service-arrows {
  position: absolute;
  right: clamp(24px, 5vw, 70px);
  bottom: 22px;
  display: flex;
  gap: 22px;
}
.service-arrows button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}
.action-metrics {
  padding: clamp(62px, 8vw, 98px) clamp(22px, 7vw, 110px);
  text-align: center;
  background: var(--white);
}
.action-metrics h2 {
  max-width: 860px;
  margin-inline: auto;
}
.action-metrics > p {
  max-width: 720px;
  margin: 0 auto 20px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 38px;
  margin: 0 auto 48px;
  padding: 10px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.stat-row {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat-row article { text-align: center; }
.stat-row strong {
  display: block;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  text-shadow: 4px 5px 0 rgba(0,0,0,.18);
}
.stat-row span {
  display: block;
  max-width: 190px;
  margin: 14px auto 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}
.footer-main {
  grid-template-columns: minmax(180px, .85fr) auto 1fr 1fr 1fr;
}
.social-block p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
}
.social-block div {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-block a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #1d1d1d;
  background: #e6e6e6;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 900;
}
.legal-line {
  gap: 8px 22px;
  text-align: center;
}
.legal-line strong,
.legal-line small {
  flex-basis: 100%;
}
.legal-line strong {
  color: var(--white);
  font-size: 13px;
}
.legal-line small {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .service-carousel .service-bands { grid-auto-columns: 54%; }
  .footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .services-head { display: block; }
  .lang-mini { margin-top: 12px; }
  .service-carousel .service-bands { grid-auto-columns: 86%; }
  .service-carousel .service-band p { opacity: 1; max-height: none; margin-top: 14px; transform: none; }
  .service-arrows { right: 22px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .action-metrics { padding-inline: 18px; }
}



.brand-logo-img {
  display: block;
  width: min(210px, 36vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.site-header.is-scrolled .brand-logo-img { max-height: 50px; }
.footer-brand .brand-logo-img { width: min(190px, 48vw); max-height: 60px; }
.social-block .social-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #e8e8e8;
  background: transparent;
  border-radius: 0;
}
.social-block .social-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}
.social-block .social-icon:hover { color: var(--gold-light); }
@media (max-width: 680px) {
  .brand-logo-img { width: 150px; max-height: 46px; }
  .footer-brand .brand-logo-img { width: 170px; }
}



/* ARGUI differentiation pass: premium, but less referential to the source site. */
.hero-amp {
  right: clamp(-18px, 2vw, 70px);
  bottom: clamp(24px, 8vw, 96px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(241, 212, 132, .28);
  text-stroke: 2px rgba(241, 212, 132, .28);
  font-size: clamp(210px, 31vw, 520px);
  line-height: .8;
  transform: rotate(-8deg);
  opacity: .9;
}
.services-preview {
  background:
    radial-gradient(circle at 85% 8%, rgba(201,162,76,.18), transparent 28%),
    linear-gradient(180deg, #050706, #11140f 74%, #050706);
}
.services-head {
  border-left: 5px solid var(--gold);
  padding-left: 22px;
}
.service-carousel {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 82px;
}
.service-carousel .service-bands {
  grid-auto-columns: 31.2%;
  gap: 16px;
  padding: 2px;
}
.service-carousel .service-band {
  min-height: 365px;
  border-radius: 8px;
  border: 1px solid rgba(241,212,132,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 44px rgba(0,0,0,.26);
}
.service-band::after {
  background:
    linear-gradient(180deg, rgba(13,111,42,.2), rgba(7,10,13,.92)),
    linear-gradient(90deg, rgba(201,162,76,.24), transparent 46%);
  mix-blend-mode: normal;
}
.service-band:nth-child(2)::after,
.service-band:nth-child(3)::after {
  background:
    linear-gradient(180deg, rgba(13,111,42,.24), rgba(7,10,13,.92)),
    linear-gradient(90deg, rgba(201,162,76,.22), transparent 48%);
}
.service-carousel .service-band:hover::after,
.service-carousel .service-band:focus::after {
  background:
    linear-gradient(180deg, rgba(13,111,42,.34), rgba(7,10,13,.97)),
    linear-gradient(90deg, rgba(201,162,76,.34), transparent 50%);
}
.service-arrows button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241,212,132,.42);
  border-radius: 50%;
  font-size: 34px;
  background: rgba(255,255,255,.04);
}
.service-arrows button:hover {
  background: rgba(201,162,76,.16);
}
.action-metrics {
  background:
    linear-gradient(180deg, #ffffff, #f7f8f4),
    radial-gradient(circle at 50% 0, rgba(201,162,76,.12), transparent 32%);
}
.stat-row article {
  padding-top: 18px;
  border-top: 3px solid rgba(201,162,76,.58);
}
.stat-row strong {
  text-shadow: 3px 4px 0 rgba(31,157,85,.16);
}
.legal-line {
  padding-block: 18px 22px;
  letter-spacing: .01em;
}
@media (max-width: 1000px) {
  .service-carousel .service-bands { grid-auto-columns: 48%; }
}
@media (max-width: 680px) {
  .hero-amp { opacity: .28; right: -44px; bottom: 28px; }
  .service-carousel { width: min(100% - 28px, 1220px); }
  .service-carousel .service-bands { grid-auto-columns: 88%; }
}

/* Hero mark restored to the first solid premium treatment requested. */
.hero-amp {
  right: clamp(-76px, -3vw, 38px);
  bottom: -92px;
  color: rgba(255,255,255,.92);
  -webkit-text-stroke: 0 transparent;
  text-stroke: 0 transparent;
  font-size: clamp(280px, 42vw, 680px);
  line-height: .72;
  transform: none;
  opacity: 1;
}
@media (max-width: 1000px) {
  .hero-amp { opacity: .18; }
}
@media (max-width: 680px) {
  .hero-amp { right: -78px; bottom: -40px; opacity: .16; }
}

/* ARGUI requested refinement overrides */
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 30px;
}

.footer-main > span {
  white-space: nowrap;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.footer-brand { flex: 0 1 190px; }
.footer-cta { flex: 0 0 auto; }
.social-block { flex: 0 1 210px; }

.contact-email-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-row .map-card strong {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.governance-row article {
  min-height: 245px;
}

.governance-row strong {
  font-size: clamp(28px, 3vw, 48px);
}

.service-bands,
.car-track {
  scroll-behavior: smooth;
}

@media (max-width: 1120px) {
  .footer-main {
    justify-content: flex-start;
  }
  .footer-main > span,
  .social-block {
    flex: 1 1 230px;
  }
}

@media (max-width: 760px) {
  .contact-email-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    align-items: flex-start;
  }
  .footer-main > span,
  .social-block,
  .footer-brand {
    flex: 1 1 100%;
  }
}
/* ARGUI hero scale and formation refinement */
.hero-copy {
  max-width: 700px;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.02;
  max-width: 820px;
}

.page-hero .hero-copy h1,
.video-hero .hero-copy h1,
.contact-hero .hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.04;
  max-width: 860px;
}

.hero-copy p:not(.eyebrow) {
  font-size: clamp(15px, 1.25vw, 18px);
  max-width: 590px;
}

.brand-free {
  color: #9ee86f;
  font-weight: 900;
}

.brand-method {
  color: #9ee86f;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-main .social-block {
  margin-left: auto;
  text-align: right;
}

.footer-main .social-block div {
  justify-content: flex-end;
}

@media (max-width: 680px) {
  .hero-copy h1,
  .page-hero .hero-copy h1,
  .video-hero .hero-copy h1,
  .contact-hero .hero-copy h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }
  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .footer-main .social-block {
    margin-left: 0;
    text-align: left;
  }
  .footer-main .social-block div {
    justify-content: flex-start;
  }
}
/* ARGUI content QA and formation card fix */
.service-detail .carousel {
  overflow: hidden;
  padding-bottom: 8px;
}

.service-detail .car-track {
  grid-auto-columns: 100%;
  gap: 22px;
}

.service-detail .car-track article {
  min-height: 500px;
  overflow: hidden;
}

.service-detail .car-track img {
  height: 320px;
}

.service-detail .car-track article::after {
  left: 34px;
  right: 34px;
  height: 205px;
}

.service-detail .car-track article h3 {
  left: 58px;
  right: 58px;
  bottom: 132px;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.service-detail .car-track article p {
  left: 58px;
  right: 58px;
  bottom: 42px;
  max-width: none;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.formation-detail {
  grid-template-columns: 1.12fr .88fr;
}

.formation-detail .detail-copy {
  max-width: 560px;
}

.formation-detail .brand-free,
.formation-detail .brand-method,
.service-band .brand-free,
.service-band .brand-method {
  color: #9ee86f;
}

.resource-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(64px, 8vw, 110px) clamp(22px, 8vw, 130px);
  background: #f4f7f3;
}

.resource-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
}

.resource-copy p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}

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

.resource-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(15,23,30,.12);
  background: var(--white);
}

.resource-grid span {
  color: var(--blue);
  font-weight: 900;
}

.resource-grid h3 {
  margin: 20px 0 10px;
  font-size: 21px;
  line-height: 1.08;
}

.resource-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .formation-detail,
  .resource-section {
    grid-template-columns: 1fr;
  }
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-detail .car-track article {
    min-height: 455px;
  }
  .service-detail .car-track img {
    height: 250px;
  }
  .service-detail .car-track article::after {
    left: 14px;
    right: 14px;
    height: 215px;
  }
  .service-detail .car-track article h3 {
    left: 30px;
    right: 30px;
    bottom: 145px;
    font-size: 24px;
  }
  .service-detail .car-track article p {
    left: 30px;
    right: 30px;
    bottom: 34px;
    font-size: 14px;
  }
  .resource-grid {
    grid-template-columns: 1fr;
  }
}
/* ARGUI premium visual correction 2026-07-02 */
:root {
  --blue: #c9a24c;
  --bronze: #8d6a27;
  --charcoal: #0b0f12;
  --olive: #496246;
}

.split-section {
  grid-template-columns: .42fr .92fr 1.08fr;
  gap: clamp(24px, 3.2vw, 52px);
  align-items: center;
}

.section-kicker {
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--ink);
}

.split-copy h2,
.angled-feature h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.06;
  max-width: 760px;
}

.split-copy p,
.angled-feature p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.7;
}

.image-stack {
  display: grid;
  gap: 0;
  min-height: 0;
}

.image-stack img,
.angled-feature img {
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7,10,13,.12);
}

.floating-note,
.angled-feature aside {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(520px, calc(100% - 34px));
  margin: -34px auto 0;
  padding: 16px 20px;
  border-top: 3px solid var(--gold);
  background: rgba(7,10,13,.94);
  box-shadow: 0 18px 34px rgba(7,10,13,.16);
  font-size: 13px;
  line-height: 1.45;
}

.angled-feature aside {
  margin: 18px 0 0;
  width: min(520px, 100%);
  border-top: 0;
  border-left: 4px solid var(--gold);
}

.services-preview {
  --active-accent: #c9a24c;
  --active-accent-dark: #17130b;
  background:
    radial-gradient(circle at 78% 8%, color-mix(in srgb, var(--active-accent) 28%, transparent), transparent 34%),
    linear-gradient(135deg, #070a0d 0%, var(--active-accent-dark) 100%);
  transition: background .45s ease;
}

.services-preview.accent-gestion { --active-accent: #c9a24c; --active-accent-dark: #181207; }
.services-preview.accent-tecnologia { --active-accent: #7f8a72; --active-accent-dark: #101610; }
.services-preview.accent-marketing { --active-accent: #b88a43; --active-accent-dark: #171008; }
.services-preview.accent-formacion { --active-accent: #7ddf62; --active-accent-dark: #0e170d; }
.services-preview.accent-datos { --active-accent: #d7bb72; --active-accent-dark: #18150a; }
.services-preview.accent-recursos { --active-accent: #a99155; --active-accent-dark: #15120c; }

.service-carousel .service-band {
  border-color: rgba(241,212,132,.26);
}

.service-band::after,
.service-band:nth-child(2)::after,
.service-band:nth-child(3)::after {
  background:
    linear-gradient(180deg, rgba(201,162,76,.08), rgba(7,10,13,.88)),
    linear-gradient(90deg, rgba(201,162,76,.28), transparent 52%);
}

.service-carousel .service-band:hover::after,
.service-carousel .service-band:focus::after,
.service-carousel .service-band.is-band-active::after {
  background:
    linear-gradient(180deg, rgba(201,162,76,.24), rgba(7,10,13,.94)),
    linear-gradient(90deg, color-mix(in srgb, var(--active-accent) 38%, transparent), transparent 54%);
}

.service-arrows button,
.car-btn {
  background: rgba(7,10,13,.72);
  border: 1px solid rgba(241,212,132,.36);
}

.service-arrows button:hover,
.car-btn:hover {
  color: var(--ink);
  background: var(--gold-light);
}

.service-detail .car-track {
  grid-auto-columns: 86%;
}

.service-detail .car-track article {
  min-height: 374px;
}

.service-detail .car-track img {
  height: 300px;
  border-radius: 8px;
}

.service-detail .car-track article::after {
  left: 28px;
  right: auto;
  bottom: 16px;
  width: min(470px, calc(100% - 56px));
  height: 132px;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  background: rgba(7,10,13,.92);
}

.service-detail .car-track article h3 {
  left: 50px;
  right: auto;
  bottom: 92px;
  width: min(390px, calc(100% - 96px));
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.06;
}

.service-detail .car-track article p {
  left: 50px;
  right: auto;
  bottom: 30px;
  width: min(390px, calc(100% - 96px));
  max-width: none;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 800;
}

.formation-detail .car-track article h3 {
  font-size: clamp(22px, 1.8vw, 30px);
}

.resource-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(201,162,76,.18), transparent 34%),
    linear-gradient(135deg, #f7f5ee, #ffffff 62%);
}

.resource-grid article {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  cursor: default;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, background .26s ease;
}

.resource-grid article::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,162,76,.14);
  transform: scale(.82);
  transition: transform .26s ease, background .26s ease;
}

.resource-grid article:hover,
.resource-grid article:focus-within,
.resource-grid article.is-resource-active {
  transform: translateY(-8px);
  border-color: rgba(201,162,76,.62);
  background: #fffdf8;
  box-shadow: 0 22px 44px rgba(7,10,13,.12);
}

.resource-grid article:hover::before,
.resource-grid article:focus-within::before,
.resource-grid article.is-resource-active::before {
  transform: scale(1.24);
  background: rgba(201,162,76,.24);
}

.resource-grid span {
  color: var(--gold);
}

.contact-email-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid article h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.contact-grid article p {
  max-width: 430px;
  color: var(--muted);
  font-weight: 750;
}

.contact-grid article a {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.map-card,
.map-card.alt {
  min-height: 255px;
  background:
    linear-gradient(135deg, rgba(201,162,76,.86), rgba(7,10,13,.9)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 38px);
}

.map-card.alt {
  background:
    linear-gradient(135deg, rgba(73,98,70,.9), rgba(7,10,13,.9)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 38px);
}

.map-card strong {
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.06;
}

@media (max-width: 980px) {
  .split-section {
    grid-template-columns: 1fr;
  }
  .section-kicker {
    font-size: 32px;
  }
  .floating-note,
  .angled-feature aside {
    margin-top: 12px;
    width: 100%;
  }
  .service-detail .car-track {
    grid-auto-columns: 92%;
  }
}

@media (max-width: 680px) {
  .split-copy h2,
  .angled-feature h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .service-detail .car-track article {
    min-height: 392px;
  }
  .service-detail .car-track img {
    height: 255px;
  }
  .service-detail .car-track article::after {
    left: 14px;
    width: calc(100% - 28px);
    height: 145px;
  }
  .service-detail .car-track article h3,
  .service-detail .car-track article p {
    left: 30px;
    width: calc(100% - 60px);
  }
  .service-detail .car-track article h3 {
    bottom: 104px;
    font-size: 23px;
  }
  .service-detail .car-track article p {
    bottom: 26px;
    font-size: 13px;
  }
  .contact-email-grid--two,
  .map-row {
    grid-template-columns: 1fr;
  }
}
/* ARGUI final chameleon and polish pass */
:root {
  --champagne: #dbc17a;
  --champagne-soft: #f4e6b7;
  --deep-green: #1f4d3a;
  --sage-elegant: #6f7d66;
  --graphite: #101417;
}

.site-header {
  --header-accent: var(--champagne);
  --header-glow: rgba(219,193,122,.18);
  background:
    linear-gradient(90deg, rgba(7,10,13,.78), rgba(16,20,23,.72)),
    radial-gradient(circle at 74% 0%, var(--header-glow), transparent 36%);
  border-bottom-color: color-mix(in srgb, var(--header-accent) 42%, transparent);
  transition: background .45s ease, border-color .45s ease, box-shadow .45s ease, min-height .22s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 6vw, 132px);
  right: clamp(18px, 6vw, 132px);
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--header-accent), transparent);
  opacity: .72;
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(7,10,13,.96), rgba(16,20,23,.93)),
    radial-gradient(circle at 76% 0%, var(--header-glow), transparent 34%);
}

.site-header.header-theme-hero { --header-accent: #dbc17a; --header-glow: rgba(219,193,122,.2); }
.site-header.header-theme-champagne { --header-accent: #d9c28c; --header-glow: rgba(217,194,140,.24); }
.site-header.header-theme-emerald { --header-accent: #83b985; --header-glow: rgba(83,137,93,.24); }
.site-header.header-theme-services { --header-accent: #e1c373; --header-glow: rgba(225,195,115,.25); }
.site-header.header-theme-formation { --header-accent: #8de071; --header-glow: rgba(141,224,113,.22); }
.site-header.header-theme-contact { --header-accent: #c7b484; --header-glow: rgba(199,180,132,.22); }

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--header-accent);
}

.nav-cta:hover {
  background: var(--header-accent);
}

.orb {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    conic-gradient(from 35deg, #b8923e, #f4e6b7, #d5b766, #8b6b24, #b8923e) border-box;
  box-shadow: 0 16px 30px rgba(201,162,76,.2);
}

.focus-dots button.is-active {
  background: var(--gold);
}

.services-preview {
  --active-accent: #dbc17a;
  --active-accent-dark: #101417;
  background:
    radial-gradient(circle at 78% 8%, color-mix(in srgb, var(--active-accent) 18%, transparent), transparent 32%),
    linear-gradient(135deg, #070a0d 0%, var(--active-accent-dark) 100%);
}

.services-preview.accent-gestion { --active-accent: #dbc17a; --active-accent-dark: #101417; }
.services-preview.accent-tecnologia { --active-accent: #7e9b84; --active-accent-dark: #0c1512; }
.services-preview.accent-marketing { --active-accent: #d0ad68; --active-accent-dark: #12110e; }
.services-preview.accent-formacion { --active-accent: #8de071; --active-accent-dark: #0b150c; }
.services-preview.accent-datos { --active-accent: #d9c28c; --active-accent-dark: #111411; }
.services-preview.accent-recursos { --active-accent: #b9ad8c; --active-accent-dark: #101417; }

.map-card,
.map-card.alt {
  background:
    linear-gradient(135deg, rgba(16,20,23,.96), rgba(31,77,58,.88)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 38px);
}

.map-card.alt {
  background:
    linear-gradient(135deg, rgba(16,20,23,.96), rgba(111,125,102,.82)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 38px);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  color: var(--ink);
  background: #f7f3e4;
  border: 1px solid rgba(201,162,76,.28);
  border-left: 4px solid var(--champagne);
}

.process-flow span {
  position: relative;
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px 8px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 18px rgba(7,10,13,.08);
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

.process-flow span::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 7px;
  height: 2px;
  background: var(--champagne);
  transition: left .24s ease, right .24s ease;
}

.process-flow span.is-flow-active {
  transform: translateY(-4px);
  background: var(--graphite);
  color: var(--champagne-soft);
}

.process-flow span.is-flow-active::after {
  left: 18px;
  right: 18px;
}

.formation-detail .car-track article h3 {
  bottom: 82px;
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.04;
}

.formation-detail .car-track article p {
  bottom: 30px;
  font-size: 13px;
  line-height: 1.35;
}

.formation-detail .car-track article::after {
  height: 118px;
}

.resource-grid article,
.history-row article,
.hover-grid article,
.stat-row article,
.contact-grid article,
.car-track article {
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease, filter .26s ease;
}

.resource-grid article:hover,
.resource-grid article:focus-within,
.resource-grid article.is-resource-active,
.history-row article:hover,
.history-row article.is-card-active,
.hover-grid article:hover,
.hover-grid article.is-card-active,
.stat-row article:hover,
.stat-row article.is-card-active,
.contact-grid article:hover,
.contact-grid article.is-card-active,
.car-track article:hover,
.car-track article.is-card-active {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(7,10,13,.14);
  border-color: rgba(219,193,122,.55);
}

.car-track article:hover img,
.car-track article.is-card-active img {
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 760px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
  .process-flow span {
    min-height: 46px;
  }
}
/* ARGUI final navigation, hierarchy and motion correction 2026-07-02 */
.header-lang {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 2px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

.header-lang span:first-child {
  color: var(--header-accent, var(--champagne));
}

.header-lang span {
  transition: color .25s ease, opacity .25s ease;
}

.site-header.is-scrolled .header-lang,
.site-header.header-theme-champagne .header-lang,
.site-header.header-theme-services .header-lang,
.site-header.header-theme-formation .header-lang,
.site-header.header-theme-contact .header-lang {
  color: rgba(255,255,255,.84);
}

.services-head .lang-mini {
  display: none;
}

.home-about {
  grid-template-columns: minmax(0, .96fr) minmax(380px, 1.04fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: clamp(74px, 8vw, 118px);
}

.home-about .section-kicker {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: clamp(-30px, -2vw, -14px);
}

.home-about .split-copy {
  align-self: center;
  padding-top: clamp(18px, 2.4vw, 36px);
}

.home-about .split-copy h2 {
  max-width: 690px;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.02;
}

.home-about .split-copy p {
  max-width: 620px;
}

.home-about .image-stack {
  align-self: center;
  min-height: 340px;
}

.home-about .image-stack img {
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(7,10,13,.12);
}

.home-about .floating-note {
  left: clamp(18px, 3vw, 54px);
  right: 18px;
  bottom: -40px;
  width: auto;
  max-width: 520px;
  padding: 18px 20px;
  border-top-color: var(--champagne);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.45;
}

.process-flow {
  width: min(720px, 100%);
  max-width: 720px;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
  padding: 16px;
}

.process-flow span {
  min-height: 56px;
  padding: 11px 10px;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.18;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.process-flow span.is-flow-active {
  transform: translateY(-3px);
}

@keyframes arguiHeroTitleRise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy h1 {
  animation: arguiHeroTitleRise .82s cubic-bezier(.2,.78,.2,1) .1s both;
}

.hero-copy .eyebrow,
.hero-copy p:not(.eyebrow),
.hero-copy .button-row {
  animation: arguiHeroTitleRise .72s cubic-bezier(.2,.78,.2,1) .22s both;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: clamp(10px, 1.35vw, 18px);
    font-size: 12px;
  }
  .nav-cta {
    min-width: 112px;
    padding-inline: 14px !important;
  }
}

@media (max-width: 1000px) {
  .header-lang {
    justify-content: flex-start;
    padding: 12px 0 8px;
  }
  .home-about {
    grid-template-columns: 1fr;
  }
  .home-about .section-kicker {
    margin-bottom: -18px;
  }
  .home-about .split-copy {
    padding-top: 10px;
  }
  .home-about .floating-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -34px auto 0;
    width: calc(100% - 32px);
  }
}

@media (max-width: 680px) {
  .home-about .split-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .home-about .section-kicker {
    margin-bottom: -8px;
  }
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }
  .process-flow span {
    min-height: 50px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy h1,
  .hero-copy .eyebrow,
  .hero-copy p:not(.eyebrow),
  .hero-copy .button-row {
    animation: none;
  }
}
/* ARGUI hero reveal timing correction */
.hero-copy.reveal h1,
.hero-copy.reveal .eyebrow,
.hero-copy.reveal p:not(.eyebrow),
.hero-copy.reveal .button-row {
  opacity: 0;
  transform: translateY(34px);
  animation: none;
}

.hero-copy.reveal.is-visible h1 {
  animation: arguiHeroTitleRise .82s cubic-bezier(.2,.78,.2,1) .08s both;
}

.hero-copy.reveal.is-visible .eyebrow,
.hero-copy.reveal.is-visible p:not(.eyebrow),
.hero-copy.reveal.is-visible .button-row {
  animation: arguiHeroTitleRise .72s cubic-bezier(.2,.78,.2,1) .22s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy.reveal h1,
  .hero-copy.reveal .eyebrow,
  .hero-copy.reveal p:not(.eyebrow),
  .hero-copy.reveal .button-row {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* ARGUI home about title fit correction */
.home-about .split-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  padding-bottom: .08em;
  overflow: visible;
}

@media (max-width: 680px) {
  .home-about .split-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.06;
  }
}
/* ARGUI requested micro video and seventh item refinement */
.hero-home {
  min-height: 100svh;
  isolation: isolate;
}

.hero-home .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.98) contrast(1.08) brightness(.88);
  transform: scale(1.035);
  animation: arguiVideoBreath 10s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-home .hero-scrim {
  background:
    radial-gradient(circle at 72% 40%, rgba(201,162,76,.16), transparent 30%),
    linear-gradient(90deg, rgba(7,10,13,.9), rgba(7,10,13,.58) 48%, rgba(7,10,13,.3)),
    linear-gradient(180deg, rgba(7,10,13,.34), rgba(7,10,13,.18));
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7,10,13,.28) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  mix-blend-mode: screen;
  opacity: .42;
}

@keyframes arguiVideoBreath {
  0% { transform: scale(1.035) translate3d(0, 0, 0); }
  50% { transform: scale(1.085) translate3d(-1%, .7%, 0); }
  100% { transform: scale(1.045) translate3d(1%, -.6%, 0); }
}

.services-preview.accent-proposito {
  --active-accent: #c8b06a;
  --active-accent-dark: #12110d;
}

.service-band:nth-child(7)::after {
  background: linear-gradient(180deg, rgba(200,176,106,.44), rgba(7,10,13,.92));
}

.service-carousel .service-band:nth-child(7):hover::after,
.service-carousel .service-band:nth-child(7):focus::after,
.service-carousel .service-band:nth-child(7).is-band-active::after {
  background: linear-gradient(180deg, rgba(200,176,106,.54), rgba(7,10,13,.97));
}

.resource-grid article:nth-child(7) {
  background: linear-gradient(135deg, #101417, #2d2a20);
  color: var(--white);
  border-color: rgba(200,176,106,.46);
}

.resource-grid article:nth-child(7) span,
.resource-grid article:nth-child(7) h3 {
  color: var(--champagne-soft);
}

.resource-grid article:nth-child(7) p {
  color: rgba(255,255,255,.82);
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-video-bg {
    animation: none;
  }
}
/* ARGUI contact strip replacement */
.contact-strip {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact-strip-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7,10,13,.76), rgba(7,10,13,.42) 48%, rgba(7,10,13,.25)),
    url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1800&q=80');
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  filter: saturate(.92) contrast(1.04);
}

.contact-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 55%, rgba(201,162,76,.2), transparent 30%);
  pointer-events: none;
}

.contact-strip-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  max-width: 720px;
  justify-self: start;
}

.contact-strip-content h2 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: .98;
}

.contact-strip-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.contact-strip-mails {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 900;
}

.contact-strip-mails a {
  width: fit-content;
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid rgba(201,162,76,.78);
  transition: color .2s ease, border-color .2s ease;
}

.contact-strip-mails a:hover,
.contact-strip-mails a:focus {
  color: var(--champagne-soft);
  border-color: var(--champagne-soft);
}

@media (max-width: 680px) {
  .contact-strip {
    min-height: 440px;
  }
  .contact-strip-content h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
}
/* ARGUI contact strip title fit */
.contact-strip-content h2 {
  line-height: 1.04;
  padding-bottom: .08em;
  overflow: visible;
}
/* ARGUI card text clipping guard after image replacement */
.service-band h3,
.service-band p,
.car-track article h3,
.car-track article p,
.hover-grid article h3,
.hover-grid article p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.car-track article h3 {
  line-height: 1.12;
  padding-bottom: .08em;
  overflow: visible;
}

.car-track article p {
  line-height: 1.42;
  overflow: visible;
}

.service-carousel .service-band:hover p,
.service-carousel .service-band:focus p,
.service-carousel .service-band.is-band-active p {
  opacity: 1;
  max-height: 190px;
  margin-top: 14px;
  transform: translateY(0);
}
/* ARGUI nosotros hero video and governance premium pass */
.page-hero-video {
  min-height: 78svh;
  isolation: isolate;
}

.page-hero-video .page-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.08) brightness(.82);
  transform: scale(1.035);
  animation: arguiVideoBreath 10s ease-in-out infinite alternate;
}

.page-hero-video .hero-scrim {
  background:
    radial-gradient(circle at 78% 38%, rgba(201,162,76,.14), transparent 30%),
    linear-gradient(90deg, rgba(7,10,13,.9), rgba(7,10,13,.62) 48%, rgba(7,10,13,.28)),
    linear-gradient(180deg, rgba(7,10,13,.34), rgba(7,10,13,.14));
}

.history-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) 0;
  background: linear-gradient(135deg, #090d10 0%, #151711 52%, #272115 100%);
}

.history-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(7,10,13,.9), rgba(7,10,13,.58)),
    url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  opacity: .54;
}

.history-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(201,162,76,.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 116px);
  pointer-events: none;
}

.history-section .container {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.history-section h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 74px);
  line-height: .98;
  margin-bottom: 24px;
}

.history-section .container > p {
  max-width: 560px;
  margin: 0;
  padding: 22px 0 0 22px;
  border-left: 4px solid var(--champagne);
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  font-weight: 750;
}

.history-row.governance-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding-top: 0;
}

.governance-row article {
  min-height: 0;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(255,255,255,.24);
  border-top: 3px solid rgba(219,193,122,.86);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 44px rgba(0,0,0,.18);
}

.governance-row strong {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.06;
}

.governance-row p {
  color: #39434c;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 720;
}

@media (max-width: 980px) {
  .history-section .container {
    grid-template-columns: 1fr;
  }
  .history-row.governance-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .page-hero-video {
    min-height: 84svh;
  }
  .history-section h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .history-section .container > p {
    padding-left: 16px;
  }
  .history-row.governance-row {
    grid-template-columns: 1fr;
  }
}
/* ARGUI governance grid placement correction */
.history-section h2 {
  grid-column: 1;
  grid-row: 1;
}

.history-section .container > p {
  grid-column: 1;
  grid-row: 2;
}

.history-row.governance-row {
  grid-column: 2;
  grid-row: 1 / span 2;
}

@media (max-width: 980px) {
  .history-section h2,
  .history-section .container > p,
  .history-row.governance-row {
    grid-column: auto;
    grid-row: auto;
  }
}
/* ARGUI premium title fit after nosotros update */
.history-section h2,
.governance-row strong,
.angled-feature h2 {
  padding-bottom: .08em;
  overflow: visible;
}

.history-section .container > p,
.governance-row p,
.angled-feature p {
  overflow: visible;
}
/* ARGUI governance title breathing correction */
.history-section h2 {
  line-height: 1.06;
  padding-bottom: .18em;
}
/* ARGUI visual credibility and seamless banner pass */
.home-about .image-stack img,
.hover-grid img,
.car-track article img {
  filter: saturate(.94) contrast(1.04) brightness(.98);
}

.service-band::before {
  filter: saturate(.9) contrast(1.04) brightness(.9);
}

.page-hero-video {
  margin-bottom: -2px;
}

.page-hero-video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: clamp(150px, 18vw, 230px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9,13,16,0), rgba(9,13,16,.78) 58%, #090d10 100%);
}

.page-hero-video .hero-scrim {
  z-index: 1;
}

.page-hero-video .hero-copy {
  z-index: 3;
}

.history-section {
  margin-top: -2px;
  padding-top: clamp(96px, 10vw, 148px);
}

.history-section::before {
  background-position: center 48%;
  opacity: .42;
  filter: saturate(.88) contrast(1.08) brightness(.78);
}

.history-section::after {
  background:
    linear-gradient(180deg, #090d10 0%, rgba(9,13,16,.88) 8%, rgba(9,13,16,0) 30%),
    linear-gradient(90deg, rgba(201,162,76,.16), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 116px);
}

@media (max-width: 680px) {
  .page-hero-video::after {
    height: 180px;
  }
  .history-section {
    padding-top: 82px;
  }
}
/* ARGUI user-provided media integration pass */
.home-about .image-stack video,
.home-about .image-stack .home-about-video {
  display: block;
  width: 100%;
  min-height: 340px;
  height: clamp(340px, 34vw, 470px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(7,10,13,.12);
  filter: saturate(.98) contrast(1.04) brightness(.98);
  background: #090d10;
}

.contact-strip-bg {
  background-image:
    linear-gradient(90deg, rgba(7,10,13,.78), rgba(7,10,13,.48) 48%, rgba(7,10,13,.24)),
    url('https://images.unsplash.com/photo-1512428559087-560fa5ceab42?auto=format&fit=crop&w=1800&q=80') !important;
  background-position: center 48%;
}

@media (max-width: 1000px) {
  .home-about .image-stack video,
  .home-about .image-stack .home-about-video {
    height: clamp(320px, 58vw, 440px);
  }
}
/* ARGUI Free Mission integration link */
.main-nav a[href="free-mission/index.html"] {
  color: var(--champagne);
}

.free-mission-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
}
/* ARGUI Free Mission nav color reset */
.main-nav a[href="free-mission/index.html"] {
  color: inherit;
}

.main-nav a[href="free-mission/index.html"]:hover,
.main-nav a[href="free-mission/index.html"]:focus-visible {
  color: var(--champagne);
}
/* ARGUI legal and functional fixes */
.header-lang span { cursor: pointer; }
.header-lang span.is-active { color: var(--gold-light); }
.legal-line a { color: inherit; text-decoration: none; }
.legal-line a:hover { color: var(--gold-light); }
.privacy-check { align-items: start; display: flex !important; gap: 10px; }
.privacy-check input { margin-top: 4px; width: auto; }
.privacy-check a { color: var(--gold); font-weight: 900; }
.form-status { grid-column: 1 / -1; color: #26313d; font-weight: 800; margin: 0; }
.legal-document { background: #fff; padding: 150px 8vw 90px; }
.legal-document article { margin: 0 auto; max-width: 980px; }
.legal-document .section-kicker { color: var(--gold); margin-bottom: 18px; }
.legal-document h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); letter-spacing: 0; line-height: .98; margin: 0 0 24px; }
.legal-document h2 { font-size: clamp(1.35rem, 2.2vw, 2rem); margin: 34px 0 10px; }
.legal-document p, .legal-document li { color: #4d5967; font-size: 1rem; font-weight: 650; line-height: 1.7; }
.legal-document ul { padding-left: 1.2rem; }
.legal-document a { color: var(--gold); font-weight: 900; }
.legal-note { background: #f6f3ed; border-left: 5px solid var(--gold); margin: 28px 0; padding: 18px 20px; }
@media (max-width: 760px) { .legal-document { padding: 120px 6vw 70px; } }
/* Corrección visual: mostrar imágenes reales del banner de servicios en Inicio. */
.service-carousel .service-band::before {
  z-index: 0;
  background-image: var(--band);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .94;
  filter: saturate(.98) contrast(1.04) brightness(.86);
}
.service-carousel .service-band::after,
.service-carousel .service-band:nth-child(2)::after,
.service-carousel .service-band:nth-child(3)::after,
.service-carousel .service-band:nth-child(7)::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,10,13,.1), rgba(7,10,13,.78)),
    linear-gradient(90deg, rgba(7,10,13,.38), rgba(7,10,13,.08) 54%, rgba(7,10,13,.42));
  mix-blend-mode: normal;
}
.service-carousel .service-band:hover::after,
.service-carousel .service-band:focus::after,
.service-carousel .service-band.is-band-active::after {
  background:
    linear-gradient(180deg, rgba(7,10,13,.04), rgba(7,10,13,.72)),
    linear-gradient(90deg, rgba(7,10,13,.32), color-mix(in srgb, var(--active-accent) 20%, transparent) 52%, rgba(7,10,13,.34));
}
.service-carousel .service-band > * {
  position: relative;
  z-index: 2;
}
.social-block .social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

/* Corrección robusta: imágenes visibles en tarjetas de Servicios. */
.service-carousel .service-band {
  background: #080d10;
  border: 1px solid rgba(208, 162, 65, 0.34);
}
.service-carousel .service-band::before {
  z-index: 0 !important;
  background: var(--band) center / cover no-repeat !important;
  opacity: 1 !important;
  filter: saturate(1.02) contrast(1.04) brightness(.92) !important;
}
.service-band-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.02) contrast(1.04) brightness(.9);
  transform: scale(1.04);
  transition: transform .3s ease, filter .3s ease;
  pointer-events: none;
}
.service-carousel .service-band:hover .service-band-image,
.service-carousel .service-band:focus .service-band-image,
.service-carousel .service-band.is-band-active .service-band-image {
  transform: scale(1.1);
  filter: saturate(1.08) contrast(1.06) brightness(.96);
}
.service-carousel .service-band::after,
.service-carousel .service-band:nth-child(2)::after,
.service-carousel .service-band:nth-child(3)::after,
.service-carousel .service-band:nth-child(7)::after {
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(7,10,13,.08), rgba(7,10,13,.82)),
    linear-gradient(90deg, rgba(7,10,13,.58), rgba(7,10,13,.16) 52%, rgba(7,10,13,.42)) !important;
  mix-blend-mode: normal !important;
}
.service-carousel .service-band > :not(.service-band-image) {
  position: relative;
  z-index: 2;
}
.header-lang span {
  opacity: .62;
  color: rgba(255,255,255,.82);
  transition: color .18s ease, opacity .18s ease;
}
.header-lang span.is-active {
  color: var(--gold-light) !important;
  opacity: 1 !important;
}

/* Ajuste final: textos completos en tarjetas de Servicios. */
.service-carousel .service-band {
  min-height: clamp(430px, 34vw, 470px);
  padding: clamp(20px, 2.2vw, 28px) !important;
  justify-content: flex-end;
  gap: 0;
}

.service-carousel .service-band span {
  display: block;
  font-size: .94rem;
  line-height: 1;
  margin: 0 0 5px;
}

.service-carousel .service-band h3 {
  max-width: 96%;
  margin: 0;
  font-size: clamp(1.42rem, 1.9vw, 1.78rem);
  line-height: 1.04;
  overflow: visible;
}

.service-carousel .service-band p {
  display: block !important;
  opacity: 1 !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
  max-width: 96%;
  margin: 10px 0 0 !important;
  font-size: clamp(.82rem, .9vw, .94rem);
  line-height: 1.28;
}

@media (max-width: 760px) {
  .service-carousel .service-band {
    min-height: 420px;
    padding: 22px !important;
  }

  .service-carousel .service-band h3 {
    font-size: clamp(1.38rem, 7vw, 1.72rem);
  }

  .service-carousel .service-band p {
    font-size: .88rem;
    line-height: 1.3;
  }
}

/* Seguridad antispam: campo honeypot invisible sin afectar diseño. */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
