@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@400;500&display=swap');

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

:root {
  --bg: #FAF8F5;
  --surface: #F0EBE3;
  --accent: #C9A0A0;
  --text: #2C2825;
  --muted: #7A6E68;
  --max-w: 1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 600; }
p { color: var(--muted); max-width: 65ch; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
section.surface { background: var(--surface); }

/* ─── FADE-IN ─── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250,248,245,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44,40,37,.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--text); text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); font-size: .9rem; font-weight: 500; letter-spacing: .03em; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .4rem; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 57px; left: 0; right: 0;
    background: var(--bg); flex-direction: column; gap: 0;
    border-bottom: 1px solid rgba(44,40,37,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 1rem 1.5rem; font-size: 1rem; border-top: 1px solid rgba(44,40,37,.06); }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../referenzen/praxis 1.png');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(240,235,227,.75), rgba(250,248,245,.85));
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { color: var(--text); margin-bottom: 1rem; }
.hero-content p {
  font-size: 1.15rem; color: var(--muted); max-width: 42ch;
  margin: 0 auto 2rem; font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-style: italic;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  background: var(--accent); color: #fff;
  border-radius: 2px; font-size: .9rem; font-weight: 500; letter-spacing: .04em;
  transition: background .2s, transform .15s;
}
.btn:hover { background: #b88888; text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ─── THREE PILLARS ─── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 1px solid rgba(44,40,37,.08); border-radius: 2px;
}
.pillar h3 { font-size: 1.1rem; color: var(--text); margin-bottom: .5rem; }
.pillar p { font-size: .9rem; max-width: none; color: var(--muted); }

/* ─── ABOUT TEASER ─── */
.about-teaser { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-teaser { grid-template-columns: 1fr; gap: 2rem; } }
.about-teaser img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; }
.about-teaser .text h2 { margin-bottom: 1.5rem; }
.about-teaser .text p { margin-bottom: 1.5rem; }
.link-arrow { color: var(--accent); font-weight: 500; font-size: .95rem; }
.link-arrow:hover { text-decoration: underline; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 8rem 1.5rem 4rem;
  background: var(--surface);
  text-align: center;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p { margin: 0 auto; font-size: 1.1rem; }

/* ─── PORTRAIT BLOCK ─── */
.portrait-block { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .portrait-block { grid-template-columns: 1fr; } }
.portrait-block img { width: 100%; border-radius: 2px; }

/* ─── QUALIFICATIONS ─── */
.qualifications { list-style: none; margin: 2rem 0; }
.qualifications li {
  padding: .75rem 0;
  border-bottom: 1px solid rgba(44,40,37,.08);
  color: var(--muted); font-size: .95rem;
}
.qualifications li:first-child { border-top: 1px solid rgba(44,40,37,.08); }

/* ─── STEPS ─── */
.steps { list-style: none; counter-reset: step; margin: 2rem 0; }
.steps li {
  counter-increment: step;
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(44,40,37,.08);
}
.steps li::before {
  content: counter(step);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--accent);
  min-width: 2rem; line-height: 1;
}

/* ─── CALLOUT ─── */
.callout {
  background: var(--surface); border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem; margin: 2rem 0; border-radius: 0 2px 2px 0;
}
.callout p { max-width: none; color: var(--text); }

/* ─── COSTS ─── */
.costs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .costs-grid { grid-template-columns: 1fr; } }
.cost-card {
  padding: 2.5rem; background: var(--surface); border-radius: 2px;
  border: 1px solid rgba(44,40,37,.08);
}
.cost-card h3 { margin-bottom: 1.5rem; color: var(--text); }
.cost-card dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.5rem; }
.cost-card dt { font-weight: 500; color: var(--text); font-size: .9rem; }
.cost-card dd { color: var(--muted); font-size: .9rem; }
.cost-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--accent); margin-bottom: 1rem;
}

/* ─── KONTAKT ─── */
.contact-block { max-width: 560px; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon { font-size: 1.2rem; margin-top: .1rem; }
.contact-item a { color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--accent); text-decoration: none; }
.contact-item p { max-width: none; margin: 0; }

/* ─── LEGAL ─── */
.legal-content h2 { margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; color: var(--muted); }
.legal-content ul li { margin-bottom: .5rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(44,40,37,.08);
  text-align: center;
  font-size: .85rem; color: var(--muted);
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); text-decoration: none; }
.footer-inner { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-sep { color: rgba(44,40,37,.3); }
