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

    :root {
      --gold: #B8924A;
      --gold-light: #CDA96A;
      --black: #1A1A1A;
      --white: #FFFFFF;
      --off-white: #F9F7F4;
      --warm-gray: #E8E3DB;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--black);
      background: var(--white);
      font-weight: 300;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 4rem;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--warm-gray);
    }

    .nav-logo img {
      height: 64px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--black);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--black) !important;
      color: var(--white) !important;
      padding: 0.6rem 1.4rem;
      border-radius: 2px;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--gold) !important; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 9rem 4rem 5rem;
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      right: 6%;
      top: 50%;
      transform: translateY(-50%);
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,146,74,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content { max-width: 600px; }

    .hero-eyebrow {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .hero-logo {
      width: min(340px, 80vw);
      height: auto;
      margin-bottom: 2rem;
      display: block;
    }

    .hero-text {
      font-size: 0.95rem;
      line-height: 1.9;
      color: #666;
      margin-bottom: 2.5rem;
      max-width: 460px;
      font-weight: 300;
    }

    .btn-primary {
      display: inline-block;
      background: var(--black);
      color: var(--white);
      text-decoration: none;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem 2.2rem;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
      margin-right: 1.5rem;
    }

    .btn-primary:hover { background: var(--gold); transform: translateY(-1px); }

    .btn-secondary {
      display: inline-block;
      color: var(--black);
      text-decoration: none;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem 0;
      border-bottom: 1.5px solid var(--black);
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

    /* Hero decoration — logo icons faded right side */
    .hero-deco {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.07;
      width: 380px;
    }

    /* LEISTUNGEN */
    .leistungen {
      padding: 7rem 4rem;
      background: var(--white);
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-eyebrow {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 300;
      letter-spacing: 0.05em;
      color: var(--black);
      margin-bottom: 1.2rem;
    }

    .section-title strong {
      font-weight: 700;
    }

    .section-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
    }

    .section-divider::before,
    .section-divider::after {
      content: '';
      width: 36px;
      height: 1px;
      background: var(--gold);
    }

.section-divider-heart {
    color: var(--gold) !important;
    font-size: 1rem;
    }

    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .leistung-card {
      text-align: center;
      padding: 2.5rem 1.2rem 2rem;
      border: 1px solid var(--warm-gray);
      border-radius: 3px;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      background: var(--white);
    }

    .leistung-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(184,146,74,0.1);
    }

    .leistung-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 1.5rem;
    }

    .leistung-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .leistung-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 0.8rem;
    }

    .leistung-text {
      font-size: 0.83rem;
      line-height: 1.75;
      color: #888;
      font-weight: 300;
    }

    /* BUCH */
    .buch {
      padding: 7rem 4rem;
      background: var(--off-white);
    }

    .buch-inner {
      max-width: 1060px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 6rem;
      align-items: center;
    }

    .buch-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .buch-cover {
      width: 100%;
      max-width: 300px;
      aspect-ratio: 3/4;
      border-radius: 3px 10px 10px 3px;
      box-shadow: -6px 6px 0 #8B6A2E, -10px 10px 30px rgba(0,0,0,0.25);
      overflow: hidden;
      position: relative;
    }

    .buch-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* placeholder gradient if no image */
    .buch-cover-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(150deg, #D4AA6A 0%, #8B6914 45%, #3A5240 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      text-align: center;
    }

    .buch-cover-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    .buch-cover-sub {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
    }

    .buch-badge {
      position: absolute;
      bottom: -1.2rem;
      right: -1.2rem;
      width: 78px;
      height: 78px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.4;
      box-shadow: 0 4px 20px rgba(184,146,74,0.4);
    }

    .buch-content .section-eyebrow { text-align: left; }
    .buch-content .section-title { text-align: left; margin-bottom: 1.2rem; }
    .buch-content .section-divider { justify-content: flex-start; margin-bottom: 1.8rem; }

    .buch-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-style: italic;
      color: #777;
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .buch-text {
      font-size: 0.88rem;
      line-height: 1.9;
      color: #777;
      margin-bottom: 1.8rem;
      font-weight: 300;
    }

    .buch-features {
      list-style: none;
      margin-bottom: 2.5rem;
    }

    .buch-features li {
      font-size: 0.83rem;
      color: #666;
      padding: 0.55rem 0;
      border-bottom: 1px solid var(--warm-gray);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 400;
    }

    .buch-features li::before {
      content: '♥';
      color: var(--gold);
      font-size: 0.65rem;
      flex-shrink: 0;
    }

    /* ÜBER */
    .ueber {
      padding: 7rem 4rem;
      background: var(--black);
      color: var(--white);
    }

    .ueber-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }

    .ueber .section-eyebrow { color: var(--gold-light); }
    .ueber .section-title { color: var(--white); margin-bottom: 2rem; }
    .ueber .section-divider::before,
    .ueber .section-divider::after { background: rgba(255,255,255,0.2); }

    .ueber-text {
      font-size: 0.92rem;
      line-height: 1.95;
      color: rgba(255,255,255,0.6);
      margin: 2rem 0 3rem;
      font-weight: 300;
    }

    .ueber-stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 3rem;
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold-light);
      display: block;
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .stat-label {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }

    /* KONTAKT */
    .kontakt {
      padding: 7rem 4rem;
      background: var(--off-white);
      text-align: center;
    }

    .kontakt-inner { max-width: 560px; margin: 0 auto; }

    .kontakt-text {
      font-size: 0.9rem;
      line-height: 1.9;
      color: #777;
      margin: 2rem 0 2.5rem;
      font-weight: 300;
    }

    .kontakt-email {
      display: inline-block;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--black);
      text-decoration: none;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 2px;
      margin-bottom: 2.5rem;
      transition: color 0.2s;
    }

    .kontakt-email:hover { color: var(--gold); }

    /* FOOTER */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.35);
      text-align: center;
      padding: 2rem 4rem;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    footer a { color: var(--gold); text-decoration: none; }
    footer a:hover { color: var(--gold-light); }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      nav { padding: 0.8rem 1.5rem; }
      .nav-links { display: none; }
      .hero { padding: 7rem 1.5rem 4rem; }
      .hero-deco { display: none; }
      .leistungen, .buch, .ueber, .kontakt { padding: 5rem 1.5rem; }
      .leistungen-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .buch-inner { grid-template-columns: 1fr; gap: 3.5rem; }
      .buch-cover { max-width: 240px; }
      .ueber-stats { gap: 2rem; }
    }

    @media (max-width: 500px) {
      .leistungen-grid { grid-template-columns: 1fr; }
      .ueber-stats { flex-direction: column; gap: 1.5rem; }
      .btn-primary { margin-right: 0; margin-bottom: 1rem; display: block; text-align: center; }
      .btn-secondary { display: block; text-align: center; }
    }

/* WordPress compatibility */
.admin-bar nav { top: 32px; }
body.logged-in nav { top: 32px; }
.screen-reader-text { position:absolute; left:-9999px; }
.nav-menu { display:flex; gap:2.5rem; list-style:none; align-items:center; margin:0; padding:0; }
.nav-menu li:last-child a { background: var(--black) !important; color: var(--white) !important; padding: 0.6rem 1.4rem; border-radius: 2px; transition: background 0.2s !important; }
.nav-menu li:last-child a:hover { background: var(--gold) !important; }
@media (max-width: 960px) { .nav-menu { display:none; } }


/* Legal pages */
.legal-page{padding:9rem 1.5rem 5rem;background:#F9F7F4;min-height:70vh}
.legal-container{max-width:850px;margin:0 auto;background:#fff;padding:3rem;border:1px solid #E8E3DB}
.legal-container h1{text-align:center;font-weight:300;letter-spacing:.08em;margin-bottom:1rem}
.legal-divider{text-align:center;color:#B8924A;font-size:1.2rem;margin-bottom:2rem}
.legal-container h2{margin-top:2rem;color:#1A1A1A}
.legal-container p,.legal-container li{line-height:1.8;color:#555}
.site-footer-links{margin-bottom:1rem}
.site-footer-links a{margin:0 .75rem}

/* Contact and book pages */
.contact-page, .book-page { background: var(--off-white); padding-top: 6rem; }
.contact-hero { max-width: 720px; margin: 0 auto; text-align: center; padding: 5rem 1.5rem 2rem; }
.contact-hero p:last-child { color:#777; line-height:1.9; margin-top:1.5rem; }
.contact-wrap { max-width: 1060px; margin: 0 auto; padding: 2rem 1.5rem 6rem; display:grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items:start; }
.contact-card { background:#fff; border:1px solid var(--warm-gray); padding:2.5rem; border-radius:3px; box-shadow:0 12px 36px rgba(0,0,0,.035); }
.contact-card h2 { font-weight:400; letter-spacing:.04em; margin-bottom:1.2rem; }
.contact-card p { color:#666; line-height:1.8; margin-bottom:1.2rem; }
.contact-card a { color:var(--gold); text-decoration:none; }
.contact-card a:hover { color:var(--black); }
.contact-note, .privacy-hint { font-size:.78rem; color:#888 !important; }
.form-placeholder { border:1px dashed var(--warm-gray); padding:1.5rem; background:#F9F7F4; margin-bottom:1.2rem; }
.form-placeholder .btn-primary { margin-top:.5rem; }
.contact-card input[type="text"], .contact-card input[type="email"], .contact-card input[type="tel"], .contact-card textarea, .contact-card select { width:100%; border:1px solid var(--warm-gray); padding:.9rem 1rem; font-family:'Montserrat',sans-serif; margin:.35rem 0 1rem; background:#fff; color:var(--black); }
.contact-card textarea { min-height:150px; }
.contact-card input[type="submit"], .contact-card button[type="submit"] { background:var(--black); color:#fff; border:0; padding:1rem 2rem; font-size:.7rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; cursor:pointer; }
.contact-card input[type="submit"]:hover, .contact-card button[type="submit"]:hover { background:var(--gold); }

.book-hero-page { max-width:1060px; margin:0 auto; padding:6rem 1.5rem 4rem; display:grid; grid-template-columns:.9fr 1.1fr; gap:5rem; align-items:center; }
.book-hero-image { text-align:center; }
.book-hero-image img { width:100%; max-width:330px; border-radius:3px 10px 10px 3px; box-shadow:-7px 7px 0 #8B6A2E, -14px 14px 34px rgba(0,0,0,.22); }
.book-hero-text p { color:#666; line-height:1.9; margin-bottom:1.5rem; }
.book-details { background:#fff; padding:5rem 1.5rem; }
.book-feature-grid { max-width:980px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:1.2rem; }
.book-feature-card { background:var(--off-white); border:1px solid var(--warm-gray); padding:1.4rem 1.5rem; line-height:1.7; color:#666; }
.book-feature-card:before { content:'♥'; color:var(--gold); margin-right:.65rem; font-size:.75rem; }
.book-order-box { max-width:760px; margin:5rem auto; padding:3rem 1.5rem; text-align:center; background:#fff; border:1px solid var(--warm-gray); }
.book-order-box h2 { font-weight:400; margin-bottom:1rem; }
.book-order-box p { color:#666; line-height:1.9; margin-bottom:2rem; }

/* legal polish */
.legal-container a, .kontakt-text a { color:var(--gold); }
.legal-container ul { padding-left:1.2rem; margin:1rem 0; }
.legal-container h1:after { content:''; display:block; width:70px; height:1px; background:var(--gold); margin:1.3rem auto 0; }

@media (max-width: 760px) {
  .contact-wrap, .book-hero-page { grid-template-columns:1fr; gap:2rem; }
  .contact-card { padding:1.7rem; }
  .book-feature-grid { grid-template-columns:1fr; }
}
/* Mobile Menü sichtbar machen */
@media (max-width: 960px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .nav-links,
  .nav-menu {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.2rem;
  }

  .nav-links a,
  .nav-menu a {
    font-size: 0.65rem;
  }

  .nav-logo img {
    height: 54px;
  }
}

/* Herzchen/Farbakzente gold statt rot */
.section-divider-heart,
.buch-features li::before,
.book-feature-card::before {
  color: #B8924A !important;
}
.section-divider-heart::before {
  content: "\2665";
  color: #B8924A !important;
  font-family: Arial, sans-serif !important;
  font-size: 1rem;
  line-height: 1;
}
/* Neuer Hero mit vollflächigem Bild */
.hero-image {
  min-height: 92vh;
  padding: 10rem 4rem 6rem;
  background-image:
    linear-gradient(
      90deg,
      rgba(26, 26, 26, 0.58) 0%,
      rgba(26, 26, 26, 0.38) 42%,
      rgba(26, 26, 26, 0.05) 100%
    ),
    url(http://fernwehwerk.de/wp-content/uploads/2026/06/ChatGPT-Image-14.-Juni-2026-15_12_13.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-image::after {
  display: none;
}

.hero-image .hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-image .hero-eyebrow {
  color: #F2D18A;
}

.hero-image .hero-eyebrow::before {
  background: #F2D18A;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-image .hero-text {
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
  max-width: 500px;
}

.hero-image .btn-primary {
  background: #1A1A1A;
  color: #ffffff;
}

.hero-image .btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.hero-image .btn-secondary:hover {
  color: #F2D18A;
  border-color: #F2D18A;
}

@media (max-width: 760px) {
  .hero-image {
    min-height: 82vh;
    padding: 9rem 1.5rem 4rem;
    background-position: 62% center;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-image .hero-text {
    font-size: 0.9rem;
  }
}/* Mobile Hero Feinschliff */
@media (max-width: 760px) {
  .hero-image {
    min-height: auto;
    padding: 8.5rem 1.5rem 4rem;
    background-position: 58% center;
  }

  .hero-image .hero-content {
    padding-top: 2.5rem;
  }

  .hero-image .hero-eyebrow {
    margin-bottom: 1.3rem;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
  }

  .hero-title {
    font-size: 2.55rem;
    line-height: 1.08;
    margin-bottom: 1.4rem;
  }

  .hero-image .hero-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero-image .btn-primary,
  .hero-image .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image .btn-secondary {
    margin-top: 0.6rem;
  }
}