@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant/cormorant-garamond-v21-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant/cormorant-garamond-v21-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/source-sans/source-sans-3-v19-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/source-sans/source-sans-3-v19-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Allura';
  src: url('fonts/allura/allura-v23-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-cream: #faf6ee;
  --color-sand: #ede7da;
  --color-green-dark: #33402c;
  --color-green: #445138;
  --color-gold: #8c5a1e;
  --color-gold-light: #e0a868;
  --color-text: #2c2c26;
  --color-text-soft: #5a5a4f;
  --color-yellow-popup: #fff3d6;
  --font-heading: 'Cormorant Garamond', serif;
  --font-script: 'Allura', cursive;
  --font-body: 'Source Sans 3', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Visually hidden but readable by screen readers & search engines */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  font-weight: 400;
  line-height: 1.6;
}

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

/* Desktop-only 3D page frame */
@media (min-width: 961px) {
  body { background: #c7c3b2; }
  .page-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--color-cream);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.04),
      0 25px 70px rgba(30, 33, 22, 0.28),
      0 8px 24px rgba(30, 33, 22, 0.16);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-green-dark);
  font-weight: 600;
  margin: 0 0 16px;
}

h1 { font-size: 3.4rem; line-height: 1.15; }
h2 { font-size: 2.6rem; line-height: 1.2; }
h3 { font-size: 1.4rem; }

.hero-text .lead {
  font-family: var(--font-body);
  font-weight: 600;
}

.eyebrow {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }

.divider {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin: 8px 0 20px;
  border-top: 1px solid #d9cdb4;
  width: 90px;
  padding-top: 10px;
  position: relative;
}
.divider span {
  position: absolute;
  top: -12px;
  left: 30px;
  background: inherit;
}

.lead { font-size: 1.15rem; color: var(--color-green-dark); font-weight: 600; }
.sub { color: var(--color-text-soft); }
.body-text { color: var(--color-text-soft); max-width: 480px; }
.script-line {
  font-family: var(--font-script);
  color: var(--color-gold);
  font-size: 1.8rem;
  margin: 4px 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }

.btn-dark { background: var(--color-green-dark); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-green-dark);
}
.btn-gold { background: var(--color-gold); color: #fff; }

.link-btn {
  background: none;
  border: none;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
}
.link-btn:hover { text-decoration: underline; }
.link-btn.light { color: var(--color-gold-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(6px);
  padding-bottom: 50px;
  clip-path: url(#wave-clip-bottom);
  filter: drop-shadow(0 3px 6px rgba(51, 64, 44, 0.08));
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { width: 52px; height: 52px; object-fit: contain; }
.brand-name {
  font-family: var(--font-heading);
  color: var(--color-green-dark);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}
.brand-text { display: flex; flex-direction: column; gap: 5px; }
.site-header .brand-name {
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.brand-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}
.brand-subtitle i {
  width: 18px;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
  font-style: normal;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a.active,
.main-nav a:hover { color: var(--color-gold); border-bottom-color: var(--color-gold); }

/* Organic decorative line art */
.organic-deco {
  position: absolute;
  color: var(--color-green);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.split-image { position: relative; }
.deco-ankommen {
  top: -30px;
  right: -50px;
  width: 160px;
  height: 240px;
  z-index: 0;
}
.split-image img { position: relative; z-index: 1; }

/* Watermark logo (recurring background motif) */
.watermark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  filter: grayscale(1) brightness(1.35);
  object-fit: contain;
}
/* Hero */
.hero {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 40px 0 90px;
  clip-path: url(#wave-clip-hero);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-text { position: relative; z-index: 2; }
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 0;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    var(--color-cream) 0%,
    rgba(250, 246, 238, 0.9) 8%,
    rgba(250, 246, 238, 0.55) 16%,
    rgba(250, 246, 238, 0) 32%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-buttons { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* Wave dividers */
.wave-divider {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 200%;
  height: 100%;
}
.wave-track-back { animation: wave-flow 30s linear infinite; }
.wave-track-front { animation: wave-flow 17s linear infinite; }
.wave-back { opacity: 0.55; }
@keyframes wave-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-1200px); }
}
.wave-1 .wave-back, .wave-1 .wave-front { fill: var(--color-sand); }
.wave-2 .wave-back, .wave-2 .wave-front { fill: var(--color-cream); }
.wave-3 .wave-back, .wave-3 .wave-front { fill: var(--color-sand); }
.wave-4 .wave-back, .wave-4 .wave-front { fill: var(--color-green-dark); }
.wave-1 { background: var(--color-cream); }
.wave-2 { background: var(--color-sand); }
.wave-3 { background: var(--color-cream); }
.wave-4 { background: var(--color-sand); }
@media (prefers-reduced-motion: reduce) {
  .wave-track-back, .wave-track-front { animation: none; }
}

/* Sections */
.section { padding: 80px 0; }
.section-cream { background: var(--color-cream); }
.section-sand { background: var(--color-sand); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1fr auto; }
.split-image img {
  border-radius: 20px;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: center;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--color-text);
  max-width: 200px;
}
.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Angebote / Cards */
.angebote-section { position: relative; overflow: hidden; }
.angebote-section .container { position: relative; z-index: 1; }
.watermark-angebote {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { text-align: center; }

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

.card {
  background: #fff;
  border: 1px solid #ece4d0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-green-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}
.card p { color: var(--color-text-soft); font-size: 0.92rem; margin-bottom: 16px; }
.card-price {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px !important;
}

/* CTA */
.cta { position: relative; overflow: hidden; }
.cta-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e6dcc2;
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  max-width: 420px;
}
.note-icon { color: var(--color-gold); flex-shrink: 0; }
.cta-hint strong { color: var(--color-green-dark); }

/* Footer */
.site-footer { background: var(--color-green-dark); color: #d8d6c8; padding-top: 56px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .brand-name, .footer-brand .brand { color: #fff; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; }
.footer-col h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}
.footer-col a, .footer-col p {
  display: block;
  color: #d8d6c8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--color-gold-light); }
.fine-print { font-size: 0.78rem; color: #a9a793; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  font-size: 0.85rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.to-top {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Contact Modal (yellow popup) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 38, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

.modal-shadow-wrap {
  position: relative;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.94) translateY(14px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.modal-backdrop.is-open .modal-shadow-wrap {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-popup {
  position: relative;
  background: var(--color-yellow-popup);
  border: 1px solid #f0d999;
  border-radius: 20px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-shadow-wrap { transition: none; }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-green-dark);
  cursor: pointer;
}
.modal-sub { color: #5a5230; margin-bottom: 24px; font-size: 0.92rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green-dark);
}
.form-row input, .form-row textarea {
  border: 1px solid #e6cd8c;
  background: #fffdf6;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-green-dark);
}
.form-consent label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-soft);
  line-height: 1.5;
}
.form-consent label a { color: var(--color-gold); }

.form-submit { margin-top: 4px; width: 100%; justify-content: center; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success, .form-error {
  display: none;
  color: var(--color-green-dark);
  background: #fff;
  border: 1px solid #e6cd8c;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  margin: 0;
}
.form-error { color: #7a2e22; border-color: #e0b199; }
.form-success.is-visible, .form-error.is-visible { display: block; }

/* Floating contact button with selection menu (mobile only) */
.contact-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
@media (max-width: 960px) {
  .contact-fab { display: flex; }
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}
.fab-contact {
  background: var(--color-green-dark);
  border: 2px solid var(--color-gold-light);
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid #e9e1cd;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-fab.is-open .fab-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.fab-menu-item:hover { background: var(--color-sand); }
.fab-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
}
.fab-menu-icon-whatsapp { color: #25d366; }

@media (prefers-reduced-motion: reduce) {
  .fab, .fab-menu { transition: none; }
  .fab:hover { transform: none; }
}

/* Legal modal (Impressum / Datenschutz) */
.legal-modal-shadow-wrap { max-width: 760px; }
.legal-modal-popup {
  background: var(--color-cream);
  border-color: #e9e1cd;
}
.legal-modal-content h1 { font-size: 2rem; margin-bottom: 24px; }
.legal-modal-content h3 { margin-top: 28px; font-size: 1.15rem; }
.legal-modal-content .eyebrow { margin-bottom: 8px; }

/* Legal pages */
.legal-page { padding-top: 56px; padding-bottom: 80px; }
.legal-page h1 { margin-bottom: 32px; }
.legal-page h3 { margin-top: 32px; }
.legal-text { max-width: 720px; }
.legal-text a { color: var(--color-gold); }
.legal-note {
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--color-sand);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  max-width: 720px;
}

/* Scroll-in animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Subtle hover motion */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.split-image img { transition: transform 0.5s ease; }
.split-image:hover img { transform: scale(1.035); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .card, .split-image img { transition: none; }
  .card:hover { transform: none; }
  .split-image:hover img { transform: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero { min-height: 0; padding: 32px 0; clip-path: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image {
    position: static;
    width: auto;
    height: 280px;
    margin-top: 28px;
    border-radius: 20px;
    overflow: hidden;
  }
  .hero-image::after { background: none; }
  .hero-image img { height: 100%; border-radius: 20px; }
  .watermark { display: none; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .benefit-list { flex-direction: row; flex-wrap: wrap; }
  .cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .header-inner { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .wave-divider { height: 70px; }
}
