/* =========================================================
   UAB Bildeka — statybų įmonė iš Alytaus
   Clean modern build. Blue primary, deep neutrals, Inter.
   ========================================================= */

:root {
  --primary: #1863DC;
  --primary-rgb: 24, 99, 220;
  --primary-dark: #0056A7;
  --primary-light: #0BA5EC;

  --black: #212121;
  --dark: #0A0A0A;
  --grey: #858585;
  --grey-300: #d9d9d9;
  --grey-200: #e5e5e5;
  --light: #F4F4F4;
  --white: #ffffff;

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", "Courier New", ui-monospace, monospace;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 44px);
  --section: clamp(72px, 10vw, 128px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: transparent; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--primary); color: var(--white); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--dark); color: var(--white); padding: 10px 14px; font-size: 13px; z-index: 9999; }
.skip:focus { left: 12px; top: 12px; }

/* ========== LAYOUT ========== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section) 0; }
.section-tight { padding: clamp(56px, 7vw, 88px) 0; }

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  display: inline-block;
  margin-bottom: 18px;
}
.label.on-dark { color: rgba(255,255,255,0.58); }

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-weight: 700;
}
h1 { font-size: clamp(40px, 6.2vw, 74px); font-weight: 800; line-height: 1.04; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: 19px; letter-spacing: -0.012em; font-weight: 600; }

p { max-width: 64ch; }
.lead { font-size: 17px; color: #555; line-height: 1.75; max-width: 60ch; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey); }
.muted { color: #6a6a6a; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.01em;
  border: 1px solid transparent; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .ar { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .ar { transform: translateX(3px); }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost-light { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light); }

/* ========== TOPBAR ========== */
.topbar { background: var(--dark); color: rgba(255,255,255,0.7); font-size: 12.5px; letter-spacing: 0.03em; }
.topbar-inner { max-width: var(--max); margin: 0 auto; padding: 9px var(--pad); display: flex; justify-content: space-between; gap: 24px; }
.topbar a { color: inherit; transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
@media (max-width: 640px) { .topbar { display: none; } }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}
.navbar.transparent {
  background: transparent; border-bottom-color: transparent;
  position: absolute; top: 0;
}
.navbar.transparent .nav-links a,
.navbar.transparent .nav-brand-text { color: var(--white); }
.navbar.transparent .burger span { background: var(--white); }
.navbar.scrolled { background: var(--white); border-bottom-color: var(--grey-200); box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.navbar.scrolled .nav-links a { color: var(--black); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--black);
  position: relative; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links .btn { padding: 10px 18px; font-size: 14px; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 10px; opacity: 0.6; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--grey-200); border-radius: 10px;
  padding: 10px; min-width: 260px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px;
  color: var(--black) !important; font-size: 14px;
}
.nav-dropdown-menu a:hover { background: var(--light); color: var(--primary) !important; }

.burger {
  display: none; width: 30px; height: 22px; position: relative;
}
.burger span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--black);
  transition: all 0.25s ease;
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger { display: block; }
}

.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  padding: 100px var(--pad) 40px;
  transform: translateX(100%); transition: transform 0.35s ease;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 22px; font-weight: 600; color: var(--black);
  padding: 14px 0; border-bottom: 1px solid var(--grey-200);
}
.mobile-nav .m-sub { font-size: 14px; color: var(--grey); font-weight: 500; padding: 10px 0 4px; border: 0; }
.mobile-nav .m-tail { margin-top: 32px; display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.mobile-nav .m-tail a { border: 0; padding: 4px 0; font-size: 15px; color: var(--primary); font-weight: 500; }

/* ========== HERO (home) ========== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark); color: var(--white);
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.25) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; }
.hero-top { display: flex; justify-content: flex-start; gap: 18px 32px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-top span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-top-coord { position: relative; padding-left: 18px; }
.hero-top-coord::before { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); transform: translateY(-50%); box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 230, 132, 0), 0.18); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px; border: 1px solid rgba(255,255,255,0.16); border-radius: 100px;
  background: rgba(255,255,255,0.03); width: fit-content;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; max-width: 18ch; font-size: clamp(38px, 4.6vw, 68px); line-height: 1.04; }
.hero h1 .accent { color: var(--primary-light); display: inline; }
.hero .sub { font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,0.78); max-width: 48ch; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 28px; }
.hero-stats > div { padding: 0 24px; border-left: 1px solid rgba(255,255,255,0.12); }
.hero-stats > div:first-child { border-left: 0; padding-left: 0; }
.hero-stats strong { display: block; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: -0.01em; }
.hero-stats span { font-size: 12.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }

.hero-right { position: relative; display: flex; justify-content: flex-end; align-items: flex-end; min-height: 260px; }
.hero-badge {
  background: rgba(255,255,255,0.96); color: var(--black);
  padding: 18px 24px; border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; gap: 4px;
  border-left: 4px solid var(--primary);
  backdrop-filter: blur(6px);
}
.hero-badge strong { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.hero-badge span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #555; }

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { justify-content: flex-start; min-height: 0; }
}
@media (max-width: 720px) {
  .hero h1 { max-width: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .hero-stats > div { border-left: 0; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .hero-stats > div:first-child { border-top: 0; padding-top: 0; }
}

/* ========== SECONDARY HERO (service/inner pages) ========== */
.subhero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center;
  background: var(--dark); color: var(--white);
  padding: 140px 0 80px;
  overflow: hidden;
}
.subhero-bg { position: absolute; inset: 0; z-index: 0; }
.subhero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 100%); }
.subhero-bg img { width: 100%; height: 100%; object-fit: cover; }
.subhero .container { position: relative; z-index: 1; }
.subhero h1 { color: var(--white); max-width: 20ch; }
.subhero .sub { color: rgba(255,255,255,0.78); margin-top: 22px; font-size: 17px; max-width: 56ch; }
.breadcrumb { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 26px; }
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }

.subhero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.18); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ========== FEATURE GRID ========== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 60px; margin-top: 56px; }
.feature { display: flex; flex-direction: column; gap: 16px; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.feature h4 { margin-bottom: 4px; }
.feature p { font-size: 15px; color: #555; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ========== SERVICES CARD GRID ========== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: 12px;
  overflow: hidden; transition: all 0.25s ease;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--primary); box-shadow: 0 18px 40px rgba(24,99,220,0.08); transform: translateY(-3px); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-body h4 { font-size: 20px; }
.card-body p { font-size: 14.5px; color: #666; flex: 1; }
.card-body .more { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: 0.02em; }
@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

/* ========== STATS ========== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 28px 28px; border-left: 1px solid var(--grey-200); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num { font-size: clamp(42px, 5vw, 60px); font-weight: 800; color: var(--primary); letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.stat-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); }
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px 0; border-left: 0; border-top: 1px solid var(--grey-200); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { padding-right: 20px; }
  .stat:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--grey-200); }
}

.stats-dark { background: var(--dark); }
.stats-dark .stat { color: var(--white); border-left-color: rgba(255,255,255,0.18); }
.stats-dark .stat-num { color: var(--white); }
.stats-dark .stat-label { color: rgba(255,255,255,0.6); }

/* ========== CTA ========== */
.cta { background: var(--primary); color: var(--white); padding: clamp(64px, 9vw, 96px) 0; text-align: center; }
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.82); margin: 0 auto 32px; font-size: 17px; max-width: 52ch; }

.cta-strip { background: var(--primary); color: var(--white); padding: 40px 0; }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h3 { color: var(--white); font-size: 22px; max-width: 40ch; }

/* ========== SPLIT (about) ========== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-img { height: 560px; border-radius: 6px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 24px; }
.split-body p { font-size: 16px; line-height: 1.85; color: #555; margin-bottom: 16px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { height: 360px; order: -1; }
}

/* ========== SERVICE PAGE CONTENT ========== */
.service-content { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; }
.service-content .service-text h2 { margin-bottom: 24px; }
.service-content .service-text p { margin-bottom: 18px; font-size: 16.5px; color: #555; line-height: 1.85; }
.service-content .service-text ul { margin: 22px 0 0; }
.service-content .service-text ul li {
  padding-left: 28px; position: relative; margin-bottom: 10px; color: #555;
}
.service-content .service-text ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 14px; height: 2px; background: var(--primary);
}
.service-images { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.service-images .si-tall { grid-column: span 2; height: 320px; border-radius: 6px; overflow: hidden; }
.service-images .si-half { height: 220px; border-radius: 6px; overflow: hidden; }
.service-images img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .service-content { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== SERVICES LIST (paslaugos) ========== */
.serv-list { border-top: 1px solid var(--grey-200); margin-top: 56px; }
.serv-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 28px; align-items: baseline;
  padding: 34px 20px; border-bottom: 1px solid var(--grey-200);
  transition: background 0.2s ease;
}
.serv-row:hover { background: var(--light); }
.serv-row .n { font-family: var(--mono); font-size: 13px; color: var(--grey); letter-spacing: 0.1em; }
.serv-row .name { font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; color: var(--black); letter-spacing: -0.02em; }
.serv-row .desc { grid-column: 2; color: #666; font-size: 15px; margin-top: 6px; max-width: 62ch; }
.serv-row .go { color: var(--primary); font-weight: 600; font-size: 14.5px; align-self: center; }
.serv-row:hover .go { transform: translateX(3px); }
@media (max-width: 720px) {
  .serv-row { grid-template-columns: 40px 1fr; padding: 26px 4px; }
  .serv-row .go { grid-column: 2; grid-row: 3; margin-top: 10px; }
}

/* ========== PROJECTS GALLERY ========== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ========== PROJECTS TABLE ========== */
.tabs { display: flex; gap: 4px; margin: 48px 0 22px; border-bottom: 1px solid var(--grey-200); }
.tab {
  padding: 12px 22px; font-size: 14px; font-weight: 600; color: #666;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all 0.2s;
}
.tab:hover { color: var(--primary); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.ptable { width: 100%; border-collapse: collapse; }
.ptable th, .ptable td {
  padding: 18px 16px; text-align: left;
  border-bottom: 1px solid var(--grey-200);
  font-size: 14.5px;
}
.ptable th { font-weight: 600; color: var(--grey); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.ptable tbody tr { transition: background 0.15s; }
.ptable tbody tr:hover { background: var(--light); }
.ptable td.year { font-family: var(--mono); color: var(--grey); font-size: 13px; letter-spacing: 0.04em; width: 80px; }
.ptable td.obj { color: var(--black); font-weight: 500; }
.pill { display: inline-block; padding: 5px 12px; border-radius: 100px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.pill-active { background: var(--primary); color: var(--white); }
.pill-done { background: var(--light); color: var(--grey); }
@media (max-width: 720px) {
  .ptable thead { display: none; }
  .ptable, .ptable tbody, .ptable tr, .ptable td { display: block; width: 100%; }
  .ptable tr { padding: 16px 0; border-bottom: 1px solid var(--grey-200); }
  .ptable td { border: 0; padding: 3px 0; }
  .ptable td.year { width: auto; }
}

/* ========== CONTACT PAGE ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-phone { font-size: clamp(38px, 5.2vw, 58px); font-weight: 800; color: var(--primary); letter-spacing: -0.02em; line-height: 1.05; display: inline-block; margin: 14px 0 30px; }
.contact-phone:hover { color: var(--primary-dark); }
.contact-item { padding: 18px 0; border-bottom: 1px solid var(--grey-200); }
.contact-item .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
.contact-item .v { font-size: 16px; color: var(--black); }
.contact-item a.v:hover { color: var(--primary); }

.rekvizitai { background: var(--light); border-radius: 10px; padding: 28px 30px; }
.rekvizitai h4 { margin-bottom: 18px; }
.rekvizitai dl { display: grid; grid-template-columns: 180px 1fr; gap: 12px 16px; font-size: 14.5px; }
.rekvizitai dt { color: var(--grey); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 3px; }
.rekvizitai dd { color: var(--black); font-weight: 500; }
@media (max-width: 520px) { .rekvizitai dl { grid-template-columns: 1fr; gap: 2px 0; } .rekvizitai dd { margin-bottom: 10px; } }

.form { display: grid; gap: 16px; margin-top: 36px; }
.form label { font-size: 13px; font-weight: 600; color: var(--black); letter-spacing: 0.03em; display: block; margin-bottom: 6px; }
.form input, .form textarea {
  width: 100%; padding: 14px 16px;
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: 8px; font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.form input:focus, .form textarea:focus { border-color: var(--primary); background: var(--white); outline: none; }
.form textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form button { margin-top: 8px; justify-self: start; }

.map { border-radius: 10px; overflow: hidden; border: 1px solid var(--grey-200); height: 360px; margin-top: 24px; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========== ES PARAMA ========== */
.es-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
@media (max-width: 900px) { .es-grid { grid-template-columns: 1fr; } }
.es-list { display: flex; flex-direction: column; gap: 14px; }
.es-list li {
  padding: 22px 24px; border: 1px solid var(--grey-200); border-radius: 10px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.2s;
}
.es-list li:hover { border-color: var(--primary); background: #f7faff; }
.es-list .tag {
  font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--primary);
  min-width: 40px;
}
.es-list strong { font-size: 16.5px; color: var(--black); display: block; margin-bottom: 4px; }
.es-list span.d { font-size: 14px; color: #666; }

/* ========== FOOTER ========== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-col h5 { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 22px; font-family: var(--mono); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand img { height: 38px; filter: brightness(0) invert(1); }
.footer-brand-text { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.footer p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.58); max-width: 36ch; }
.footer small { display: block; color: rgba(255,255,255,0.4); font-size: 12.5px; margin-top: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; font-size: 12.5px; color: rgba(255,255,255,0.45); flex-wrap: wrap; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ========== SCROLL ANIMATIONS ========== */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.visible { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }
.rv.d4 { transition-delay: 0.32s; }
.rv.d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .rv, .rv.d1, .rv.d2, .rv.d3, .rv.d4, .rv.d5 { opacity: 1; transform: none; transition: none; }
}

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
