/* ==========================================================================
   AIVILTA — miško darbai. Design system.
   Palette: pine greens + amber CTA. Typography: Inter var (self-hosted).
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --g950: #0c2314;
  --g900: #123722;
  --g800: #17482c;
  --g700: #1d5a37;
  --g600: #266f45;
  --g500: #2f8453;
  --g-tint: #eaf2ea;
  --g-tint-2: #dfeadf;
  --amber: #e8a020;
  --amber-d: #c9860f;
  --amber-ink: #231a05;
  --sos: #8c2f14;
  --bg: #f6f8f4;
  --card: #ffffff;
  --ink: #1b2620;
  --muted: #52604f;
  --line: #dde6da;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(18, 55, 34, .08);
  --shadow-md: 0 6px 20px rgba(18, 55, 34, .10);
  --wrap: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--g700); }
a:hover { color: var(--g500); }
ul, ol { padding-left: 1.25rem; }
strong { font-weight: 700; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--g900); font-weight: 800; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
.section-tint { background: var(--g-tint); }
.section-white { background: var(--card); }

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g600);
  margin-bottom: .6rem;
}
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin-top: .75rem; font-size: 1.05rem; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--g900); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--g500); outline-offset: 2px; border-radius: 4px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 10px; border: 0; cursor: pointer;
  font: inherit; font-weight: 800; font-size: 1.02rem; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-amber { background: var(--amber); color: var(--amber-ink); box-shadow: 0 6px 18px rgba(232, 160, 32, .35); }
.btn-amber:hover { background: #f2ad2e; color: var(--amber-ink); }
.btn-green { background: var(--g700); color: #fff; }
.btn-green:hover { background: var(--g600); color: #fff; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.85); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-bar { display: flex; align-items: center; gap: 28px; min-height: 72px; }
.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin-left: auto; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 650; font-size: .98rem;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--g700); border-bottom-color: var(--g500); }
.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g700); color: #fff !important; text-decoration: none;
  font-weight: 800; padding: 11px 18px; border-radius: 10px; white-space: nowrap;
  border-bottom: none !important;
}
.nav-call:hover { background: var(--g600); }
.nav-call svg { flex: 0 0 auto; }

/* Dropdown (Paslaugos) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer; font: inherit; font-weight: 650;
  font-size: .98rem; color: var(--ink); padding: 6px 2px; text-decoration: none;
}
.nav-dropdown-toggle:hover { color: var(--g700); }
.nav-dropdown-toggle .chev { transition: transform .15s ease; }
.nav-dropdown.open .chev { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px; list-style: none;
  opacity: 0; visibility: hidden; transition: opacity .15s ease;
}
/* Invisible hover bridge over the 12px gap so the menu doesn't close
   while the pointer travels from the toggle down to the menu. */
.dropdown-menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: .95rem; border-bottom: none !important;
}
.dropdown-menu a:hover { background: var(--g-tint); color: var(--g800); }
.dropdown-menu .dd-all { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.dropdown-menu .dd-all a { color: var(--g700); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; margin-left: auto;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; height: 3px; background: var(--g900); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 72px 0 0 0; z-index: 99;
  background: #fff; padding: 20px; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--line); }
.mobile-menu a {
  display: block; padding: 15px 6px; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: 1.05rem;
}
.mobile-menu .mm-sub a { padding: 11px 6px 11px 22px; font-weight: 600; font-size: .98rem; color: var(--muted); }
.mobile-menu .mm-cta { margin-top: 18px; display: grid; gap: 12px; }

/* ---- Hero (homepage) ---- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  padding: 96px 0 110px;
  background: var(--g950);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9, 30, 17, .92) 0%, rgba(11, 38, 21, .78) 45%, rgba(12, 35, 20, .55) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero .lead { margin: 20px 0 6px; font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 54ch; color: #e4eee2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; padding: 0; list-style: none; }
.hero-badges li {
  border: 1px solid rgba(255,255,255,.32); border-radius: 999px; padding: 7px 15px;
  font-size: .88rem; font-weight: 600; background: rgba(255,255,255,.09);
  display: inline-flex; align-items: center; gap: 7px;
}
.hero-badges svg { flex: 0 0 auto; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .9rem; color: #bdd2bd; }
.hero-note a { color: #fff; }

/* Subpage hero */
.page-hero { background: linear-gradient(180deg, var(--g-tint) 0%, var(--bg) 100%); padding: 48px 0 40px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { margin-top: 16px; max-width: 68ch; font-size: 1.1rem; color: var(--ink); }
.page-hero .lead strong { color: var(--g800); }
.page-hero-cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

.breadcrumbs { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--g700); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--g800); font-weight: 600; }

/* ---- Stats band ---- */
.stats { background: var(--g900); color: #fff; padding: 30px 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 22px; text-align: center; }
.stats b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--amber); letter-spacing: -.01em; }
.stats small { color: #c8dbc8; font-size: .92rem; }

/* ---- SOS strip ---- */
.sos { background: var(--sos); color: #fff; padding: 16px 0; }
.sos .wrap { display: flex; align-items: center; gap: 8px 18px; flex-wrap: wrap; justify-content: center; text-align: center; }
.sos p { font-size: .98rem; }
.sos a { color: #ffd9a8; font-weight: 800; text-decoration: none; font-size: 1.06rem; white-space: nowrap; }
.sos a:hover { text-decoration: underline; color: #ffe4c2; }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--g500); color: inherit; }
.card .ico {
  width: 52px; height: 52px; border-radius: 12px; background: var(--g-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .more { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--g700); font-size: .95rem; }
a.card:hover .more { text-decoration: underline; }

/* ---- Steps ---- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; counter-reset: s; padding: 0; margin-top: 46px; }
.steps li {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 20px; counter-increment: s; position: relative; box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(s); position: absolute; top: -18px; left: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--amber); color: var(--amber-ink); font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}
.steps h3 { font-size: 1.02rem; margin: 8px 0 6px; }
.steps p { font-size: .93rem; color: var(--muted); }

/* ---- Checklist ---- */
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { flex: 0 0 auto; margin-top: 3px; }

/* ---- Media split ---- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.split .img-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: 14px; }
.split p { color: var(--muted); margin-bottom: 12px; }
.split .checklist { margin-top: 18px; }
.split .checklist li { color: var(--ink); }

/* ---- Service area map ---- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.area-map svg { width: 100%; height: auto; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; padding: 0; list-style: none; }
.area-chips li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px; font-size: .92rem; font-weight: 600; color: var(--g800);
}
.area-chips li.primary { background: var(--g700); border-color: var(--g700); color: #fff; }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 0; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; font-weight: 700; color: var(--g900); font-size: 1.02rem;
  padding: 18px 52px 18px 20px; position: relative; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px;
  border-right: 2.5px solid var(--g600); border-bottom: 2.5px solid var(--g600);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq-list details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-list details[open] summary { border-bottom: 1px solid var(--line); }
.faq-list .faq-a { padding: 16px 20px 20px; color: var(--muted); }
.faq-list .faq-a p + p { margin-top: 10px; }
.faq-list .faq-a a { font-weight: 600; }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(120deg, var(--g800), var(--g900)); color: #fff; text-align: center; padding: 72px 0; }
.cta-band h2 { color: #fff; max-width: 26ch; margin: 0 auto 14px; }
.cta-band p { color: #d5e4d4; max-width: 56ch; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .9rem; font-weight: 700; color: var(--g900); margin: 16px 0 6px; }
label .opt { font-weight: 500; color: var(--muted); }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid #c7d3c3; border-radius: 10px;
  font: inherit; font-size: .98rem; background: #fff; color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--g600); box-shadow: 0 0 0 3px rgba(38, 111, 69, .15); }
.field-err { border-color: #c0392b !important; }
.err-msg { display: block; color: #c0392b; font-size: .85rem; font-weight: 600; margin-top: 4px; min-height: 1em; }
.gdpr-row { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; }
.gdpr-row input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--g700); }
.gdpr-row label { margin: 0; font-weight: 500; font-size: .88rem; color: var(--muted); }
.form-note { font-size: .9rem; color: var(--muted); margin-top: 12px; }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-weight: 600; font-size: .95rem; }
.form-msg.success { display: block; background: #e5f3e5; color: #1c5a2e; border: 1px solid #bfdec2; }
.form-msg.error-msg { display: block; background: #fbeaea; color: #96281b; border: 1px solid #eec6c0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.nap-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.nap-card h3 { margin-bottom: 14px; }
.nap-list { list-style: none; padding: 0; display: grid; gap: 13px; }
.nap-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.nap-list svg { flex: 0 0 auto; margin-top: 3px; }
.nap-list a { font-weight: 700; text-decoration: none; }
.nap-list a:hover { text-decoration: underline; }
.nap-meta { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted); }

/* ---- Article / prose ---- */
.prose { max-width: 760px; }
.prose h2 { margin: 40px 0 14px; font-size: clamp(1.35rem, 2.6vw, 1.7rem); }
.prose h3 { margin: 28px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px; display: grid; gap: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); }
.prose th { background: var(--g-tint); color: var(--g900); }
.prose .note {
  background: var(--g-tint); border-left: 4px solid var(--g600); border-radius: 0 10px 10px 0;
  padding: 14px 18px; margin: 18px 0; font-size: .95rem; color: var(--ink);
}
.article-meta { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.answer-first {
  background: var(--g-tint); border: 1px solid var(--g-tint-2); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 28px; font-size: 1.05rem;
}
.answer-first strong { color: var(--g800); }

/* ---- Related links ---- */
.related { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; list-style: none; }
.related a {
  display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; text-decoration: none; font-weight: 650; font-size: .93rem; color: var(--g800);
}
.related a:hover { border-color: var(--g500); color: var(--g600); }

/* ---- Footer ---- */
.site-footer { background: var(--g950); color: #bfd2bf; padding: 56px 0 0; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #d9e6d9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.2rem; letter-spacing: .04em; margin-bottom: 14px; }
.footer-nap { display: grid; gap: 8px; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 44px; padding: 20px 0;
  font-size: .84rem; color: #9cb59c;
}
.footer-legal .wrap { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }

/* ---- Mobile sticky call bar ---- */
.mobile-call {
  display: none; position: fixed; bottom: 12px; left: 12px; right: 12px; z-index: 90;
  background: var(--amber); color: var(--amber-ink); font-weight: 800; font-size: 1.05rem;
  justify-content: center; align-items: center; gap: 10px; padding: 15px;
  border-radius: 12px; text-decoration: none; box-shadow: 0 8px 26px rgba(0,0,0,.32);
}

/* ---- Cookie consent ---- */
.consent {
  position: fixed; z-index: 150; bottom: 16px; left: 16px; right: 16px;
  max-width: 480px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(12, 35, 20, .25); padding: 22px;
  display: none;
}
.consent.show { display: block; }
.consent h3 { font-size: 1.02rem; margin-bottom: 8px; }
.consent p { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .btn { padding: 10px 18px; font-size: .92rem; border-radius: 8px; }
.btn-ghost-green { background: var(--g-tint); color: var(--g800); }
.btn-ghost-green:hover { background: var(--g-tint-2); color: var(--g900); }

/* ---- Utilities ---- */
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-46 { margin-top: 46px; }
.mb-20 { margin-bottom: 20px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 0; }
  .split, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split .img-frame { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-call { display: none; }
  .hero { padding: 64px 0 78px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-call { display: flex; }
  body { padding-bottom: 76px; }
  .consent { bottom: 84px; }
  .btn { width: 100%; }
  .hero-cta .btn, .page-hero-cta .btn, .consent-actions .btn { width: auto; flex: 1 1 auto; }
}
@media print {
  .site-header, .mobile-call, .consent, .sos, .cta-band, .site-footer { display: none !important; }
}
