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

:root {
  --rose:     #b5727e;
  --rose-h:   #9a5f6a;
  --rose-l:   #f9eef0;
  --gold:     #c8922a;
  --creme:    #faf8f5;
  --creme-d:  #f2ece4;
  --braun:    #5c3d2e;
  --text:     #2e2e2e;
  --text-m:   #5a5a5a;
  --text-l:   #999;
  --weiss:    #ffffff;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --r:        8px;
  --section:  5rem 0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', serif;
  background: var(--creme);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}

.container       { max-width: 960px;  margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

h1,h2,h3 { font-family: Georgia, serif; font-weight: normal; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text-m); }
a  { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-h); }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  display: inline-block;
  font-family: sans-serif; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .75rem;
}
.sep {
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem; border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem;
  background: var(--rose); color: var(--weiss);
  border: none; border-radius: 99px;
  font-family: sans-serif; font-size: .92rem; cursor: pointer;
  transition: background .2s, transform .1s; text-decoration: none;
}
.btn:hover { background: var(--rose-h); color: #fff; transform: translateY(-1px); }
.btn--outline {
  background: transparent; border: 1.5px solid var(--rose); color: var(--rose);
}
.btn--outline:hover { background: var(--rose-l); }
.btn--wa { background: #25D366; }
.btn--wa:hover { background: #1ebe5d; }

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

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,245,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(181,114,126,.12);
  padding: .85rem 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 960px; margin: 0 auto; padding: 0 1.5rem;
}
.nav__logo { font-family: Georgia, serif; font-size: 1.1rem; color: var(--braun); }
.nav__logo span { color: var(--rose); }
.nav__links { display: flex; gap: 1.75rem; list-style: none; }
.nav__links a { font-family: sans-serif; font-size: .83rem; color: var(--text-m); letter-spacing: .03em; }
.nav__links a:hover { color: var(--rose); }

/* HERO */
#hero {
  min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #3d1f28 0%, #7a3a47 60%, #b5727e 100%);
  position: relative; overflow: hidden;
}
.hero__decor {
  position: absolute; inset: 0;
  background: url('images/portrait-hero.jpg') center 20%/cover no-repeat;
  opacity: .18;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: 960px; margin: 0 auto; padding: 6rem 1.5rem 5rem;
}
.hero__text .eyebrow { color: rgba(255,255,255,.55); }
.hero__h1 { color: #fff; margin-bottom: 1.25rem; }
.hero__h1 em { color: #f4c0c9; font-style: normal; }
.hero__sub { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__img-wrap { position: relative; }
.hero__img-wrap img {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 16px 64px rgba(0,0,0,.45);
  width: 100%; object-fit: cover; max-height: 460px;
  border: 4px solid rgba(255,255,255,.15);
}
.hero__img-placeholder {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.2);
  height: 380px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-family: sans-serif; font-size: .85rem;
  text-align: center; padding: 2rem;
}
.hero__langs {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.lang-badge {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.85);
  font-family: sans-serif; font-size: .78rem; letter-spacing: .05em;
  padding: .3rem .85rem; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.2);
}

/* ÜBER MICH */
#ueber { padding: var(--section); }
.ueber__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ueber__img { border-radius: 12px; box-shadow: var(--shadow); width: 100%; object-fit: cover; max-height: 440px; }
.ueber__img-placeholder {
  border-radius: 12px; background: var(--creme-d);
  border: 2px dashed rgba(181,114,126,.25);
  height: 340px; display: flex; align-items: center; justify-content: center;
  color: var(--text-l); font-family: sans-serif; font-size: .85rem; text-align: center; padding: 2rem;
}
.familie-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--rose-l); color: var(--rose);
  font-family: sans-serif; font-size: .8rem; font-weight: 600;
  padding: .45rem 1rem; border-radius: 99px; margin-top: 1.25rem;
}

/* LEISTUNGEN */
#leistungen { padding: var(--section); background: var(--creme-d); }
.leistungen__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.leistungs-card {
  background: var(--weiss); border-radius: var(--r);
  padding: 1.75rem; box-shadow: var(--shadow);
  border-top: 3px solid var(--rose-l);
  transition: transform .2s, box-shadow .2s;
}
.leistungs-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.12); border-top-color: var(--rose); }
.leistungs-card__icon { font-size: 2rem; margin-bottom: .85rem; }
.leistungs-card h3 { color: var(--braun); margin-bottom: .5rem; }
.leistungs-card p { font-size: .91rem; margin: 0; }

/* ZITAT */
#zitat { padding: 4rem 0; background: var(--rose-l); }
.zitat__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.zitat__text {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic; color: var(--braun); line-height: 1.6;
  margin-bottom: 1rem;
}
.zitat__attr { font-family: sans-serif; font-size: .82rem; color: var(--rose); letter-spacing: .08em; }

/* DOLMETSCHEN HIGHLIGHT */
#dolmetschen {
  padding: var(--section);
  background: linear-gradient(135deg, var(--braun) 0%, #3d1f28 100%);
  color: #fff;
}
.dolmetschen__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dolmetschen__text .eyebrow { color: rgba(255,255,255,.55); }
.dolmetschen__text h2 { color: #fff; margin-bottom: 1rem; }
.dolmetschen__text p { color: rgba(255,255,255,.75); }
.dolmetschen__img {
  border-radius: 10px; box-shadow: 0 12px 48px rgba(0,0,0,.4);
  width: 100%; object-fit: cover; max-height: 400px;
}
.dolmetschen__img-placeholder {
  border-radius: 10px; background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.15);
  height: 300px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-family: sans-serif; font-size: .85rem; text-align: center; padding: 2rem;
}
.sprachen-grid { display: flex; gap: 1.5rem; margin: 1.5rem 0 2rem; flex-wrap: wrap; }
.sprache-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r); padding: 1rem 1.5rem; text-align: center; min-width: 110px;
}
.sprache-card__flag { font-size: 2rem; margin-bottom: .4rem; }
.sprache-card__label { font-family: sans-serif; font-size: .8rem; color: rgba(255,255,255,.7); }

/* FOTOS */
#fotos { padding: var(--section); }
.fotos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.fotos__item img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow); transition: transform .3s;
}
.fotos__item img:hover { transform: scale(1.03); }
.fotos__placeholder {
  width: 100%; height: 220px; border-radius: var(--r);
  background: var(--creme-d); border: 2px dashed rgba(181,114,126,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-l); font-family: sans-serif; font-size: .78rem; text-align: center;
}

/* KONTAKT */
#kontakt { padding: var(--section); background: var(--creme-d); }
.kontakt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.kontakt__actions { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-family: sans-serif; font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-l); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #ddd; border-radius: var(--r);
  font-family: Georgia, serif; font-size: .95rem;
  background: #fff; color: var(--text);
  transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form__submit {
  width: 100%; padding: .9rem;
  background: var(--rose); color: #fff; border: none;
  border-radius: 99px; font-size: 1rem; font-family: sans-serif;
  cursor: pointer; transition: background .2s;
}
.form__submit:hover { background: var(--rose-h); }
.form__danke { display: none; text-align: center; padding: 2rem; color: var(--rose); font-size: 1.1rem; }

/* FOOTER */
footer {
  background: #3d1f28; color: rgba(255,255,255,.5);
  font-family: sans-serif; font-size: .82rem;
  padding: 2rem 0; text-align: center;
}
footer a { color: rgba(255,255,255,.6); }
footer a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero__inner, .ueber__grid, .dolmetschen__inner, .kontakt__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__inner { padding-top: 4rem; padding-bottom: 3rem; }
  .hero__img-wrap { order: -1; }
  .fotos__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 480px) {
  .fotos__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
}
