:root {
  --ink: #12110f;
  --ink-soft: #2a2723;
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --cream: #faf7f1;
  --copper: #c45c26;
  --copper-2: #a84b1c;
  --line: rgba(18, 17, 15, 0.1);
  --muted: #6d675e;
  --white: #fff;
  --shadow: 0 18px 50px rgba(18, 17, 15, 0.12);
  --display: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
  --sans: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
  --max: 1120px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(18 17 15 / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  width: 148px;
  height: 64px;
  overflow: hidden;
  flex: none;
}

.logo img {
  width: 148px;
  height: 64px;
  object-fit: cover;
  object-position: center 42%;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: rgb(255 255 255 / 0.72);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

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

.header-call {
  display: none;
}

.header-phone {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.header-phone:hover {
  color: #f0c9b0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.35);
  color: #fff;
  padding: 8px 12px;
  font: inherit;
  border-radius: 999px;
  cursor: pointer;
  flex: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-inner,
.lede,
.hero-actions {
  min-width: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(18 17 15 / 0.82) 0%, rgb(18 17 15 / 0.35) 52%, rgb(18 17 15 / 0.12) 100%),
    linear-gradient(180deg, rgb(18 17 15 / 0.15), rgb(18 17 15 / 0.55));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 20px 64px;
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: #f0c9b0;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 11ch;
}

.lede {
  margin: 0 0 28px;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 34ch;
  color: rgb(255 255 255 / 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--copper);
  color: #fff;
  transition: transform 0.2s, background 0.2s;
}

.btn:hover {
  background: var(--copper-2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.4);
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 0.1);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--ink-soft);
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.trust {
  background: var(--ink);
  color: #fff;
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.78);
}

.trust strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin-top: 4px;
}

.section {
  padding: 88px 20px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-kicker {
  margin: 0 0 36px;
  color: var(--muted);
  max-width: 46ch;
  font-size: 18px;
}

.brands {
  background: var(--paper);
  padding: 56px 20px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  align-items: center;
  justify-items: center;
}

.brand-row img {
  max-height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.85;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.why-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  min-height: 280px;
}

.why-card:first-child {
  grid-row: 1 / span 2;
}

.why-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.why-card .copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgb(18 17 15 / 0.82), rgb(18 17 15 / 0.05) 58%);
}

.why-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.why-card p {
  margin: 0;
  font-size: 15px;
  color: rgb(255 255 255 / 0.86);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card.featured img {
  height: 420px;
  object-position: center 40%;
}

.service-card h3 {
  margin: 0 0 8px;
  padding: 22px 22px 0;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  padding: 0 22px 16px;
  color: var(--muted);
}

.service-card.featured {
  grid-column: 1 / -1;
}

.service-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 22px 22px;
}

.service-brands li {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.cta {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.cta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(18 17 15 / 0.62);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-marks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-marks img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}

.cta-marks .sale {
  height: 52px;
  filter: none;
}

.cta p {
  margin: 0;
  font-size: 18px;
  color: rgb(255 255 255 / 0.82);
}

.site-footer {
  background: var(--ink);
  color: rgb(255 255 255 / 0.7);
  padding: 28px 20px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-inner a:hover {
  color: #fff;
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 72px 20px 48px;
}

.page-hero-title {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 96px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}

.contact-meta h3 {
  margin: 28px 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-meta p,
.contact-meta a {
  margin: 0 0 4px;
  font-size: 22px;
  font-family: var(--display);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-form h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.form-note {
  margin: 0 0 22px;
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

label span.req {
  color: var(--copper);
}

input,
textarea {
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 100%;
  background: var(--cream);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--copper);
  border-color: transparent;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-status {
  min-height: 1.4em;
  font-size: 14px;
  color: var(--copper-2);
}

.map-wrap {
  margin-top: 14px;
  margin-bottom: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

#coverage-map {
  width: 100%;
  height: 320px;
  display: block;
  background: #e8e4dc;
}

.map-caption {
  margin: 8px 0 0;
  font-size: 14px !important;
  font-family: var(--sans) !important;
  color: var(--muted);
  line-height: 1.4;
  max-width: none;
}

.thanks {
  max-width: 680px;
  margin: 80px auto 120px;
  padding: 0 20px;
}

.thanks h1 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.thanks p {
  font-size: 20px;
  color: var(--muted);
}

.policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 96px;
}

.policy h1 {
  font-family: var(--display);
  font-size: 48px;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.policy .updated {
  color: var(--muted);
  margin-bottom: 28px;
}

.policy h2 {
  font-size: 26px;
  margin: 32px 0 12px;
  text-align: left;
  font-family: var(--display);
}

.policy h3 {
  font-size: 18px;
  margin: 20px 0 8px;
}

.policy p,
.policy li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.policy ul {
  padding-left: 1.2em;
}

@media (max-width: 900px) {
  .why-grid,
  .services-grid,
  .contact-layout,
  .trust-inner,
  .form-row {
    grid-template-columns: 1fr;
  }

  .why-card:first-child {
    grid-row: auto;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner {
    gap: 8px;
    padding: 8px 12px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .logo,
  .logo img {
    width: 112px;
    height: 48px;
  }

  .header-book {
    display: none;
  }

  .header-call {
    display: inline-flex;
    padding: 10px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    background: var(--ink);
    flex-direction: column;
    padding: 8px;
    border-radius: 16px;
    gap: 0;
    z-index: 60;
    box-shadow: var(--shadow);
  }

  .nav a {
    padding: 14px 16px;
    font-size: 15px;
    letter-spacing: 0.08em;
    border-radius: 12px;
  }

  .nav.open {
    display: flex;
  }

  .brand-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 0;
    align-items: flex-end;
  }

  .hero-inner {
    padding: 48px 16px 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(32px, 10vw, 44px);
  }

  .lede {
    max-width: none;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 56px 16px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .page-hero {
    padding: 48px 16px 32px;
  }

  .why-card,
  .why-card .copy {
    min-height: 220px;
  }

  .service-card.featured img {
    height: 240px;
  }
}

.doc-page .doc-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.doc-card h1,
.doc-card h2 {
  margin: 0 0 12px;
  font-family: var(--display);
}

.doc-card label {
  display: block;
  margin: 12px 0;
  font-weight: 600;
}

.doc-card input,
.doc-card textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
}

.doc-card textarea {
  min-height: 88px;
}

.doc-line {
  display: grid;
  grid-template-columns: 1fr 110px auto;
  gap: 8px;
  margin: 8px 0;
  align-items: center;
}

.doc-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  margin: 0 0 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  font: inherit;
  cursor: pointer;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.doc-links p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.doc-zelle {
  font-size: 1.4rem;
  font-weight: 700;
  user-select: all;
  word-break: break-all;
}

.doc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.doc-check input {
  width: auto;
  margin: 0;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

@media (max-width: 800px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
  .doc-line {
    grid-template-columns: 1fr;
  }
}
