:root {
  --green: #203E1F;
  --green-600: #2E5A2B;
  --green-800: #173016;
  --cream: #F8F3E8;
  --cream-2: #F0E8D6;
  --brown: #5B3B18;
  --gold: #B0AB72;
  --gold-2: #CFCB9C;
  --white: #FFFFFF;
  --text: #252525;
  --muted: #575249;
  --line: #E4DCC9;
  --error: #A63D1E;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(32, 62, 31, .06), 0 4px 14px rgba(32, 62, 31, .05);
  --shadow-lift: 0 2px 6px rgba(32, 62, 31, .08), 0 14px 34px rgba(32, 62, 31, .12);
  --ring: inset 0 0 0 1px rgba(32, 62, 31, .09);
  --max: 1180px;
  --header-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { color: var(--green); line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.018em; }
h1 { font-size: 2rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.1rem; letter-spacing: -.008em; }

.kicker {
  margin-bottom: .5em;
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brown); display: flex; align-items: center; gap: 10px;
}
.kicker::after { content: ""; flex: 0 0 34px; height: 2px; background: var(--gold); border-radius: 2px; }
.kicker-hell { color: var(--gold-2); }
.kicker-hell::after { background: var(--gold); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); }
a:hover { color: var(--green-600); }

:focus-visible { outline: 3px solid var(--brown); outline-offset: 2px; border-radius: 3px; }
.cta :focus-visible, .site-header :focus-visible { outline-color: var(--gold-2); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: var(--white);
  padding: 12px 18px; border-radius: 0 0 var(--radius) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 2px 14px rgba(32, 62, 31, .10); }
.header-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px 24px; padding-top: 12px; padding-bottom: 12px;
}
.brand {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none; line-height: 1.15;
}
.brand-mark { width: auto; height: 62px; flex: none; }
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name {
  font-size: 1.14rem; font-weight: 800; letter-spacing: -.02em; color: var(--green);
}
.brand-claim { font-size: .74rem; font-weight: 600; color: var(--brown); }
.brand:hover .brand-name { color: var(--green-600); }

.site-nav ul {
  display: flex; flex-wrap: wrap; gap: 2px 18px;
  list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  display: inline-block; padding: 9px 2px;
  font-weight: 600; font-size: .96rem; text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible { border-bottom-color: var(--gold); }
.site-nav .nav-cta {
  padding: 9px 16px; border: 2px solid var(--green); border-radius: 999px;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible {
  background: var(--green); color: var(--white); border-bottom-color: var(--green);
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4em; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px;
  border: 2px solid transparent; border-radius: var(--radius);
  font: inherit; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--green); border-color: var(--green); color: var(--white); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-600); border-color: var(--green-600); color: var(--white);
  box-shadow: var(--shadow-lift);
}
.btn-secondary { background: transparent; border-color: var(--green); color: var(--green); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--green); color: var(--white); }

.btn-light { background: var(--white); border-color: var(--white); color: var(--green); }
.btn-light:hover, .btn-light:focus-visible {
  background: var(--cream-2); border-color: var(--cream-2); color: var(--green-800);
}
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--white); color: var(--green); }

.btn-quiet { background: transparent; border-color: transparent; color: var(--green); }
.btn-quiet:hover, .btn-quiet:focus-visible { background: var(--cream-2); color: var(--green-800); }

.linkish {
  background: none; border: 0; padding: 0; font: inherit; color: inherit;
  text-decoration: underline; cursor: pointer;
}
.linkish:hover { color: var(--green-600); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .1s; }
html:not(.js) .reveal { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 40px 0 8px;
  background: linear-gradient(rgba(176, 171, 114, .15) 0%, rgba(176, 171, 114, .04) 45%, rgba(176, 171, 114, 0) 75%);
}
.eyebrow {
  display: inline-block; margin-bottom: 1em; padding: 6px 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--green); background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line); border-radius: 999px;
}
.hero-text .lead { font-size: 1.09rem; max-width: 46ch; color: #3B3A35; }
.claim {
  color: var(--brown); font-weight: 600;
  border-left: 3px solid var(--gold); padding-left: 13px;
}
.hero-media { margin-top: 28px; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lift), var(--ring); }

/* Vertrauensleiste unter dem Hero */
.trust {
  list-style: none; margin: 40px 0 0; padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: 18px;
}
.trust li { padding-left: 16px; border-left: 3px solid var(--gold); }
.trust strong { display: block; color: var(--green); font-size: 1rem; }
.trust span { font-size: .93rem; color: var(--muted); }

/* ================= Herbstaktion – ANFANG =================
   Gehoert zum Block "HERBSTAKTION" in index.html und zum Ordner /video/.
   Beim Entfernen der Aktion diesen ganzen Abschnitt mit loeschen.
   ========================================================= */
body:not(.aktion-an) #aktion { display: none; }

.aktion {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 46px 0;
  background: #4A2F12;
  color: var(--white);
}
.aktion-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .5; filter: saturate(1.15) contrast(1.05);
  pointer-events: none;
}
/* Farbschleier: haelt die Marke dominant und den Text lesbar */
.aktion::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(58, 36, 13, .95) 0%, rgba(74, 47, 18, .86) 42%,
                            rgba(110, 74, 34, .55) 78%, rgba(138, 95, 44, .38) 100%);
}
.aktion-inner { position: relative; z-index: 2; max-width: 640px; }
.aktion h2 { color: var(--white); font-size: 1.5rem; margin-bottom: .5em; text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
.aktion p { color: rgba(255, 255, 255, .92); }
.aktion .btn-row { margin-top: 1.5em; }
.aktion :focus-visible { outline-color: var(--gold-2); }

.aktion-badge {
  display: inline-block; margin-bottom: 1em; padding: 6px 15px;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #4A2F12; background: var(--gold-2); border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .aktion-video { display: none; }
}
/* ================= Herbstaktion – ENDE ================= */

/* ---------- Sections ---------- */
.section { padding: 52px 0; scroll-margin-top: calc(var(--header-h) + 8px); }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-intro { max-width: 62ch; }
.note { margin-top: 24px; font-size: .94rem; color: var(--muted); }

/* ---------- Cards ---------- */
.cards { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 18px; }
.card {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.section-alt .card { background: var(--cream); }
#leistungen .card:hover, .region:hover, .ba-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: #D8CFB6;
}

.card-num {
  display: block; margin-bottom: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  color: var(--gold); font-variant-numeric: tabular-nums;
}

/* ---------- Vorher / Nachher ---------- */
.ba-card { padding: 0; overflow: hidden; }
.ba { margin: 0; }
.ba-stage {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--cream-2); border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.ba-stage::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 92px; pointer-events: none;
  background: linear-gradient(rgba(20, 30, 19, .38), rgba(20, 30, 19, 0));
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img-after { opacity: var(--p, 1); transition: opacity .12s linear; }
.ba-tag {
  position: absolute; top: 13px; z-index: 1; padding: 5px 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--white); border-radius: 999px; transition: opacity .12s linear;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}
.ba-tag-before { left: 12px; background: var(--brown); opacity: calc(1 - var(--p, 1)); }
.ba-tag-after { right: 12px; background: var(--green); opacity: var(--p, 1); }
/* Bilder mit bereits eingebranntem Vorher/Nachher-Schild brauchen kein zweites */
.ba-has-labels .ba-tag { display: none; }

.ba-control {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 18px; border-bottom: 1px solid var(--line);
}
html:not(.js) .ba-control { display: none; }
.ba-end { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.ba-control input[type="range"] {
  flex: 1; min-width: 0; min-height: 44px; margin: 0;
  accent-color: var(--green); cursor: grab; background: transparent;
}
.ba-control input[type="range"]:active { cursor: grabbing; }
.ba-body { padding: 18px 22px 22px; }
.ba-static .ba-stage { cursor: default; }


/* ---------- Technik erklärt ---------- */
.technik { display: grid; gap: 20px; margin-top: 30px; }
.tech-item { padding: 0; overflow: hidden; }
.tech-figure { background: var(--cream); border-bottom: 1px solid var(--line); }
.tech-figure img { width: 100%; height: auto; display: block; }
.tech-figure-doppelt img + img { border-top: 1px solid var(--line); }
.tech-body { padding: 24px; }
.tech-body > p { color: var(--muted); }

.tech-list { list-style: none; counter-reset: tech; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.tech-list li {
  counter-increment: tech; position: relative;
  padding-left: 40px; font-size: .96rem; line-height: 1.5;
}
.tech-list li::before {
  content: counter(tech);
  position: absolute; left: 0; top: -1px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.tech-list strong { color: var(--green); }

/* ---------- Pflaster-Highlight ---------- */
.highlight {
  background:
    linear-gradient(rgba(176, 171, 114, .10), rgba(176, 171, 114, 0) 55%),
    var(--white);
  border-top: 4px solid var(--gold); border-bottom: 1px solid var(--line);
}
.highlight-media { margin-top: 24px; }
.highlight-media img { border-radius: var(--radius); box-shadow: var(--shadow-lift), var(--ring); }

/* ---------- Einsatzgebiete ---------- */
.regions { display: grid; gap: 18px; margin-top: 28px; }
.region { border-top: 4px solid var(--gold); }
.region-main { border-top-color: var(--green); }
.region-flag {
  margin-bottom: .5em; font-size: .76rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--green);
}
.region-flag-alt { color: var(--brown); }
.region-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.region-list li { padding-left: 22px; position: relative; font-size: .96rem; }
.region-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold);
}

/* ---------- Über uns ---------- */
.about-media { display: grid; gap: 16px; margin-top: 28px; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow), var(--ring); width: 100%; }
.facts { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; }
.facts li {
  padding: 12px 15px; background: var(--white);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600; color: var(--green);
}
.section-alt .facts li { background: var(--cream); }

/* ---------- Subunternehmer ---------- */
.pullquote {
  margin: 26px 0 24px; padding: 22px 24px;
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  font-size: 1.06rem; line-height: 1.55; color: var(--green); font-weight: 500;
}
.section-alt .pullquote { background: var(--cream); }

.check-list { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 14px; }
.check-list li { padding-left: 18px; border-left: 3px solid var(--gold); }
.check-list strong { color: var(--green); }

/* ---------- Kontakt + Formular ---------- */
.cta {
  background: var(--green); color: var(--white);
  padding: 56px 0; scroll-margin-top: calc(var(--header-h) + 8px);
}
.cta h2, .cta h3 { color: var(--white); }
.cta-intro a:not(.btn) { color: var(--white); }
.cta-intro a:not(.btn):hover { color: var(--gold-2); }
.cta-inner { display: grid; gap: 34px; }

.contact-data { margin: 26px 0 0; }
.contact-data dt { font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gold-2); }
.contact-data dd { margin: 2px 0 16px; font-size: 1.15rem; font-weight: 600; }
.contact-data dd a { display: inline-block; min-height: 44px; line-height: 44px; }

.contact-zeiten { font-size: 1.02rem; line-height: 1.5; }

.notdienst {
  margin-top: 28px; padding: 18px 20px;
  background: rgba(255, 255, 255, .09);
  border-left: 4px solid var(--gold-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.notdienst-titel {
  margin-bottom: .4em; font-weight: 700; font-size: 1.02rem;
  color: var(--gold-2); letter-spacing: .01em;
}
.notdienst p { font-size: .95rem; }
.notdienst-slogan {
  margin-top: .9em; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .72);
}

.form-card {
  background: var(--white); color: var(--text);
  border-radius: var(--radius); padding: 24px; box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
}
.form-card h3 { color: var(--green); }
.form-hint { font-size: .9rem; color: var(--muted); }

.field { margin: 0 0 14px; }
.field label { display: block; font-size: .9rem; font-weight: 600; color: var(--green); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 46px; padding: 10px 12px;
  font: inherit; color: var(--text); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46, 90, 43, .18);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field-row { display: grid; gap: 0; }
.field-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; }
.field-check input { width: 22px; min-height: 22px; height: 22px; margin-top: 3px; flex: none; accent-color: var(--green); }
.field-check label { font-size: .9rem; font-weight: 400; color: var(--text); margin: 0; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; font-weight: 600; }
.form-status.is-ok { background: #E9F1E6; color: var(--green-800); border-left: 4px solid var(--green); }
.form-status.is-error { background: #FAEBE5; color: var(--error); border-left: 4px solid var(--error); }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 34px 0; font-size: .94rem; }
.footer-inner { display: grid; gap: 22px; }
.footer-name { font-weight: 700; color: var(--green); }
.footer-note { color: var(--muted); }
.footer-links {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px;
  margin: 14px 0 0; padding: 0;
}
.footer-agentur { margin-top: 16px; font-size: .84rem; color: var(--muted); }
.footer-zeiten { color: var(--muted); }
.contact-adresse { font-size: 1.02rem; line-height: 1.5; }

/* ---------- Rechtsseiten ---------- */
.legal h1 { margin-bottom: .8em; }
.legal h2 { font-size: 1.2rem; margin-top: 1.9em; }
.legal ul { margin: 0 0 1em; padding-left: 1.2em; }
.legal li { margin-bottom: .4em; }
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em; background: var(--cream-2); padding: 1px 5px; border-radius: 4px;
}
.legal .note {
  margin: 0 0 2em; padding: 16px 18px; background: var(--white);
  border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-date { margin-top: 2.4em; font-size: .9rem; color: var(--muted); }

/* ---------- Cookie-Banner ---------- */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: var(--white); border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 28px rgba(32, 62, 31, .18);
  padding: 18px 0; font-size: .94rem;
  animation: cookie-in .35s var(--ease) both;
}
@keyframes cookie-in { from { transform: translateY(100%); } to { transform: none; } }
.cookie h2 { font-size: 1.05rem; margin-bottom: .4em; }
.cookie-inner { display: grid; gap: 16px; }
.cookie-links { font-size: .88rem; }
.cookie-option { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-weight: 600; color: var(--green); }
.cookie-option input { width: 20px; height: 20px; accent-color: var(--green); }
.cookie .btn-row { margin-top: 0; gap: 10px; }
.cookie .btn { min-height: 46px; padding: 10px 15px; font-size: .92rem; }

/* ---------- Responsive ---------- */
/* Auf schmalen Geräten braucht die zweizeilige Navigation zu viel Höhe
   für einen mitlaufenden Kopf – dort scrollt er einfach mit weg. */
@media (max-width: 699px) {
  .site-header { position: static; }
  :root { --header-h: 0px; }
}

@media (max-width: 619px) {
  .brand { gap: 10px; }
  .brand-mark { height: 50px; }
  .brand-name { font-size: 1.02rem; }
  .brand-claim { font-size: .68rem; }
  .site-nav ul { gap: 0 14px; }
  .site-nav a { font-size: .9rem; padding: 7px 2px; }
  .site-nav .nav-cta { padding: 7px 15px; }
  .header-inner { padding-top: 10px; padding-bottom: 10px; }
}

@media (min-width: 620px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: 0 14px; }
}

@media (min-width: 700px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.85rem; }
  .trust { grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .about-media { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  body { font-size: 18px; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .hero { padding: 72px 0 34px; }
  .aktion { padding: 60px 0; }
  .aktion h2 { font-size: 1.85rem; }
  .hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 46px; align-items: center; }
  .hero-media { margin-top: 0; }
  .section { padding: 72px 0; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .highlight-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: center; }
  .highlight-media { margin-top: 0; }
  .tech-item { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; }
  .tech-figure { border-bottom: 0; border-right: 1px solid var(--line); }
  .tech-body { padding: 30px 32px; }
  .tech-item:nth-child(even) .tech-figure { order: 2; border-right: 0; border-left: 1px solid var(--line); }
  .about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: start; }
  .about-media { margin-top: 0; grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr 1.05fr; gap: 46px; align-items: start; }
  .cookie-inner { grid-template-columns: 1fr minmax(470px, auto); align-items: center; }
}

@media (min-width: 1080px) {
  .ba-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .ba-body { padding: 16px 18px 20px; }
  .ba-body h3 { font-size: 1.02rem; }
  .ba-body p { font-size: .93rem; }
  .ba-control { padding: 4px 14px; }
}

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