@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --rose: #bd716b;
  --rose-dark: #9d5754;
  --rose-light: #e9c5bd;
  --cream: #fbf4ec;
  --cream-2: #fffaf5;
  --green: #5d6b54;
  --green-dark: #424b3b;
  --text: #3e3d38;
  --muted: #746f67;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(77, 55, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 197, 189, 0.35), transparent 28rem),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(189, 113, 107, 0.13);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(77, 55, 45, 0.08);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand img {
  width: 170px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--rose-dark);
}

.nav-toggle {
  display: none;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 44px auto 0;
  min-height: 650px;

  display: flex;
  align-items: center;

  border-radius: 36px;
  overflow: hidden;

  background:
    linear-gradient(
      to right,
      rgba(251,244,236,0.95) 0%,
      rgba(251,244,236,0.85) 35%,
      rgba(251,244,236,0.2) 60%,
      transparent 100%
    ),
    url("assets/hero-frau.jpg") right center / cover no-repeat;

  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 600px;
  padding: clamp(42px, 6vw, 86px);
}
  padding: clamp(42px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0;
  color: var(--rose-dark);
}

h1 {
  font-size: clamp(42px, 5.2vw, 74px);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 25px;
}

.lead {
  max-width: 530px;
  margin: 24px 0 0;
  font-size: 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: 0.2s ease;
}

.btn.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 14px 26px rgba(189, 113, 107, 0.24);
}

.btn.secondary {
  color: var(--rose-dark);
  border: 1px solid rgba(189, 113, 107, 0.35);
  background: rgba(255, 255, 255, 0.5);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-image {
  min-height: 100%;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 244, 236, 0.94) 0%, rgba(251, 244, 236, 0.15) 34%, transparent 68%);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-bar {
  width: min(1040px, calc(100% - 40px));
  margin: -52px auto 70px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-bar article,
.card,
.contact-box {
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(189, 113, 107, 0.14);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(77, 55, 45, 0.08);
}

.trust-bar article {
  padding: 28px;
  text-align: center;
}

.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--rose);
  background: rgba(233, 197, 189, 0.35);
  font-size: 25px;
}

.trust-bar h2 {
  font-size: 23px;
}

.trust-bar p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 92px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.section-copy p,
.about-copy p,
.emotional p,
.seo-content p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  padding: 30px;
}

.card h3 {
  color: var(--green-dark);
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--rose-light);
}

.about-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-copy {
  padding: 20px 0;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--rose-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.emotional {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 74px 24px;
  border-radius: 36px;
  background:
    linear-gradient(rgba(255, 250, 245, 0.72), rgba(255, 250, 245, 0.76)),
    url("assets/soft-field.jpg") center/cover;
  box-shadow: var(--shadow);
}

.emotional p {
  max-width: 680px;
  margin: 20px auto 0;
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 46px;
  border-radius: 36px;
  background: rgba(93, 107, 84, 0.1);
}

.seo-content h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  color: var(--green-dark);
}

.seo-content h3 {
  color: var(--green-dark);
}

.contact {
  text-align: center;
}

.contact-box {
  padding: clamp(40px, 6vw, 74px);
  max-width: 900px;
  margin: 0 auto;
}

.contact-box p {
  max-width: 650px;
  margin: 20px auto 0;
}

.contact-grid {
  display: grid;
  gap: 12px;
  margin: 32px auto;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 34px 0 20px;
  border-top: 1px solid rgba(189, 113, 107, 0.18);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.site-footer img {
  width: 150px;
}

.site-footer div {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 26px;
  }

  .brand img {
    width: 145px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--rose-dark);
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    background: var(--cream-2);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    min-height: 430px;
    order: -1;
  }

  .hero-image::before {
    background: linear-gradient(180deg, transparent 0%, rgba(251, 244, 236, 0.88) 100%);
  }

  .trust-bar,
  .split,
  .about,
  .seo-content {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    margin-top: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .trust-bar,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy {
    padding: 34px 24px;
  }

  h1 {
    font-size: 39px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-bar article,
  .card,
  .contact-box,
  .seo-content {
    padding: 24px;
  }
}
