/* ==========================================================
   MASKESTA — paviršių valymas ir restauravimas
   Spalvos: granitas, šlapias akmuo, rūkas, signalinė geltona
   ========================================================== */
:root {
  --granite: #172125;
  --granite-2: #223038;
  --stone: #4f5e63;
  --stone-2: #83939a;
  --mist: #edf1f1;
  --mist-2: #dfe6e7;
  --paper: #ffffff;
  --hivis: #ffc21a;
  --hivis-deep: #e6a800;
  --water: #1c6f8c;

  --f-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --f-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1240px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 1px 2px rgba(23, 33, 37, .06), 0 12px 32px -12px rgba(23, 33, 37, .18);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--granite);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); line-height: 1.05; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--water); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--hivis); padding: .6rem 1rem; border-radius: 8px; font-weight: 600; }
.skip:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- tipografija ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--stone);
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--hivis); }
.h-xl {
  font-size: clamp(2.5rem, 1.2rem + 5.4vw, 5.6rem);
  font-weight: 800; font-stretch: 118%; text-transform: uppercase; letter-spacing: -.02em; line-height: .95;
}
.h-lg { font-size: clamp(2rem, 1.2rem + 3vw, 3.6rem); font-weight: 800; font-stretch: 112%; letter-spacing: -.02em; }
.h-md { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.8rem); font-weight: 700; font-stretch: 108%; }
.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: var(--stone); max-width: 38rem; }
.section-head { display: grid; gap: 1rem; margin-bottom: clamp(2.2rem, 5vw, 3.8rem); }
.section-head--split { grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }

/* ---------- mygtukai ---------- */
.btn {
  --bg: var(--granite); --fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .8rem 1.4rem; border-radius: 999px; border: 0;
  background: var(--bg); color: var(--fg); text-decoration: none;
  font-weight: 600; font-size: 1rem; letter-spacing: .01em; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(23, 33, 37, .45); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--hivis { --bg: var(--hivis); --fg: var(--granite); }
.btn--hivis:hover { --bg: #ffcd45; }
.btn--ghost { --bg: transparent; --fg: var(--granite); box-shadow: inset 0 0 0 1.5px rgba(23, 33, 37, .25); }
.btn--ghost:hover { --bg: var(--paper); box-shadow: inset 0 0 0 1.5px var(--granite); }
.btn--light { --bg: var(--paper); --fg: var(--granite); }
.btn--line-light { --bg: transparent; --fg: var(--paper); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .35); }
.btn--line-light:hover { box-shadow: inset 0 0 0 1.5px var(--paper); }
.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; text-decoration: none;
  border-bottom: 2px solid var(--hivis); padding-bottom: 2px;
}
.arrow-link svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- antraštė ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(237, 241, 241, .82);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  transition: box-shadow .3s, background-color .3s;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(23, 33, 37, .08), 0 8px 24px -16px rgba(23, 33, 37, .35); background: rgba(255, 255, 255, .9); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; transition: height .3s var(--ease); }
.is-scrolled .nav { height: 64px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo__mark { width: 34px; height: 34px; flex: none; }
.logo__word { font-family: var(--f-display); font-weight: 800; font-stretch: 125%; font-size: 1.28rem; letter-spacing: .02em; }
.nav__links { display: none; align-items: center; gap: .3rem; }
.nav__links a {
  position: relative; padding: .55rem .9rem; border-radius: 999px; text-decoration: none; font-weight: 500; color: var(--granite-2);
  transition: background-color .2s;
}
.nav__links a:hover { background: rgba(23, 33, 37, .06); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 3px; border-radius: 2px; background: var(--hivis);
}
.nav__cta { display: none; }
.nav__phone { display: none; font-family: var(--f-mono); font-size: .9rem; text-decoration: none; font-weight: 500; }
.burger {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--granite); color: var(--paper); cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .3s var(--ease), background-color .2s;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45; background: var(--granite); color: var(--paper);
  padding: 100px var(--gutter) 2rem; display: flex; flex-direction: column; gap: 2rem;
  clip-path: circle(0 at calc(100% - 44px) 38px); visibility: hidden;
  transition: clip-path .55s var(--ease), visibility 0s linear .55s;
}
.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 38px); visibility: visible; transition: clip-path .6s var(--ease); }
.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.menu-open .site-header .logo { color: var(--paper); }
.menu-open .burger { background: var(--hivis); color: var(--granite); }
.mobile-menu nav a {
  display: block; font-family: var(--f-display); font-weight: 800; font-stretch: 118%; font-size: clamp(2.2rem, 10vw, 3.2rem);
  text-decoration: none; padding: .25rem 0; text-transform: uppercase;
}
.mobile-menu nav a[aria-current="page"] { color: var(--hivis); }
.mobile-menu__foot { margin-top: auto; display: grid; gap: .8rem; }
.mobile-menu__foot p { font-family: var(--f-mono); font-size: .85rem; color: var(--stone-2); }

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; min-height: 46px; padding: .6rem 1.15rem; }
  .burger, .mobile-menu { display: none; }
}
@media (min-width: 1160px) { .nav__phone { display: inline; } }
.nav__right { display: flex; align-items: center; gap: 1.2rem; }

/* ---------- mobilus skambučio juosta ---------- */
.callbar {
  position: fixed; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom)); z-index: 40;
  display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .45rem; border-radius: 999px;
  background: var(--granite); box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .5);
  transform: translateY(160%); transition: transform .45s var(--ease);
}
.callbar.is-visible { transform: none; }
.callbar .btn { min-height: 48px; }
.callbar__fb { width: 48px; padding: 0; }
@media (min-width: 960px) { .callbar { display: none; } }

/* ---------- herojus ---------- */
.hero { padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__text { display: grid; gap: 1.4rem; }
/* antraštė visada telpa savo stulpelyje: ilgiausias žodis „ARCHITEKTŪRĄ“ ≈ 8,9 raidžių aukščio pločio */
.hero__text, .page-hero .wrap, .page-hero__grid > div { container-type: inline-size; }
.hero__text > *, .page-hero__grid > * { min-width: 0; }
.hero .hero__title { font-size: min(4.9rem, 10.4cqi); font-stretch: 108%; }
.page-hero .hero__title { font-size: min(4.8rem, 12cqi) !important; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: inline-block; }
.hero__title .hl { color: transparent; -webkit-text-stroke: 2px var(--granite); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-family: var(--f-mono); font-size: .82rem; color: var(--stone); }
.hero__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__meta svg { width: 16px; height: 16px; color: var(--water); }
.hero__meta .stars { font-size: .75rem; }
.hero__caption { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .9rem; font-family: var(--f-mono); font-size: .78rem; color: var(--stone); text-align: center; }
.hero__caption svg { width: 16px; height: 16px; flex: none; color: var(--hivis-deep); }
.hero__visual { position: relative; }
.hero__badge {
  position: absolute; left: -1rem; bottom: 1.4rem; z-index: 3;
  background: var(--paper); border-radius: var(--radius); padding: .8rem 1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .8rem;
}
.hero__badge strong { font-family: var(--f-display); font-stretch: 115%; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.hero__badge span { font-size: .8rem; color: var(--stone); line-height: 1.25; }
.stars { color: var(--hivis-deep); letter-spacing: 1px; font-size: .8rem; }
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
  .hero__badge { left: -2rem; }
}
@media (max-width: 959px) { .hero__badge { left: .8rem; bottom: .8rem; } }

/* ---------- prieš / po slankiklis (parašas) ---------- */
.ba {
  --pos: 50%;
  position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--mist-2);
  aspect-ratio: 1 / 1; touch-action: pan-y; user-select: none; -webkit-user-select: none; cursor: ew-resize;
  isolation: isolate;
}
.ba--tall { aspect-ratio: 4 / 4.6; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 var(--pos)); }
.ba__line {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; margin-left: -2px; z-index: 2;
  background: var(--hivis); box-shadow: 0 0 0 1px rgba(0, 0, 0, .08), 0 0 22px rgba(255, 194, 26, .7);
}
.ba__line::after { /* vandens purslai */
  content: ""; position: absolute; top: 0; bottom: 0; left: 4px; width: 38px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0));
  mix-blend-mode: soft-light; pointer-events: none;
}
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 3; width: 54px; height: 54px; margin: -27px 0 0 -27px;
  display: grid; place-items: center; border-radius: 50%; background: var(--hivis); color: var(--granite);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, .45); border: 3px solid var(--paper);
  transition: transform .2s var(--ease);
}
.ba__handle svg { width: 26px; height: 26px; }
.ba:hover .ba__handle, .ba.is-dragging .ba__handle { transform: scale(1.08); }
.ba__range { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; opacity: 0; margin: 0; pointer-events: none; }
.ba__range:focus-visible + .ba__handle { outline: 3px solid var(--water); outline-offset: 3px; }
.ba__tag {
  position: absolute; top: .9rem; z-index: 2; padding: .35rem .7rem; border-radius: 999px;
  font-family: var(--f-mono); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(23, 33, 37, .78); color: var(--paper); backdrop-filter: blur(6px);
  transition: opacity .3s;
}
.ba__tag--before { left: .9rem; }
.ba__tag--after { right: .9rem; background: var(--hivis); color: var(--granite); }
.ba__hint {
  position: absolute; left: 50%; bottom: 1rem; z-index: 2; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255, 255, 255, .92); color: var(--granite); padding: .35rem .75rem; border-radius: 999px; white-space: nowrap;
  transition: opacity .4s;
}
.ba.is-touched .ba__hint { opacity: 0; }

/* ---------- sertifikatai / pasitikėjimas ---------- */
.trust { background: var(--paper); border-block: 1px solid var(--mist-2); }
.trust__grid { display: grid; gap: 0; }
.trust__item { display: flex; align-items: center; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--mist-2); }
.trust__item:last-child { border-bottom: 0; }
.trust__iso {
  flex: none; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--granite); font-family: var(--f-display); font-weight: 800; font-size: .7rem; font-stretch: 110%; line-height: 1; text-align: center;
}
.trust__item strong { display: block; font-weight: 600; }
.trust__item span { font-family: var(--f-mono); font-size: .8rem; color: var(--stone); }
.trust__item button { all: unset; cursor: pointer; display: flex; align-items: center; gap: 1rem; width: 100%; border-radius: 10px; }
.trust__item button:focus-visible { outline: 3px solid var(--water); outline-offset: 6px; }
.trust__item button:hover .trust__iso { background: var(--hivis); border-color: var(--hivis); }
@media (min-width: 760px) {
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .trust__item { border-bottom: 0; border-right: 1px solid var(--mist-2); padding: 1.6rem 1.6rem; }
  .trust__item:first-child { padding-left: 0; }
  .trust__item:last-child { border-right: 0; }
}

/* ---------- sekcijos ---------- */
.section { padding-block: var(--section); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--granite); color: var(--paper); }
.section--dark .lead, .section--dark .eyebrow { color: var(--stone-2); }

/* apie */
.about { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4 / 4.3; object-fit: cover; }
.about__stamp {
  position: absolute; right: -.6rem; top: -1.2rem; width: 120px; height: 120px; border-radius: 50%;
  background: var(--hivis); display: grid; place-items: center; text-align: center; box-shadow: var(--shadow);
}
.about__stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.about__stamp strong { font-family: var(--f-display); font-weight: 800; font-stretch: 120%; font-size: 1.7rem; line-height: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
.about__text { display: grid; gap: 1.4rem; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--mist-2); border-radius: var(--radius); overflow: hidden; margin-top: .6rem; }
.stat { background: var(--paper); padding: 1.2rem 1.1rem; }
.section--paper .stat { background: var(--mist); }
.stat b { display: block; font-family: var(--f-display); font-weight: 800; font-stretch: 118%; font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.5rem); line-height: 1; letter-spacing: -.02em; }
.stat span { font-size: .9rem; color: var(--stone); }
@media (min-width: 900px) { .about { grid-template-columns: .9fr 1.1fr; } }
@media (min-width: 560px) and (max-width: 899px), (min-width: 1200px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.clients { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.4rem; margin-top: 1rem; }
.clients__label { font-family: var(--f-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--stone); width: 100%; }
.clients img { height: 42px; width: auto; object-fit: contain; filter: grayscale(1) contrast(1.1); opacity: .7; transition: filter .3s, opacity .3s; }
.clients img:hover { filter: none; opacity: 1; }

/* paslaugos */
.services { display: grid; gap: 1rem; }
@media (min-width: 640px) { .services { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
@media (min-width: 1020px) { .services { grid-template-columns: repeat(3, 1fr); } }
.card {
  position: relative; display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.section--paper .card { background: var(--mist); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__img::after { /* „nuplovimo" blyksnis užvedus */
  content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .9s var(--ease);
}
.card:hover .card__img::after { transform: translateX(120%); }
.card__price {
  justify-self: start; padding: .3rem .65rem; border-radius: 999px;
  background: var(--hivis); font-family: var(--f-mono); font-weight: 500; font-size: .78rem; line-height: 1.3;
}
.card__body { display: grid; gap: .55rem; padding: 1.25rem 1.3rem 1.5rem; }
.card__body h3 { font-size: 1.25rem; font-weight: 700; font-stretch: 106%; line-height: 1.15; }
.card__body p { color: var(--stone); font-size: .96rem; }
.card--cta { grid-column: 1 / -1; }
@media (min-width: 1020px) { .card--cta { grid-column: span 2; } }
.card--cta { background: var(--granite) !important; color: var(--paper); justify-content: space-between; padding: 1.6rem; gap: 2rem; min-height: 260px; }
.card--cta h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 800; font-stretch: 112%; }
.card--cta p { color: var(--stone-2); }

/* smėliavimas */
.feature { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.feature__media img { width: 100%; aspect-ratio: 5 / 5.2; object-fit: cover; }
.feature__text { display: grid; gap: 1.3rem; }
.feature__list { display: grid; gap: .7rem; margin: .4rem 0; }
.feature__list li { display: flex; gap: .8rem; align-items: flex-start; }
.feature__list svg { flex: none; width: 22px; height: 22px; margin-top: .15rem; color: var(--hivis); }
@media (min-width: 900px) { .feature { grid-template-columns: 1fr 1fr; } .feature--flip .feature__media { order: 2; } }

/* prieš / po karuselė */
.ba-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(84%, 420px); gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); padding: .2rem var(--gutter) 1.2rem; margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: thin; scrollbar-color: var(--stone-2) transparent; overscroll-behavior-x: contain;
}
.ba-rail > figure { scroll-snap-align: start; margin: 0; display: grid; gap: .8rem; }
.ba-rail figcaption { font-weight: 600; display: flex; justify-content: space-between; gap: 1rem; }
.ba-rail figcaption span { font-family: var(--f-mono); font-weight: 400; font-size: .8rem; color: var(--stone-2); }
@media (min-width: 1100px) {
  .ba-rail--grid { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; margin: 0; padding: 0; gap: 1.6rem 1.2rem; }
}
.rail-controls { display: flex; gap: .5rem; }
.rail-controls button {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .3); background: transparent; color: inherit; cursor: pointer;
  display: grid; place-items: center; transition: background-color .2s, border-color .2s;
}
.rail-controls button:hover { background: var(--hivis); border-color: var(--hivis); color: var(--granite); }
.rail-controls svg { width: 20px; height: 20px; }

/* atsiliepimai */
.reviews { display: grid; gap: 1rem; }
@media (min-width: 860px) { .reviews { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
.review { display: flex; flex-direction: column; gap: 1.4rem; padding: 1.8rem; background: var(--paper); border-radius: var(--radius-lg); margin: 0; }
.review blockquote { margin: 0; font-size: 1.08rem; line-height: 1.55; }
.review blockquote::before { content: "„"; display: block; font-family: var(--f-display); font-weight: 800; font-size: 3.5rem; line-height: .5; color: var(--hivis-deep); margin-bottom: .6rem; }
.review figcaption { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 600; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--granite); color: var(--hivis); font-family: var(--f-display); font-weight: 800; }
.review figcaption > div { display: flex; align-items: center; gap: .7rem; }

/* DUK */
.faq { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .faq { grid-template-columns: .8fr 1.2fr; } }
.faq__list { border-top: 1px solid var(--mist-2); }
.faq details { border-bottom: 1px solid var(--mist-2); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem;
  padding: 1.35rem 0; font-weight: 600; font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  flex: none; position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--mist); transition: background-color .25s, transform .35s var(--ease);
}
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--granite); border-radius: 2px; }
.faq summary i::after { transform: rotate(90deg); transition: transform .35s var(--ease); }
.faq details[open] summary i { background: var(--hivis); transform: rotate(180deg); }
.faq details[open] summary i::after { transform: rotate(0); }
.faq details > div { padding: 0 3rem 1.4rem 0; color: var(--stone); }

/* CTA */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--hivis);
  padding: clamp(2.2rem, 6vw, 4.5rem); display: grid; gap: 1.8rem;
}
.cta h2 { font-size: clamp(2rem, 1.2rem + 3.4vw, 4rem); font-weight: 800; font-stretch: 115%; text-transform: uppercase; letter-spacing: -.02em; max-width: 14ch; }
.cta p { max-width: 36rem; font-size: 1.1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta__drops { position: absolute; right: -40px; top: -40px; width: min(46vw, 420px); opacity: .18; pointer-events: none; }
@media (min-width: 900px) { .cta { grid-template-columns: 1.3fr .7fr; align-items: end; } .cta__actions { justify-content: flex-end; } }

/* kontaktai */
.contact { display: grid; gap: 1rem; }
@media (min-width: 720px) { .contact { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .contact { grid-template-columns: repeat(4, 1fr); } }
.contact__item { background: var(--paper); border-radius: var(--radius); padding: 1.4rem; display: grid; gap: .5rem; align-content: start; text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s; }
a.contact__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact__item svg { width: 26px; height: 26px; color: var(--water); margin-bottom: .4rem; }
.contact__item small { font-family: var(--f-mono); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--stone); }
.contact__item strong { font-weight: 600; font-size: 1.05rem; word-break: break-word; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1rem; font-family: var(--f-mono); font-size: .88rem; }
.hours dt { color: var(--stone); }
.hours dd { margin: 0; }

/* poraštė */
.site-footer { background: var(--granite); color: var(--mist-2); padding: clamp(3.5rem, 8vw, 6rem) 0 calc(2rem + 80px); }
@media (min-width: 960px) { .site-footer { padding-bottom: 2rem; } }
.footer__big {
  font-family: var(--f-display); font-weight: 800; font-stretch: 125%; text-transform: uppercase; color: var(--paper);
  font-size: min(11.5vw, 10.4rem); white-space: nowrap; line-height: .82; letter-spacing: -.03em; margin-bottom: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(180deg, var(--paper) 55%, rgba(255, 255, 255, .15)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer__grid { display: grid; gap: 2.2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.footer__grid h2 { font-family: var(--f-mono); font-weight: 500; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--stone-2); margin-bottom: 1rem; }
.footer__grid li { margin-bottom: .45rem; }
.footer__grid a { text-decoration: none; }
.footer__grid a:hover { color: var(--hivis); }
.footer__grid address { font-style: normal; line-height: 1.75; }
.footer__tag { max-width: 22rem; color: var(--stone-2); }
.footer__social { display: inline-flex; margin-top: 1.2rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .85rem; color: var(--stone-2); }
.footer__credit { text-decoration: none; transition: color .2s; }
.footer__credit span { font-weight: 600; color: var(--mist-2); transition: color .2s; }
.footer__credit:hover, .footer__credit:hover span { color: var(--hivis); }

/* ---------- paslaugų puslapis ---------- */
.page-hero { padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem); }
.page-hero__grid { display: grid; gap: 1.6rem; }
@media (min-width: 960px) { .page-hero__grid { grid-template-columns: 1.1fr .9fr; align-items: end; gap: 4rem; } .page-hero__grid:has(.price-board) { align-items: start; } .page-hero__grid:has(.price-board) > div:first-child { position: sticky; top: 110px; padding-top: 1rem; } }
.crumbs { font-family: var(--f-mono); font-size: .8rem; color: var(--stone); display: flex; gap: .5rem; margin-bottom: 1.4rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.price-board { background: var(--granite); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.6rem); }
.price-board h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); font-weight: 800; font-stretch: 112%; margin-bottom: 1.2rem; }
.price-row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px dashed rgba(255, 255, 255, .16);
  text-decoration: none; transition: padding-left .3s var(--ease), color .2s;
}
.price-row:last-of-type { border-bottom: 0; }
.price-row:hover { padding-left: .5rem; color: var(--hivis); }
.price-row span { font-weight: 500; }
.price-row b { font-family: var(--f-mono); font-weight: 500; color: var(--hivis); white-space: nowrap; }
.price-note { font-size: .88rem; color: var(--stone-2); margin-top: 1rem; }

.svc { display: grid; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); border-top: 1px solid var(--mist-2); }
.svc:first-child { border-top: 0; padding-top: 0; }
.svc__media { border-radius: var(--radius-lg); overflow: hidden; }
.svc__media img { width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover; }
.svc__text { display: grid; gap: 1rem; }
.svc__text h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem); font-weight: 800; font-stretch: 112%; letter-spacing: -.015em; }
.svc__price { display: inline-flex; align-items: baseline; gap: .5rem; font-family: var(--f-mono); }
.svc__price b { font-size: 1.5rem; font-weight: 500; background: var(--hivis); padding: .1rem .6rem; border-radius: 8px; }
.svc__price small { color: var(--stone); }
@media (min-width: 900px) {
  .svc { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(even) .svc__media { order: 2; }
}

/* ---------- galerija ---------- */
.filters { display: flex; gap: .5rem; overflow-x: auto; padding: .2rem var(--gutter) 1rem; margin: 0 calc(var(--gutter) * -1) 1rem; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filters button {
  flex: none; min-height: 44px; padding: .5rem 1.05rem; border-radius: 999px; border: 1.5px solid rgba(23, 33, 37, .18); background: transparent; cursor: pointer;
  font-weight: 500; transition: background-color .2s, border-color .2s, color .2s;
}
.filters button:hover { border-color: var(--granite); }
.filters button[aria-pressed="true"] { background: var(--granite); color: var(--paper); border-color: var(--granite); }
.filters button sup { font-family: var(--f-mono); font-size: .7rem; margin-left: .25rem; opacity: .6; }
.masonry { columns: 2 160px; column-gap: .8rem; }
@media (min-width: 720px) { .masonry { columns: 3; column-gap: 1rem; } }
@media (min-width: 1100px) { .masonry { columns: 4; } }
.masonry figure { break-inside: avoid; margin: 0 0 .8rem; }
@media (min-width: 720px) { .masonry figure { margin-bottom: 1rem; } }
.masonry button { all: unset; display: block; position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--mist-2); }
.masonry button:focus-visible { outline: 3px solid var(--water); outline-offset: 3px; }
.masonry img { width: 100%; height: auto; transition: transform .7s var(--ease), filter .4s; }
.masonry button:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute; left: .6rem; bottom: .6rem; right: .6rem; padding: .35rem .6rem; border-radius: 8px; background: rgba(23, 33, 37, .78);
  color: var(--paper); font-size: .78rem; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease); pointer-events: none;
}
.masonry button:hover figcaption, .masonry button:focus-visible figcaption { opacity: 1; transform: none; }
@media (hover: none) { .masonry figcaption { display: none; } }
.masonry figure.is-hidden { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(12, 17, 19, .94); display: grid; grid-template-rows: auto 1fr auto; opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s linear .3s; }
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .3s; }
.lightbox__top { display: flex; justify-content: space-between; align-items: center; padding: 1rem var(--gutter); color: var(--mist-2); font-family: var(--f-mono); font-size: .85rem; }
.lightbox__stage { display: grid; place-items: center; padding: 0 var(--gutter); min-height: 0; }
.lightbox__stage img { max-height: calc(100vh - 170px); max-height: calc(100dvh - 170px); width: auto; border-radius: 10px; object-fit: contain; }
.lightbox__cap { text-align: center; color: var(--paper); padding: 1rem var(--gutter) 1.4rem; }
.lb-btn { width: 50px; height: 50px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .1); color: var(--paper); cursor: pointer; display: grid; place-items: center; }
.lb-btn:hover { background: var(--hivis); color: var(--granite); }
.lb-btn svg { width: 22px; height: 22px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: .8rem; }
.lightbox__nav--next { right: .8rem; }
.lightbox__stage img { transition: opacity .25s; }

/* ---------- animacijos ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.js-off .reveal { opacity: 1; transform: none; }
.hero__title .line > span { transform: translateY(105%); animation: rise 1s var(--ease) forwards; animation-delay: calc(.12s * var(--i, 0) + .1s); }
@keyframes rise { to { transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp .9s var(--ease) forwards; animation-delay: var(--d, .5s); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

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

/* ---------- mobilūs patikslinimai ---------- */
@media (max-width: 759px) {
  .hero .ba--tall { aspect-ratio: 1 / 1.02; }
  .hero .ba__hint { display: none; }
  .trust__grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; padding-block: 1.1rem; }
  .trust__item { border: 0; padding: 0; }
  .trust__item button { flex-direction: column; text-align: center; gap: .5rem; }
  .trust__item strong { font-size: .82rem; line-height: 1.25; }
  .trust__item button > span > span { display: none; }
  .trust__iso { width: 50px; height: 50px; font-size: .62rem; }
}
@media (max-width: 639px) {
  .services .card:not(.card--cta) { display: grid; grid-template-columns: 116px 1fr; align-items: stretch; }
  .services .card__img { aspect-ratio: auto; min-height: 128px; }
  .services .card__price { font-size: .7rem; padding: .2rem .5rem; }
  .services .card__body { padding: .9rem 1rem; align-content: center; gap: .3rem; }
  .services .card__body h3 { font-size: 1.05rem; }
  .services .card__body p { font-size: .88rem; line-height: 1.45; }
  .services { gap: .7rem; }
}

/* ---------- mobilumo patikslinimai: skaitomumas ir paspaudimo zonos ---------- */
.ba__tag, .contact__item small, .filters button sup { font-size: .75rem; }
@media (max-width: 639px) { .services .card__price { font-size: .75rem; } }
.logo { min-height: 44px; }
.arrow-link { min-height: 44px; }
.lead a[href^="tel:"] { display: inline-block; padding: .35rem 0; font-weight: 600; white-space: nowrap; }
.mobile-menu { overflow-y: auto; overscroll-behavior: contain; }
@media (max-height: 520px) and (orientation: landscape) {
  .mobile-menu { padding-top: 84px; gap: 1rem; }
  .mobile-menu nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
  .mobile-menu nav a { font-size: 1.6rem; }
  .mobile-menu__foot { grid-template-columns: 1fr 1fr; }
  .mobile-menu__foot p { grid-column: 1 / -1; }
  .hero .ba--tall { aspect-ratio: 16 / 10; }
  .hero .hero__title, .page-hero .hero__title { font-size: min(10.4cqi, 11vh) !important; }
}
