:root {
  /* Basis-Farben */
  --bg: #fff7f0;             /* warmer, heller Hintergrund */
  --bg-soft: #f4ebe4;        /* leicht abgesetzter Bereich */
  --accent: #3c8d8d;         /* ruhiges Petrol/Teal */
  --accent-strong: #2f6f6f;  /* dunkleres Petrol */
  --accent-soft: rgba(60, 141, 141, 0.12);

  --accent-2: #e2a06a;       /* warmes Apricot, sparsam */
  --text-main: #1f2933;      /* dunkles Grau */
  --text-muted: #6b7280;

  --card-bg: #ffffff;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
}

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

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fff7f0 0, #f8ede4 45%, #f3e2d5 100%);
  color: var(--text-main);
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 247, 240, 0.9);
  border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 38px;
  width: auto;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2d3748;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.95rem;
}

.main-nav a {
  color: #4b5563;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: #111827;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 141, 141, 0.4);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-strong);
}

.nav-toggle {
  display: none;
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
  line-height: 1.12;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fdfdfd;
  box-shadow: 0 18px 40px rgba(60, 141, 141, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: var(--accent-strong);
  border-color: rgba(209, 213, 219, 0.9);
}

.btn-block {
  width: 100%;
}

/* Hero Visual / Blobs */

.hero-visual {
  position: relative;
  min-height: 260px;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.7;
}

.blob-1 {
  width: 230px;
  height: 230px;
  top: -10px;
  right: 10px;
  background: radial-gradient(circle at 30% 30%, #e2a06a, transparent 60%);
}

.blob-2 {
  width: 260px;
  height: 260px;
  bottom: -40px;
  left: 0;
  background: radial-gradient(circle at 40% 40%, #b2c7bc, transparent 60%);
}

.portrait-placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: radial-gradient(circle at top left, #fffdf9, #f4ebe4);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 1rem;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-highlight {
  background: linear-gradient(145deg, #fdf1e2, #f4e0cd);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Grids & Cards */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.target-card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--text-muted);
}

.card-list {
  margin: 0.9rem 0 0.5rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.link-arrow {
  display: inline-flex;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--accent-strong);
  text-decoration: none;
}

/* Benefits */

.benefit {
  padding: 1.3rem 1.2rem;
  background: #fffdf9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 141, 141, 0.16);
  margin-bottom: 0.7rem;
}

/* Offers */

.offer-card .offer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.chip {
  display: inline-flex;
  margin-top: 0.7rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #fdf7f2;
}

.section-cta.center {
  text-align: center;
  margin-top: 2rem;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.step {
  text-align: center;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(60, 141, 141, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.blob-3 {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 40% 40%, #b2c7bc, transparent 60%);
  filter: blur(60px);
  opacity: 0.7;
}

.portrait-large {
  max-width: 320px;
  margin: 0 auto;
}

.about-text p {
  color: var(--text-muted);
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.2rem;
}

.about-list li {
  margin-bottom: 0.4rem;
}

/* FAQ */

.faq-item {
  background: #fffdf9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.8rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin-top: 0.6rem;
  color: var(--text-muted);
}

/* Kontakt */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-form {
  background: #fffdf9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.form-group-inline {
  margin-top: 0.4rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #fbf1e7;
  padding: 1.4rem 0 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: #374151;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .grid-2,
  .grid-3,
  .about-grid,
  .contact-grid,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .main-nav {
    display: none; /* später für mobiles Menü erweiterbar */
  }

  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid rgba(209, 213, 219, 0.9);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    color: #374151;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
