/* ==========================================================================
   Coworking 1090 – Stylesheet
   Ruhiges, seriöses Design. Eine Primärfarbe (Blau), Weiß, helle Grautöne,
   dunkle Typografie. Keine Verläufe, keine starken Schatten.
   ========================================================================== */

/* ----- Self-hosted font (kein Google Fonts -> datenschutzfreundlich) ----- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

/* ----- Design Tokens ----------------------------------------------------- */
:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f4f6f9;          /* sehr helles Grau für Sektionen */
  --bg-tint: #e9f1f9;         /* heller Blauton, sparsam */
  --ink: #192633;             /* Anthrazit – Überschriften/Text */
  --ink-2: #475563;           /* Sekundärtext */
  --ink-3: #5d6b7a;           /* kleine Hinweise */
  --blue: #14538a;            /* Primärfarbe */
  --blue-dark: #0f3f6b;       /* Hover/Aktiv */
  --blue-deep: #0c2f50;       /* Footer / tiefstes Blau */
  --border: #e2e7ee;
  --border-strong: #cfd8e3;
  --focus: #2b7cc4;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 40, 67, .05), 0 2px 6px rgba(16, 40, 67, .05);
  --shadow-md: 0 4px 14px rgba(16, 40, 67, .08);

  --container: 1180px;
  --measure: 66ch;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 6vw, 6rem);

  --t-fast: 140ms ease;
  --t: 220ms ease;
}

/* ----- Reset / Base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* sticky header offset for anchors */
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.15rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.35rem); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration-color: rgba(20, 83, 138, .35); text-underline-offset: 2px; }
a:hover { color: var(--blue-dark); text-decoration-color: currentColor; }

strong { font-weight: 650; }

ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }

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

/* ----- Helpers ----------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--bg-tint); }
.section--tight { padding-block: clamp(2.5rem, 4vw, 3.5rem); }

.section-head { max-width: var(--measure); margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .65rem;
}
.lede { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: var(--ink-2); line-height: 1.55; }
.measure { max-width: var(--measure); }

/* SVG icon sprite usage */
.icon { width: 1.25em; height: 1.25em; flex: none; stroke-width: 1.8; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  --btn-bd: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .7rem 1.35rem;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.15em; height: 1.15em; }

.btn-secondary {
  --btn-bg: transparent;
  --btn-fg: var(--blue);
  --btn-bd: var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-alt); border-color: var(--blue); color: var(--blue-dark); }

.btn-ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .55);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.btn-light {
  --btn-bg: #fff;
  --btn-fg: var(--blue);
  --btn-bd: #fff;
}
.btn-light:hover { background: #eef4fa; border-color: #eef4fa; color: var(--blue-dark); }

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  text-decoration: none;
}
.link-arrow .icon { width: 1.05em; height: 1.05em; transition: transform var(--t-fast); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ----- Header / Navigation ---------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--blue); }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 550;
  padding: .35rem 0;
  position: relative;
}
.nav-list a:hover { color: var(--ink); }
.nav-list a[aria-current="page"] { color: var(--blue); }
.nav-list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -7px; }
.nav-toggle-bars::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: .5rem var(--gutter) 1.1rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { padding: .85rem .25rem; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav-list a[aria-current="page"]::after { display: none; }
  .nav-cta { margin-top: 1rem; }
}

/* ----- Hero -------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-text { max-width: 36rem; }
.hero h1 { margin-bottom: .6rem; }
.hero-sub { margin-bottom: 1.4rem; }

.keyfacts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}
.keyfacts li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 550;
  color: var(--ink-2);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: .4rem .75rem;
  border-radius: var(--radius-pill);
}
.keyfacts .icon { width: 1.05rem; height: 1.05rem; color: var(--blue); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.25rem; }
.hero-address {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink-2);
  font-size: .95rem;
}
.hero-address .icon { color: var(--blue); width: 1.1rem; height: 1.1rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-text { max-width: none; order: 1; }
  .hero-media { order: 2; }
}

/* ----- Trust bar --------------------------------------------------------- */
.trustbar { border-block: 1px solid var(--border); background: var(--bg-alt); }
.trustbar-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding-block: clamp(1.2rem, 3vw, 1.8rem);
  padding-inline: 0;
}
.trustbar-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
}
.trustbar-list .icon { color: var(--blue); width: 1.4rem; height: 1.4rem; }
@media (max-width: 720px) {
  .trustbar-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .trustbar-list { grid-template-columns: 1fr; }
}

/* ----- Media split (Bild + Text) ---------------------------------------- */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.media--reverse .media-figure { order: 2; }
.media-figure { margin: 0; }
.media-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.media-figure figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--ink-3);
}
@media (max-width: 820px) {
  .media-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .media--reverse .media-figure { order: 0; }
}

/* ----- Spec / equipment list -------------------------------------------- */
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1.4rem;
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
}
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: var(--ink);
  padding: .15rem 0;
}
.spec-list .icon { color: var(--blue); margin-top: .15rem; width: 1.15rem; height: 1.15rem; }
@media (max-width: 520px) { .spec-list { grid-template-columns: 1fr; } }

/* ----- Feature cards (Vorteile) ----------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--blue);
  margin-bottom: 1rem;
}
.feature-icon .icon { width: 1.5rem; height: 1.5rem; }
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--ink-2); font-size: .98rem; margin: 0; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }

/* ----- Pricing ----------------------------------------------------------- */
.pricing-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink-2);
  font-size: .95rem;
  margin-bottom: 1.6rem;
}
.pricing-note .icon { color: var(--blue); }
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.price-card.is-featured { border-color: var(--blue); box-shadow: var(--shadow-md); }
.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: 1rem;
}
.price-card h3 { margin: 0; }
.price-badge {
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-tint);
  padding: .25rem .55rem;
  border-radius: var(--radius-pill);
}
.price-amount { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.price-amount .amount { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.price-amount .vat { font-size: .9rem; color: var(--ink-2); font-weight: 550; }
.price-cleaning { margin: .55rem 0 1.2rem; font-size: .88rem; color: var(--ink-3); }
.price-card .btn { margin-top: auto; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; } }

/* ----- Standort-Teaser --------------------------------------------------- */
.locteaser-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.locteaser address {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
  margin: .4rem 0 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}
.locteaser address .icon { color: var(--blue); margin-top: .15rem; }
@media (max-width: 760px) { .locteaser-grid { grid-template-columns: 1fr; } }

/* ----- FAQ --------------------------------------------------------------- */
.faq { max-width: 50rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: .7rem;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform var(--t-fast);
  margin-right: .2rem;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body { padding: 0 1.2rem 1.15rem; color: var(--ink-2); }
.faq-item .faq-body p { margin: 0; }

/* ----- CTA band ---------------------------------------------------------- */
.cta-band { background: var(--blue); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); }
.cta-band-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}
.cta-band-grid .lede { color: rgba(255, 255, 255, .92); }
.cta-band .cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ----- Gallery ----------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform var(--t);
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 47, 80, .18), transparent 45%);
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-hint {
  margin-top: 1.6rem;
  color: var(--ink-3);
  font-size: .92rem;
  max-width: var(--measure);
}

/* Document callout (Raumkonzept PDF) */
.doc-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  padding: 1.2rem 1.4rem;
  margin-top: 2.2rem;
}
.doc-callout .doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue);
  flex: none;
}
.doc-callout .doc-text { flex: 1 1 240px; }
.doc-callout .doc-text strong { display: block; color: var(--ink); }
.doc-callout .doc-text span { font-size: .9rem; color: var(--ink-3); }

/* ----- Lightbox (native <dialog>) --------------------------------------- */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(1100px, 94vw);
  max-height: 94vh;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(10, 23, 38, .85); }
.lightbox-figure { margin: 0; }
.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #0c2f50;
}
.lightbox figcaption {
  color: #eaf1f9;
  text-align: center;
  margin-top: .7rem;
  font-size: .95rem;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-pill);
  cursor: pointer;
  width: 46px; height: 46px;
  backdrop-filter: blur(4px);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .25); }
.lightbox-close { top: -56px; right: 0; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: -62px; }
.lightbox-next { right: -62px; }
@media (max-width: 820px) {
  .lightbox-nav { top: auto; bottom: -56px; transform: none; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  .lightbox-close { top: -54px; }
}

/* ----- Contact ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.contact-block { margin-bottom: 1.4rem; }
.contact-block:last-child { margin-bottom: 0; }
.contact-block h3 { font-size: 1rem; margin-bottom: .4rem; }
.contact-block address { font-style: normal; color: var(--ink); line-height: 1.55; }
.contact-line { display: flex; align-items: center; gap: .55rem; color: var(--ink); }
.contact-line .icon { color: var(--blue); }

/* Form */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field .opt { font-weight: 500; color: var(--ink-3); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: .7rem .85rem;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 124, 196, .18);
}
.field select { appearance: none; padding-right: 2.4rem; }
/* CSS-only dropdown chevron (no data: URI -> CSP-safe) */
.select-wrap { position: relative; display: block; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.form-hint { font-size: .88rem; color: var(--ink-3); display: flex; align-items: flex-start; gap: .5rem; }
.form-hint .icon { color: var(--blue); margin-top: .12rem; flex: none; }
.form-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.req { color: var(--blue); font-weight: 700; }
.form-required-note { font-size: .9rem; color: var(--ink-2); margin: 0; }

/* ----- Map / Anfahrt ----------------------------------------------------- */
.transit-list { list-style: none; margin: 1rem 0 1.4rem; padding: 0; display: grid; gap: .5rem; }
.transit-list li { display: flex; align-items: center; gap: .6rem; color: var(--ink); }
.transit-list .icon { color: var(--blue); flex: none; }

.map-wrap {
  margin-top: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .9rem;
  padding: clamp(2rem, 6vw, 3.5rem) 1.5rem;
  min-height: 320px;
  background:
    linear-gradient(rgba(244, 246, 249, .92), rgba(244, 246, 249, .92)),
    repeating-linear-gradient(45deg, #eef2f6 0 18px, #f4f6f9 18px 36px);
}
.map-consent .icon { width: 2.2rem; height: 2.2rem; color: var(--blue); }
.map-consent p { max-width: 42ch; color: var(--ink-2); font-size: .95rem; margin: 0; }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ----- Footer ------------------------------------------------------------ */
.site-footer { background: var(--blue-deep); color: #cdd9e6; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-block: clamp(2.6rem, 5vw, 3.6rem);
}
.footer-brand { font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.footer-brand span { color: #7db4e0; }
.site-footer h4 { color: #fff; font-size: .92rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer p { color: #b9c8d8; font-size: .95rem; }
.site-footer address { font-style: normal; color: #cdd9e6; font-size: .95rem; line-height: 1.6; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-links a { color: #cdd9e6; text-decoration: none; font-size: .95rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  font-size: .88rem;
  color: #9fb2c4;
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a { color: #9fb2c4; text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----- Page hero (interior pages) --------------------------------------- */
.page-hero { padding-block: clamp(2.6rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.2rem); }
.page-hero .lede { margin-top: .4rem; }

/* ----- Angebote & Leistungen page --------------------------------------- */
/* richer offer cards (reuse .pricing / .price-card) */
.price-desc { color: var(--ink-2); font-size: .95rem; margin: .1rem 0 1.1rem; }
.price-includes {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: .5rem;
}
.price-includes li { display: flex; align-items: flex-start; gap: .55rem; font-size: .95rem; color: var(--ink); }
.price-includes .icon { color: var(--blue); margin-top: .15rem; width: 1.1rem; height: 1.1rem; flex: none; }

.offer-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  padding: 1.6rem 1.7rem;
}
.offer-wide-main { flex: 1 1 380px; }
.offer-wide h3 { margin: .4rem 0 .3rem; }
.offer-wide p { color: var(--ink-2); margin: 0; }

/* includes split (image + grid) */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.incl-item { display: flex; align-items: flex-start; gap: .6rem; }
.incl-item .icon { color: var(--blue); margin-top: .15rem; flex: none; width: 1.3rem; height: 1.3rem; }
.incl-item strong { display: block; color: var(--ink); font-size: .98rem; }
.incl-item span { font-size: .9rem; color: var(--ink-2); line-height: 1.45; }
@media (max-width: 560px) { .incl-grid { grid-template-columns: 1fr; } }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--ink-2); margin: 0; font-size: .98rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* decision helper */
.decision-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.decision-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.decision-card h3 { font-size: 1.15rem; margin-bottom: .15rem; }
.decision-card .for {
  font-size: .76rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 650;
  margin-bottom: .8rem;
}
.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.tick-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .95rem; color: var(--ink-2); }
.tick-list .icon { color: var(--blue); margin-top: .2rem; width: 1rem; height: 1rem; flex: none; }
@media (max-width: 900px) { .decision-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .decision-grid { grid-template-columns: 1fr; } }

/* notes list */
.notes-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; max-width: 46rem; }
.notes-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--ink); }
.notes-list .icon { color: var(--blue); margin-top: .2rem; flex: none; }

/* ----- Legal pages (Impressum / Datenschutz) ---------------------------- */
.legal { max-width: 74ch; }
.legal > :first-child { margin-top: 0; }
.legal > h2 {
  margin-top: 2.6rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--border);
  font-size: clamp(1.3rem, 1.1rem + .7vw, 1.6rem);
}
.legal > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { margin-top: 1.7rem; margin-bottom: .4rem; font-size: 1.1rem; }
.legal p { line-height: 1.7; margin-bottom: 1rem; }
.legal ul { margin: .3rem 0 1rem; padding-left: 1.25rem; }
.legal ul li { margin-bottom: .35rem; line-height: 1.6; }
.legal address { font-style: normal; line-height: 1.75; margin: .3rem 0 1rem; color: var(--ink); }
.legal a { word-break: break-word; }

.legal-data { list-style: none; margin: .3rem 0 1rem; padding: 0; display: grid; gap: .4rem; }
.legal-data li { display: flex; gap: .6rem; flex-wrap: wrap; }
.legal-data .k { min-width: 10rem; color: var(--ink-2); }
.legal-data .v { color: var(--ink); font-weight: 550; }

.legal-callout {
  margin: 1.2rem 0;
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-sm);
}
.legal-callout p { margin: 0; }
.legal-stand { color: var(--ink-3); font-size: .92rem; }
.legal-meta { color: var(--ink-3); font-size: .92rem; margin-top: 1.4rem; }
.legal-back { margin-top: 2.6rem; }

/* ----- Motion preferences ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
