/* ==========================================================================
   Arto statyba — redesign
   Palette: primary #151515 · accent #E4002B (logo red) · bg #FFFFFF
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
:root {
  --primary: #151515;
  --primary-900: #0a0a0a;
  --primary-700: #1f1f1f;
  --accent: #E4002B;
  --accent-700: #B50022;
  --bg: #ffffff;
  --bg-alt: #f4f4f4;
  --bg-dark: #141414;
  --line: #e5e5e5;
  --line-strong: #cfcfcf;
  --muted: #8a8a8a;
  --text: #1a1a1a;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 2px;

  --ff-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --ff-display: 'Archivo', 'Inter', sans-serif;
  --ff-mono: ui-monospace, 'JetBrains Mono', Menlo, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #fff; padding: 12px 16px; z-index: 999;
}
.skip:focus { left: 12px; top: 12px; }

/* -------------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------------- */
.display {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 .8em;
  text-wrap: balance;
}
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.08; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); line-height: 1.2; }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px; background: var(--accent);
  display: inline-block;
}
.eyebrow--light { color: rgba(255,255,255,.78); }

.lede {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.55; color: #3a3a3a; max-width: 62ch;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
}
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-700); }
.btn--inverse { background: #fff; color: var(--primary); }
.btn--inverse:hover { background: var(--primary); color: #fff; }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: currentColor; color: #fff; }
.btn--ghost:hover span:not(.btn__arrow) { color: #fff; }

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--ff-display); font-weight: 800; letter-spacing: -.01em; text-decoration: none; }
.brand__logo { height: 42px; width: auto; display: block; object-fit: contain; }
.brand__text { display: inline-flex; align-items: baseline; gap: 10px; }
.brand__word { font-size: 1.15rem; color: var(--primary); }
.brand__mark { width: 10px; height: 10px; background: var(--accent); display: inline-block; transform: translateY(-2px); }
.brand__sub { font-size: .68rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.footer__brand .brand__logo { height: 38px; filter: brightness(0) invert(1); }
@media (max-width: 900px) { .brand__logo { height: 34px; } .brand__sub { display: none; } }

.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__link {
  position: relative; font-size: .92rem; font-weight: 500; color: var(--primary);
  padding: 10px 0; display: inline-flex; align-items: center; gap: 6px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 4px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .22s var(--ease);
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__caret { font-size: 10px; color: var(--muted); transition: transform .2s var(--ease); }

/* Dropdown */
.nav__item { position: relative; }
.nav__item--has-dd:hover > .nav__link .nav__caret,
.nav__item--has-dd:focus-within > .nav__link .nav__caret { transform: rotate(180deg); color: var(--accent); }
.dropdown {
  position: absolute; top: 100%; left: -18px; z-index: 60;
  background: #fff; border: 1px solid var(--line);
  min-width: 240px; padding: 8px 0; margin-top: 6px;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.22);
}
.dropdown::before {
  content: ""; position: absolute; top: -6px; left: 28px;
  width: 10px; height: 10px; background: #fff;
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.nav__item--has-dd:hover .dropdown,
.nav__item--has-dd:focus-within .dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; font-size: .9rem; font-weight: 500;
  color: var(--primary); border-left: 2px solid transparent;
  transition: background .15s, color .15s, border-color .15s, padding .15s;
}
.dropdown a::before {
  content: ""; width: 6px; height: 6px; background: var(--line);
  transition: background .15s;
}
.dropdown a:hover {
  background: var(--bg-alt); color: var(--accent);
  border-left-color: var(--accent); padding-left: 22px;
}
.dropdown a:hover::before { background: var(--accent); }

.nav__cta { padding: 10px 18px; }

.nav__toggle {
  display: none; background: none; border: 0; width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0;
}
.nav__toggle span { display: block; height: 2px; background: var(--primary); width: 22px; transition: transform .2s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; padding: 8px var(--gutter) 24px; gap: 0; border-bottom: 1px solid var(--line); background: #fff; }
.nav__mobile > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.nav__mobile[data-open="true"] { display: flex; }
.nav__mobile .mgroup { border-bottom: 1px solid var(--line); }
.nav__mobile .mgroup summary {
  list-style: none; padding: 14px 0; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__mobile .mgroup summary::-webkit-details-marker { display: none; }
.nav__mobile .mgroup summary::after {
  content: "+"; font-size: 16px; color: var(--muted); transition: transform .2s var(--ease); width: 18px; text-align: center;
}
.nav__mobile .mgroup[open] summary::after { content: "−"; color: var(--accent); }
.nav__mobile .mgroup a {
  display: block; padding: 8px 0 12px 18px; font-size: .9rem; font-weight: 400; color: #555;
  border-left: 2px solid var(--line);
  margin-left: 2px;
}
.nav__mobile .mgroup a:last-child { padding-bottom: 18px; }
.nav__mobile .mgroup a:hover { color: var(--accent); border-left-color: var(--accent); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
/* =========================================================================
   Hero v4 — SolidBuild replica (full-bleed cover + centered stack)
   ========================================================================= */
.hero4 {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
  padding: 120px 0 80px;
  background: #000;
}
.hero4__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero4__bg-image {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: hero4BgDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero4BgDrift {
  0%   { transform: scale(1.06) translate(0,0); }
  100% { transform: scale(1.1) translate(-1.5%, -1%); }
}
.hero4__bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,.75) 100%);
}

.hero4__inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero4__center {
  text-align: center;
  max-width: 820px;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

/* Brand name (tiny eyebrow, centered) */
.hero4__brand {
  font-family: var(--ff-display);
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: #fff; font-weight: 700;
  padding: 10px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero4__brand::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(228,0,43,.25);
  animation: hero4Pulse 2s ease-in-out infinite;
}
@keyframes hero4Pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(228,0,43,.4); }
  50%     { box-shadow: 0 0 0 8px rgba(228,0,43,0); }
}

/* Title */
.hero4__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 5.75rem);
  line-height: 1.02; letter-spacing: -.035em;
  margin: 0 0 28px;
}
.hero4__line { display: block; overflow: hidden; padding: 0 .02em .08em; }
.hero4__line > span { display: inline-block; transform: translateY(110%); }
.hero4__line--accent > span {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.reveal-line > span {
  animation: hero4LineUp 1.1s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes hero4LineUp {
  0%   { transform: translateY(110%); }
  100% { transform: translateY(0); }
}

/* Sub lede */
.hero4__sub {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 640px; margin: 0 auto 40px;
}

/* Pill CTA — signature SolidBuild element */
.hero4__cta-row { display: inline-flex; }
.hero4__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px;
  background: var(--accent); color: #fff;
  border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s ease, box-shadow .3s ease;
  box-shadow: 0 12px 32px -8px rgba(228,0,43,.55);
}
.hero4__cta:hover {
  background: var(--accent-700);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -8px rgba(228,0,43,.7);
}
.hero4__cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s ease;
}
.hero4__cta:hover .hero4__cta-arrow {
  background: #fff; color: var(--accent);
  transform: translateX(4px) rotate(-12deg);
}

/* Phone secondary */
.hero4__phone {
  margin-top: 34px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  color: #fff; transition: transform .3s ease;
}
.hero4__phone:hover { transform: translateY(-2px); }
.hero4__phone-label {
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 600;
}
.hero4__phone-num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.15rem; letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: border-color .3s ease;
}
.hero4__phone:hover .hero4__phone-num { border-color: var(--accent); color: var(--accent); }

/* Scroll cue (bottom center) */
.hero4__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600;
}
.hero4__scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,.25);
  position: relative; overflow: hidden;
}
.hero4__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--accent);
  transform-origin: top;
  animation: hero4ScrollRun 2.2s cubic-bezier(.6,.1,.4,1) infinite;
}
@keyframes hero4ScrollRun {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Responsive */
@media (max-width: 720px) {
  .hero4 { padding: 100px 0 80px; min-height: auto; }
  .hero4__brand { font-size: 10px; padding: 8px 14px; margin-bottom: 22px; }
  .hero4__sub { font-size: .98rem; margin-bottom: 30px; }
  .hero4__cta { padding: 16px 24px; font-size: 12px; }
  .hero4__phone { margin-top: 26px; }
  .hero4__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero4__bg-image, .hero4__brand::before, .hero4__scroll-line::after { animation: none !important; }
  .reveal-up, .reveal-line > span { animation: none !important; opacity: 1; transform: none !important; }
}

/* =========================================================================
   Hero v3 — (LEGACY, superseded by v4 — kept to avoid breaking other refs)
   ========================================================================= */
.hero3 {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: var(--primary-900);
  isolation: isolate;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 56px;
}
.hero3__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero3__bg-image {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  filter: grayscale(.2) brightness(.6) contrast(1.05) saturate(.9);
  transform: scale(1.05);
  animation: hero3BgDrift 22s ease-in-out infinite alternate;
}
@keyframes hero3BgDrift {
  0%   { transform: scale(1.05) translate(0,0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}
.hero3__bg-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.68) 42%, rgba(10,10,10,.35) 70%, rgba(10,10,10,.6) 100%),
    linear-gradient(180deg, rgba(10,10,10,.6) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,.85) 100%);
}
.hero3__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 85%, transparent 100%);
  opacity: .55;
}
.hero3__wrap { position: relative; z-index: 2; width: 100%; }

/* Top bar */
.hero3__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 56px;
}
.hero3__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.72); font-weight: 600;
}
.hero3__eyebrow-mark {
  display: inline-block; width: 26px; height: 1px;
  background: var(--accent);
  position: relative;
}
.hero3__eyebrow-mark::after {
  content: ""; position: absolute; left: 0; top: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(228,0,43,.22);
  animation: hero3Pulse 2s ease-in-out infinite;
}
@keyframes hero3Pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(228,0,43,.35); }
  50%     { box-shadow: 0 0 0 8px rgba(228,0,43,0); }
}
.hero3__phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-family: var(--ff-display); font-weight: 700;
  font-size: 1rem; letter-spacing: -.01em;
  padding: 10px 0; transition: color .3s ease;
}
.hero3__phone:hover { color: var(--accent); }
.hero3__phone-ico {
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  color: #fff;
  transition: all .3s ease;
}
.hero3__phone:hover .hero3__phone-ico {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: rotate(-12deg);
}

/* Main grid */
.hero3__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

/* Copy side */
.hero3__copy { position: relative; min-width: 0; }
.hero3__tag {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero3__tag-bar {
  display: inline-block; width: 8px; height: 8px; background: var(--accent);
}
.hero3__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.25rem, 5.4vw, 5rem);
  line-height: .98; letter-spacing: -.035em;
  margin: 0 0 32px;
}
.hero3__line {
  display: block; overflow: hidden; padding: 0 .02em .06em;
}
.hero3__line > span { display: inline-block; transform: translateY(110%); }
.hero3__line--accent > span {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.reveal-line > span {
  animation: hero3LineUp 1.1s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes hero3LineUp {
  0%   { transform: translateY(110%); }
  100% { transform: translateY(0); }
}

.hero3__lede {
  max-width: 560px; color: rgba(255,255,255,.82);
  font-size: 1.05rem; line-height: 1.7; margin: 0 0 40px;
}
.hero3__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero3__btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.hero3__btn--primary { background: var(--accent); color: #fff; }
.hero3__btn--primary:hover { background: var(--accent-700); transform: translateY(-2px); }
.hero3__btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.03); backdrop-filter: blur(6px); }
.hero3__btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.hero3__btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.hero3__btn:hover .hero3__btn-arrow { transform: translateX(5px); }

/* Showcase side */
.hero3__showcase {
  position: relative; display: flex; flex-direction: column;
  animation: hero3CardFloat 7s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero3CardFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.hero3__showcase-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.08);
}
.hero3__showcase-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.hero3__showcase:hover .hero3__showcase-frame img { transform: scale(1.08); }
.hero3__showcase-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.78) 100%);
}
.hero3__showcase-badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(10,10,10,.7);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
.hero3__showcase-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2ecc71; box-shadow: 0 0 8px rgba(46,204,113,.8);
  animation: hero3Pulse 2s ease-in-out infinite;
}
.hero3__showcase-cap {
  position: absolute; left: 22px; right: 22px; bottom: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero3__showcase-kicker {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.72); font-weight: 600;
}
.hero3__showcase-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.35rem; letter-spacing: -.01em;
}

.hero3__showcase-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-top: none;
}
.hero3__showcase-meta > div {
  padding: 16px 14px;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
}
.hero3__meta-label {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
}
.hero3__meta-val {
  font-family: var(--ff-display); font-weight: 700;
  font-size: .82rem; letter-spacing: -.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Services row */
.hero3__services {
  list-style: none; padding: 0; margin: 64px 0 0;
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero3__services li {
  padding: 24px 20px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; cursor: default;
}
.hero3__svc-line {
  position: absolute; top: -1px; left: 0; width: 0; height: 2px;
  background: var(--accent);
  transition: width .6s cubic-bezier(.2,.8,.2,1);
}
.hero3__services li:hover .hero3__svc-line { width: 100%; }
.hero3__svc-num {
  font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,.5);
  font-weight: 600;
}
.hero3__svc-txt {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.01em; color: #fff;
  transition: color .3s ease;
}
.hero3__services li:hover .hero3__svc-txt { color: var(--accent); }

/* Scroll cue */
.hero3__scroll {
  position: absolute; left: 40px; bottom: 32px; z-index: 3;
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.6);
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase; font-weight: 600;
  transition: color .3s ease;
}
.hero3__scroll:hover { color: #fff; }
.hero3__scroll-line {
  width: 1px; height: 60px; background: rgba(255,255,255,.28);
  position: relative; overflow: hidden;
}
.hero3__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--accent);
  transform-origin: top;
  animation: hero3ScrollRun 2.4s cubic-bezier(.6,.1,.4,1) infinite;
}
@keyframes hero3ScrollRun {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Entry animations (shared) */
.reveal-up { opacity: 0; transform: translateY(30px); animation: heroRevealUp .95s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: calc(var(--d, 0s) + .1s); }
.reveal-up[data-delay="0"]    { animation-delay: .15s; }
.reveal-up[data-delay="0.1"]  { animation-delay: .2s; }
.reveal-up[data-delay="0.15"] { animation-delay: .25s; }
.reveal-up[data-delay="0.4"]  { animation-delay: .5s; }
.reveal-up[data-delay="0.55"] { animation-delay: .6s; }
.reveal-up[data-delay="0.6"]  { animation-delay: .7s; }
.reveal-up[data-delay="0.65"] { animation-delay: .75s; }
.reveal-up[data-delay="0.75"] { animation-delay: .85s; }
.reveal-up[data-delay="0.8"]  { animation-delay: .9s; }
.reveal-up[data-delay="0.85"] { animation-delay: .95s; }
.reveal-up[data-delay="0.9"]  { animation-delay: 1.0s; }
.reveal-up[data-delay="0.95"] { animation-delay: 1.05s; }
.reveal-up[data-delay="1.0"]  { animation-delay: 1.1s; }
.reveal-up[data-delay="1.05"] { animation-delay: 1.15s; }
.reveal-up[data-delay="1.1"]  { animation-delay: 1.2s; }
.reveal-up[data-delay="1.15"] { animation-delay: 1.25s; }
.reveal-up[data-delay="1.2"]  { animation-delay: 1.3s; }
.reveal-up[data-delay="1.25"] { animation-delay: 1.35s; }
.reveal-up[data-delay="1.3"]  { animation-delay: 1.4s; }
@keyframes heroRevealUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero3__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero3__showcase { max-width: 460px; }
  .hero3__scroll { display: none; }
}
@media (max-width: 720px) {
  .hero3 { padding: 96px 0 48px; min-height: auto; }
  .hero3__top { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 32px; margin-bottom: 36px; }
  .hero3__title { margin-bottom: 24px; }
  .hero3__lede { margin-bottom: 28px; }
  .hero3__services { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .hero3__services li { padding: 18px 12px 0 0; }
  .hero3__showcase-meta { grid-template-columns: 1fr; }
  .hero3__showcase-frame { aspect-ratio: 5 / 4; }
}
@media (prefers-reduced-motion: reduce) {
  .hero3__bg-image, .hero3__showcase, .hero3__eyebrow-mark::after,
  .hero3__scroll-line::after, .hero3__showcase-badge-dot { animation: none !important; }
  .reveal-up, .reveal-line > span { animation: none !important; opacity: 1; transform: none !important; }
}

/* =========================================================================
   Hero v2 (LEGACY — kept for safety, superseded by v3 on home)
   ========================================================================= */
.hero2 {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: var(--primary);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 0 64px;
}
.hero2__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero2__bg-image {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  filter: grayscale(.35) brightness(.55) contrast(1.05);
  transform: scale(1.08);
  animation: hero2BgDrift 18s ease-in-out infinite alternate;
}
.hero2__bg-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 20%, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.9) 100%);
}
.hero2__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 40%, transparent 100%);
  opacity: .6;
}
@keyframes hero2BgDrift {
  0%   { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero2__wrap { position: relative; z-index: 2; width: 100%; }

/* Top meta row */
.hero2__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 56px;
}
.hero2__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.72); font-weight: 600;
}
.hero2__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(255,1,7,.18);
  animation: hero2Pulse 1.8s ease-in-out infinite;
}
@keyframes hero2Pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,1,7,.35); }
  50%     { box-shadow: 0 0 0 8px rgba(255,1,7,0); }
}
.hero2__contact {
  display: inline-flex; align-items: baseline; gap: 14px;
  color: #fff; font-family: var(--ff-display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: -.01em;
  padding: 10px 0; position: relative;
}
.hero2__contact-label {
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero2__contact-arrow {
  display: inline-block; transition: transform .35s cubic-bezier(.2,.7,.2,1);
  color: var(--accent);
}
.hero2__contact:hover .hero2__contact-arrow { transform: translateX(6px); }

/* Main grid */
.hero2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 72px;
  align-items: center;
}

/* Copy column */
.hero2__copy { position: relative; }
.hero2__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.75rem, 6.5vw, 6.25rem);
  line-height: .95; letter-spacing: -.035em;
  margin: 0 0 36px;
}
.hero2__line {
  display: block; overflow: hidden; padding: 0 .02em .05em;
}
.hero2__line > span { display: inline-block; transform: translateY(110%); }
.hero2__line--accent > span { color: var(--accent); font-style: italic; font-weight: 400; }

.reveal-line > span {
  animation: hero2LineUp 1.05s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes hero2LineUp {
  0%   { transform: translateY(110%); }
  100% { transform: translateY(0); }
}

.hero2__lede {
  max-width: 540px; color: rgba(255,255,255,.82);
  font-size: 1.05rem; line-height: 1.65; margin: 0 0 40px;
}
.hero2__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero2__btn {
  padding: 18px 26px; font-size: 13px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero2__btn-ghost {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px; color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; transition: all .3s ease;
  backdrop-filter: blur(6px);
}
.hero2__btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}
.hero2__btn-ghost .btn__arrow { transition: transform .3s ease; }
.hero2__btn-ghost:hover .btn__arrow { transform: translateX(5px); }

/* Image card */
.hero2__card {
  position: relative;
  display: flex; flex-direction: column;
  transform: translateY(0);
  animation: hero2CardFloat 6s ease-in-out infinite alternate;
}
@keyframes hero2CardFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.hero2__figure {
  position: relative; margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
}
.hero2__figure img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.hero2__card:hover .hero2__figure img { transform: scale(1.08); }
.hero2__figure-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%);
}
.hero2__figure-cap {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero2__figure-kicker {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 600;
}
.hero2__figure-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.3rem; letter-spacing: -.01em;
}

.hero2__card-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-top: none;
}
.hero2__card-meta-col {
  padding: 18px 18px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 6px;
}
.hero2__card-meta-label {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
}
.hero2__card-meta-val {
  font-family: var(--ff-display); font-weight: 700;
  font-size: .95rem; letter-spacing: -.01em;
}

/* Ticker row */
.hero2__ticker {
  list-style: none; padding: 0; margin: 64px 0 0;
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0; border-top: 1px solid rgba(255,255,255,.15);
}
.hero2__ticker li {
  padding: 22px 18px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  transition: color .3s ease;
}
.hero2__ticker li::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .5s cubic-bezier(.2,.8,.2,1);
}
.hero2__ticker li:hover::before { width: 100%; }
.hero2__ticker-num {
  font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.5);
  font-weight: 600;
}
.hero2__ticker-txt {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.01em;
}

/* Scroll indicator */
.hero2__scroll {
  position: absolute; left: 40px; bottom: 28px; z-index: 3;
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.6);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600;
}
.hero2__scroll:hover { color: #fff; }
.hero2__scroll-line {
  width: 1px; height: 56px; background: rgba(255,255,255,.3); position: relative; overflow: hidden;
}
.hero2__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: #fff; transform-origin: top;
  animation: hero2ScrollRun 2.2s cubic-bezier(.6,.1,.4,1) infinite;
}
@keyframes hero2ScrollRun {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Entry animations */
.reveal-up { opacity: 0; transform: translateY(28px); animation: hero2RevealUp .9s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: calc(var(--d, 0s) + .1s); }
.reveal-up[data-delay="0"]    { animation-delay: .15s; }
.reveal-up[data-delay="0.4"]  { animation-delay: .5s; }
.reveal-up[data-delay="0.6"]  { animation-delay: .7s; }
.reveal-up[data-delay="0.75"] { animation-delay: .85s; }
.reveal-up[data-delay="0.85"] { animation-delay: .95s; }
.reveal-up[data-delay="0.95"] { animation-delay: 1.05s; }
.reveal-up[data-delay="1.05"] { animation-delay: 1.15s; }
.reveal-up[data-delay="1.15"] { animation-delay: 1.25s; }
.reveal-up[data-delay="1.25"] { animation-delay: 1.35s; }
@keyframes hero2RevealUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero2 { padding: 104px 0 56px; }
  .hero2__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero2__card { max-width: 460px; }
  .hero2__scroll { display: none; }
}
@media (max-width: 720px) {
  .hero2 { padding: 96px 0 48px; min-height: auto; }
  .hero2__top { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 40px; margin-bottom: 36px; }
  .hero2__contact { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero2__title { margin-bottom: 28px; }
  .hero2__lede { margin-bottom: 28px; }
  .hero2__ticker { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .hero2__ticker li { padding: 18px 12px 0 0; }
  .hero2__figure { aspect-ratio: 5 / 4; }
}
@media (prefers-reduced-motion: reduce) {
  .hero2__bg-image, .hero2__card, .hero2__eyebrow-dot, .hero2__scroll-line::after { animation: none !important; }
  .reveal-up, .reveal-line > span { animation: none !important; opacity: 1; transform: none !important; }
}

/* Compact page hero */
.phero {
  position: relative; color: #fff;
  background: var(--primary);
  padding: 120px 0 64px;
  overflow: hidden;
}
.phero__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.phero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.2), rgba(20,20,20,.85));
}
.phero__inner { position: relative; z-index: 2; }
.phero h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin: 0 0 10px; }
.phero p { color: rgba(255,255,255,.8); max-width: 58ch; margin: 0; }
.phero__crumbs { display: flex; gap: 10px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.phero__crumbs a:hover { color: #fff; }
.phero__crumbs span { color: var(--accent); }

/* -------------------------------------------------------------------------
   Section scaffolding
   ------------------------------------------------------------------------- */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--alt { background: var(--bg-alt); }
/* Contact section right after the dark rental CTA — tighten the gap */
.cta-split + .section { padding-top: clamp(56px, 6vw, 80px); }
.cta-split + .section .section__head { margin-bottom: 32px; }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark .eyebrow { color: rgba(255,255,255,.7); }

.section__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
}
.section__head h2 { margin: 0; max-width: 20ch; }
.section__head p { color: #555; max-width: 46ch; margin: 0; }
.section--dark .section__head p { color: rgba(255,255,255,.7); }

/* -------------------------------------------------------------------------
   Marquee
   ------------------------------------------------------------------------- */
.marquee {
  overflow: hidden; background: var(--primary); color: #fff;
  border-top: 1px solid var(--primary-700); border-bottom: 1px solid var(--primary-700);
}
.marquee__track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 42s linear infinite;
  padding: 20px 0;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em;
  text-transform: uppercase;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track span::after { content: ""; width: 10px; height: 10px; background: var(--accent); display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* -------------------------------------------------------------------------
   About stripe (home)
   ------------------------------------------------------------------------- */
.about-stripe { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-stripe__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-stripe__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.about-stripe__media:hover img { transform: scale(1.03); }
.about-stripe__tag {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--accent); color: #fff; padding: 10px 16px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 700;
}
@media (max-width: 820px) { .about-stripe { grid-template-columns: 1fr; } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats > div { padding: 28px 24px; border-right: 1px solid var(--line); }
.stats > div:last-child { border-right: 0; }
.stats dt { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stats dd { margin: 0; font-size: 13px; letter-spacing: .04em; color: var(--muted); }

/* -------------------------------------------------------------------------
   Service grid (home)
   ------------------------------------------------------------------------- */
/* SolidBuild-style service cards: photo + red panel with title */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-tile {
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #0e0e0e;
  border-radius: 14px;
  min-height: 380px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.svc-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px -18px rgba(0,0,0,.35);
}
.svc-tile__bg {
  position: relative;
  flex: 1;
  min-height: 220px;
  background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
  overflow: hidden;
}
.svc-tile:hover .svc-tile__bg { transform: scale(1.06); }
.svc-tile__num {
  position: absolute; top: 18px; left: 20px; z-index: 3;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .22em;
  color: #fff; font-weight: 700;
  background: rgba(0,0,0,.55);
  padding: 6px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}
.svc-tile__panel {
  position: relative; z-index: 2;
  background: var(--accent);
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  transition: background .35s ease;
  min-height: 120px;
}
.svc-tile:hover .svc-tile__panel { background: var(--accent-700); }
.svc-tile__panel h3 {
  font-family: var(--ff-display);
  font-size: 1rem; line-height: 1.25;
  font-weight: 700; letter-spacing: -.01em;
  margin: 0;
  color: #fff;
  max-width: 22ch;
}
.svc-tile__arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease, color .25s ease;
}
.svc-tile:hover .svc-tile__arrow {
  transform: translate(5px, -3px) rotate(-8deg);
  background: #111; color: #fff;
}
.svc-tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } .svc-tile { min-height: 340px; } }
@media (max-width: 520px)  { .svc-grid { grid-template-columns: 1fr; } .svc-tile { min-height: 320px; } }

/* -------------------------------------------------------------------------
   Project tiles
   ------------------------------------------------------------------------- */
.projects { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.project {
  position: relative; overflow: hidden; aspect-ratio: 4/3; color: #fff;
  background: var(--primary);
}
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .4s; }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75)); transition: opacity .3s; }
.project:hover img { transform: scale(1.06); }
.project__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; z-index: 2; }
.project__tag { display: inline-block; background: var(--accent); padding: 5px 10px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.project h3 { font-size: 1.3rem; margin: 0; }

.projects .project:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.projects .project:nth-child(2) { grid-column: span 5; aspect-ratio: 16/10; }
.projects .project:nth-child(3) { grid-column: span 4; }
.projects .project:nth-child(4) { grid-column: span 4; }
.projects .project:nth-child(5) { grid-column: span 4; }

@media (max-width: 820px) {
  .projects { grid-template-columns: repeat(2, 1fr); }
  .projects .project { grid-column: span 1 !important; aspect-ratio: 4/3; }
}

/* Works grid (full category index) */
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .works { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery a { display: block; overflow: hidden; aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* -------------------------------------------------------------------------
   CTA strip
   ------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
   Pre-footer CTA banner — redesigned from split-screen to a centered bold band
   (visual-only change; HTML markup unchanged across all 6 pages)
   --------------------------------------------------------------------------- */
.cta-split {
  position: relative;
  display: block;
  min-height: 0;
  padding: clamp(88px, 11vw, 140px) clamp(24px, 6vw, 72px);
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 45%, #0f0f0f 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
/* Hide the old right-panel photo */
.cta-split__media { display: none !important; }

/* Thin red top accent line (logo color) */
.cta-split::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
  z-index: 3;
}
/* Animated red glow that drifts behind the content */
.cta-split::after {
  content: "";
  position: absolute;
  right: -12%; top: -20%;
  width: 75%; height: 150%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(228,0,43,.22) 0%, rgba(228,0,43,.08) 40%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: ctaGlowDrift 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaGlowDrift {
  0%   { transform: translate(0, 0); opacity: .7; }
  100% { transform: translate(-5%, 4%); opacity: 1; }
}

/* Centered content (restyles the existing .cta-split__text block) */
.cta-split__text {
  position: relative; z-index: 2;
  background: none;
  padding: 0;
  max-width: 860px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

/* Eyebrow as a small rounded pill */
.cta-split__text .eyebrow,
.cta-split__text .eyebrow--light {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  margin: 0;
}
.cta-split__text .eyebrow::before,
.cta-split__text .eyebrow--light::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(228,0,43,.22);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(228,0,43,.4); }
  50%     { box-shadow: 0 0 0 8px rgba(228,0,43,0); }
}

/* Giant headline */
.cta-split__text h2 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0;
  max-width: 20ch;
}

/* Supporting paragraph */
.cta-split__text p {
  color: rgba(255,255,255,.78);
  max-width: 58ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Buttons row (the last <div> in .cta-split__text) */
.cta-split__text > div:last-child {
  display: inline-flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  margin-top: 6px;
}
/* Pill-shape all buttons in this band (matches hero4 CTA language) */
.cta-split .btn {
  border-radius: 999px !important;
  padding: 16px 28px !important;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.cta-split .btn--primary {
  box-shadow: 0 12px 32px -12px rgba(228,0,43,.55);
}
.cta-split .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px rgba(228,0,43,.7);
}
.cta-split .btn--ghost {
  border: 1px solid rgba(255,255,255,.28) !important;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
.cta-split .btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6) !important;
  transform: translateY(-3px);
}

@media (max-width: 820px) {
  .cta-split { padding: 80px 24px; }
  .cta-split__text { gap: 18px; }
  .cta-split__text h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-split::after, .cta-split__text .eyebrow::before { animation: none !important; }
}

/* -------------------------------------------------------------------------
   Services list (paslaugos)
   ------------------------------------------------------------------------- */
.svc-row {
  display: grid; grid-template-columns: 80px 1fr 1fr 40px;
  gap: 32px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease), background .25s;
}
.svc-row:first-child { border-top: 1px solid var(--line); }
.svc-row__num { font-family: var(--ff-mono); color: var(--muted); font-size: 14px; }
.svc-row__title { font-family: var(--ff-display); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -.01em; }
.svc-row__desc { color: #555; font-size: .96rem; }
.svc-row__media { display: none; }
.svc-row:hover { padding-left: 20px; padding-right: 20px; background: var(--bg-alt); }
.svc-row:hover .svc-row__num { color: var(--accent); }

@media (max-width: 760px) {
  .svc-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .svc-row__desc { grid-column: 2; }
  .svc-row__arrow { display: none; }
}

/* -------------------------------------------------------------------------
   Rental catalog
   ------------------------------------------------------------------------- */
.rental-list { display: grid; gap: 20px; }
.rental-card {
  display: grid; grid-template-columns: 380px 1fr; gap: 0;
  border: 1px solid var(--line); background: #fff;
  overflow: hidden;
}
.rental-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.rental-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.rental-card:hover .rental-card__media img { transform: scale(1.04); }
.rental-card__body { padding: 28px 32px; }
.rental-card__eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.rental-card h3 { margin: 0 0 14px; font-size: 1.35rem; }
.rental-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.rental-card ul li { position: relative; padding-left: 20px; font-size: .93rem; color: #3a3a3a; }
.rental-card ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 2px; background: var(--accent); }
.rental-card__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.rental-card__chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 12px; font-size: 12px; font-weight: 500; color: var(--primary);
  letter-spacing: .02em; transition: border-color .2s, color .2s;
}
.rental-card__chip::before {
  content: ""; width: 6px; height: 6px; background: var(--accent); display: inline-block; flex-shrink: 0;
}
.rental-card__chip:hover { border-color: var(--primary); color: var(--primary); }
@media (max-width: 820px) { .rental-card { grid-template-columns: 1fr; } .rental-card__media { aspect-ratio: 16/10; } }

/* Tools — clean 2-col text list (no empty image boxes) */
.tools-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.tools-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 18px 24px; border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .2s var(--ease), padding .2s var(--ease);
}
.tools-list li:nth-child(odd) { border-right: 1px solid var(--line); }
.tools-list li:hover { background: var(--bg-alt); padding-left: 32px; }
.tools-list__name {
  font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--primary);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 12px;
}
.tools-list__name::before {
  content: ""; width: 14px; height: 2px; background: var(--accent); display: inline-block;
}
.tools-list__spec {
  font-family: var(--ff-mono); font-size: .82rem; color: var(--muted);
  letter-spacing: .02em; text-align: right; flex-shrink: 0;
}
@media (max-width: 720px) {
  .tools-list { grid-template-columns: 1fr; }
  .tools-list li { padding: 16px 18px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .tools-list li:nth-child(odd) { border-right: 0; }
  .tools-list__spec { text-align: left; }
}

.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool { background: #fff; border: 1px solid var(--line); padding: 20px; display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: center; }
.tool__img { width: 80px; height: 80px; background: var(--bg-alt); overflow: hidden; }
.tool__img img { width: 100%; height: 100%; object-fit: cover; }
.tool h4 { font-family: var(--ff-display); font-size: .98rem; margin: 0 0 4px; }
.tool p { margin: 0; font-size: .84rem; color: var(--muted); }
@media (max-width: 980px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tools-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Team + contacts
   ------------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-card { background: #fff; border: 1px solid var(--line); overflow: hidden; display: grid; grid-template-columns: 200px 1fr; gap: 0; }
.team-card__img { aspect-ratio: 1; background: var(--bg-alt); overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .4s; }
.team-card:hover .team-card__img img { filter: grayscale(0); }
.team-card__body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.team-card h3 { margin: 0 0 4px; font-size: 1.2rem; }
.team-card .role { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 14px; }
.team-card a { color: var(--primary); }
.team-card a:hover { color: var(--accent); }
@media (max-width: 760px) { .team { grid-template-columns: 1fr; } .team-card { grid-template-columns: 120px 1fr; } }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info { padding: 26px; border: 1px solid var(--line); }
.info h4 { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; font-family: var(--ff-sans); font-weight: 600; }
.info p, .info a { margin: 0; font-size: 1rem; color: var(--primary); font-weight: 500; line-height: 1.5; }
.info a:hover { color: var(--accent); }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }

/* Form */
.form { display: grid; gap: 16px; max-width: 620px; }
.form label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: block; margin-bottom: 6px; }
.form input, .form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: #fff;
  font: inherit; border-radius: var(--radius);
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form textarea { min-height: 140px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.footer { background: var(--primary-900); color: rgba(255,255,255,.75); padding: 64px 0 28px; font-size: .94rem; }
.footer a { color: inherit; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { display: inline-flex; align-items: baseline; gap: 10px; color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 14px; }
.footer__brand .brand__mark { background: var(--accent); }
.footer__desc { max-width: 36ch; line-height: 1.55; }
.footer h5 { color: #fff; font-family: var(--ff-sans); font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__bar { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .04em; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__bar { flex-direction: column; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Utilities
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--accent); z-index: 100; }

.two-col { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.prose p { color: #333; font-size: 1.02rem; line-height: 1.7; }
.prose p + p { margin-top: 1em; }

.divider { height: 1px; background: var(--line); margin: clamp(40px, 6vw, 80px) 0; }

.map { aspect-ratio: 16/7; background: var(--bg-alt); border: 1px solid var(--line); overflow: hidden; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.6) contrast(1.05); }

.tag-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--line); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.tag-pill::before { content: ""; width: 8px; height: 8px; background: var(--accent); }

/* -------------------------------------------------------------------------
   Varied layouts (to break repetition)
   ------------------------------------------------------------------------- */

/* Horizontal step timeline (paslaugos · how we work) */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  counter-reset: step;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; left: 0; right: 0; top: 28px;
  height: 1px; background: var(--line);
}
.timeline__step {
  position: relative; padding: 64px 24px 10px 0;
}
.timeline__step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--ff-mono); font-weight: 600; font-size: 14px; color: var(--primary);
  transition: background .2s, color .2s, border-color .2s;
}
.timeline__step:hover::before { background: var(--accent); color: #fff; border-color: var(--accent); }
.timeline__step h3 { font-size: 1rem; margin: 0 0 6px; }
.timeline__step p { margin: 0; color: #555; font-size: .88rem; line-height: 1.5; }
@media (max-width: 820px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { left: 28px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .timeline__step { padding: 10px 0 24px 80px; }
}

/* Values 2-col (apie) */
.values {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.value {
  display: grid; grid-template-columns: 90px 1fr;
  padding: 32px 0; gap: 24px;
  border-bottom: 1px solid var(--line);
}
.value:nth-child(odd)  { padding-right: 32px; border-right: 1px solid var(--line); }
.value:nth-child(even) { padding-left: 32px; }
.value__num {
  font-family: var(--ff-display); font-size: 2.8rem; font-weight: 800;
  color: var(--accent); line-height: 1; letter-spacing: -0.02em;
}
.value h3 { font-size: 1.15rem; margin: 0 0 8px; }
.value p { margin: 0; color: #555; font-size: .94rem; line-height: 1.55; }
@media (max-width: 760px) {
  .values { grid-template-columns: 1fr; }
  .value, .value:nth-child(odd) { padding: 28px 0; border-right: 0; padding-right: 0; padding-left: 0; }
}

/* Benefits check-list (karjera) */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; border-top: 1px solid var(--line); }
.benefit {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.benefit__mark {
  flex: 0 0 28px; width: 28px; height: 28px;
  background: var(--primary); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  transition: background .2s;
}
.benefit:hover .benefit__mark { background: var(--accent); }
.benefit h3 { font-size: 1rem; margin: 0 0 4px; font-family: var(--ff-sans); font-weight: 600; }
.benefit p { margin: 0; color: #555; font-size: .9rem; }
@media (max-width: 760px) { .benefits { grid-template-columns: 1fr; gap: 0; } }

/* Full-width band (home stats band alt) */
.band {
  background: var(--primary); color: #fff; padding: 40px 0;
  border-top: 1px solid var(--primary-700); border-bottom: 1px solid var(--primary-700);
}
.band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.band__item dt { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 6px; }
.band__item dd { margin: 0; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); }
@media (max-width: 820px) { .band__grid { grid-template-columns: repeat(2, 1fr); } }

/* Image overlay helper (for consistent ratio on all cards) */
.frame { position: relative; overflow: hidden; background: var(--bg-alt); }
.frame > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame--4x3 { aspect-ratio: 4/3; }
.frame--16x9 { aspect-ratio: 16/9; }
.frame--1x1 { aspect-ratio: 1/1; }

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