/* BAK Estrichbau – Beton Profi (mockup-2-beton-profi.html) */
:root {
  --brand: #F4601A;
  --brand-dark: #D94E10;
  --brand-light: #F7F2EC;
  --bg: #EEEAE3;
  --sand: #D8CEC0;
  --ink: #202326;
  --graphite: #3A3E3F;
  --card: #fff;
  --muted: #6B6F70;
  --lead: #555b5d;
  --line: #CCC3B7;
  --header-bg: #FBFAF7;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}

a { color: inherit; text-decoration: none; }

.wrap,
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Header ── */
.top {
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.top.scrolled { box-shadow: 0 4px 20px rgba(32, 35, 38, 0.08); }

.nav {
  min-height: 64px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo: stała wysokość – bez max-width, które kurczyło szerokie logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo {
  height: 42px;
  width: auto;
  display: block;
}
.logo-sm {
  height: 36px;
  width: auto;
}

.nav-main {
  display: none;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .nav-main { display: flex; }
}

.nav-link {
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active { color: var(--brand); }

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
}
.nav-phone-text {
  display: none;
  font-weight: 900;
  color: var(--ink);
}
@media (min-width: 640px) {
  .nav-phone-text { display: inline; }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  color: var(--ink);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  padding: 0;
}
.dropdown-toggle:hover,
.dropdown-toggle.active { color: var(--brand); }
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 60;
}
.dropdown:hover .dropdown-panel,
.dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(32, 35, 38, 0.12);
  padding: 8px;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.dropdown-menu a:hover {
  background: var(--brand-light);
  color: var(--brand);
}

/* Mobile menu */
#mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(32, 35, 38, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#mobile-backdrop.open { opacity: 1; pointer-events: auto; }

#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(100%, 320px);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(32, 35, 38, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#mobile-menu.open { transform: translateX(0); }

.mobile-sub { display: none; padding-left: 1rem; }
.mobile-sub.open { display: block; }

.mobile-nav-link {
  display: block;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--brand-light);
  color: var(--brand);
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 16px;
  background: var(--header-bg);
  border-top: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .mobile-sticky-cta { display: none; }
  #mobile-menu,
  #mobile-backdrop { display: none !important; }
}
.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sticky-phone {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.sticky-offer {
  background: var(--brand);
  color: #fff;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 42px;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-dark { background: var(--graphite); color: #fff; }
.btn-dark:hover { background: #2f3334; }
.btn-light {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { border-color: var(--brand); color: var(--brand); }

.btn-nav-phone {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
  font-size: 13px;
  color: var(--ink);
  min-height: 40px;
}
.btn-nav-phone:hover { border-color: var(--brand); color: var(--brand); }

/* ── Hero (index) ── */
.hero { padding: 48px 0 64px; }

.hero-shell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  box-shadow: 0 24px 70px rgba(32, 35, 38, 0.1);
}

.hero-copy { padding: 48px 40px; }

.tag {
  font-weight: 900;
  color: var(--brand);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.h1 {
  font-size: clamp(2rem, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 18px 0;
  font-weight: 900;
  color: var(--ink);
}
.h1 em { font-style: normal; color: var(--brand); }

.lead {
  font-size: clamp(1rem, 2vw, 19px);
  line-height: 1.6;
  color: var(--lead);
  margin: 0;
}

.hero-img {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(58, 62, 63, 0.12), rgba(58, 62, 63, 0.04)),
    image-set(
      url('../images/web/banner-hero.webp') type('image/webp'),
      url('../images/web/banner-hero.jpg') type('image/jpeg')
    ) center/cover;
  position: relative;
}
@media (min-width: 900px) {
  .hero-img { min-height: 480px; }
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  max-width: 320px;
}
.hero-badge-icon {
  background: var(--brand);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}
.hero-badge b { display: block; color: var(--ink); font-size: 14px; }
.hero-badge span { font-size: 13px; color: var(--lead); line-height: 1.45; }

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: var(--header-bg);
}
.stat {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-size: 22px;
  color: var(--ink);
}
.stat span {
  font-size: 13px;
  color: var(--lead);
  font-weight: 700;
}
.stat a { display: block; }
.stat a:hover b,
.stat a:hover span { color: var(--brand); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 899px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { padding: 32px 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ── Sections ── */
.section { padding: 56px 0 72px; }

.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.eyebrow {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.09em;
}

.title {
  font-size: clamp(1.75rem, 3.5vw, 42px);
  margin: 8px 0 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--ink);
}

.section-intro {
  margin-top: 12px;
  max-width: 52ch;
  color: var(--lead);
  line-height: 1.6;
  font-size: 16px;
}

/* Service grid (mockup) */
.service-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service .service-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}
.service .service-inner {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
a.service:hover {
  border-color: rgba(244, 96, 26, 0.45);
  box-shadow: 0 12px 32px rgba(32, 35, 38, 0.08);
}
.service.big {
  grid-row: span 2;
  background: linear-gradient(135deg, #fff, #F7F2EC);
}
.service.big .service-thumb {
  aspect-ratio: 4 / 3;
  min-height: 200px;
}
.service h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
}
.service p {
  color: var(--lead);
  line-height: 1.55;
  margin: 0;
  font-size: 15px;
}
.service .service-inner .nr {
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 12px;
  font-size: 14px;
}
.service.big .service-inner .nr { margin-bottom: 16px; }

@media (max-width: 899px) {
  .service-grid { grid-template-columns: 1fr; }
  .service.big { grid-row: auto; }
}

/* Trust strip */
.strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.strip-item {
  text-align: center;
  font-weight: 900;
  color: var(--graphite);
  font-size: 13px;
}
.strip-item span {
  display: block;
  color: var(--brand);
  font-size: 24px;
  margin-bottom: 6px;
}
@media (max-width: 899px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Index CTA */
.index-cta {
  padding: 48px 0 72px;
}
.index-cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(32, 35, 38, 0.08);
}
.index-cta-card .title { margin-top: 8px; }
.index-cta-card .lead { margin-top: 12px; }
.index-cta-phone {
  display: block;
  margin-top: 20px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--ink);
}
.index-cta-phone:hover { color: var(--brand); }
.index-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* Dark band */
.dark-band {
  background: var(--graphite);
  color: #fff;
  padding: 72px 0;
}
.dark-band .title { color: #fff; }
.dark-band .eyebrow { color: var(--brand); }
.dark-band p { color: rgba(255, 255, 255, 0.82); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.process div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 24px;
}
.process b { color: var(--brand); font-size: 14px; }
.process h3 { margin: 8px 0; font-size: 18px; color: #fff; }
.process p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, 0.78); }

@media (max-width: 899px) {
  .process { grid-template-columns: 1fr; }
}

/* Page hero (subpages) */
.page-hero {
  padding: 48px 0 40px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 8px 0 0;
  color: var(--ink);
}
.page-hero p {
  margin-top: 14px;
  max-width: 52ch;
  color: var(--lead);
  line-height: 1.6;
  font-size: 17px;
}

.page-hero-image {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 40px;
  overflow: hidden;
  background: var(--graphite);
}
.page-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 62, 63, 0.92), rgba(58, 62, 63, 0.35));
  z-index: 1;
}
.page-hero-image .wrap { position: relative; z-index: 2; }
.page-hero-image h1 { color: #fff; }
.page-hero-image p { color: rgba(255, 255, 255, 0.9); }

/* References */
.refs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.ref {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.ref:first-child { grid-row: span 2; }
.ref img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 210px;
}
.ref:first-child img { height: 420px; }
.ref .ref-body { padding: 20px; }
.ref h3 { margin: 0 0 8px; font-size: 18px; color: var(--ink); }
.ref p { margin: 0; color: var(--lead); font-size: 14px; line-height: 1.5; }
.ref-meta { margin-top: 10px; font-size: 12px; color: var(--muted); }

@media (max-width: 899px) {
  .refs { grid-template-columns: 1fr; }
  .ref:first-child { grid-row: auto; }
  .ref:first-child img { height: 210px; }
}

/* Contact */
.contact-wrap { padding: 56px 0 72px; }
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  box-shadow: 0 16px 48px rgba(32, 35, 38, 0.08);
}
@media (max-width: 899px) {
  .contact-panel { grid-template-columns: 1fr; padding: 24px; }
}

.field {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(244, 96, 26, 0.2);
}
textarea.field {
  height: auto;
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}
label.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* Service detail (subpages) */
.service-detail {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; }
}
.service-detail:nth-child(even) .service-detail-img { order: 2; }
.service-detail img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line);
}
.service-detail h2 { font-size: 28px; font-weight: 900; color: var(--ink); }
.service-detail p { color: var(--lead); line-height: 1.6; }
.service-detail ul {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.service-detail li {
  padding: 6px 0 6px 1.25rem;
  position: relative;
  color: var(--lead);
}
.service-detail li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}

/* Gallery */
.gallery-filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* Cards / misc */
.card-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.card-box h3 { color: var(--ink); font-weight: 800; }
.card-box p { color: var(--lead); font-size: 14px; line-height: 1.55; margin-top: 8px; }

.aufheiz-chart-card { margin-top: 8px; }
.aufheiz-chart-figure { margin: 20px 0 0; }
.aufheiz-chart {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.aufheiz-chart .aufheiz-axis { stroke: var(--graphite); stroke-width: 1.5; }
.aufheiz-chart .aufheiz-grid { stroke: var(--line); stroke-width: 1; stroke-dasharray: 4 4; }
.aufheiz-chart .aufheiz-curve {
  fill: none;
  stroke: var(--brand);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.aufheiz-chart .aufheiz-dot { fill: var(--brand-dark); }
.aufheiz-chart .aufheiz-label,
.aufheiz-chart .aufheiz-phase {
  fill: var(--graphite);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.aufheiz-chart .aufheiz-tick {
  fill: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
}
.aufheiz-chart .aufheiz-peak {
  fill: var(--brand-dark);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
}
.aufheiz-chart-caption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--lead);
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lead);
  margin-bottom: 0.75rem;
}
.legal-content a { color: var(--brand); font-weight: 700; }

/* Footer */
.footer {
  background: var(--graphite);
  color: #fff;
  padding: 40px 0 28px;
}
.footer-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer img { height: 38px; width: auto; }
.footer-tagline {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.footer-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.footer-links {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a:hover { color: var(--brand); }

/* Tailwind-compat helpers still used on some subpages */
.hidden { display: none !important; }
.text-brand { color: var(--brand); }
.bg-white { background: #fff; }
.max-w-3xl { max-width: 48rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.text-center { text-align: center; }
.grid { display: grid; }
.gap-6 { gap: 1.5rem; }
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Cookie-Banner (DSGVO) ── */
.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  background: rgba(58, 62, 63, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  color: #fff;
  box-shadow: 0 -12px 40px rgba(32, 35, 38, 0.2);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-title { font-weight: 900; margin: 0 0 4px; font-size: 15px; }
.cookie-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
}
.cookie-desc a { color: var(--brand); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cookie-choice {
  min-width: 140px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-cookie-choice:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-cookie-choice--accept {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-cookie-choice--accept:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-cookie-btn:hover { color: var(--brand); }

/* ── Kontaktformular: DSGVO-Checks ── */
.form-checks {
  margin: 16px 0 0;
  padding: 0;
  border: none;
}
.form-checks-legend {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 10px;
  padding: 0;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lead);
  cursor: pointer;
}
.form-check input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--brand);
}
.form-check a { color: var(--brand); font-weight: 700; }
.form-check.field--invalid { color: #b91c1c; }
.field-error {
  display: block;
  margin: -4px 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #b91c1c;
}
.field-error[hidden] { display: none !important; }
.form-validation-summary {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
}
.form-validation-summary[hidden] { display: none !important; }
.field.field--invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 1px #fecaca;
}
.map-placeholder {
  padding: 28px 20px;
  text-align: center;
  background: var(--bg);
  min-height: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-placeholder p {
  margin: 0;
  font-size: 13px;
  color: var(--lead);
  max-width: 28ch;
}
.map-container[hidden] { display: none !important; }

/* SEO / content helpers */
.breadcrumb {
  padding: 12px 0 0;
  font-size: 13px;
  color: var(--lead);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--brand); }

.faq-section .faq-list { margin-top: 20px; display: grid; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0 0 16px;
  color: var(--lead);
  line-height: 1.65;
  font-size: 15px;
}

.regional-section {
  background: var(--brand-light);
  border-block: 1px solid var(--line);
}
.regional-text { max-width: 52rem; }

.notice-box {
  border: 1px solid rgba(244, 96, 26, 0.35);
  background: var(--brand-light);
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.service-bullets {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.9;
  color: var(--lead);
}
.service-bullets li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  margin-right: 8px;
}

.content-img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.service-overview { padding-top: 0; }
.service-dl {
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}
.service-dl dt {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.service-dl dd {
  margin: 4px 0 0;
  color: var(--lead);
  line-height: 1.65;
  font-size: 15px;
}

.footer-address {
  font-style: normal;
  line-height: 1.8;
  color: var(--lead);
  font-size: 14px;
}
.footer-address a { color: var(--lead); }
.footer-address a:hover { color: var(--brand); }

.contact-address {
  font-style: normal;
  line-height: 1.7;
  color: var(--lead);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.form-status--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-status--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-status--error a {
  color: var(--brand);
  font-weight: 700;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { width: 100%; }
  .btn-cookie-choice { flex: 1; min-width: 0; }
}
