
:root {
  --charcoal: #1F1F1F;
  --ivory: #FAF8F4;
  --sand: #E8E2D6;
  --sage: #A3B39A;
  --gold: #C6AA78;
  --white: #FFFFFF;
  --serif: Canela, "Bodoni MT", Didot, "Noto Serif Display", Georgia, serif;
  --sans: Montserrat, Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --max-width: 1180px;
  --shadow: 0 24px 70px rgba(31, 31, 31, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(31,31,31,.06);
  background: rgba(250, 248, 244, .96);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
}
.brand-wordmark {
  width: clamp(205px, 19vw, 315px);
  max-width: 100%;
  display: block;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #7b6a4f; }
.nav-cta {
  padding: 14px 18px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: var(--ivory);
}
.nav-cta:hover, .nav-cta:focus-visible {
  color: var(--ivory) !important;
  background: #d1b98d;
  border-color: #d1b98d;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--charcoal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 11vw, 150px) 0 clamp(80px, 10vw, 130px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(163,179,154,.20);
  filter: blur(1px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}
.hero-copy { position: relative; z-index: 1; }
.hero-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 460px;
}
.hero-symbol::before {
  content: "";
  position: absolute;
  width: min(33vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(198,170,120,.55);
  border-radius: 50%;
}
.hero-symbol img { width: 170px; position: relative; z-index: 1; }
.hero-photo { min-height: 460px; }
.hero-photo::before { display: none; }
.hero-photo img {
  width: min(33vw, 390px);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: 66% 34%;
  border: 2px solid rgba(198,170,120,.78);
  box-shadow: 0 24px 70px rgba(31,31,31,.12);
}
.eyebrow {
  margin: 0 0 18px;
  color: #78664a;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 span, .page-hero h1 span { color: #78664a; }
.lead {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .055em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #343434; }
.button.secondary { background: transparent; color: var(--charcoal); }
.button.secondary:hover, .button.secondary:focus-visible { background: var(--sand); }
.button.gold { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.button.gold:hover, .button.gold:focus-visible { background: #d1b98d; border-color: #d1b98d; }

.section { padding: clamp(78px, 9vw, 125px) 0; }
.section.sand { background: var(--sand); }
.section.sage-wash { background: rgba(163,179,154,.20); }
.section.dark { background: var(--charcoal); color: var(--ivory); }
.section-head { max-width: 760px; margin-bottom: 46px; }
.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: #78664a;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.dark .section-kicker { color: var(--gold); }
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}
h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.12;
}
p { margin: 0 0 1.1em; }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}
.prose { max-width: 760px; }
.prose p:last-child { margin-bottom: 0; }
.emphasis {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 1.25;
}
.quote-card {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(198,170,120,.55);
  border-radius: var(--radius);
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow);
}
.dark .quote-card { background: rgba(255,255,255,.04); }

.clean-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.clean-list li {
  position: relative;
  padding-left: 28px;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 13px;
  height: 1px;
  background: var(--gold);
}

.system-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin: 36px auto 0;
  max-width: 1000px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.5;
  text-align: center;
}
.system-strip span:not(:last-child)::after {
  content: "•";
  display: inline-block;
  padding: 0 .6em;
  color: var(--gold);
}
.solution-link {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.solution-closing {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  text-align: center;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
.profile-mark {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sand);
  overflow: hidden;
}
.profile-mark::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198,170,120,.75);
  border-radius: 3px;
}
.profile-mark img { width: 76%; position: relative; z-index: 1; }
.photo-frame { background: linear-gradient(180deg, #f4eee5 0%, #e8e2d6 100%); }
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}
.credentials {
  margin: 4px 0 30px;
  color: #6a6258;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.objection-card {
  padding: 30px;
  border: 1px solid rgba(31,31,31,.11);
  border-radius: var(--radius);
  background: rgba(255,255,255,.56);
}
.objection-card h3 { font-size: 1.75rem; }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(240px,.75fr);
  gap: 44px;
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 28px;
  background: var(--charcoal);
  color: var(--ivory);
  box-shadow: var(--shadow);
}
.cta-panel .section-kicker { color: var(--gold); }
.cta-panel h2 { font-size: clamp(2.45rem, 4vw, 4rem); }
.cta-panel .mark { display: grid; place-items: center; }
.cta-panel .mark img { width: 135px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 10vw, 135px) 0 clamp(75px, 9vw, 110px);
  background: var(--sand);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(260px,.85fr);
  gap: 70px;
  align-items: center;
}
.page-hero .monogram { width: min(100%, 480px); margin-inline: auto; }
.page-hero-photo {
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(198,170,120,.85);
  border-radius: 50%;
  background: rgba(250,248,244,.78);
  box-shadow: 0 24px 60px rgba(31,31,31,.10);
  overflow: hidden;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 68% 35%;
  border-radius: 50%;
}

.offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(31,31,31,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 50px rgba(31,31,31,.055);
}
.offer-card.featured {
  border-color: rgba(198,170,120,.9);
  background: #fffdf9;
}
.offer-tag {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: #6d5e46;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.offer-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.offer-list li { position: relative; padding-left: 25px; }
.offer-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.outcome {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(31,31,31,.10);
  font-weight: 500;
}
.price {
  margin: 20px 0 0;
  color: #6d5e46;
  font-size: .92rem;
  font-weight: 600;
}

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.fit-card { padding: 36px; border-radius: var(--radius); background: rgba(255,255,255,.62); }
.fit-card.no { background: rgba(232,226,214,.62); }

.contact-box {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.contact-meta { margin-top: 26px; font-size: .92rem; opacity: .78; }


.contact-form {
  width: 100%;
  max-width: 760px;
  margin-top: 34px;
  text-align: left;
}
.contact-box .contact-form { margin-inline: auto; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field { display: grid; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(250,248,244,.32);
  border-radius: 12px;
  background: rgba(250,248,244,.08);
  color: var(--ivory);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field textarea {
  min-height: 150px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(250,248,244,.12);
  box-shadow: 0 0 0 3px rgba(198,170,120,.14);
}
.form-privacy {
  margin: 16px 0 0;
  font-size: .76rem;
  line-height: 1.65;
  opacity: .76;
}
.form-privacy a { text-underline-offset: 3px; }
.form-submit { margin-top: 22px; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.thank-you-section {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 10vw, 145px) 0;
  background: linear-gradient(180deg, var(--sand), var(--ivory));
}
.thank-you-card {
  max-width: 840px;
  padding: clamp(38px, 6vw, 74px);
  border: 1px solid rgba(31,31,31,.09);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.035em;
}
.thank-you-card .lead { margin-inline: auto; }
.thank-you-symbol {
  width: 120px;
  aspect-ratio: 1;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198,170,120,.72);
  border-radius: 50%;
}
.thank-you-symbol img { width: 45%; }

.site-footer {
  padding: 56px 0 34px;
  background: var(--charcoal);
  color: var(--ivory);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: start;
}
.footer-logo { width: min(100%, 420px); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: flex-end; }
.footer-links a { text-decoration: none; font-size: .85rem; }
.disclaimer {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .76rem;
  line-height: 1.7;
  opacity: .78;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 24px; font-size: .74rem; opacity: .64; }


/* Rechtliche Seiten */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0 clamp(58px, 7vw, 88px);
  border-bottom: 1px solid rgba(31,31,31,.08);
  background: var(--ivory);
}
.legal-hero::after { content: none; }
.legal-hero-inner { position: relative; z-index: 1; padding-right: clamp(0px, 22vw, 310px); }
.legal-hero-logo {
  position: absolute;
  right: max(4vw, 32px);
  top: 50%;
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198,170,120,.72);
  border-radius: 50%;
  background: rgba(250,248,244,.65);
  transform: translateY(-50%);
  pointer-events: none;
}
.legal-hero-logo img {
  width: 42%;
  height: auto;
  display: block;
}
.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.035em;
}
.legal-hero .lead { max-width: 700px; }
.legal-content {
  padding: clamp(68px, 8vw, 112px) 0;
  background: linear-gradient(180deg, rgba(232,226,214,.48), rgba(250,248,244,1) 42%);
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1.58fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}
.legal-aside {
  position: sticky;
  top: 132px;
  padding-top: 10px;
  font-size: .93rem;
}
.legal-aside p { max-width: 280px; }
.legal-side-link {
  display: inline-block;
  margin-top: 12px;
  color: #78664a;
  font-weight: 600;
  text-decoration: none;
}
.legal-side-link:hover,
.legal-side-link:focus-visible { text-decoration: underline; }
.legal-card {
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(31,31,31,.09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.legal-section + .legal-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid rgba(31,31,31,.10);
}
.legal-card h2 {
  margin: 0 0 17px;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -.015em;
}
.legal-card p { margin-bottom: .95em; }
.legal-card a:not(.button) {
  color: #6f5d40;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}
.legal-address {
  font-style: normal;
  line-height: 1.8;
}
.legal-list {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.legal-list li {
  position: relative;
  padding-left: 25px;
}
.legal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
  padding-top: 38px;
  border-top: 1px solid rgba(31,31,31,.10);
}
.legal-updated {
  margin: 26px 0 0 !important;
  color: rgba(31,31,31,.58);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-links a[aria-current="page"] {
  color: var(--gold);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  body { font-size: 16px; }
  .brand-lockup { gap: 2px; }
  .brand-icon { width: 34px; height: 34px; }
  .brand-wordmark { width: 205px; }

  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    padding: 24px 20px 30px;
    background: var(--ivory);
    border-bottom: 1px solid rgba(31,31,31,.10);
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero-grid, .page-hero-grid, .profile-grid, .cta-panel, .footer-grid, .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; max-width: 680px; padding-top: 0; }
  .legal-aside p { max-width: none; }
  .legal-hero-inner { padding-right: 0; }
  .legal-hero-logo { right: 28px; width: 150px; opacity: .72; }
  .hero-symbol { min-height: 320px; }
  .hero-symbol::before { width: 280px; }
  .hero-photo img { width: 280px; }
  .profile-mark { min-height: 440px; max-width: 520px; width: 100%; margin-inline: auto; }
  .objection-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .brand-icon { width: 29px; height: 29px; }
  .brand-wordmark { width: 178px; }
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; }
  .hero { padding-top: 72px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.85rem, 15vw, 4.5rem); }
  .two-column, .offer-grid, .fit-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .hero-symbol { min-height: 260px; }
  .hero-symbol img { width: 125px; }
  .hero-symbol::before { width: 225px; }
  .hero-photo img { width: 225px; }
  .profile-mark { min-height: 0; aspect-ratio: 4 / 5; }
  .footer-bottom { flex-direction: column; }
  .button { width: 100%; }
  .legal-card { padding: 27px 22px; border-radius: 16px; }
  .legal-actions { flex-direction: column; }
  .legal-hero h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .legal-hero-logo {
    position: relative;
    right: auto;
    top: auto;
    width: 132px;
    margin: 34px auto 0;
    transform: none;
    opacity: 1;
  }
  .hero-actions, .cta-row { flex-direction: column; }
}

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