:root {
  --bg: #f8f5ef;
  --paper: #fffdfa;
  --paper-soft: #fcfaf5;
  --text: #302f2b;
  --muted: #6d6a61;
  --line: #e8e0d3;
  --sage: #667561;
  --sage-deep: #586a5b;
  --sage-pale: #f1f4ef;
  --sand: #d7c7b2;
  --sand-dark: #9c8568;
  --shadow: 0 20px 54px rgba(48, 47, 43, 0.06);
  --radius: 28px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--muted); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  z-index: 1000;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 224, 211, 0.72);
  background: rgba(248, 245, 239, 0.88);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  letter-spacing: -0.02em;
}
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 500;
}
.brand span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255, 253, 250, 0.82);
}
.nav-cta {
  border: 1px solid var(--line);
  background: var(--paper) !important;
  color: var(--text) !important;
}
.menu-toggle { display: none; }

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--sage-deep);
  font-size: 0.77rem;
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--sage);
  opacity: 0.7;
}

h1, h2, .display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
h1 {
  font-size: clamp(3.2rem, 7.6vw, 6.2rem);
  max-width: 740px;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  margin-bottom: 24px;
}
h3 {
  font-size: 1.23rem;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.lead {
  max-width: 660px;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  color: var(--muted);
  line-height: 1.65;
}
.lead strong { color: var(--text); font-weight: 550; }

.hero {
  padding: 78px 0 46px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  background: radial-gradient(circle, rgba(215, 199, 178, 0.24), rgba(215, 199, 178, 0) 67%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 54px;
  position: relative;
}
.hero-copy { padding-bottom: 0; position: relative; }
.hero h1 {
  line-height: 0.9 !important;
  letter-spacing: -0.038em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: var(--text);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 560;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(48,47,43,0.12); }
.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.button.light {
  background: var(--paper);
  color: var(--text);
  border-color: var(--paper);
}

.hero-visual {
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 18px 18px 0;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(249, 246, 239, 0.96));
  border: 1px solid rgba(232, 224, 211, 0.92);
  box-shadow: var(--shadow);
  min-height: 396px;
  max-width: 360px;
  width: 100%;
  margin: 0 auto 0;
  overflow: hidden;
  position: relative;
}
.hero-visual img {
  width: min(255px, 100%);
  margin-bottom: -2px;
}
.hero-visual::after { display: none !important; }
.hero-note {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.note-card {
  padding: 14px 15px 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,250,0.68);
}
.note-card span {
  display: block;
  color: var(--sage-deep);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.note-card strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 550;
}

.accent-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.92;
  box-shadow: 0 6px 18px rgba(102, 117, 97, 0.18);
}
.hero-copy .accent-dot {
  top: 6px;
  right: clamp(16px, 4vw, 120px);
}

.intro-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.intro-panel::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.9;
}
.intro-image {
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper-soft);
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(1.05);
}
.copy-stack { display: grid; gap: 18px; }
.copy-stack p { margin: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.card {
  min-width: 0;
  padding: 30px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.card.soft { background: linear-gradient(180deg, rgba(255,253,250,0.95), rgba(252,250,245,0.96)); }
.card p { margin-bottom: 0; }
.card-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: 0.86rem;
  font-weight: 700;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  margin-bottom: 32px;
}
.section-head p {
  max-width: 490px;
  margin-bottom: 8px;
}
.section-head-left {
  display: block;
  max-width: 760px;
}
.section-head-left p {
  max-width: 640px;
  margin-top: -8px;
  margin-bottom: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sand-dark);
}

.quote-band {
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(238, 241, 235, 0.9), rgba(255, 253, 250, 0.94));
  border: 1px solid var(--line);
  position: relative;
}
.quote-band::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.9;
}
.quote-band .display {
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  max-width: 980px;
  margin: 0;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 52px);
  padding-left: clamp(48px, 6vw, 76px);
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.cta-box::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 24px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.9;
}
.cta-box::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(215,199,178,0.12);
}
.cta-box h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.72); margin: 0; max-width: 690px; position: relative; z-index: 1; }
.cta-box .button { position: relative; z-index: 1; }

.page-hero {
  padding: 72px 0 38px;
}
.page-hero .container { position: relative; }
.page-hero .container::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sage);
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); max-width: 900px; }
.page-hero .lead { max-width: 760px; }
.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--sage-deep); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: start;
}
.sticky-side {
  position: sticky;
  top: 116px;
}
.info-box {
  padding: 30px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}
.info-row {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}
.info-row strong,
.info-row a {
  font-size: 1.06rem;
  line-height: 1.42;
  font-weight: 550;
}

.text-panel {
  padding: clamp(30px, 5vw, 50px);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}
.text-panel + .text-panel { margin-top: 22px; }
.text-panel p:last-child { margin-bottom: 0; }
.kicker-title {
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.image-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 250px;
  background: var(--paper);
}
.image-banner img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  filter: saturate(0.86) brightness(1.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}
.form-card, .contact-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  height: 100%;
}
.form-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 620;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  line-height: 1.4;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(76, 95, 82, 0.55);
  box-shadow: 0 0 0 4px rgba(111, 125, 105, 0.12);
}
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.consent input { width: 18px; height: 18px; margin-top: 4px; }
.form-hint { color: var(--muted); font-size: 0.88rem; margin: 14px 0 0; }

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.45);
}
.footer-wrap {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

.legal-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff8e8;
  border: 1px solid #eddfbf;
  color: #6b5b3e;
  font-size: 0.93rem;
}

main > .section-tight:last-of-type,
main > .section:last-of-type {
  padding-bottom: 82px;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-panel,
  .split-section,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero-grid { align-items: start; }
  .hero-copy { padding-bottom: 0; }
  .hero-copy .accent-dot { right: 24px; top: -4px; }
  .hero-visual { min-height: 360px; max-width: 360px; width: 100%; margin: 10px auto 0; align-self: center; }
  .hero-note, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .sticky-side { position: static; }
  .cta-box { justify-items: start; }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 72px; }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--text);
    font: inherit;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 250, 0.97);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 14px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .nav-wrap, .footer-wrap { width: min(100% - 30px, var(--container)); }
  .hero { padding: 52px 0 24px; }
  .section { padding: 70px 0; }
  .page-hero { padding: 54px 0 30px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.4rem); }
  .hero h1 { line-height: 0.92 !important; }
  .hero-visual { padding: 16px 16px 0; min-height: 320px; max-width: 300px; border-radius: 28px; }
  .hero-visual img { width: min(210px, 100%); }
  .hero-copy .accent-dot { width: 18px; height: 18px; right: 8px; top: -6px; }
  .intro-panel::after, .cta-box::before, .quote-band::after, .page-hero .container::after { transform: scale(0.9); }
  .cta-box { padding-left: clamp(30px, 5vw, 44px); }
  .intro-image { min-height: 300px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  main > .section-tight:last-of-type,
  main > .section:last-of-type { padding-bottom: 62px; }
}


/* V11: oberen rechten grünen Punkt auf allen Seiten entfernen */
.hero-copy .accent-dot,
.page-hero .container::after {
  display: none !important;
}


/* V12: Bildbox im Hero mit weniger Luft über dem Kopf */
.hero-visual {
  padding-top: 10px;
  min-height: 350px;
}

.hero-visual img {
  width: min(285px, 100%);
}

@media (max-width: 980px) {
  .hero-visual {
    min-height: 340px;
  }

  .hero-visual img {
    width: min(255px, 100%);
  }
}

@media (max-width: 640px) {
  .hero-visual {
    padding-top: 12px;
    min-height: 300px;
  }

  .hero-visual img {
    width: min(220px, 100%);
  }
}


/* V16: Impressum ähnlich der Shawn-Website, aber für Valentina */
.legal-panel {
  max-width: 1160px;
}

.legal-panel p {
  color: var(--text);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.75;
}

.legal-panel h2 {
  margin-top: 50px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 750;
}

.legal-panel a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}


/* V17: Datenschutzseite mit längerer Datenschutzerklärung */
.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel h2 {
  margin-bottom: 14px;
}

.legal-panel p + h2 {
  margin-top: 46px;
}


/* V19: Footer mit LinkedIn statt Kontakt */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-linkedin img {
  width: 22px;
  height: 22px;
  display: inline-block;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}


/* V20: Alle grünen Deko-Punkte auf allen Seiten entfernen (Desktop + Mobil) */
.accent-dot,
.hero-copy .accent-dot,
.intro-panel::after,
.quote-band::after,
.cta-box::before,
.page-hero .container::after {
  display: none !important;
  content: none !important;
}


/* V21: Nur mobile Optimierung für das Bild auf der Angebotsseite */
.image-banner picture { display: block; width: 100%; height: 100%; }

@media (max-width: 640px) {
  .image-banner--angebot {
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
  }

  .image-banner--angebot img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}


/* V24: echtes PHP-Kontaktformular */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.message-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.84);
}

.message-box.success {
  border-color: rgba(102, 117, 97, 0.32);
  background: rgba(241, 244, 239, 0.78);
}

.message-box.error {
  border-color: rgba(160, 92, 70, 0.28);
  background: rgba(255, 248, 232, 0.72);
}

.message-box p {
  margin: 0;
}

.form-card {
  position: relative;
}
