﻿:root {
  --ink: #181818;
  --muted: #4a4743;
  --gold: #b39f6b;
  --red: #942f2a;
  --paper: #ffffff;
  --soft: #f4f2ef;
  --line: #e2ded5;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 150%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 max(42px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 132px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  font-size: 0.93rem;
}
.site-nav a {
  padding: 26px 0 24px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a.is-active { border-color: var(--gold); }
.site-nav .nav-cta {
  margin-left: 8px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero { border-bottom: 1px solid var(--line); }
.hero-inner,
.product-hero-inner,
.section,
.cta-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 84px));
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: clamp(54px, 8vw, 96px);
  align-items: center;
  padding: clamp(78px, 10vw, 116px) 0 88px;
}
.hero-copy { max-width: 680px; }
.kicker {
  position: relative;
  margin: 0 0 28px;
  padding-left: 68px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 44px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 4.35rem;
  line-height: 1.06;
  font-weight: 700;
}
h2 {
  margin-bottom: 0;
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 700;
}
h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.3;
}
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 23px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button span { margin-left: 12px; }
.button.primary {
  background: var(--ink);
  color: var(--paper);
}
.button.light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 48px;
  color: #69635e;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.trust-line span + span::before {
  content: "·";
  margin-right: 22px;
  color: var(--red);
}
.hero-image { position: relative; margin: 0; }
.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}
.hero-image figcaption {
  position: absolute;
  left: -24px;
  bottom: -24px;
  min-width: 194px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.hero-image figcaption span,
.hero-image figcaption small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
.hero-image figcaption span {
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 9vw, 112px) 0;
}
.page-hero {
  padding: 72px 0 78px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.page-hero .section { padding: 0; }
.page-hero h1 {
  margin-bottom: 0;
  font-size: 3.2rem;
}
.product-hero {
  border-bottom: 1px solid var(--line);
}
.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 376px;
  gap: 72px;
  align-items: center;
  padding: 84px 0 76px;
}
.product-hero h1 {
  max-width: 660px;
  font-size: 3.45rem;
  line-height: 1.06;
}
.product-hero p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}
.product-hero img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}
.product-intro {
  width: min(780px, calc(100% - 84px));
  margin: 0 auto;
  padding: 64px 0;
  border-top: 1px solid var(--gold);
  font-size: 1.12rem;
}
.product-intro p {
  margin: 0;
}
.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: end;
  max-width: none;
}
.section-heading.split > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  min-height: 378px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 34px;
}
.icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: currentColor;
  color: var(--ink);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.icon-building {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 21V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v16'/%3E%3Cpath d='M4 21h16M9 7h4M9 11h4M9 15h4M16 9h2a2 2 0 0 1 2 2v10M6 13H4a2 2 0 0 0-2 2v6'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 21V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v16'/%3E%3Cpath d='M4 21h16M9 7h4M9 11h4M9 15h4M16 9h2a2 2 0 0 1 2 2v10M6 13H4a2 2 0 0 0-2 2v6'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-file {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5M9 13h1M14 13h1M9 17h6'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5M9 13h1M14 13h1M9 17h6'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-key {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='14' r='5'/%3E%3Cpath d='M14 14h10M21 14v3M18 14v2'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='14' r='5'/%3E%3Cpath d='M14 14h10M21 14v3M18 14v2'/%3E%3C/g%3E%3C/svg%3E");
}
.arrow { color: #7b746e; font-size: 1.25rem; }
.number,
.package-eyebrow {
  position: relative;
  margin-bottom: 18px;
  padding-left: 56px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}
.number::before,
.package-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.service-card p:not(.number) { color: var(--muted); }
.service-card a {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.packages-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(42px, calc((100vw - var(--max)) / 2));
  padding-right: max(42px, calc((100vw - var(--max)) / 2));
  padding-top: 64px;
  background: var(--soft);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pricing-grid.fourth-card {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 468px;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.pricing-card h2 {
  font-size: 1.55rem;
  line-height: 1.32;
}
.pricing-card.recommended::after {
  content: "Empfohlen";
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 24px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}
.price small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
}
.feature-list {
  margin: 0 0 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--gold);
  list-style: none;
}
.feature-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.pricing-card .button {
  width: 100%;
  margin-top: auto;
}
.pricing-note {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-band {
  background: var(--soft);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.value-grid article {
  min-height: 224px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.value-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 700;
}
.value-grid h3 { font-size: 1rem; }
.value-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
}
.text-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: 64px;
}
.contact-panel {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.contact-panel a,
.contact-panel span {
  display: block;
  margin-top: 18px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 14px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(179, 159, 107, 0.38);
  border-color: var(--gold);
}
textarea { resize: vertical; }

.cta {
  background: var(--ink);
  color: var(--paper);
}
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: clamp(84px, 9vw, 128px) 0;
}
.cta h2 { max-width: 760px; }

.site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid #393939;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(180px, 0.7fr) minmax(240px, 0.8fr);
  gap: clamp(48px, 9vw, 120px);
  padding: 84px 0 28px;
}
.footer-about img {
  width: 250px;
  max-width: 100%;
  margin-bottom: 32px;
  display: block;
  background: transparent;
}
.footer-about p {
  max-width: 430px;
}
.footer-values {
  margin-top: 32px;
  color: var(--gold);
  text-transform: uppercase;
}
.site-footer h2 {
  margin-bottom: 22px;
  color: var(--paper);
  font-size: 0.9rem;
  text-transform: uppercase;
}
.footer-nav {
  display: grid;
  gap: 12px;
}
.footer-contact {
  display: grid;
  gap: 22px;
  font-style: normal;
}
.footer-contact .contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  background: currentColor;
  color: var(--gold);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.footer-pin {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-6.2 7-12a7 7 0 0 0-14 0c0 5.8 7 12 7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.3'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-6.2 7-12a7 7 0 0 0-14 0c0 5.8 7 12 7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.3'/%3E%3C/g%3E%3C/svg%3E");
}
.footer-mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/g%3E%3C/svg%3E");
}
.footer-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.5 19.5 0 0 1-8.5-3A19.2 19.2 0 0 1 5.1 12 19.5 19.5 0 0 1 2.1 3.7 2 2 0 0 1 4.1 1.5h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L8 9.1a16 16 0 0 0 6.9 6.9l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.5 19.5 0 0 1-8.5-3A19.2 19.2 0 0 1 5.1 12 19.5 19.5 0 0 1 2.1 3.7 2 2 0 0 1 4.1 1.5h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L8 9.1a16 16 0 0 0 6.9 6.9l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.footer-contact a,
.footer-contact span {
  color: var(--paper);
}

@media (max-width: 1050px) {
  .site-header { padding: 0 24px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
  }
  .hero-inner,
  .product-hero-inner,
  .section,
  .cta-inner,
  .footer-inner { width: calc(100% - 48px); }
  .hero-inner,
  .product-hero-inner,
  .section-heading.split,
  .text-grid,
  .contact-layout,
  .cta-inner,
  .footer-inner { grid-template-columns: 1fr; }
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.6rem; }
  .product-hero h1 { font-size: 3rem; }
  .hero-image { max-width: 620px; }
  .service-grid,
  .pricing-grid,
  .pricing-grid.fourth-card { grid-template-columns: 1fr; }
  .packages-section {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .brand img { width: 118px; }
  .site-nav { inset: 68px 0 auto 0; }
  .hero-inner { padding: 52px 0 64px; }
  h1 { font-size: 2.65rem; }
  h2, .page-hero h1, .product-hero h1 { font-size: 2rem; }
  .kicker { padding-left: 54px; }
  .kicker::before { width: 34px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-line {
    display: grid;
    gap: 10px;
  }
  .trust-line span + span::before {
    content: "";
    margin: 0;
  }
  .hero-image figcaption {
    position: static;
    margin-top: -1px;
  }
  .product-hero-inner {
    padding: 52px 0;
  }
  .product-intro {
    width: calc(100% - 48px);
    padding: 42px 0;
  }
  .value-grid { grid-template-columns: 1fr; }
  .pricing-card,
  .service-card,
  .contact-panel { padding: 28px; }
}


