:root {
  --ink: #181619;
  --accent: #742D45;
  --accent-ink: #572033;
  --text: #181619;
  --muted: #666166;
  --on-dark: rgba(255,255,255,.82);
  --on-dark-muted: rgba(255,255,255,.72);
  --border: rgba(24,22,25,.10);
  --bg: #FCFBFA;
  --bg-soft: #F4F1EF;
  --surface: #ffffff;
  --surface-warm: #F6F4F1;
  --bg-dark: #181619;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-nav: 0 10px 30px rgba(24,22,25,.10);
  --shadow-media: 0 16px 40px rgba(24,22,25,.12);
  --focus: 0 0 0 3px rgba(116,45,69,.22);
  --structure-line: rgba(116,45,69,.13);
  --header-h: 76px;
  --logo-height: 44px;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --type-display: clamp(2.6rem, 5.4vw, 4.6rem);
  --type-h2: clamp(1.85rem, 3vw, 2.45rem);
  --type-h3: 1.2rem;
  --type-lead: 1.0625rem;
  --type-body: 1rem;
  --type-label: 0.75rem;
  --type-caption: 0.8125rem;
  --section-pad: clamp(4.5rem, 8vw, 7rem);
  --measure: 40rem;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
[id] { scroll-margin-top: 96px; }
body {
  font-family: var(--font);
  font-size: var(--type-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  margin: 0;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .h3, .h4, .h5 {
  font-family: var(--font);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
:focus-visible { outline: none; box-shadow: var(--focus); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--ink); color: #fff; padding: .75rem 1rem;
}
.skip-link:focus { left: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 44px; padding: .7rem 1.25rem; border-radius: 999px;
  font-weight: 600; border: 1px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-lg { min-height: 48px; padding: .8rem 1.4rem; }
.btn-primary, .btn-primary-gradient {
  background: var(--ink); color: #fff !important; border-color: var(--ink);
}
.btn-primary:hover, .btn-primary-gradient:hover { background: #2c292c; color: #fff !important; }
.btn-outline {
  border-color: var(--ink); color: var(--ink); background: transparent;
}
.btn-outline:hover, .btn-outline-primary:hover { background: var(--ink); color: #fff; }
.btn-outline-primary { border: 1px solid var(--ink); color: var(--ink); border-radius: 999px; font-weight: 600; padding: .7rem 1.25rem; }
.btn-outline-light { border: 1px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.header-topbar { background: var(--bg-dark); color: #fff; font-size: .875rem; }
.header-topbar a { color: #fff; }
.contact-list, .social-icons { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; flex-wrap: wrap; align-items: center; }
.social-icons a {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.2); color: #fff;
}
.main-header { background: transparent; }
.header-sticky {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(252,251,250,.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(160%) blur(16px);
}
.navbar { padding: .7rem 0; }
.site-logo { height: var(--logo-height); width: auto; }
.navbar-nav .nav-link { font-weight: 600; color: var(--ink); padding: .5rem .8rem !important; }
.navbar-nav .nav-link.active, .nav-link--accent { color: var(--accent) !important; }

.page-home .header-topbar { display: none; }
.page-home .header-sticky {
  position: fixed; top: 12px; left: 16px; right: 16px;
  border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-nav);
}
.page-home .header-sticky.is-scrolled { box-shadow: 0 14px 36px rgba(24,22,25,.14); }
.page-home .hero { padding-top: 0; }

.hero {
  --hero-cycle: 24s;
  position: relative;
  min-height: clamp(620px, 88svh, 820px);
  background: var(--bg-dark);
  overflow: hidden;
}
.hero__stage { position: absolute; inset: 0; }
.hero__media, .hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__bg-img {
  object-fit: cover; object-position: center 35%;
  transform: scale(1.04); filter: blur(1.6px) brightness(.88) saturate(.92);
  animation: heroImageDrift var(--hero-cycle) ease-in-out infinite;
  will-change: transform;
}
@keyframes heroImageDrift {
  0%, 100% { transform: scale(1.04) translate3d(0, 0, 0); }
  50% { transform: scale(1.05) translate3d(-.25%, -.15%, 0); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(110% 95% at 82% 62%, rgba(24,22,25,.42) 0%, rgba(24,22,25,.18) 46%, transparent 72%),
    linear-gradient(180deg, rgba(24,22,25,.34) 0%, rgba(24,22,25,.08) 44%, rgba(24,22,25,.55) 100%),
    linear-gradient(90deg, rgba(24,22,25,.72) 0%, rgba(24,22,25,.42) 42%, rgba(24,22,25,.05) 76%, rgba(24,22,25,.08) 100%);
}
.hero__scaffold {
  position: absolute; z-index: 1; bottom: 0;
  right: max(1.5rem, calc((100vw - 1320px) / 2));
  width: clamp(320px, 36vw, 560px); height: 100%;
  color: rgba(255,255,255,.8); pointer-events: none; opacity: .8;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 100%);
}
.hero__frame path { vector-effect: non-scaling-stroke; }
.hero__datum, .hero__base, .hero__standard, .hero__ledger, .hero__brace, .hero__deck, .hero__guardrail {
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.hero__datum { stroke-width: 1.2; opacity: .55; animation: scaffoldDatum var(--hero-cycle) ease-in-out infinite; }
.hero__base { stroke-width: 3; animation: scaffoldFoundation var(--hero-cycle) ease-in-out infinite; }
.hero__standard { stroke-width: 2; animation: scaffoldStandards var(--hero-cycle) cubic-bezier(.3,.7,.35,1) infinite; }
.hero__standard--2 { animation-delay: calc(var(--hero-cycle) * .006); }
.hero__standard--3 { animation-delay: calc(var(--hero-cycle) * .012); }
.hero__standard--4 { animation-delay: calc(var(--hero-cycle) * .018); }
.hero__ledger { stroke-width: 1.6; }
.hero__guardrail { stroke-width: 1.6; animation: scaffoldGuardrail var(--hero-cycle) ease-in-out infinite; }
.hero__brace { stroke-width: 1.15; opacity: .66; }
.hero__deck { stroke-width: 3.6; opacity: .85; }
.hero__lift--1 { animation: scaffoldLiftOne var(--hero-cycle) linear infinite; }
.hero__lift--2 { animation: scaffoldLiftTwo var(--hero-cycle) linear infinite; }
.hero__lift--3 { animation: scaffoldLiftThree var(--hero-cycle) linear infinite; }
.hero__lift--4 { animation: scaffoldLiftFour var(--hero-cycle) linear infinite; }
.hero__lift--1 .hero__ledger { animation: scaffoldLedgerOne var(--hero-cycle) ease-in-out infinite; }
.hero__lift--2 .hero__ledger { animation: scaffoldLedgerTwo var(--hero-cycle) ease-in-out infinite; }
.hero__lift--3 .hero__ledger { animation: scaffoldLedgerThree var(--hero-cycle) ease-in-out infinite; }
.hero__lift--4 .hero__ledger { animation: scaffoldLedgerFour var(--hero-cycle) ease-in-out infinite; }
.hero__ledger--2 { animation-delay: calc(var(--hero-cycle) * .008) !important; }
.hero__ledger--3 { animation-delay: calc(var(--hero-cycle) * .016) !important; }
.hero__lift--1 .hero__brace { animation: scaffoldBraceOne var(--hero-cycle) ease-in-out infinite; }
.hero__lift--2 .hero__brace { animation: scaffoldBraceTwo var(--hero-cycle) ease-in-out infinite; }
.hero__lift--3 .hero__brace { animation: scaffoldBraceThree var(--hero-cycle) ease-in-out infinite; }
.hero__lift--4 .hero__brace { animation: scaffoldBraceFour var(--hero-cycle) ease-in-out infinite; }
.hero__brace--2 { animation-delay: calc(var(--hero-cycle) * .007) !important; }
.hero__brace--3 { animation-delay: calc(var(--hero-cycle) * .014) !important; }
.hero__lift--1 .hero__deck { animation: scaffoldDeckOne var(--hero-cycle) ease-in-out infinite; }
.hero__lift--2 .hero__deck { animation: scaffoldDeckTwo var(--hero-cycle) ease-in-out infinite; }
.hero__lift--3 .hero__deck { animation: scaffoldDeckThree var(--hero-cycle) ease-in-out infinite; }
.hero__lift--4 .hero__deck { animation: scaffoldDeckFour var(--hero-cycle) ease-in-out infinite; }
.hero__joint {
  fill: #f3d5de; stroke: rgba(255,255,255,.9); stroke-width: 1;
  opacity: 0; transform-box: fill-box; transform-origin: center;
  filter: drop-shadow(0 0 5px rgba(243,213,222,.82));
}
.hero__lift--1 .hero__joint { animation: scaffoldJointOne var(--hero-cycle) ease-out infinite; }
.hero__lift--2 .hero__joint { animation: scaffoldJointTwo var(--hero-cycle) ease-out infinite; }
.hero__lift--3 .hero__joint { animation: scaffoldJointThree var(--hero-cycle) ease-out infinite; }
.hero__lift--4 .hero__joint { animation: scaffoldJointFour var(--hero-cycle) ease-out infinite; }
.hero__joint--2 { animation-delay: calc(var(--hero-cycle) * .004) !important; }
.hero__joint--3 { animation-delay: calc(var(--hero-cycle) * .008) !important; }
.hero__joint--4 { animation-delay: calc(var(--hero-cycle) * .012) !important; }
.hero__shimmer {
  stroke: rgba(243,213,222,.95); stroke-width: 2.4;
  stroke-dasharray: .14 .86; stroke-dashoffset: 1.14;
  filter: drop-shadow(0 0 6px rgba(243,213,222,.6));
  animation: scaffoldShimmer var(--hero-cycle) ease-in-out infinite;
}
/* Story beats across one 24s cycle:
   0-5 survey datum | 5-9 bases | 9-17 standards rise | 17-46 lifts 1-4
   46-52 guardrail top-out + settle | 52-74 inspection hold + shimmer
   74-90 dismantle top-down | 90-100 quiet reset */
@keyframes scaffoldDatum {
  0%, 100% { stroke-dashoffset: 1; opacity: 0; }
  5%, 92% { stroke-dashoffset: 0; opacity: .55; }
  96% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes scaffoldFoundation {
  0%, 5%, 100% { stroke-dashoffset: 1; opacity: 0; }
  9%, 91% { stroke-dashoffset: 0; opacity: 1; }
  95% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes scaffoldStandards {
  0%, 9%, 100% { stroke-dashoffset: 1; opacity: 0; }
  17%, 88% { stroke-dashoffset: 0; opacity: 1; }
  93% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes scaffoldLedgerOne {
  0%, 17%, 100% { stroke-dashoffset: 1; opacity: 0; }
  20%, 95% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes scaffoldBraceOne {
  0%, 20%, 100% { stroke-dashoffset: 1; opacity: 0; }
  24%, 95% { stroke-dashoffset: 0; opacity: .66; }
}
@keyframes scaffoldDeckOne {
  0%, 23%, 100% { stroke-dashoffset: 1; opacity: 0; }
  26%, 95% { stroke-dashoffset: 0; opacity: .85; }
}
@keyframes scaffoldJointOne {
  0%, 19%, 100% { opacity: 0; transform: scale(.4); }
  21% { opacity: 1; transform: scale(1.65); }
  24%, 48% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.22); }
  52%, 95% { opacity: .9; transform: scale(1); }
}
@keyframes scaffoldLedgerTwo {
  0%, 24%, 100% { stroke-dashoffset: 1; opacity: 0; }
  27%, 95% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes scaffoldBraceTwo {
  0%, 27%, 100% { stroke-dashoffset: 1; opacity: 0; }
  31%, 95% { stroke-dashoffset: 0; opacity: .66; }
}
@keyframes scaffoldDeckTwo {
  0%, 30%, 100% { stroke-dashoffset: 1; opacity: 0; }
  33%, 95% { stroke-dashoffset: 0; opacity: .85; }
}
@keyframes scaffoldJointTwo {
  0%, 26%, 100% { opacity: 0; transform: scale(.4); }
  28% { opacity: 1; transform: scale(1.65); }
  31%, 48% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.22); }
  52%, 95% { opacity: .9; transform: scale(1); }
}
@keyframes scaffoldLedgerThree {
  0%, 31%, 100% { stroke-dashoffset: 1; opacity: 0; }
  34%, 95% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes scaffoldBraceThree {
  0%, 34%, 100% { stroke-dashoffset: 1; opacity: 0; }
  38%, 95% { stroke-dashoffset: 0; opacity: .66; }
}
@keyframes scaffoldDeckThree {
  0%, 37%, 100% { stroke-dashoffset: 1; opacity: 0; }
  40%, 95% { stroke-dashoffset: 0; opacity: .85; }
}
@keyframes scaffoldJointThree {
  0%, 33%, 100% { opacity: 0; transform: scale(.4); }
  35% { opacity: 1; transform: scale(1.65); }
  38%, 48% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.22); }
  52%, 95% { opacity: .9; transform: scale(1); }
}
@keyframes scaffoldLedgerFour {
  0%, 38%, 100% { stroke-dashoffset: 1; opacity: 0; }
  41%, 95% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes scaffoldBraceFour {
  0%, 41%, 100% { stroke-dashoffset: 1; opacity: 0; }
  45%, 95% { stroke-dashoffset: 0; opacity: .66; }
}
@keyframes scaffoldDeckFour {
  0%, 44%, 100% { stroke-dashoffset: 1; opacity: 0; }
  46%, 95% { stroke-dashoffset: 0; opacity: .85; }
}
@keyframes scaffoldJointFour {
  0%, 40%, 100% { opacity: 0; transform: scale(.4); }
  42% { opacity: 1; transform: scale(1.65); }
  45%, 48% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.22); }
  52%, 95% { opacity: .9; transform: scale(1); }
}
@keyframes scaffoldGuardrail {
  0%, 46%, 100% { stroke-dashoffset: 1; opacity: 0; }
  51%, 73% { stroke-dashoffset: 0; opacity: 1; }
  78% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes scaffoldLiftFour {
  0%, 74% { opacity: 1; } 78%, 100% { opacity: 0; }
}
@keyframes scaffoldLiftThree {
  0%, 78% { opacity: 1; } 82%, 100% { opacity: 0; }
}
@keyframes scaffoldLiftTwo {
  0%, 82% { opacity: 1; } 86%, 100% { opacity: 0; }
}
@keyframes scaffoldLiftOne {
  0%, 86% { opacity: 1; } 90%, 100% { opacity: 0; }
}
@keyframes scaffoldShimmer {
  0%, 54%, 74%, 100% { opacity: 0; stroke-dashoffset: 1.14; }
  57% { opacity: .9; }
  70% { opacity: .75; stroke-dashoffset: -1.14; }
  72% { opacity: 0; }
}
.hero__layout {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: flex-end;
  padding-block: 8.5rem 4.5rem; padding-inline: 1.5rem; color: #fff;
}
.hero__content { max-width: 760px; }
.hero__eyebrow, .hero__title, .hero__subtitle, .hero__actions { animation: rise .7s ease both; }
.hero__title { animation-delay: .1s; }
.hero__subtitle { animation-delay: .2s; }
.hero__actions { animation-delay: .3s; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero__eyebrow {
  margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .14em;
  font-size: var(--type-label); font-weight: 600; color: #fff;
}
.hero__title {
  font-size: var(--type-display); font-weight: 600; color: #fff;
  letter-spacing: -0.04em; line-height: 1.02; margin: 0 0 1rem; max-width: 12ch;
}
.hero__title em { font-style: normal; color: #f3d5de; }
.hero__subtitle {
  font-size: var(--type-lead); line-height: 1.55; color: var(--on-dark);
  max-width: 36rem; margin: 0 0 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.hero .btn-primary { background: #fff; color: var(--ink) !important; }
.hero .btn-primary:hover { background: var(--bg-soft); }
.hero__text-link {
  color: #fff; font-weight: 600; min-height: 44px;
  display: inline-flex; align-items: center;
  gap: .45rem;
}
.hero__text-link:hover { color: #fff; }
.hero__catalogue-link {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 48px;
  padding-inline: .25rem; color: #fff; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.42);
}
.hero__catalogue-link:hover { color: #fff; border-color: #fff; }
.hero__scroll {
  position: absolute; z-index: 2; right: 2rem; bottom: 2.25rem;
  display: flex; align-items: center; gap: .65rem; min-height: 44px;
  color: rgba(255,255,255,.76); font-size: var(--type-label); letter-spacing: .12em; text-transform: uppercase;
}
.hero__scroll:hover { color: #fff; }

.proof-strip { background: var(--surface); border-bottom: 1px solid var(--border); }
.proof-strip__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.proof-strip li { padding: 1.15rem 1.25rem 1.15rem 0; }
.proof-strip li + li { border-left: 1px solid var(--border); padding-left: 1.25rem; }
.proof-strip strong { display: block; font-size: 1.15rem; letter-spacing: -.02em; }
.proof-strip span { display: block; margin-top: .2rem; font-size: var(--type-label); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.statement { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 6.5rem) 0; }
.statement__scaffold {
  position: absolute; right: max(2rem, 5vw); top: 50%; width: min(26vw, 360px);
  height: auto; color: var(--accent); opacity: .14; transform: translateY(-50%);
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}
.statement__scaffold path { stroke: currentColor; stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.statement__scaffold .statement__bases { stroke-width: 2.5; stroke-linecap: round; }
.statement__nodes { fill: currentColor; }
.statement__inner { position: relative; z-index: 1; max-width: 46rem; }
.statement__text {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 600; letter-spacing: -.03em; line-height: 1.25;
  margin: .6rem 0 0; max-width: 18em;
}

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-soft); }
.section-label {
  display: block; margin: 0 0 .7rem;
  font-size: var(--type-label); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.section-label--light { color: var(--on-dark-muted); }
.section-kicker {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: .8rem; font-size: var(--type-label); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.section-kicker span {
  font-size: 1.6rem; letter-spacing: -.04em; color: rgba(24,22,25,.16); font-weight: 700;
}
.section-kicker--light { color: var(--on-dark-muted); }
.section-kicker--light span { color: rgba(255,255,255,.28); }
.section-title { font-size: var(--type-h2); font-weight: 600; margin: 0 0 .75rem; }
.section-lead { font-size: var(--type-lead); color: var(--muted); max-width: var(--measure); margin: 0; }
.section-intro { max-width: 40rem; margin-bottom: 2.5rem; }
.section-intro--split {
  max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
}

.services-offer { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }
.services-offer::before {
  content: ""; position: absolute; width: 92px; height: 92px; left: -22px; bottom: -22px;
  border-left: 1px solid var(--structure-line); border-bottom: 1px solid var(--structure-line); pointer-events: none;
}
.services-offer__media {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(120px, .46fr); gap: .75rem; align-items: end;
  margin-top: 1.6rem; background: var(--bg);
}
.services-offer__media-main, .services-offer__media-inset { border-radius: var(--radius); overflow: hidden; background: var(--surface-warm); }
.services-offer__media-inset { position: relative; margin-bottom: -1.25rem; }
.services-offer__media-inset span {
  position: absolute; left: .65rem; bottom: .6rem; padding: .3rem .55rem; border-radius: 999px;
  background: rgba(24,22,25,.82); color: #fff; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
}
.services-offer__img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.services-offer__media-inset .services-offer__img { aspect-ratio: 4/5; }
@media (hover: hover) {
  .services-offer__img { transition: transform .5s ease; }
  .services-offer:hover .services-offer__img { transform: scale(1.03); }
}
.services-offer__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.service-path {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--border); color: var(--text);
}
.service-path:hover { color: var(--text); }
.service-path:focus-visible { border-radius: 10px; }
.service-path__num { font-size: 1.45rem; font-weight: 700; letter-spacing: -.04em; color: rgba(24,22,25,.22); }
.service-path h3 { margin: .15rem 0 .4rem; font-size: 1.25rem; }
.service-path p { margin: 0 0 .7rem; color: var(--muted); }
.service-path ul { margin: 0 0 .85rem; padding: 0; list-style: none; }
.service-path ul li { position: relative; padding-left: .9rem; color: var(--text); font-size: .95rem; }
.service-path ul li + li { margin-top: .3rem; }
.service-path ul li::before { content: ""; position: absolute; left: 0; top: .55rem; width: .35rem; height: 1px; background: var(--accent); }
.services-editorial { display: grid; grid-template-columns: 1.35fr .9fr; gap: 1.25rem; }
.service-feature {
  display: flex; flex-direction: column; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.service-feature:hover { color: var(--text); }
.service-feature:focus-visible, .project-feature:focus-visible, .news-card:focus-visible, .product-rail__card:focus-visible, .solution-card:focus-visible {
  outline: none; box-shadow: var(--focus);
}
.service-feature__media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-warm); }
.service-feature__img { width: 100%; height: 100%; object-fit: cover; }
.service-feature--lead .service-feature__media { aspect-ratio: 16/11; }
.service-feature__body { padding: 1.35rem 1.3rem 1.45rem; }
.service-feature h3 { font-size: var(--type-h3); margin: 0 0 .45rem; }
.service-feature p { color: var(--muted); margin: 0 0 1rem; }
.text-link { font-weight: 600; color: var(--accent); }

.solutions-grid {
  display: grid; grid-template-columns: 1.45fr 1fr 1fr; grid-template-rows: 230px 230px; gap: .85rem;
}
.solution-card { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 220px; color: #fff; }
.solution-card:first-child { grid-row: span 2; }
.solution-card picture, .solution-card__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.solution-card__img { object-fit: cover; }
.solution-card__body {
  position: absolute; inset: auto 0 0; padding: 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(24,22,25,.88));
}
.solution-card h3 { margin: 0 0 .25rem; color: #fff; font-size: 1.15rem; }
.solution-card p { margin: 0; color: var(--on-dark); font-size: .9rem; }

.cuplock-gate { background: var(--bg-dark); color: #fff; padding: clamp(2.2rem, 5vw, 3.4rem) 0; }
.cuplock-gate__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) 180px auto; gap: 1.5rem; align-items: center; }
.cuplock-gate .section-title { color: #fff; margin-bottom: .45rem; }
.cuplock-gate p { margin: 0; color: var(--on-dark); max-width: 36rem; }
.cuplock-gate__wire { width: 180px; height: auto; }
.cuplock-gate__wire path {
  stroke-dasharray: 360; animation: structuralDraw 18s ease-in-out infinite;
}
@keyframes structuralDraw {
  0%, 100% { stroke-dashoffset: 360; opacity: .35; }
  35%, 72% { stroke-dashoffset: 0; opacity: 1; }
}
.cuplock-gate .btn-primary { background: #fff; color: var(--ink) !important; }
.cuplock-teaser { background: var(--bg-dark); color: #fff; padding: var(--section-pad) 0; }
.cuplock-teaser .section-title { color: #fff; }
.cuplock-teaser__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; }
.cuplock-teaser__media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.cuplock-teaser__img { width: 100%; height: 100%; object-fit: cover; }
.cuplock-teaser__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--surface); color: var(--ink); font-size: var(--type-label); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .4rem .75rem; border-radius: 999px;
}
.cuplock-teaser__text { color: var(--on-dark); max-width: 34rem; }
.cuplock-teaser__points { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.cuplock-teaser__points li { display: flex; gap: .55rem; margin-bottom: .55rem; color: var(--on-dark); }
.cuplock-teaser__points i { color: #f3d5de; margin-top: .25rem; }
.cuplock-teaser__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.cuplock-teaser .btn-primary { background: #fff; color: var(--ink) !important; }

.product-rail { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .85rem; }
.product-rail__card {
  display: flex; flex-direction: column; gap: .3rem; color: var(--text);
  border-top: 1px solid var(--border); padding-top: .75rem;
}
.product-rail__card:hover { color: var(--text); }
.product-rail__card picture { display: block; background: var(--surface-warm); aspect-ratio: 1; }
.product-rail__img { width: 100%; height: 100%; object-fit: cover; }

/* Loading skeleton: paints structure before photos arrive */
.product-card__img, .product-rail__img, .solution-card__img, .news-card__img,
.news-row__img, .service-card__img, .project-card__img, .project-feature__img,
.services-offer__img, .trust-editorial__img, .article__img, .product-detail__img {
  background-color: var(--surface-warm, #efece7);
  background-image: linear-gradient(100deg, rgba(255,255,255,0) 36%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 64%);
  background-size: 220% 100%; background-repeat: no-repeat;
  animation: imgSkeleton 1.4s ease-in-out infinite;
}
@keyframes imgSkeleton {
  0% { background-position: 130% 0; }
  100% { background-position: -90% 0; }
}
.product-rail__cat { font-size: var(--type-label); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.product-rail__card strong { font-size: .95rem; }

.process-row {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  border-top: 1px solid var(--border);
  background-image: linear-gradient(90deg, var(--structure-line), var(--structure-line));
  background-size: 100% 1px; background-repeat: no-repeat;
}
.process-row li { padding-top: 1.15rem; }
.process-row__num { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -.04em; color: rgba(24,22,25,.18); margin-bottom: .6rem; }
.process-row h3 { font-size: 1.05rem; margin: 0 0 .4rem; }
.process-row p { margin: 0; color: var(--muted); font-size: .92rem; }

.projects-editorial { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 240px 240px; gap: .85rem; }
.project-feature { position: relative; overflow: hidden; border-radius: var(--radius); color: #fff; min-height: 220px; }
.project-feature--lead { grid-row: span 2; }
.project-feature picture, .project-feature__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.project-feature__img { object-fit: cover; }
.project-feature__body {
  position: absolute; inset: auto 0 0; padding: 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(24,22,25,.86));
}
.project-feature span { font-size: var(--type-label); letter-spacing: .08em; text-transform: uppercase; }
.project-feature h3 { margin: .25rem 0 0; color: #fff; font-size: 1.2rem; }

.cta-close { background: var(--bg-dark); color: #fff; padding: var(--section-pad) 0; }
.cta-close__inner { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2rem; align-items: end; }
.cta-close h2 { color: #fff; font-size: var(--type-h2); margin: 0 0 .6rem; }
.cta-close p { color: var(--on-dark); margin: 0; max-width: 36rem; }
.cta-close__actions { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.cta-close__actions .btn { min-width: 250px; }
.cta-close .btn-primary { background: #fff; color: var(--ink) !important; }
.cta-close__quiet { color: var(--on-dark-muted); font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.cta-close__quiet:hover { color: #fff; }

.main-footer { background: var(--bg-dark); color: var(--on-dark); }
.main-footer a { color: #fff; }
.footer-heading { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-logo {
  height: 40px; width: auto; background: #fff; border-radius: 10px; padding: 6px 10px;
  margin-bottom: 1rem; object-fit: contain;
}
.footer-text, .footer-links a { color: var(--on-dark); }
.footer-copyright { border-color: rgba(255,255,255,.14) !important; color: var(--on-dark-muted); }

.mobile-action-bar { display: none; }
.floating-whatsapp {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%; background: #1f8f4e; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
}
#scrollTopBtn {
  position: fixed; right: 1.25rem; bottom: 5rem; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--ink); color: #fff; opacity: 0; pointer-events: none;
}
#scrollTopBtn.visible { opacity: 1; pointer-events: auto; }

html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
picture { display: block; }
.media-pending { background: var(--surface-warm); }
html.js .media-pending img { opacity: 0; }
html.js .media-ready img { opacity: 1; transition: opacity .3s ease; }

.inner-banner { position: relative; padding: 4.5rem 0 2.5rem; background: var(--bg-dark); color: #fff; }
.inner-banner__title, .inner-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; }
.inner-banner__subtitle { color: var(--on-dark); position: relative; max-width: 38rem; }
.breadcrumb a { color: var(--on-dark); }
.breadcrumb-item.active { color: #fff; }
.feature-card, .vision-card, .sidebar-card, .contact-info-card, .contact-form-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem;
}
.feature-card__icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: .8rem;
}
.service-card, .project-card, .product-card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; color: var(--text); height: 100%;
}
.service-card:hover, .project-card:hover, .product-card:hover { color: var(--text); }
.service-card__img, .project-card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.product-card picture { display: block; background: var(--surface-warm); }
.product-card__img { aspect-ratio: 1; object-fit: cover; width: 100%; background: var(--surface-warm); }
.service-card__body, .project-card__body, .product-card__body { padding: 1.15rem; }
.product-card__cat { font-size: var(--type-label); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.service-card__link, .sidebar-nav a.active { color: var(--accent); font-weight: 600; }
.filter-btn {
  border: 1px solid var(--border); background: #fff; border-radius: 999px;
  padding: .45rem .9rem; font-weight: 600; cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: #fff; }
.contact-form .form-control { border-radius: 10px; border: 1px solid var(--border); padding: .75rem 1rem; }
.contact-form .form-control:focus { border-color: var(--accent); box-shadow: var(--focus); }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--bg-soft); color: var(--ink); }
.faq-accordion .accordion-button:focus { box-shadow: var(--focus); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: .65rem .7rem; border-bottom: 1px solid var(--border); text-align: left; }
.spec-table th { color: var(--muted); font-weight: 600; width: 40%; }
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav a { display: block; padding: .5rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.process-step__num {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); font-weight: 700; margin-bottom: .7rem;
}
.outcome-badge { color: var(--ink); font-weight: 600; }
.map-embed iframe { border: 0; width: 100%; height: 100%; }

.scaffold-viewer { background: var(--bg-dark); color: #fff; padding: 4rem 0; }
.scaffold-viewer--page { padding: 2rem 0 4rem; }
.scaffold-viewer--page .scaffold-viewer__canvas-wrap { min-height: clamp(420px, 72vh, 760px); aspect-ratio: unset; }
.scaffold-viewer__header { margin-bottom: 2rem; max-width: 720px; }
.scaffold-viewer__header .section-title { color: #fff; }
.scaffold-viewer__layout { display: grid; grid-template-columns: 1fr 280px; gap: 1.25rem; }
.scaffold-viewer__canvas-wrap {
  position: relative; background: #101114; border-radius: var(--radius); overflow: hidden;
  width: 100%; aspect-ratio: 16/10; min-height: 400px;
}
.scaffold-viewer__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.scaffold-viewer__toolbar { position: absolute; top: .75rem; right: .75rem; display: flex; gap: .5rem; z-index: 2; }
.scaffold-viewer__btn {
  width: 40px; height: 40px; border: none; border-radius: 8px; background: rgba(255,255,255,.12); color: #fff;
}
.scaffold-viewer__btn:hover, .scaffold-viewer__btn.is-active { background: var(--accent); }
.scaffold-viewer__panel { border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.2rem; }
.scaffold-viewer__features { list-style: none; padding: 0; margin: 0; }
.scaffold-viewer__features li { display: flex; gap: .6rem; margin-bottom: .7rem; color: var(--on-dark); }
.scaffold-viewer__fallback { position: absolute; inset: 0; display: none; }
.scaffold-viewer--fallback .scaffold-viewer__fallback { display: flex; }

.page-products .header-topbar { display: none; }
.catalogue-head { padding: .85rem 0 .65rem; }
.catalogue-head__crumbs {
  display: flex; gap: .4rem; align-items: center;
  margin: 0 0 .45rem; font-size: .8rem; color: var(--muted);
}
.catalogue-head__crumbs a { color: var(--muted); }
.catalogue-head__row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: .7rem;
}
.catalogue-head h1 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); margin: 0 0 .2rem; letter-spacing: -.03em; }
.catalogue-head p { margin: 0; color: var(--muted); max-width: 36rem; }
.catalogue-count { margin: 0; font-size: var(--type-label); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.page-products .product-toolbar {
  display: flex; align-items: center; gap: .6rem;
  position: sticky; top: 64px; z-index: 30;
  background: rgba(252,251,250,.96); padding: .35rem 0 .55rem;
}
.page-products .product-search { max-width: 220px; min-height: 44px; border-radius: 999px; border: 1px solid var(--border); }
.product-filters { display: flex; gap: .4rem; overflow-x: auto; flex: 1 1 auto; padding-bottom: 2px; }
.filter-btn { min-height: 44px; flex: 0 0 auto; }
.catalogue-grid { padding: .35rem 0 3.5rem; }

.trust-editorial { display: grid; grid-template-columns: .86fr 1.14fr; gap: 2.4rem; align-items: center; }
.trust-editorial__media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface-warm); }
.trust-editorial__media::after {
  content: ""; position: absolute; inset: 1rem; border-top: 1px solid rgba(255,255,255,.4);
  border-right: 1px solid rgba(255,255,255,.4); pointer-events: none;
}
.trust-editorial__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.trust-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.trust-list li {
  display: grid; grid-template-columns: 2.6rem 1fr; gap: .8rem;
  border-top: 1px solid var(--border); padding: .95rem 0;
}
.trust-list li span { font-weight: 700; letter-spacing: -.04em; color: rgba(24,22,25,.28); }
.trust-list h3 { font-size: 1.05rem; margin: 0 0 .25rem; }
.trust-list p { margin: 0; color: var(--muted); }

.news-grid { display: grid; grid-template-columns: 1.35fr .8fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
.news-card {
  display: flex; flex-direction: column; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.news-card:hover { color: var(--text); }
.news-card--lead { grid-row: 1 / span 2; }
.news-card__img { width: 100%; object-fit: cover; aspect-ratio: 16/10; }
.news-card--lead .news-card__img { aspect-ratio: 16/11; min-height: 280px; }
.news-card__body { padding: 1.1rem 1.15rem 1.25rem; }
.news-card h3 { font-size: 1.15rem; margin: 0 0 .4rem; }
.news-card--lead h3 { font-size: clamp(1.45rem, 2vw, 1.9rem); }
.news-card__body p:last-child { margin: 0; color: var(--muted); }
.news-card__meta {
  display: flex; gap: .7rem; margin: 0 0 .45rem;
  font-size: var(--type-label); letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.news-card__meta span { color: var(--accent); }

.article-head { padding: 2rem 0 1rem; }
.article-head nav { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .8rem; font-size: .8rem; color: var(--muted); }
.article-head nav a { color: var(--muted); }
.article-measure { max-width: 760px; }
.article__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin: .5rem 0 1.4rem; }
.article-body p { font-size: 1.05rem; line-height: 1.7; color: var(--text); }
.news-list { display: grid; gap: 1rem; }
.news-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 1.1rem; align-items: center;
  color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.news-row:hover { color: var(--text); }
.news-row__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.news-row h2 { font-size: 1.35rem; margin: 0 0 .4rem; }
.news-row > div { padding-right: 1rem; }

@media (min-width: 1200px) {
  .hero__content { max-width: min(48vw, 700px); }
}
@media (max-width: 991.98px) {
  .page-home .header-sticky { left: 10px; right: 10px; top: max(8px, env(safe-area-inset-top)); }
  .hero__scaffold { right: -2vw; width: 46vw; opacity: .55; }
  .services-editorial, .services-offer, .cuplock-teaser__inner, .cuplock-gate__inner, .cta-close__inner, .projects-editorial, .trust-editorial, .news-grid { grid-template-columns: 1fr; }
  .cuplock-gate__wire { width: 140px; }
  .news-card--lead { grid-row: auto; }
  .trust-editorial__img { aspect-ratio: 16/10; }
  .project-feature--lead, .solution-card:first-child { grid-row: auto; }
  .solutions-grid, .process-row { grid-template-columns: 1fr 1fr; }
  .solutions-grid, .projects-editorial, .news-grid { grid-template-rows: none; }
  .product-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero__title { max-width: none; }
  .scaffold-viewer__layout { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
  :root { --section-pad: 3.75rem; }
  .container { --bs-gutter-x: 2.25rem; }
  .page-home .header-sticky { left: 8px; right: 8px; border-radius: 13px; }
  .navbar { padding: .5rem 0; }
  .site-logo { height: 37px; max-width: 174px; object-fit: contain; }
  .navbar-toggler { width: 44px; height: 44px; padding: .45rem; border-color: var(--border); }
  .navbar-collapse {
    max-height: calc(100svh - 82px); overflow-y: auto;
    margin-top: .5rem; padding: .65rem .2rem .8rem; border-top: 1px solid var(--border);
  }
  .navbar-nav { align-items: stretch !important; }
  .navbar-nav .nav-link { min-height: 44px; display: flex; align-items: center; }
  .navbar-nav .btn { width: 100%; margin-top: .4rem; }
  .hero { min-height: clamp(650px, 92svh, 760px); }
  .hero__bg-img { object-position: 42% center; }
  .hero__scaffold {
    right: -8vw; bottom: 0; width: 62vw; height: 100%;
    opacity: .32; color: rgba(255,255,255,.7);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 94%, transparent 100%);
  }
  .hero__shimmer { display: none; }
  .hero__layout { padding-block: 7.5rem 3rem; padding-inline: 24px; align-items: flex-end; }
  .hero__content { max-width: 34rem; }
  .hero__eyebrow { margin-bottom: .7rem; }
  .hero__title { font-size: clamp(2.45rem, 12vw, 3.35rem); line-height: 1.01; margin-bottom: .85rem; }
  .hero__subtitle { font-size: 1rem; line-height: 1.5; margin-bottom: 1.25rem; max-width: 31rem; }
  .hero__actions { gap: .5rem; align-items: center; }
  .hero__actions .btn {
    width: auto; min-height: 40px;
    padding: .5rem .8rem; font-size: .82rem; line-height: 1.1;
  }
  .hero__catalogue-link {
    width: fit-content; min-height: 40px;
    padding-inline: .15rem; font-size: .82rem;
  }
  .hero__text-link { width: fit-content; }
  .hero__scroll { display: none; }
  .proof-strip__list { grid-template-columns: 1fr 1fr; }
  .proof-strip li { padding: .9rem .75rem .9rem 0; }
  .proof-strip li + li { border-left: 1px solid var(--border); border-top: 0; padding-left: .85rem; }
  .proof-strip li:nth-child(3) { border-left: 0; padding-left: 0; }
  .proof-strip li:nth-child(n+3) { border-top: 1px solid var(--border); }
  .statement { padding: 3.5rem 0; }
  .statement__text { font-size: 1.5rem; }
  .section-intro { margin-bottom: 1.8rem; }
  .section-kicker { margin-bottom: .6rem; }
  .section-kicker span { font-size: 1.4rem; }
  .section-title { font-size: clamp(1.75rem, 8vw, 2.1rem); }
  .process-row, .solutions-grid, .projects-editorial, .news-row { grid-template-columns: 1fr; }
  .catalogue-head__row, .page-products .product-toolbar, .section-intro--split { flex-direction: column; align-items: stretch; }
  .page-products .product-search { max-width: none; }
  .catalogue-count { white-space: normal; }
  .services-offer { gap: 1.8rem; }
  .services-offer__media { margin-top: 1.2rem; }
  .services-offer__media { grid-template-columns: minmax(0, 1.25fr) minmax(96px, .7fr); gap: .55rem; }
  .services-offer__media-inset { margin-bottom: -.65rem; }
  .services-offer__img { aspect-ratio: 4/3; }
  .service-path { grid-template-columns: 2.25rem 1fr; gap: .65rem; padding: 1.15rem 0; }
  .service-path__num { font-size: 1.25rem; }
  .service-path ul { margin-bottom: .7rem; }
  .trust-editorial { gap: 1.8rem; }
  .trust-editorial__img { aspect-ratio: 4/3; }
  .trust-list { margin-top: 1.1rem; }
  .trust-list li { grid-template-columns: 2.15rem 1fr; gap: .6rem; padding: .85rem 0; }
  .solutions-grid { grid-template-rows: none; gap: .75rem; }
  .solution-card { min-height: 240px; aspect-ratio: 4/3; }
  .cuplock-gate { position: relative; overflow: hidden; }
  .cuplock-gate__inner { position: relative; gap: 1rem; }
  .cuplock-gate__copy { position: relative; z-index: 1; padding-right: 2rem; }
  .cuplock-gate__wire { position: absolute; z-index: 0; right: 1rem; top: 50%; width: 145px; opacity: .2; transform: translateY(-50%); }
  .cuplock-gate .btn { position: relative; z-index: 1; width: fit-content; }
  .product-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 1rem; padding-inline: .15rem; }
  .product-rail__card { flex: 0 0 82%; scroll-snap-align: start; }
  .process-row { gap: 0; }
  .process-row li {
    display: grid; grid-template-columns: 2.6rem 1fr; column-gap: .65rem;
    padding: 1rem 0; border-bottom: 1px solid var(--border);
  }
  .process-row__num { grid-row: 1 / span 2; margin: 0; font-size: 1.4rem; }
  .process-row h3, .process-row p { grid-column: 2; }
  .project-feature, .project-feature--lead { min-height: 250px; aspect-ratio: 4/3; }
  .news-grid { gap: .8rem; }
  .news-card--lead .news-card__img, .news-card__img { aspect-ratio: 16/10; min-height: 0; }
  .cta-close__inner { gap: 1.5rem; }
  .cta-close__actions { align-items: stretch; }
  .cta-close__actions .btn { width: 100%; }
  .mobile-action-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1001;
    background: rgba(24,22,25,.94); padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-action-bar a {
    color: #fff; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: .35rem;
    font-weight: 600; font-size: .85rem;
  }
  .floating-whatsapp, #scrollTopBtn { display: none !important; }
  .main-footer { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .statement__scaffold { right: -3rem; width: 48vw; opacity: .09; }
  .services-offer::before { display: none; }
}
@media (max-width: 420px) {
  :root { --section-pad: 3.35rem; }
  .statement__scaffold { display: none; }
  .container { --bs-gutter-x: 2rem; }
  .hero { min-height: clamp(640px, 91svh, 730px); }
  .hero__scaffold { right: -16vw; width: 72vw; opacity: .26; }
  .hero__layout { padding-top: 7rem; padding-right: 22px; padding-bottom: 2.5rem; padding-left: 22px; }
  .hero__title { font-size: clamp(2.3rem, 11.7vw, 2.9rem); }
  .hero__subtitle { max-width: 29rem; }
  .proof-strip strong { font-size: 1.05rem; }
  .proof-strip span { font-size: .68rem; }
  .service-path p, .service-path ul li, .trust-list p { font-size: .9rem; }
  .solution-card, .project-feature, .project-feature--lead { min-height: 220px; }
  .product-rail__card { flex-basis: 84%; }
  .news-card__body { padding: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal, .hero__bg-img, .hero__eyebrow, .hero__title, .hero__subtitle, .hero__actions,
  .hero__datum, .hero__base, .hero__standard, .hero__ledger, .hero__brace, .hero__deck, .hero__guardrail,
  .hero__joint, .hero__lift, .hero__shimmer { animation: none; }
  .hero__bg-img { transform: scale(1.04); filter: blur(1.6px) brightness(.88) saturate(.92); }
  .hero__datum, .hero__base, .hero__standard, .hero__ledger, .hero__brace, .hero__deck, .hero__guardrail { stroke-dashoffset: 0; opacity: .8; }
  .hero__joint { opacity: .75; transform: none; }
  .hero__lift { opacity: 1; }
  .hero__shimmer { display: none; }
  .cuplock-gate__wire path { animation: none; stroke-dashoffset: 0; }
}
