:root {
  --ink: #0b1524;
  --ink-soft: #17263a;
  --paper: #f5f6f8;
  --white: #ffffff;
  --muted: #607086;
  --line: #dfe4ea;
  --brand: #e3222c;
  --brand-dark: #b9141d;
  --accent: #f3b61f;
  --shadow: 0 24px 70px rgba(7, 18, 34, 0.14);
  --radius: 22px;
  --shell: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.topbar {
  color: rgba(255,255,255,.78);
  background: #07111f;
  font-size: .76rem;
  letter-spacing: .02em;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p { margin: 0; }
.topbar i { margin-right: 7px; color: var(--brand); }
.topbar__contacts { display: flex; gap: 24px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 21, 36, .96);
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(15px);
}

.site-header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img, .footer__brand img {
  width: 168px;
  height: auto;
  filter: none;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 25px 0;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.3);
  font-size: .72rem;
}

.language-switch button {
  padding: 4px 2px;
  color: rgba(255,255,255,.52);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
}

.language-switch button:hover, .language-switch button.is-active { color: var(--white); }

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button i { font-size: .78rem; transition: transform .2s ease; }
.button:hover .fa-arrow-right { transform: translateX(3px); }

.button--primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(227, 34, 44, .24);
}

.button--primary:hover { background: var(--brand-dark); box-shadow: 0 15px 34px rgba(227, 34, 44, .32); }
.button--large { min-height: 56px; padding-inline: 28px; }
.button--glass { color: var(--white); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.26); backdrop-filter: blur(10px); }
.button--glass:hover { background: rgba(255,255,255,.16); }
.button--secondary { color: var(--ink); background: var(--white); border-color: var(--line); box-shadow: 0 8px 22px rgba(10,20,35,.07); }
.button--secondary:hover { border-color: var(--ink); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.35); }
.button--outline-light:hover { background: var(--white); color: var(--ink); }

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
}

.menu-toggle span { width: 19px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100dvh - 76px);
  overflow-y: auto;
  background: rgba(7,17,31,.99);
  box-shadow: 0 24px 40px rgba(0,0,0,.24);
}
.site-header:not(.is-scrolled) .mobile-menu { height: calc(100dvh - 114px); }
.mobile-menu nav { padding-block: 24px; display: grid; }
.mobile-menu a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.85); font-size: 1.15rem; font-weight: 700; }
.mobile-menu__contact { margin-top: 14px; color: var(--brand) !important; border: 0 !important; }

.hero {
  position: relative;
  min-height: clamp(670px, calc(100vh - 114px), 860px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media, .hero__shade { position: absolute; inset: 0; }

.hero__media {
  background-image: url("images/stock/hero-truck.jpg");
  background-position: center 52%;
  background-size: cover;
  transform: scale(1.02);
  animation: heroZoom 14s ease-out both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(6,15,27,.97) 0%, rgba(6,15,27,.83) 42%, rgba(6,15,27,.2) 74%, rgba(6,15,27,.36) 100%),
    linear-gradient(0deg, rgba(6,15,27,.72) 0%, transparent 32%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(82px, 10vh, 125px);
  padding-bottom: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__copy { width: min(720px, 70%); }

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow > span:first-child { width: 36px; height: 2px; background: currentColor; }
.eyebrow--light { color: #ff6670; }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 5.9rem);
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.75);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero__stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(7,17,31,.63);
  backdrop-filter: blur(14px);
}

.hero__stats > div {
  min-height: 112px;
  padding: 23px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.13);
}

.hero__stats > div:last-child { border-right: 0; }
.hero__stats strong { font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.1; letter-spacing: -.04em; }
.hero__stats span { margin-top: 7px; color: rgba(255,255,255,.54); font-size: .72rem; }

.hero__scroll { position: absolute; z-index: 3; right: 32px; bottom: 145px; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; }
.hero__scroll span { position: absolute; top: 8px; left: 11px; width: 3px; height: 7px; background: var(--white); border-radius: 4px; animation: scrollHint 2s infinite; }

.section { padding: 120px 0; }

.about { overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(60px, 8vw, 115px); align-items: center; }
.about__visual { position: relative; padding: 0 0 44px 44px; }
.about__image-wrap { position: relative; overflow: hidden; aspect-ratio: 4 / 4.15; background: var(--paper); }
.about__image-wrap::before { content: ""; position: absolute; z-index: -1; left: -44px; bottom: -44px; width: 68%; height: 62%; background: var(--paper); }
.about__image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.experience-card {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 210px;
  min-height: 164px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow);
}

.experience-card strong { font-size: 3.25rem; line-height: 1; letter-spacing: -.07em; }
.experience-card span { margin-top: 8px; font-size: .8rem; line-height: 1.45; }

.about h2, .section-heading h2, .contact h2, .parallax h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.about__copy .lead { margin: 28px 0 18px; color: var(--ink-soft); font-size: 1.08rem; font-weight: 600; }
.about__copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }

.check-grid { margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 24px; }
.check-grid > span { display: flex; align-items: center; gap: 10px; font-size: .83rem; font-weight: 700; }
.check-grid i { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 24px; color: var(--brand); background: rgba(227,34,44,.09); border-radius: 50%; font-size: .67rem; }

.text-link {
  padding: 0 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 2px solid var(--brand);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
}

.text-link i { color: var(--brand); transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }

.services { background: var(--paper); }
.section-heading { margin-bottom: 54px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr); gap: 70px; align-items: end; }
.section-heading > p { margin: 0 0 7px; color: var(--muted); font-size: .93rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow); }
.service-card__image { position: relative; aspect-ratio: 4 / 2.65; overflow: hidden; background: #ccd3da; }
.service-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,18,32,.52), transparent 55%); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card__image img { transform: scale(1.06); }
.service-card__image > span { position: absolute; z-index: 2; right: 18px; bottom: 12px; color: rgba(255,255,255,.85); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.service-card__body { position: relative; padding: 34px 28px 29px; }
.service-card__icon { position: absolute; top: -26px; left: 28px; width: 52px; height: 52px; display: grid; place-items: center; color: var(--white); background: var(--brand); box-shadow: 0 12px 25px rgba(227,34,44,.2); font-size: 1.05rem; }
.service-card h3 { margin: 10px 0 14px; font-size: 1.25rem; letter-spacing: -.03em; }
.service-card p { min-height: 93px; margin: 0; color: var(--muted); font-size: .86rem; }
.service-card__tags { margin-top: 22px; padding-top: 18px; display: flex; gap: 8px; border-top: 1px solid var(--line); }
.service-card__tags span { padding: 5px 10px; color: var(--ink-soft); background: var(--paper); border-radius: 3px; font-size: .66rem; font-weight: 800; letter-spacing: .06em; }

.services-detail { margin-top: 22px; padding: 55px 60px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; color: var(--white); background: var(--ink); }
.services-detail h3 { margin: 0 0 26px; font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.15; letter-spacing: -.045em; }
.services-list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; align-content: center; list-style: none; }
.services-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.74); font-size: .8rem; }
.services-list i { margin-top: 5px; color: var(--brand); }

.parallax {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: url("images/stock/parallax-excavator.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.parallax__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,15,27,.94) 0%, rgba(6,15,27,.78) 48%, rgba(6,15,27,.22) 100%); }
.parallax__content { position: relative; z-index: 1; }
.parallax__content > * { max-width: 640px; }
.parallax p:not(.eyebrow) { margin: 26px 0 34px; color: rgba(255,255,255,.72); font-size: 1rem; }

.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 255px; gap: 14px; }
.gallery-item { position: relative; grid-column: span 3; overflow: hidden; border: 0; background: #d8dde2; cursor: zoom-in; }
.gallery-item:nth-child(6n + 1), .gallery-item:nth-child(6n + 6) { grid-column: span 6; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,15,27,.56), transparent 58%); opacity: .55; transition: opacity .3s ease; }
.gallery-item:hover img { transform: scale(1.055); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item span { position: absolute; z-index: 2; right: 18px; bottom: 14px; color: var(--white); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.gallery-actions { margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 24px; }

.contact { padding-top: 120px; color: var(--white); background: var(--ink); }
.contact__grid { padding-bottom: 90px; display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(60px, 8vw, 115px); align-items: start; }
.contact__info > p:not(.eyebrow) { max-width: 540px; margin: 26px 0 35px; color: rgba(255,255,255,.65); }
.contact-list { display: grid; gap: 14px; }
.contact-list > a, .contact-list > div { display: flex; align-items: center; gap: 16px; }
.contact-list > a > span, .contact-list > div > span { width: 45px; height: 45px; display: grid; place-items: center; flex: 0 0 45px; color: var(--brand); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.contact-list small { display: block; color: rgba(255,255,255,.42); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { font-size: .87rem; }
.company-data { margin-top: 30px; padding-top: 23px; display: flex; gap: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .66rem; }
.company-data strong { margin-left: 6px; color: rgba(255,255,255,.76); }

.contact-card { padding: 42px; color: var(--ink); background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.form-heading { margin-bottom: 25px; }
.form-heading h3 { margin: 0; font-size: 1.55rem; letter-spacing: -.04em; }
.form-heading p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card label { margin-bottom: 16px; display: grid; gap: 7px; color: var(--ink-soft); font-size: .72rem; font-weight: 700; }
.contact-card input:not([type="checkbox"]), .contact-card textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--paper); border: 1px solid transparent; border-radius: 4px; outline: 0; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.contact-card input:not([type="checkbox"]) { height: 49px; }
.contact-card textarea { resize: vertical; min-height: 128px; }
.contact-card input:not([type="checkbox"]):focus, .contact-card textarea:focus { background: var(--white); border-color: var(--brand); box-shadow: 0 0 0 3px rgba(227,34,44,.1); }
.contact-card [aria-invalid="true"] { border-color: var(--brand); }
.privacy-consent { margin: 4px 0 19px; }
.contact-card .privacy-check { margin: 0; display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: .7rem; font-weight: 600; line-height: 1.55; cursor: pointer; }
.privacy-check input { width: 18px; height: 18px; margin: 1px 0 0; flex: 0 0 18px; accent-color: var(--brand); cursor: pointer; }
.privacy-check input[aria-invalid="true"] { outline: 2px solid var(--brand); outline-offset: 2px; }
.privacy-inline-link { margin: 7px 0 0 29px; padding: 0; color: var(--brand); background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; font-size: .68rem; font-weight: 800; }
.privacy-inline-link:hover { color: var(--brand-dark); }
.hp { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; }
.form-submit { width: 100%; }
.form-submit.is-loading { opacity: .75; pointer-events: none; }
.form-submit.is-loading i { animation: spin 1s linear infinite; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--muted); font-size: .77rem; text-align: center; }
.form-status.is-success { color: #15803d; }
.form-status.is-error { color: var(--brand-dark); }

.map-wrap { height: 400px; background: #dfe4ea; }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }
.map-placeholder { width: 100%; height: 100%; padding: 34px 20px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--ink); background: radial-gradient(circle at 25% 20%, #f8f9fa 0, #e5e9ed 42%, #d6dce2 100%); text-align: center; }
.map-placeholder[hidden] { display: none; }
.map-placeholder__icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--brand); background: var(--white); border-radius: 50%; box-shadow: 0 12px 30px rgba(7,18,34,.1); font-size: 1.35rem; }
.map-placeholder h3 { margin: 19px 0 7px; font-size: 1.3rem; letter-spacing: -.03em; }
.map-placeholder p { max-width: 560px; margin: 0 0 21px; color: var(--muted); font-size: .8rem; }

.footer { color: rgba(255,255,255,.58); background: #07111f; }
.footer__main { min-height: 165px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 45px; }
.footer__main p { max-width: 440px; margin: 0; font-size: .8rem; }
.footer__main nav { display: flex; gap: 24px; }
.footer__main nav a { color: rgba(255,255,255,.72); font-size: .76rem; font-weight: 700; }
.footer__main nav a:hover { color: var(--white); }
.footer__bottom { min-height: 62px; padding-block: 15px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.08); font-size: .64rem; }
.footer__author {
  color: var(--white);
  font-weight: 700;
  transition: color .2s ease;
}
.footer__author:hover { color: #ff4d58; }
.footer__privacy { padding: 0; color: rgba(255,255,255,.58); background: none; border: 0; border-bottom: 1px solid transparent; cursor: pointer; font-size: .64rem; transition: color .2s ease, border-color .2s ease; }
.footer__privacy:hover { color: var(--white); border-color: var(--brand); }

.privacy-dialog {
  width: min(760px, calc(100% - 30px));
  max-height: min(820px, calc(100dvh - 30px));
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.privacy-dialog::backdrop { background: rgba(3,8,15,.78); backdrop-filter: blur(5px); }
.privacy-dialog__inner { position: relative; padding: clamp(30px, 5vw, 55px); }
.privacy-dialog__close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: var(--paper); border: 0; border-radius: 50%; cursor: pointer; }
.privacy-dialog h2 { max-width: 580px; margin: 0 45px 30px 0; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -.05em; }
.privacy-dialog__content { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; }
.privacy-dialog__content section:last-child { grid-column: 1 / -1; }
.privacy-dialog__content h3 { margin: 0 0 7px; font-size: .82rem; }
.privacy-dialog__content p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.7; }
.privacy-dialog__content a { color: var(--brand); font-weight: 700; }
.privacy-dialog__footer { margin-top: 30px; padding-top: 22px; display: flex; justify-content: flex-end; border-top: 1px solid var(--line); }

.cookie-banner {
  position: fixed;
  z-index: 950;
  right: 22px;
  bottom: 22px;
  left: 22px;
  width: min(920px, calc(100% - 44px));
  margin-inline: auto;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: rgba(7,17,31,.98);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__copy strong { font-size: .88rem; }
.cookie-banner__copy p { margin: 3px 0; color: rgba(255,255,255,.66); font-size: .7rem; }
.cookie-banner__copy button { padding: 0; color: #ff6670; background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; font-size: .65rem; font-weight: 700; }
.cookie-banner__actions { display: flex; flex: 0 0 auto; gap: 9px; }
.cookie-banner .button { min-height: 43px; padding-inline: 17px; font-size: .7rem; }

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 45px 80px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(3,8,15,.96);
}

.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 1280px; max-height: 90vh; display: grid; place-items: center; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox figcaption { margin-top: 12px; color: rgba(255,255,255,.58); font-size: .75rem; }
.lightbox button { position: absolute; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; cursor: pointer; }
.lightbox__close { top: 22px; right: 22px; width: 46px; height: 46px; }
.lightbox__nav { top: 50%; width: 50px; height: 50px; transform: translateY(-50%); }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }

.scroll-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  cursor: pointer;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

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

@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.02); } }
@keyframes scrollHint { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(15px); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }
  .header-quote { display: none; }
  .hero__copy { width: 80%; }
  .about__grid { gap: 70px; }
  .experience-card { right: -15px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .service-card:last-child .service-card__image { aspect-ratio: auto; min-height: 300px; }
  .services-detail { gap: 45px; padding: 48px; }
  .footer__main { grid-template-columns: 190px 1fr; }
  .footer__main nav { grid-column: 1 / -1; padding-bottom: 28px; }
}

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .topbar p { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__contacts a:last-child { display: none; }
  .site-header__inner { height: 70px; }
  .brand img { width: 148px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { height: calc(100dvh - 70px); }
  .site-header:not(.is-scrolled) .mobile-menu { height: calc(100dvh - 108px); }
  .hero { min-height: 740px; }
  .hero__shade { background: linear-gradient(90deg, rgba(6,15,27,.94), rgba(6,15,27,.55)), linear-gradient(0deg, rgba(6,15,27,.78), transparent 45%); }
  .hero__content { padding-top: 85px; padding-bottom: 215px; }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: clamp(2.7rem, 10vw, 4.6rem); }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stats > div { min-height: 90px; padding: 17px 20px; }
  .hero__stats > div:nth-child(2) { border-right: 0; }
  .hero__stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .hero__scroll { display: none; }
  .section { padding: 85px 0; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 620px; padding-left: 28px; }
  .experience-card { right: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .services-detail { grid-template-columns: 1fr; }
  .parallax { min-height: 560px; background-attachment: scroll; }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-item, .gallery-item:nth-child(6n + 1), .gallery-item:nth-child(6n + 6) { grid-column: span 6; }
  .contact { padding-top: 85px; }
  .contact__grid { gap: 55px; }
  .footer__main { padding: 50px 0 28px; grid-template-columns: 1fr; gap: 22px; }
  .footer__main nav { grid-column: auto; padding: 0; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .language-switch { display: none; }
  .hero { min-height: 760px; }
  .hero__media { background-position: 62% center; }
  .hero__content { padding-top: 72px; }
  .hero h1 { letter-spacing: -.055em; }
  .hero__lead { margin-top: 22px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__stats strong { font-size: 1.3rem; }
  .hero__stats span { font-size: .64rem; }
  .about__visual { padding: 0 0 55px; }
  .about__image-wrap { aspect-ratio: 1 / 1.08; }
  .experience-card { width: 175px; min-height: 135px; padding: 21px; }
  .experience-card strong { font-size: 2.7rem; }
  .check-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: block; }
  .service-card:last-child .service-card__image { min-height: 0; aspect-ratio: 4 / 2.65; }
  .service-card p { min-height: 0; }
  .services-detail { margin-inline: -15px; padding: 42px 25px; }
  .services-list { grid-template-columns: 1fr; }
  .parallax__overlay { background: rgba(6,15,27,.8); }
  .gallery-grid { grid-auto-rows: 200px; }
  .gallery-item, .gallery-item:nth-child(6n + 1), .gallery-item:nth-child(6n + 6) { grid-column: span 12; }
  .gallery-actions { flex-direction: column; }
  .contact-card { margin-inline: -15px; padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .company-data { flex-direction: column; gap: 8px; }
  .map-wrap { height: 320px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .privacy-dialog__content { grid-template-columns: 1fr; }
  .privacy-dialog__content section:last-child { grid-column: auto; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; width: calc(100% - 24px); padding: 18px; align-items: stretch; flex-direction: column; gap: 15px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-banner .button { width: 100%; }
  .lightbox { padding: 60px 15px; }
  .lightbox__nav { top: auto; bottom: 18px; transform: none; }
  .lightbox__nav--prev { left: calc(50% - 62px); }
  .lightbox__nav--next { right: calc(50% - 62px); }
}

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