/* ==========================================================================
   TM Lion Allround — style.css
   Palette aus dem Logo: Rot, Anthrazit, Braun
   ========================================================================== */

/* ---------- Self-hosted Fonts ---------- */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --red: #c81517;
  --red-dark: #a01012;
  --brown: #9d642f;
  --brown-dark: #7c4e23;
  --ink: #25272a;
  --ink-soft: #54585e;
  --charcoal: #1d1e20;
  --charcoal-2: #303235;
  --bg: #faf8f5;
  --surface: #ffffff;
  --line: #e7e2da;
  --line-strong: #d8d2c8;

  --font-head: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1180px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(29, 30, 32, .06), 0 2px 8px rgba(29, 30, 32, .05);
  --shadow-md: 0 8px 30px rgba(29, 30, 32, .12);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .005em;
  margin: 0 0 .4em;
  text-transform: uppercase;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.4rem; letter-spacing: .01em; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--alt { background: var(--surface); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
  margin: 0 0 .9rem;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--red); display: inline-block; }

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--charcoal); color: #fff; padding: 12px 18px; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  min-height: 52px; text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); color: #fff; }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--charcoal); }
.btn--light { background: #fff; color: var(--charcoal); }
.btn--light:hover { background: #f1ece4; color: var(--charcoal); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; min-height: 58px; }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 76px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600; color: var(--ink); padding: 10px 14px; border-radius: var(--radius);
  font-size: .98rem; letter-spacing: .01em;
}
.nav a:hover { color: var(--red); text-decoration: none; background: #f4efe8; }
.nav a[aria-current="page"] { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--charcoal);
  white-space: nowrap;
}
.header-phone:hover { color: var(--red); text-decoration: none; }
.header-phone svg { width: 20px; height: 20px; color: var(--red); }

.nav-toggle {
  display: none; background: var(--charcoal); border: 0; border-radius: var(--radius);
  width: 50px; height: 46px; cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: #fff; margin: 0 auto;
  position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--charcoal);
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 60% 50%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,21,22,.94) 0%, rgba(20,21,22,.82) 38%, rgba(20,21,22,.30) 75%, rgba(20,21,22,.15) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding: clamp(70px, 12vw, 150px) 0 clamp(64px, 10vw, 130px);
  max-width: 720px;
}
.hero .eyebrow { color: #ff8b46; }
.hero .eyebrow::before { background: var(--red); }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--red); }
.hero__sub { color: #e9e4dc; font-size: 1.2rem; max-width: 50ch; margin-top: .4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px;
}
.hero__meta li {
  list-style: none; color: #f1ece4; font-weight: 600; font-size: .96rem;
  display: flex; align-items: center; gap: 9px;
}
.hero__meta svg { width: 19px; height: 19px; color: var(--red); flex: 0 0 auto; }
.hero__meta ul { display: contents; }
ul.hero__meta { padding: 0; margin: 34px 0 0; }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 60ch; margin-bottom: clamp(34px, 5vw, 56px); }
.sec-head--split {
  display: grid; grid-template-columns: 1fr; gap: 18px; max-width: none;
  align-items: end;
}
@media (min-width: 860px) {
  .sec-head--split { grid-template-columns: 1.4fr 1fr; }
  .sec-head--split .sec-head__aside { text-align: right; }
}

/* ---------- Leistungen grid (asymmetrisch) ---------- */
.leistungen-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 720px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .leistungen-grid { grid-template-columns: repeat(3, 1fr); } }

.lcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 28px 26px; position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.lcard::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red);
  transform: scaleY(0); transform-origin: top; transition: transform .2s ease;
}
.lcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.lcard:hover::before { transform: scaleY(1); }
.lcard__num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--brown);
  letter-spacing: .08em;
}
.lcard h3 { margin: 8px 0 10px; }
.lcard p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.lcard ul { margin: 14px 0 0; padding: 0; list-style: none; }
.lcard li { font-size: .94rem; color: var(--ink-soft); padding: 4px 0 4px 22px; position: relative; }
.lcard li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 9px; height: 9px;
  background: var(--red); border-radius: 2px; transform: rotate(45deg);
}
/* Feature card with image spans 2 cols on large */
.lcard--feature { padding: 0; border: 0; }
.lcard--feature .lcard__media { position: relative; height: 100%; min-height: 280px; }
.lcard--feature img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.lcard--feature .lcard__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px 22px;
  background: linear-gradient(0deg, rgba(20,21,22,.92), rgba(20,21,22,0));
  color: #fff;
}
.lcard--feature .lcard__cap h3 { color: #fff; margin: 0 0 4px; }
.lcard--feature .lcard__cap p { color: #e7e2da; }
@media (min-width: 1000px) {
  .lcard--feature { grid-column: span 1; grid-row: span 2; }
}

/* ---------- Split (text + bild) ---------- */
.split {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.15fr .85fr; }
  .split--reverse .split__media { order: -1; }
  .split--wide-text { grid-template-columns: 1.35fr .65fr; }
}
.split__media { position: relative; }
.split__media img { border-radius: 8px; box-shadow: var(--shadow-md); width: 100%; }
.split__media::after {
  content: ""; position: absolute; width: 64%; height: 64%; right: -16px; bottom: -16px;
  border: 3px solid var(--red); border-radius: 8px; z-index: -1;
}
.split__badge {
  position: absolute; left: -14px; top: 26px; background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  padding: 12px 18px; border-radius: 4px; line-height: 1; box-shadow: var(--shadow-md);
  font-size: 1.05rem; letter-spacing: .03em;
}

.checklist { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 36px; font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 24px; height: 24px;
  background: var(--red); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 18px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 18px no-repeat;
}

/* ---------- Stats / facts strip ---------- */
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
@media (min-width: 760px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { background: var(--surface); padding: 26px 22px; text-align: left; }
.fact b {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 2.1rem; color: var(--red); line-height: 1;
}
.fact span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }

/* ---------- Prozess ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 30px 22px 26px; background: var(--surface); border-radius: 6px; border: 1px solid var(--line); }
.step__n {
  font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--line-strong);
  line-height: 1; display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.step--accent { background: var(--charcoal); border-color: var(--charcoal); }
.step--accent h3 { color: #fff; }
.step--accent p { color: #d9d4cc; }
.step--accent .step__n { color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: rgba(255,255,255,.07); transform: rotate(45deg);
}
.cta-band__inner {
  display: grid; gap: 26px; align-items: center; position: relative; z-index: 2;
}
@media (min-width: 880px) { .cta-band__inner { grid-template-columns: 1.5fr 1fr; } }
.cta-band h2 { color: #fff; margin: 0 0 .3em; }
.cta-band p { color: #ffe2e2; margin: 0; max-width: 50ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (min-width: 880px) { .cta-band__actions { justify-content: flex-end; } }

/* ---------- Reviews placeholder ---------- */
.reviews-note {
  background: var(--surface); border: 2px dashed var(--line-strong); border-radius: 8px;
  padding: 40px 28px; text-align: center; color: var(--ink-soft);
}
.reviews-note strong { color: var(--charcoal); }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 26px 24px;
}
.review__stars { color: var(--brown); letter-spacing: 2px; font-size: 1.05rem; }
.review p { font-size: 1rem; margin: 12px 0 16px; }
.review cite { font-style: normal; font-weight: 700; color: var(--charcoal); }
.review cite span { display: block; font-weight: 500; color: var(--ink-soft); font-size: .9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 56px); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1fr 1.05fr; } }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.contact-row:first-of-type { border-top: 1px solid var(--line); }
.contact-row__ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 6px; background: #f4efe8;
  display: grid; place-items: center; color: var(--red);
}
.contact-row__ic svg { width: 22px; height: 22px; }
.contact-row b { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; color: var(--charcoal); font-size: 1.05rem; }
.contact-row a { color: var(--ink); font-weight: 600; }
.contact-row a:hover { color: var(--red); }
.contact-row span { color: var(--ink-soft); }

/* ---------- Form ---------- */
.form {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-sm);
}
.form .field { margin-bottom: 18px; }
.form label { display: block; font-weight: 600; margin-bottom: 7px; color: var(--charcoal); font-size: .96rem; }
.form .req { color: var(--red); }
.form input, .form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,21,23,.14);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .grid-2 { display: grid; gap: 18px; }
@media (min-width: 560px) { .form .grid-2 { grid-template-columns: 1fr 1fr; } }
.form .consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 22px; }
.form .consent input { width: auto; margin-top: 4px; flex: 0 0 auto; }
.form .consent label { font-weight: 400; font-size: .9rem; color: var(--ink-soft); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
.form-alert {
  padding: 14px 16px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 600; font-size: .95rem;
}
.form-alert--err { background: #fdecec; color: #9a1416; border: 1px solid #f3c0c0; }
.form-alert--ok { background: #e9f6ec; color: #1c6b34; border: 1px solid #bfe3c8; }

/* ---------- Map ---------- */
.area-map {
  background: var(--charcoal); color: #fff; border-radius: 8px; padding: 34px 30px;
}
.area-map h3 { color: #fff; }
.area-map ul { columns: 2; gap: 24px; list-style: none; padding: 0; margin: 16px 0 0; }
.area-map li { padding: 6px 0 6px 22px; position: relative; color: #e7e2da; font-weight: 500; break-inside: avoid; }
.area-map li::before { content: ""; position: absolute; left: 0; top: 13px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; }
.legal h1 { margin-bottom: .5em; }
.legal h2 { font-size: 1.5rem; margin-top: 2em; }
.legal h3 { font-size: 1.15rem; margin-top: 1.4em; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; }
.legal ul { padding-left: 1.2em; }
.legal a { word-break: break-word; }
.legal .updated { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Page hero (innenseiten) ---------- */
.page-hero { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(135deg, transparent, rgba(200,21,23,.18));
}
.page-hero__inner { padding: clamp(48px, 8vw, 86px) 0; position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d9d4cc; font-size: 1.15rem; max-width: 54ch; margin: 0; }
.breadcrumb { font-size: .85rem; color: #b7b2aa; margin-bottom: 14px; letter-spacing: .04em; }
.breadcrumb a { color: #d9d4cc; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #c9c4bc; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand__name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; text-transform: uppercase;
  color: #fff; letter-spacing: .02em; line-height: 1;
}
.footer-brand__name span { color: var(--red); }
.footer-brand__name small { display: block; font-size: .9rem; letter-spacing: .35em; color: var(--brown); margin-top: 4px; }
.footer-brand p { margin: 16px 0 0; color: #aaa49b; font-size: .95rem; max-width: 32ch; }
.footer h4 {
  color: #fff; font-size: 1.05rem; letter-spacing: .04em; margin: 0 0 14px;
  font-family: var(--font-head); text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a { color: #c9c4bc; font-weight: 500; }
.footer a:hover { color: #fff; text-decoration: none; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--red); flex: 0 0 auto; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #8f8a82;
}
.footer-bottom a { color: #8f8a82; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.28); transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.07); text-decoration: none; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: "WhatsApp"; position: absolute; right: 70px; background: var(--charcoal); color: #fff;
  padding: 7px 12px; border-radius: 4px; font-size: .82rem; white-space: nowrap; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .15s ease;
}
.wa-float:hover::after { opacity: 1; }
@media (max-width: 640px) { .wa-float::after { display: none; } }

/* ---------- Cookie banner ---------- */
#cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 8px;
  box-shadow: var(--shadow-md); padding: 18px 20px;
  display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; justify-content: space-between;
}
@media (min-width: 700px) { #cookie-banner { left: auto; max-width: 440px; } }
#cookie-banner p { margin: 0; font-size: .9rem; color: var(--ink-soft); flex: 1 1 220px; }
#cookie-banner .cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
#cookie-banner button {
  font-family: var(--font-body); font-weight: 700; font-size: .88rem; cursor: pointer;
  padding: 10px 16px; border-radius: var(--radius); border: 2px solid var(--line-strong); background: #fff; color: var(--charcoal);
}
#cookie-banner #cookie-accept { background: var(--red); border-color: var(--red); color: #fff; }
#cookie-banner #cookie-accept:hover { background: var(--red-dark); }
#cookie-banner[hidden] { display: none; }

/* ---------- 404 ---------- */
.err-page { text-align: center; padding: clamp(60px, 12vw, 140px) 0; }
.err-page .code {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(5rem, 18vw, 11rem);
  color: var(--red); line-height: .9; margin: 0;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-soft); }
:focus-visible { outline: 3px solid var(--brown); outline-offset: 2px; border-radius: 2px; }

/* ---------- Mobile nav ---------- */
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .header-cta .header-phone span { display: none; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px 22px; gap: 2px;
    transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow-md);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
}
@media (min-width: 921px) { .nav { transform: none !important; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
