/*
  Buschmann & Seidel Website Relaunch
  Hinweis zu Clarendon: Die Schriftdateien sind nicht im Paket enthalten.
  Bei vorhandener Lizenz die Dateien in assets/fonts/ ablegen und die Regeln aktivieren:

  @font-face {
    font-family: 'ClarendonBS';
    src: url('../fonts/ClarendonBTRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'ClarendonBS';
    src: url('../fonts/ClarenBd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
*/

:root {
  --blue: #3e6cae;
  --blue-2: #25518e;
  --blue-3: #123968;
  --blue-soft: #eaf1fb;
  --white: #ffffff;
  --ink: #102033;
  --muted: #66758a;
  --line: rgba(62, 108, 174, 0.16);
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 14px 40px rgba(16, 32, 51, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 88px;
  --font-main: 'ClarendonBS', 'Clarendon BT', Clarendon, Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.mobile-break { display: none; }
.desktop-break { display: inline; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(62,108,174,.12);
  backdrop-filter: saturate(160%) blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 35px rgba(16,32,51,.08);
  background: rgba(255,255,255,.96);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 205px;
  transition: transform .2s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand img { width: clamp(205px, 25vw, 310px); height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 16px;
  color: rgb(0, 0, 0);
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue);
  background: var(--blue-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: #f4f7fb;
  border: 1px solid var(--line);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}
.lang-btn.is-active {
  background: var(--blue);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 14px 28px rgba(62,108,174,.28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 35px rgba(62,108,174,.32); background: var(--blue-2); border-color: var(--blue-2); }
.btn:active { transform: translateY(0); }
.btn-small { min-height: 40px; padding: 10px 16px; font-size: 14px; }
.btn-ghost {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-ghost-blue {
  color: var(--blue);
  background: white;
  box-shadow: none;
}
.btn-ghost-blue:hover { background: var(--blue-soft); color: var(--blue-2); border-color: rgba(62,108,174,.24); box-shadow: none; }
.btn-light { color: var(--blue); background: white; border-color: white; box-shadow: none; }
.btn-light:hover { background: var(--blue-soft); color: var(--blue-2); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.55); box-shadow: none; }
.btn-outline-light:hover { background: white; color: var(--blue); border-color: white; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--blue-3);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(12, 39, 72, .9) 0%, rgba(12, 39, 72, .68) 45%, rgba(62, 108, 174, .18) 100%),
    url('../img/werkstatt-aussen.webp') center/cover no-repeat;
  transform: scale(1.04);
  transform-origin: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: linear-gradient(to top, rgba(255,255,255,.95), transparent);
  opacity: .18;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 54px;
  align-items: center;
  padding: 92px 0 70px;
}
.hero-copy { max-width: 780px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 800;
}
.hero .eyebrow,
.section-blue .eyebrow { color: #dbe8ff; }
h1, h2 {
  font-family: var(--font-main);
  line-height: 1.08;
  margin: 0;
  color: inherit;
  letter-spacing: .01em;
}
h3 {
  line-height: 1.18;
  margin: 0;
  color: inherit;
  letter-spacing: .01em;
  font-weight: 800;
}
h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: min(100%, 820px);
  text-wrap: balance;
}
h2 { font-size: 44px; }
h3 { font-size: 22px; }
.hero-text {
  max-width: 710px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 21px);
  color: rgba(255,255,255,.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.trust-row span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 14px;
}
.trust-row span {
  border: 1px solid rgba(255,255,255,.24);
  background: #21b45d;
  color: rgba(255,255,255,1);
}
.pill-row span {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.11);
  color: rgba(255,255,255,.9);
}
.hero-card {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--blue);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(20px);
}
.card-topline {
  color: #dbe8ff;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}
.hero-card h2 { font-size: 26px; margin-bottom: 20px; }
.contact-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.contact-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(62,108,174,.16);
}
.hero-card .contact-list li { border-bottom-color: rgba(255,255,255,.18); }
.contact-list span {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}
.hero-card .contact-list span { color: rgba(255,255,255,.7); }
.contact-list a { font-weight: 600; color: inherit; }
.contact-list a:hover { color: var(--blue); }
.hero-card .contact-list a:hover { color: #fff; }
.opening-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,1);
}
.opening-box p { margin: 6px 0 0; color: #123968; }
.opening-title { color: var(--blue); font-weight: 800; }
.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  width: 42px;
  height: 54px;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 5px;
  width: 18px;
  height: 18px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
  animation: scrollCue 1.6s ease-in-out infinite;
}
@keyframes scrollCue { 0% { transform: translate(-50%,0) rotate(45deg); opacity: 0; } 35% { opacity: 1; } 100% { transform: translate(-50%,24px) rotate(45deg); opacity: 0; } }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-white { background: #fff; }
.section-soft {
  background:
    radial-gradient(circle at top left, rgba(62,108,174,.08), transparent 35%),
    #f7faff;
}
.section-blue { background: linear-gradient(135deg, var(--blue), var(--blue-3)); color: #fff; }

.benefits-parallax {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18,57,104,.88), rgba(62,108,174,.68)),
    url('../img/slider-parallax.webp') center/cover fixed no-repeat;
}
.benefits-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.2), transparent 26%),
    linear-gradient(to bottom, rgba(255,255,255,.12), rgba(255,255,255,.02));
  pointer-events: none;
}
.benefits-parallax .container { position: relative; z-index: 1; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 60px rgba(6,18,34,.18);
  backdrop-filter: blur(12px);
}
.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(200px, 100%);
  height: 100px;
  margin: 0 auto 5px;
  border-radius: 0;
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}
.metric-icon img {
  width: 200px;
  max-height: 110px;
  object-fit: contain;
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 12px 24px rgba(62,108,174,.18);
}
.icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.metric p { margin: 0; color: var(--ink); font-weight: 700; }


.reviews-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(62,108,174,.08), transparent 30%),
    #fff;
}
.reviews-shell {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
}
.reviews-viewport {
  overflow: hidden;
  padding: 8px 2px 16px;
  scroll-behavior: smooth;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0 22px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  min-height: 260px;
  scroll-snap-align: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62,108,174,.28);
  box-shadow: 0 24px 56px rgba(16,32,51,.13);
}
.review-stars {
  color: var(--blue);
  letter-spacing: .14em;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 22px;
}
.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}
.review-card span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.review-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.review-arrow:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.review-arrow svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.two-column,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
}
.align-center { align-items: center; }
.copy-block p { color: var(--muted); font-size: 17px; }
.copy-block p:not(.eyebrow) { margin: 20px 0 0; }
.image-stack {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.image-stack img,
.feature-media img,
.gallery-item img,
.map-card,
.legal-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-stack img {
  position: absolute;
  object-fit: cover;
  border: 10px solid #fff;
}
.image-stack img:first-child {
  top: 0;
  left: 0;
  width: 72%;
  aspect-ratio: 4/3;
  z-index: 1;
}
.image-stack img:nth-child(2) {
  right: 0;
  top: 175px;
  width: 58%;
  aspect-ratio: 4/3;
  z-index: 3;
}
.image-stack img:nth-child(3) {
  left: 8%;
  bottom: 10px;
  width: 46%;
  aspect-ratio: 4/3;
  z-index: 2;
}
.floating-note {
  position: absolute;
  right: 6%;
  left: auto;
  bottom: 48px;
  transform: none;
  z-index: 4;
  width: min(440px, 72%);
  padding: 22px 26px;
  border-radius: 18px;
  color: white;
  background: var(--blue);
  box-shadow: 0 20px 40px rgba(62,108,174,.28);
}
.floating-note strong { display: block; font-size: 18px; }
.floating-note span { display: block; margin-top: 4px; color: rgba(255,255,255,.84); }

.section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-head.compact { max-width: 520px; margin-inline: 0; text-align: left; }
.section-head p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 18px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(62,108,174,.09);
  transition: transform .24s ease;
}
.service-card:hover {
  border-color: rgba(62,108,174,.35);
  box-shadow: 0 26px 58px rgba(16,32,51,.13);
}
.service-card:hover::before { transform: scale(1.4); }
.service-card h3 { color: var(--blue-3); }
.service-card p { margin: 14px 0 0; color: var(--muted); }

.band { padding: 54px 0; }
.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.band h2 { max-width: 680px; }
.band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.feature-grid { align-items: center; }
.feature-grid.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.mobile-feature-media { display: none; }
.feature-media::after {
  content: '';
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 2px solid rgb(62, 108, 174);
  border-radius: var(--radius);
  z-index: -1;
}
.feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
#oldtimer .feature-media img { aspect-ratio: 4/5; object-position: center; }
.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 14px;
  font-weight: 800;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill-row span {
  border-color: var(--line);
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(16,32,51,.06);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.timeline-item {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-weight: 800;
}
.timeline-item p { color: var(--muted); margin: 14px 0 0; }

.tab-layout {
  display: grid;
  grid-template-columns: 360px minmax(0,1fr);
  gap: 46px;
  align-items: start;
}
.tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.tab-buttons {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: #f2f6fc;
}
.tab-btn {
  flex: 1;
  border: 1px solid rgba(62,108,174,.28);
  border-radius: 16px;
  padding: 14px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.tab-btn:hover { transform: translateY(-1px); }
.tab-btn.is-active {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}
.tab-panels { padding: 34px; }
.tab-panel { display: none; animation: fadeSlide .26s ease both; }
.tab-panel.is-active { display: block; }
.tab-panel p { color: var(--muted); font-size: 18px; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}
.gallery-item {
  position: relative;
  min-height: 260px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}
.gallery-item::after {
  content: '+';
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: rgba(62,108,174,.9);
  font-size: 28px;
  line-height: 1;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.08); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.faq-layout {
  display: grid;
  grid-template-columns: 380px minmax(0,1fr);
  gap: 44px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(16,32,51,.05);
}
.faq-item button {
  position: relative;
  width: 100%;
  padding: 22px 58px 22px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.faq-item button::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 26px;
  transition: transform .2s ease;
}
.faq-item.is-open button::after { transform: translateY(-50%) rotate(45deg); }
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-content p {
  overflow: hidden;
  margin: 0 22px;
  color: var(--muted);
}
.faq-item.is-open .faq-content { grid-template-rows: 1fr; }
.faq-item.is-open .faq-content p { padding-bottom: 22px; }

.contact-grid { align-items: stretch; }
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18,57,104,.88), rgba(62,108,174,.68)),
    url('../img/kontakt-parallax.webp') center/cover fixed no-repeat;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.2), transparent 26%),
    linear-gradient(to bottom, rgba(255,255,255,.12), rgba(255,255,255,.02));
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 1; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
  background: white;
}
.contact-card address {
  margin-top: 18px;
  font-style: normal;
  color: var(--muted);
  font-size: 18px;
}
.hours-card {
  margin-top: 26px;
  padding: 22px;
  border-radius: 22px;
  background: var(--blue-soft);
}
.hours-card h3 { color: var(--blue-3); }
.hours-card p { margin: 12px 0 0; color: var(--muted); }
.small { font-size: 14px; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.map-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  background: #edf4ff;
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(.94) contrast(.96);
}

.map-consent {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(62,108,174,.14), rgba(18,57,104,.24)),
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.9), rgba(255,255,255,.35));
}
.map-consent-inner {
  max-width: 460px;
  padding: 26px;
  border-radius: 22px;
  text-align: center;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(62,108,174,.18);
}
.map-consent-inner strong {
  display: block;
  font-family: var(--font-head);
  color: var(--blue-3);
  font-size: 24px;
  margin-bottom: 8px;
}
.map-consent-inner p {
  color: var(--muted);
  margin-bottom: 18px;
}
.btn-map {
  border: 0;
  cursor: pointer;
}
.map-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  color: white;
  background: var(--blue);
  backdrop-filter: blur(14px);
}
.map-overlay strong,
.map-overlay span { display: block; }
.map-overlay span { color: rgba(255,255,255,.82); margin-top: 4px; }

.site-footer {
  background: var(--blue);
  color: white;
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 38px;
}
.footer-logo {
  width: 260px;
  padding: 10px;
  border-radius: 14px;
  background: white;
}
.site-footer p,
.site-footer span { color: #fff; }
.site-footer h3 { font-size: 18px; margin-bottom: 16px; color: #e9eef5; }
.site-footer a { display: block; color: #fff; margin: 8px 0; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.footer-contact > a,
.footer-contact > span,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 26px;
  line-height: 1.35;
  width: fit-content;
}
.footer-contact > a,
.footer-contact > span {
  margin: 10px 0;
}
.footer-contact .footer-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  object-fit: contain;
  display: block;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 14px;
}
.footer-bottom a { display: inline; margin: 0; font-weight: 800; color: #fff; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(6,18,34,.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-height: 86vh;
  max-width: min(1100px, 94vw);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.legal-main { background: #f7faff; }
.legal-hero { padding: 90px 0 70px; }
.legal-hero h1 { font-size: clamp(40px,5vw,64px); }
.legal-hero p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.82); font-size: 18px; }
.legal-card {
  max-width: 900px;
  padding: clamp(28px, 5vw, 64px);
  margin-inline: auto;
  border: 1px solid var(--line);
  background: white;
}
.legal-card h2 { margin-top: 38px; font-size: clamp(28px,3vw,42px); color: var(--blue-3); }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin: 28px 0 10px; color: var(--blue); }
.legal-card p { color: var(--muted); }
.legal-card a { color: var(--blue); font-weight: 800; }
.legal-credit {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.legal-credit a { color: var(--blue); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.reveal-left { transform: translateX(-56px); }
.reveal.reveal-right { transform: translateX(56px); }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1080px) {
  .main-nav a { padding-inline: 9px; font-size: 16px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .tab-layout, .faq-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .benefits-parallax, .contact-section { background-attachment: scroll; }
  :root { --header-height: 78px; }
  .header-inner { min-height: var(--header-height); }
  .brand img { width: 220px; }
  .burger { display: inline-flex; }
  .header-actions .btn-small { display: none; }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 10px);
    z-index: 999;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 14px 16px; font-size: 17px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-card { max-width: 540px; }
  .metrics-grid { grid-template-columns: 1fr; transform: none; margin-bottom: 0; }
  .two-column, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-grid.reverse .feature-media { order: initial; }
  .band-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .hero { min-height: auto; }
  .hero-grid { padding: 58px 0 72px; gap: 28px; min-width: 0; }
  .hero-copy { max-width: 100%; min-width: 0; }
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 10.2vw, 44px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  h2 { font-size: 28px; }
  .hero-text { max-width: 100%; font-size: 17px; }
  .hero-actions, .band-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-row span { font-size: 13px; }
  .hero-bg {
    background:
      linear-gradient(110deg, rgba(12, 39, 72, .92) 0%, rgba(12, 39, 72, .68) 52%, rgba(62, 108, 174, .16) 100%),
      url('../img/hero-mobile.webp') center/cover no-repeat;
  }
  .hero-card { padding: 22px; border-radius: 22px; }
  .hero-card h2 { font-size: 28px; }
  .mobile-break { display: block; }
  .desktop-break { display: none; }
  .copy-block h2,
  .section-head h2,
  .band h2,
  .tab-layout h2,
  .faq-layout h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .feature-grid > .feature-media:not(.mobile-feature-media) { display: none; }
  .mobile-feature-media { display: block; margin: 22px 0 24px; }
  .mobile-feature-media::after { inset: 14px -10px -10px 14px; }
  .contact-list li { flex-direction: column; gap: 3px; align-items: flex-start; }
  .image-stack { display: grid; gap: 18px; min-height: 0; padding-bottom: 0; }
  .image-stack img,
  .image-stack img:first-child,
  .image-stack img:nth-child(2),
  .image-stack img:nth-child(3) { position: static; width: 100%; aspect-ratio: 4/3; transform: none; border-width: 0; }
  .floating-note { position: static; width: 100%; margin-top: -8px; transform: none; }
  .service-grid, .timeline, .gallery-grid, .metrics-grid { grid-template-columns: 1fr; }
  .reviews-shell {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 8px;
  }
  .review-arrow {
    width: 46px;
    height: 46px;
  }
  .review-arrow svg {
    width: 24px;
    height: 24px;
  }
  .reviews-track {
    grid-auto-columns: 100%;
    gap: 18px;
    padding-bottom: 14px;
  }
  .review-card {
    min-height: 250px;
    padding: 22px;
  }
  .review-card p {
    font-size: 16px;
  }
  .metric { padding: 24px; }
  .metric-icon { width: min(190px, 100%); height: 92px; }
  .metric-icon img { width: 190px; max-height: 92px; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item, .gallery-item img { min-height: 230px; }
  .tab-buttons { flex-direction: column; }
  .tab-panels { padding: 24px; }
  .map-card, .map-card iframe, .map-consent { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .scroll-cue { display: none; }
}

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