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

:root {
  --purple: #6f3f73;
  --purple-dark: #4f2953;
  --purple-light: #efe6f0;
  --cream: #fbf8f4;
  --ink: #241e24;
  --muted: #6c636d;
  --white: #ffffff;
  --border: rgba(79, 41, 83, 0.16);
  --shadow: 0 24px 60px rgba(52, 26, 55, 0.15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 248, 244, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.brand img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(52, 26, 55, 0.18);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.4rem;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.nav a:hover, .nav a:focus-visible { color: var(--purple); }

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  align-items: stretch;
  background: var(--purple);
  color: var(--white);
}
.hero-image-wrap {
  min-height: 650px;
  overflow: hidden;
  background: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
}
.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1, .section h2, .about h2, .contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  letter-spacing: -0.04em;
}
.hero-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.button-primary { color: var(--purple-dark); background: var(--white); }
.button-secondary { color: var(--white); }

.section { padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 6vw, 6rem); }
.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.section-heading h2, .about h2, .contact h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  color: var(--purple-dark);
}
.intro-text p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.25;
}
.services { background: var(--white); }
.services > .section-heading { max-width: 1400px; margin: 0 auto 3rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.service-grid article {
  min-height: 280px;
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-grid span { color: var(--purple); font-size: 0.85rem; font-weight: 600; }
.service-grid h3 {
  margin: 3rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}
.service-grid p { margin: 0; color: var(--muted); }

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.text-link {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--purple-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.contact { background: var(--purple-dark); color: var(--white); }
.contact-panel { max-width: 1100px; margin: 0 auto; }
.contact h2 { color: var(--white); }
.contact-intro {
  max-width: 650px;
  margin: 1.8rem 0 3rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.12rem;
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.25);
}
.contact-list > * {
  min-height: 160px;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
}
.contact-label {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
}

.legal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem clamp(1.2rem, 6vw, 6rem) 4rem;
}
.legal details { border-bottom: 1px solid var(--border); }
.legal summary {
  padding: 1.3rem 0;
  color: var(--purple-dark);
  font-weight: 600;
  cursor: pointer;
}
.legal-content {
  max-width: 800px;
  padding: 0 0 1.5rem;
  color: var(--muted);
}
.legal-note { font-size: 0.9rem; }
footer {
  padding: 1.5rem;
  color: rgba(255,255,255,0.75);
  background: #2e1831;
  text-align: center;
  font-size: 0.88rem;
}

@media (max-width: 950px) {
  .hero, .about, .intro { grid-template-columns: 1fr; }

  /* Wichtig: vollständiges Bild auf Tablets und iPhones */
  .hero-image-wrap {
    min-height: 0;
    height: auto;
    padding: 0;
  }
  .hero-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-list { grid-template-columns: 1fr; }
  .contact-list > * { min-height: auto; padding: 1.5rem 0; }
}

@media (max-width: 680px) {
  .site-header { position: static; align-items: flex-start; }
  .brand img { width: 68px; height: 68px; }
  .nav { gap: 0.4rem 0.8rem; }
  .nav a { font-size: 0.82rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 3rem 1.2rem 4rem; }
  .hero h1 { font-size: clamp(3.3rem, 17vw, 5rem); }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: auto; }
}
