:root {
  --seevetal-primary: #07a1e4;
  --seevetal-primary-dark: #007599;
  --seevetal-primary-deep: #005e78;
  --seevetal-secondary: #f18616;
  --seevetal-secondary-dark: #914c00;
  --seevetal-ink: #1b1c1c;
  --seevetal-muted: #58636d;
  --seevetal-line: #d8dde3;
  --seevetal-surface: #faf9f9;
  --seevetal-surface-low: #f5f3f3;
  --seevetal-surface-card: #ffffff;
  --seevetal-warning: #fff4e8;
  --seevetal-container: 1200px;
  --seevetal-gutter: 24px;
  --seevetal-header-height: 86px;
  --seevetal-radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--seevetal-surface);
  color: var(--seevetal-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body.admin-bar .site-header { top: 32px; }
body.admin-bar .site-main { padding-top: calc(var(--seevetal-header-height) + 32px); }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, a, li, summary, label, input, textarea, select, button { overflow-wrap: anywhere; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
.site-main { padding-top: var(--seevetal-header-height); }
.container { width: min(100% - (var(--seevetal-gutter) * 2), var(--seevetal-container)); margin-inline: auto; }
.section { padding-block: 76px; }
.section-compact { padding-block: 48px; }
.section-muted { background: var(--seevetal-surface-low); }
.section-white { background: var(--seevetal-surface-card); }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading h2 { margin-bottom: 12px; font-size: 36px; line-height: 1.18; font-weight: 800; }
.section-heading p { margin-bottom: 0; color: var(--seevetal-muted); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--seevetal-header-height);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(216, 221, 227, .95);
  box-shadow: 0 2px 14px rgba(27, 28, 28, .07);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  min-height: var(--seevetal-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--seevetal-ink);
  text-decoration: none;
}
.brand__logo {
  width: 66px;
  height: 42px;
  object-fit: contain;
  border: 1px solid rgba(216, 221, 227, .8);
  border-radius: 4px;
  background: #fff;
}
.brand__title {
  color: var(--seevetal-primary-dark);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.08;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}
.primary-nav a,
.service-menu__button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #303840;
  font: inherit;
  text-decoration: none;
}
.primary-nav a::before,
.service-menu__button::before {
  content: attr(data-index) " -";
  color: var(--seevetal-ink);
  font-weight: 800;
}
.primary-nav a:hover,
.service-menu__button:hover {
  border-bottom-color: var(--seevetal-primary-dark);
  color: var(--seevetal-primary-dark);
}
.service-menu { position: relative; }
.service-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 330px;
  padding: 8px;
  border: 1px solid var(--seevetal-line);
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-surface-card);
  box-shadow: 0 18px 38px rgba(27, 28, 28, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: 160ms ease;
}
.service-menu:hover .service-menu__panel,
.service-menu:focus-within .service-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.service-menu__panel a {
  justify-content: flex-start;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
}
.service-menu__panel a::before { content: ""; display: none; }
.service-menu__panel a:hover { background: var(--seevetal-surface-low); }
.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: grid;
  min-width: 126px;
  text-align: right;
  line-height: 1.05;
}
.header-phone span {
  color: var(--seevetal-secondary-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.header-phone a {
  color: var(--seevetal-primary-dark);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--seevetal-line);
  border-radius: 6px;
  background: #fff;
  color: var(--seevetal-ink);
}
.nav-toggle__bar,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--seevetal-radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.btn-primary { background: var(--seevetal-primary); color: #fff; }
.btn-emergency { background: var(--seevetal-secondary); color: #fff; box-shadow: 0 5px 14px rgba(145, 76, 0, .22); }
.btn-outline { border-color: var(--seevetal-primary-dark); color: var(--seevetal-primary-dark); background: transparent; }
.btn-muted { border-color: var(--seevetal-line); background: #efefef; color: var(--seevetal-ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffddbd;
  color: #251100;
  font-size: 14px;
  font-weight: 800;
}
.eyebrow::before { content: "*"; color: var(--seevetal-secondary-dark); font-weight: 900; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  background: #ffddbd;
  color: #4b2500;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-home {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(250, 249, 249, .98) 0%, rgba(250, 249, 249, .94) 48%, rgba(250, 249, 249, .55) 70%, rgba(250, 249, 249, .14) 100%),
    url("../images/home-hero.png") right center / auto 100% no-repeat,
    #f8f7f6;
}
.hero-home__content { max-width: 620px; padding-block: 90px 120px; }
.hero-home h1,
.split-hero h1,
.image-banner h1,
.contact-hero h1 {
  margin-bottom: 24px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
}
.hero-home p,
.split-hero p,
.image-banner p,
.contact-hero p { color: var(--seevetal-muted); font-size: 18px; }
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 660px;
  margin-top: 34px;
}
.fact-button {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border: 2px solid var(--seevetal-primary-dark);
  border-radius: var(--seevetal-radius);
  color: var(--seevetal-primary-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.22;
  text-decoration: none;
}
.fact-button--primary {
  border-color: var(--seevetal-primary);
  background: var(--seevetal-primary);
  color: #fff;
}
.trust-bar { background: var(--seevetal-surface-card); border-top: 1px solid rgba(216, 221, 227, .8); }
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-block: 22px;
}
.trust-item { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; }
.trust-item__icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--seevetal-primary-dark);
  font-size: 20px;
  font-weight: 800;
}
.trust-item strong,
.trust-item span { display: block; }
.trust-item strong { font-weight: 800; line-height: 1.15; }
.trust-item span {
  color: var(--seevetal-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.split-hero {
  background: var(--seevetal-surface-card);
  padding-block: 82px;
}
.split-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}
.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--seevetal-line);
  border-radius: var(--seevetal-radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(27, 28, 28, .16);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card--square { aspect-ratio: 1 / 1; }
.media-card--wide { aspect-ratio: 4 / 3; }
.media-card__note {
  position: absolute;
  left: -24px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-width: 290px;
  padding: 18px 22px;
  border-radius: var(--seevetal-radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(27, 28, 28, .16);
}
.media-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-primary);
  color: #fff;
  font-weight: 900;
}
.media-card__note strong,
.media-card__note span { display: block; }
.media-card__note span { color: var(--seevetal-muted); }
.image-banner {
  min-height: 620px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 117, 153, .96) 0%, rgba(0, 117, 153, .88) 48%, rgba(0, 117, 153, .7) 100%),
    var(--banner-image) right center / cover no-repeat,
    var(--seevetal-primary-dark);
  color: #fff;
}
.image-banner__content { max-width: 690px; padding-block: 90px; }
.image-banner p { color: rgba(255, 255, 255, .88); }
.image-banner .btn-outline { border-color: #fff; color: #fff; }
.image-banner--autoschluessel { --banner-image: url("../images/autoschluessel-hero.png"); }
.contact-hero {
  padding-block: 78px;
  background: var(--seevetal-primary-dark);
  color: #fff;
  text-align: center;
}
.contact-hero p {
  max-width: 690px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .84);
}
.page-hero {
  padding: 96px 0 72px;
  background: var(--seevetal-primary-dark);
  color: #fff;
  text-align: center;
}
.page-hero p { color: rgba(255, 255, 255, .84); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card,
.notice,
.form-panel,
.legal-toc,
.legal-box {
  border: 1px solid rgba(216, 221, 227, .95);
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-surface-card);
  box-shadow: 0 2px 12px rgba(27, 28, 28, .04);
}
.card { padding: 28px; }
.card h2,
.card h3 { margin-bottom: 10px; line-height: 1.22; }
.card p:last-child,
.card ul:last-child { margin-bottom: 0; }
.icon-pill {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--seevetal-radius);
  background: #d8f0fb;
  color: var(--seevetal-primary-dark);
  font-weight: 900;
}
.emergency-pill { background: #ffddbd; color: var(--seevetal-secondary-dark); }
.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--seevetal-secondary);
  background: var(--seevetal-warning);
}
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.check-list li { display: flex; gap: 10px; }
.check-list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--seevetal-primary);
}
.flow {
  counter-reset: flow;
  display: grid;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}
.flow li {
  counter-increment: flow;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-surface-card);
}
.flow li::before {
  content: counter(flow);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--seevetal-primary);
  color: #fff;
  font-weight: 800;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 56px;
  align-items: center;
}
.storefront-img {
  overflow: hidden;
  border-radius: var(--seevetal-radius);
  box-shadow: 0 14px 32px rgba(27, 28, 28, .12);
}
.storefront-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  border: 1px solid rgba(216, 221, 227, .95);
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-surface-card);
}
.faq-list summary { cursor: pointer; padding: 18px 20px; font-weight: 800; }
.faq-list p { margin: 0; padding: 0 20px 20px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}
.contact-stack,
.form-grid { display: grid; gap: 16px; }
.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.contact-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-primary);
  color: #fff;
  font-weight: 900;
}
.contact-card__icon--orange { background: var(--seevetal-secondary-dark); }
.form-panel { padding: 36px; }
.form-panel h2 { margin-bottom: 8px; font-size: 34px; line-height: 1.18; }
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}
.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}
.form-grid .full { grid-column: 1 / -1; }
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--seevetal-line);
  border-radius: 6px;
  background: var(--seevetal-surface);
  color: var(--seevetal-ink);
  font: inherit;
}
.form-grid textarea { min-height: 132px; resize: vertical; }
.form-grid .consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: var(--seevetal-muted);
  font-weight: 500;
}
.form-grid .consent input { width: 18px; min-height: 18px; margin-top: 4px; }

.legal-shell {
  padding-block: 84px;
  background: var(--seevetal-surface);
}
.legal-container { width: min(100% - (var(--seevetal-gutter) * 2), 760px); margin-inline: auto; }
.legal-lede {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--seevetal-secondary);
  background: var(--seevetal-warning);
  color: #4d2a04;
  font-style: italic;
}
.legal-toc { padding: 32px; margin-bottom: 42px; background: #f0eeee; }
.legal-toc h1,
.legal-toc h2 { margin-bottom: 18px; font-size: 28px; line-height: 1.2; }
.legal-toc ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.legal-toc a { color: var(--seevetal-primary-dark); font-weight: 700; text-decoration: none; }
.legal-toc a::before { content: "-> "; }
.legal-article section { padding-block: 30px; border-top: 1px solid var(--seevetal-line); }
.legal-article h2 { margin-bottom: 18px; font-size: 34px; line-height: 1.18; }
.legal-box { padding: 22px; background: #f0eeee; }

.site-footer { background: #efeded; color: var(--seevetal-ink); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .9fr 1fr;
  gap: 32px;
  padding: 56px 0 32px;
}
.footer-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list a { color: var(--seevetal-muted); text-decoration: none; }
.site-footer__bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(134, 134, 134, .24);
  color: var(--seevetal-muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .brand__title { font-size: 21px; }
  .primary-nav { gap: 14px; font-size: 13px; }
  .header-phone a { font-size: 21px; }
}

@media (max-width: 1040px) {
  .primary-nav {
    position: absolute;
    top: var(--seevetal-header-height);
    right: 24px;
    left: 24px;
    display: none;
    padding: 18px;
    border: 1px solid var(--seevetal-line);
    border-radius: var(--seevetal-radius);
    background: var(--seevetal-surface-card);
    box-shadow: 0 16px 36px rgba(27, 28, 28, .14);
  }
  .site-header[data-open="true"] .primary-nav { display: grid; gap: 12px; }
  .service-menu__panel {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-toggle { display: inline-grid; place-items: center; }
  .split-hero__grid,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-home {
    background:
      linear-gradient(90deg, rgba(250, 249, 249, .98) 0%, rgba(250, 249, 249, .94) 66%, rgba(250, 249, 249, .38) 100%),
      url("../images/home-hero.png") right center / auto 100% no-repeat,
      #f8f7f6;
  }
  .media-card__note { left: 22px; bottom: 22px; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --seevetal-gutter: 18px; --seevetal-header-height: 78px; }
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .site-main { padding-top: calc(var(--seevetal-header-height) + 46px); }
  .site-header__inner { gap: 10px; }
  .brand { gap: 8px; }
  .brand__logo { width: 50px; height: 34px; }
  .brand__title { font-size: 17px; }
  .header-phone { display: none; }
  .header-actions { gap: 8px; }
  .header-actions .btn {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .section { padding-block: 52px; }
  .hero-home { min-height: 620px; }
  .hero-home__content { padding-block: 64px 90px; }
  .hero-home h1,
  .split-hero h1,
  .image-banner h1,
  .contact-hero h1 { font-size: 38px; }
  .section-heading h2,
  .legal-article h2 { font-size: 30px; }
  .hero-badges,
  .card-grid,
  .card-grid.two,
  .trust-bar__grid,
  .form-grid,
  .site-footer__grid { grid-template-columns: 1fr; }
  .button-row { display: grid; }
  .btn { width: 100%; }
  .image-banner { min-height: 560px; }
  .form-panel { padding: 26px; }
  .contact-card { grid-template-columns: 42px 1fr; }
  .contact-card__icon { width: 42px; height: 42px; }
}

@media (max-width: 390px) {
  .brand__logo { width: 42px; height: 30px; }
  .brand__title { font-size: 15px; }
  .header-actions .btn { display: none; }
  .hero-home h1,
  .split-hero h1,
  .image-banner h1,
  .contact-hero h1 { font-size: 34px; }
}

/* Stitch final ZIP overrides: source package 2026-07-20, Datenschutz page only. */
:root {
  --seevetal-primary: #006591;
  --seevetal-primary-dark: #006591;
  --seevetal-primary-deep: #004c6f;
  --seevetal-primary-container: #07a1e4;
  --seevetal-secondary: #914c00;
  --seevetal-secondary-dark: #914c00;
  --seevetal-secondary-container: #fd8f22;
  --seevetal-ink: #1b1c1c;
  --seevetal-muted: #3e4850;
  --seevetal-line: #bec8d2;
  --seevetal-outline: #6e7881;
  --seevetal-surface: #faf9f9;
  --seevetal-surface-low: #f5f3f3;
  --seevetal-surface-card: #ffffff;
  --seevetal-surface-container: #efeded;
  --seevetal-warning: #ffddbd;
  --seevetal-error-container: #ffdad6;
  --seevetal-on-error-container: #410002;
  --seevetal-header-height: 80px;
  --seevetal-radius: 8px;
}

body {
  background: var(--seevetal-surface);
  color: var(--seevetal-ink);
}

.site-main,
body.admin-bar .site-main {
  padding-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--seevetal-header-height);
  background: var(--seevetal-surface);
  border-bottom: 0;
  box-shadow: 0 1px 8px rgba(27, 28, 28, .08);
  backdrop-filter: none;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  min-height: var(--seevetal-header-height);
  gap: 32px;
}

.brand {
  gap: 16px;
}

.brand__logo {
  width: auto;
  height: 48px;
  max-width: 76px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand__title {
  color: var(--seevetal-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  color: var(--seevetal-muted);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a,
.header-call,
.availability-chip,
.legal-inline-header__links a {
  overflow-wrap: normal;
  word-break: normal;
}

.primary-nav a,
.primary-nav a:visited,
.legal-inline-header__links a,
.legal-inline-header__links a:visited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  color: var(--seevetal-muted);
  text-decoration: none;
}

.primary-nav a::before,
.service-menu__button::before {
  content: none;
}

.primary-nav a:hover,
.legal-inline-header__links a:hover,
.footer-list a:hover {
  color: var(--seevetal-primary);
  text-decoration: underline;
}

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

.availability-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--seevetal-secondary-container);
  color: #251100;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seevetal-primary);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-shell {
  padding-block: 80px;
  background: var(--seevetal-surface);
}

.legal-container {
  width: min(100% - 48px, 768px);
  margin-inline: auto;
}

.legal-inline-header {
  min-height: 80px;
  margin-bottom: 32px;
  background: var(--seevetal-surface);
  box-shadow: 0 1px 8px rgba(27, 28, 28, .08);
}

.legal-inline-header__nav {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: 24px;
}

.legal-inline-header .brand {
  flex: 0 1 250px;
  gap: 10px;
}

.legal-inline-header .brand__logo {
  height: 44px;
  max-width: 66px;
}

.legal-inline-header .brand__title {
  max-width: 180px;
  font-size: 22px;
  line-height: 1.18;
}

.legal-inline-header__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 1 auto;
  color: var(--seevetal-muted);
  font-size: 12px;
  font-weight: 600;
}

.legal-inline-header__links a {
  max-width: 78px;
  line-height: 1.12;
}

.legal-inline-header .availability-chip {
  min-height: 34px;
  max-width: 82px;
  padding-inline: 10px;
  white-space: normal;
  line-height: 1.12;
}

.legal-inline-header .header-call {
  max-width: 90px;
  line-height: 1.12;
  white-space: normal;
}

.legal-lede {
  margin: 0 0 32px;
  padding: 16px;
  border-left: 4px solid var(--seevetal-secondary-container);
  background: var(--seevetal-warning);
  color: #251100;
  font-style: italic;
}

.legal-toc,
.legal-box {
  border: 0;
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-surface-low);
  box-shadow: none;
}

.legal-toc {
  padding: 32px;
  margin-bottom: 48px;
}

.legal-toc h2 {
  margin-bottom: 16px;
  color: var(--seevetal-ink);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

.legal-toc ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seevetal-primary);
  font-weight: 500;
  text-decoration: none;
}

.legal-toc a::before {
  content: "->";
  color: var(--seevetal-primary);
  font-weight: 700;
}

.legal-article {
  display: grid;
  gap: 80px;
}

.legal-article section {
  padding-block: 0;
  border-top: 0;
}

.legal-article h2,
.legal-section-heading-with-badge {
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--seevetal-line);
}

.legal-article h2 {
  color: var(--seevetal-ink);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

.legal-section-heading-with-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-section-heading-with-badge h2 {
  margin: 0;
  padding: 0;
  border: 0;
}

.legal-section-heading-with-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--seevetal-error-container);
  color: var(--seevetal-on-error-container);
  font-size: 14px;
  font-weight: 600;
}

.legal-article p {
  margin-bottom: 16px;
}

.legal-article em {
  color: var(--seevetal-muted);
}

.legal-article ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-box {
  padding: 24px;
  margin-bottom: 16px;
  background: var(--seevetal-surface-container);
}

.legal-box p {
  margin-bottom: 0;
}

.site-footer {
  background: var(--seevetal-surface-low);
  color: var(--seevetal-ink);
  border-top: 1px solid rgba(190, 200, 210, .45);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 80px 0;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 16px;
  color: var(--seevetal-ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--seevetal-muted);
}

.site-footer section p + p {
  margin-top: 0;
}

.footer-list {
  gap: 8px;
}

.footer-list a,
.site-footer a {
  color: var(--seevetal-muted);
  text-decoration: none;
}

.footer-list a.is-active {
  color: var(--seevetal-primary);
  font-weight: 600;
}

.site-footer__bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(190, 200, 210, .35);
  color: var(--seevetal-muted);
  text-align: center;
}

.mobile-call-bar {
  display: none;
}

/* Structured full ZIP source additions, 2026-07-20. */
.header-emergency {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-secondary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.bento-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(190, 200, 210, .45);
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-surface-card);
  box-shadow: 0 4px 14px rgba(27, 28, 28, .04);
}

.bento-card--wide { grid-column: span 8; }
.bento-card--narrow { grid-column: span 4; }
.bento-card--blue {
  background: var(--seevetal-primary);
  color: #fff;
}
.bento-card--blue p,
.bento-card--blue .notice { color: rgba(255, 255, 255, .86); }
.bento-card--blue .btn-outline {
  border-color: #fff;
  color: #fff;
}
.bento-card--muted { background: var(--seevetal-surface-container); }
.bento-card--short {
  grid-column: span 8;
  min-height: 180px;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.ghost-key {
  position: absolute;
  right: -34px;
  bottom: -50px;
  color: var(--seevetal-primary);
  font-size: 210px;
  font-weight: 900;
  opacity: .08;
  pointer-events: none;
}

.mini-services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mini-service {
  display: grid;
  width: 84px;
  gap: 8px;
  justify-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-service span:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: #d8f0fb;
  color: var(--seevetal-primary);
  font-size: 20px;
}

.owner-proof {
  position: relative;
  overflow: hidden;
  border-radius: var(--seevetal-radius);
  box-shadow: 0 18px 42px rgba(27, 28, 28, .16);
}

.owner-proof img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.owner-proof__quote {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 310px;
  padding: 18px;
  border-left: 4px solid var(--seevetal-primary);
  border-radius: var(--seevetal-radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(27, 28, 28, .14);
}

.trust-stack {
  display: grid;
  gap: 24px;
}

.trust-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.trust-row__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: var(--seevetal-warning);
  color: var(--seevetal-secondary-dark);
  font-weight: 900;
}

.emergency-band,
.cta-band {
  background: var(--seevetal-primary);
  color: #fff;
  text-align: center;
}

.emergency-band p,
.cta-band p { color: rgba(255, 255, 255, .86); }

.emergency-call-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 48px;
  padding: 18px 30px;
  border-radius: var(--seevetal-radius);
  background: #fff;
  color: var(--seevetal-secondary);
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(27, 28, 28, .16);
}

.emergency-call-card__badge {
  position: absolute;
  top: -12px;
  right: -12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--seevetal-secondary);
  color: #fff;
  font-size: 13px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.step-card__number,
.process-step__number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--seevetal-primary);
  color: #fff;
  font-weight: 900;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(190, 200, 210, .65);
  border-radius: 999px;
  background: #fff;
  color: var(--seevetal-muted);
  font-size: 14px;
  font-weight: 800;
}

.area-pills span:first-child {
  color: var(--seevetal-primary);
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  place-items: center;
  border: 8px solid #fff;
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-surface-container);
  box-shadow: 0 14px 32px rgba(27, 28, 28, .12);
}

.map-panel::before {
  position: absolute;
  inset: 0;
  background: url("../images/sf-18.png") center / cover no-repeat;
  content: "";
  filter: grayscale(1);
  opacity: .44;
}

.map-panel__label {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(0, 101, 145, .22);
  border-radius: var(--seevetal-radius);
  background: rgba(255, 255, 255, .92);
  text-align: center;
}

.detail-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.detail-list__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 6px;
  background: var(--seevetal-primary);
  color: #fff;
  font-weight: 900;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.image-mosaic img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--seevetal-radius);
}

.image-mosaic img:nth-child(1),
.image-mosaic img:nth-child(4) {
  height: 280px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.process-steps::before {
  position: absolute;
  top: 22px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--seevetal-line);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.legal-warning {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid #ba1a1a;
  border-radius: var(--seevetal-radius);
  background: var(--seevetal-error-container);
  color: var(--seevetal-on-error-container);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.legal-grid__main { grid-column: span 8; }
.legal-grid__side { grid-column: span 4; }
.legal-grid__third { grid-column: span 4; }
.legal-grid__wide { grid-column: span 8; }
.legal-grid__full { grid-column: 1 / -1; }

.review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #d8f0fb;
  color: var(--seevetal-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-contact-card {
  background: var(--seevetal-primary);
  color: #fff;
}

.legal-contact-card a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.map-strip {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background: var(--seevetal-surface-container);
}

.map-strip::before {
  position: absolute;
  inset: 0;
  background: url("../images/sf-02.png") center / cover no-repeat;
  content: "";
  filter: grayscale(1);
  opacity: .34;
}

.map-strip__label {
  position: relative;
  padding: 18px 24px;
  border: 1px solid var(--seevetal-line);
  border-radius: var(--seevetal-radius);
  background: rgba(255, 255, 255, .93);
  color: var(--seevetal-muted);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 20px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 13px;
  }

  .header-actions {
    gap: 10px;
  }

  .brand__title {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .header-actions {
    display: none;
  }

  .primary-nav {
    gap: 14px;
  }
}

@media (max-width: 767px) {
  :root {
    --seevetal-gutter: 18px;
    --seevetal-header-height: 80px;
  }

  body {
    padding-bottom: 64px;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .brand__logo {
    height: 48px;
    max-width: 70px;
  }

  .brand__title {
    font-size: 22px;
  }

  .primary-nav,
  .header-actions,
  .legal-inline-header__links {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    flex: 0 0 44px;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    top: var(--seevetal-header-height);
    right: 18px;
    left: 18px;
    z-index: 70;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-left: 0;
    padding: 12px;
    border: 1px solid var(--seevetal-outline);
    border-radius: var(--seevetal-radius);
    background: var(--seevetal-surface-card);
    box-shadow: 0 16px 36px rgba(27, 28, 28, .16);
  }

  .site-header[data-open="true"] .primary-nav {
    display: grid;
  }

  .primary-nav a,
  .primary-nav a:visited {
    min-height: 44px;
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .primary-nav a:hover {
    background: var(--seevetal-surface-low);
  }

  .legal-shell {
    padding-block: 48px;
  }

  .legal-container {
    width: min(100% - 36px, 768px);
  }

  .legal-inline-header {
    margin-bottom: 32px;
  }

  .legal-inline-header__nav {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .legal-toc {
    padding: 24px;
    margin-bottom: 48px;
  }

  .legal-article {
    gap: 48px;
  }

  .legal-article h2 {
    font-size: 28px;
  }

  .legal-section-heading-with-badge {
    align-items: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: flex;
    height: 64px;
    background: var(--seevetal-surface);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .05);
  }

  .mobile-call-bar a {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--seevetal-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  .bento-grid,
  .step-grid,
  .process-steps,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card--wide,
  .bento-card--narrow,
  .bento-card--short,
  .legal-grid__main,
  .legal-grid__side,
  .legal-grid__third,
  .legal-grid__wide,
  .legal-grid__full {
    grid-column: auto;
  }

  .bento-card--short {
    flex-direction: column;
    align-items: stretch;
  }

  .step-grid {
    gap: 28px;
  }

  .emergency-call-card {
    width: 100%;
    justify-content: center;
    font-size: 22px;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .image-mosaic img,
  .image-mosaic img:nth-child(1),
  .image-mosaic img:nth-child(4) {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand__logo {
    height: 42px;
    max-width: 62px;
  }

  .brand__title {
    font-size: 20px;
  }
}
