/* ============================================================
   VORSORGEGUTACHTEN · MICHAEL DECHERT
   Shared Stylesheet — alle Unterseiten
   ============================================================ */

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

:root {
  --brown:        #8c6e5b;
  --brown-hover:  #7a5e4a;
  --brown-light:  #b8997f;
  --brown-pale:   #d4bfb0;
  --cream:        #f6f6ed;
  --cream-dark:   #eeeee3;
  --white:        #ffffff;
  --text:         #2a2a2a;
  --text-mid:     #5a5a5a;
  --text-light:   #909090;
  --border:       #e4e4dc;
  --max:          1120px;
  --serif:        'Lora', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(28px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.6) inset,
    0 8px 32px rgba(140, 110, 91, 0.08),
    0 1.5px 6px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown); }
.nav-cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brown-hover) !important; }

/* ── HAMBURGER (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--brown-hover); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--brown);
  padding: 13px 32px;
  border-radius: 4px;
  border: 1.5px solid var(--brown);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-secondary:hover { background: rgba(140,110,91,0.07); transform: translateY(-1px); }

/* ── HERO ── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 40%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 32px 80px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 22px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--brown); }
.page-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SECTIONS ── */
section { padding: 80px 32px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 18px;
}
.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 620px;
}
.divider {
  width: 36px;
  height: 2px;
  background: var(--brown);
  margin: 20px 0 36px;
}

/* ── TWO-COL GRID ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-center { align-items: center; }
.two-col-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-col-img-tall {
  aspect-ratio: 3/4;
}

/* ── PROSE ── */
.prose p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.prose p:last-child { margin-bottom: 0; }

/* ── CARD LISTS ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  font-size: 15px;
  color: var(--text-mid);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brown);
  font-weight: 600;
  font-size: 13px;
  top: 1px;
}
.dot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot-list li {
  font-size: 15px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown);
}

/* ── FEATURE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--brown);
  padding: 72px 32px;
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.45;
}
.quote-band cite {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

/* ── STEPS ── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}
.step-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-row:last-child { border-bottom: none; }
.step-num-big {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream-dark);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── CTA SECTION (with iframe form) ── */
.cta-form-section {
  background: var(--cream);
  padding: 80px 32px;
}
.cta-form-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cta-form-text h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.22;
  margin-bottom: 18px;
}
.cta-form-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.cta-form-text .contact-details {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-detail-row {
  font-size: 15px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-detail-row strong { color: var(--text); font-weight: 500; }
.contact-detail-row a { color: var(--brown); text-decoration: none; }
.contact-detail-row a:hover { text-decoration: underline; }
.form-iframe-wrap {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.form-iframe-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  height: 620px;
}

/* ── TRUST BAR ── */
.trust-bar {
  border-bottom: 1px solid var(--border);
  padding: 18px 32px;
  background: var(--white);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brown);
  flex-shrink: 0;
}

/* ── IMAGE + TEXT HIGHLIGHT ── */
.highlight-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 36px;
  border-left: 3px solid var(--brown);
}
.highlight-box h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
}

/* ── QUOTE INLINE ── */
.inline-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--brown);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
  margin: 32px 0;
}
.inline-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ── VALUE TAGS ── */
.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.value-tag {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-mid);
}

/* ── FAQ ── */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-a {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 720px;
}

/* ── PRICING CARDS ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--brown);
  box-shadow: 0 4px 28px rgba(140,110,91,0.13);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}
.price-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.price-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}
.price-amount {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}
.price-amount sup {
  font-size: 18px;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}
.price-note-small {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--brown);
}
.price-cta-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.price-card.featured .price-cta-btn {
  background: var(--brown);
  color: var(--white);
}
.price-card.featured .price-cta-btn:hover { background: var(--brown-hover); }
.price-card:not(.featured) .price-cta-btn {
  border: 1.5px solid var(--brown);
  color: var(--brown);
}
.price-card:not(.featured) .price-cta-btn:hover { background: rgba(140,110,91,0.07); }

/* ── FOOTER ── */
footer {
  background: #222;
  color: rgba(255,255,255,0.45);
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand p {
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.footer-brand span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  display: block;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 20px; }

/* ── OFFICE IMAGE BAND ── */
.location-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 360px;
}
.location-band-img {
  overflow: hidden;
}
.location-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.location-band-img:hover img { transform: scale(1.03); }

/* ── PERSON HERO (about page) ── */
.person-hero {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}
.person-hero-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: 560px;
  max-width: var(--max);
  margin: 0 auto;
}
.person-hero-image {
  overflow: hidden;
}
.person-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.person-hero-content {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.person-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}
.person-hero-content .role {
  font-size: 14px;
  color: var(--brown);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .cta-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .person-hero-grid { grid-template-columns: 1fr; }
  .person-hero-image { height: 360px; }
  .person-hero-content { padding: 48px 32px; }
  .location-band { grid-template-columns: 1fr; height: auto; }
  .location-band-img { height: 260px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 60px 20px; }
  .page-hero-content { padding: 64px 20px 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-form-section { padding: 60px 20px; }
  .form-iframe-wrap iframe { height: 700px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
