:root {
  --bg: #FAF7F0;
  --surface: #FFFFFF;
  --surface2: #F0EEE3;
  --accent: #6B7B5E;
  --secondary: #54624A;
  --terracotta: #C17A52;
  --text: #2E2B22;
  --muted: #837B68;
  --border: #E0DCC8;
  --footer: #2E2B22;
}

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

html,
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  padding-top: 80px;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

.logo {
  display: inline-flex;
  align-items: center;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 80px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 2px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  font-size: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--text);
  color: var(--text);
  padding: 16px 36px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-primary {
  background: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  color: #fff;
}

.btn-primary:hover {
  background: #a86a45;
  border-color: #a86a45;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--text);
  color: var(--text);
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid var(--bg);
  color: var(--bg);
}

.btn-outline-light:hover {
  background: var(--bg);
  color: var(--footer);
}

.hero,
.hero-page {
  position: relative;
  background-image:
    linear-gradient(rgba(40, 50, 40, 0.45), rgba(40, 50, 40, 0.45)),
    url("/images/hero-home.webp");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -80px;
  padding: 120px 24px 80px;
}

.hero-preise {
  background-image:
    linear-gradient(rgba(40, 50, 40, 0.45), rgba(40, 50, 40, 0.45)),
    url("/images/hero-preise.webp");
}

.hero-reseller {
  background-image:
    linear-gradient(rgba(40, 50, 40, 0.45), rgba(40, 50, 40, 0.45)),
    url("/images/hero-reseller.webp");
}

.hero-kontakt {
  background-image:
    linear-gradient(rgba(40, 50, 40, 0.45), rgba(40, 50, 40, 0.45)),
    url("/images/hero-kontakt.webp");
}

.hero-content {
  width: min(720px, 100%);
  color: #fff;
}

.hero-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-test-link {
  margin-top: 20px;
}

.hero-test-link a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

h1,
h2,
h3,
.section-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--text);
}

.section {
  padding: 120px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.bg-surface {
  background: var(--surface);
}

.bg-surface2 {
  background: var(--surface2);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.editorial-intro {
  background: var(--bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.intro-headline {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.2;
}

.intro-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.editorial-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ed-item {
  display: flex;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}

.ed-item:last-child {
  border-bottom: 1px solid var(--border);
}

.ed-num {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  min-width: 80px;
}

.ed-item h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.ed-item p {
  color: var(--muted);
  font-weight: 300;
}

.image-break {
  width: 100%;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: auto;
  display: block;
}

.editorial-pricing,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.editorial-price {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  background: transparent;
}

.editorial-price.featured {
  border-top-color: var(--accent);
}

.ed-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.ed-duration {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.ed-price {
  font-family: "Fraunces", serif;
  font-size: 42px;
  margin-bottom: 4px;
}

.ed-price .price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.ed-monthly {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.ed-features {
  list-style: none;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.ed-features li {
  padding: 4px 0;
}

.pull-quote-section {
  background: var(--surface2);
}

.pull-quote {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
  border: none;
}

.pull-quote-section cite {
  display: block;
  text-align: center;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-light .split-content {
  background: var(--bg);
}

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

.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.split-content h2 {
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 32px;
  line-height: 1.3;
}

.steps-list {
  list-style: none;
  margin-bottom: 32px;
}

.steps-list li {
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.steps-list strong {
  font-family: "Fraunces", serif;
  color: var(--accent);
  margin-right: 12px;
}

.reviews-editorial {
  max-width: 680px;
}

.editorial-review {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.editorial-review .review-text {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-meta {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.journal-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.journal-card,
.blog-card {
  background: transparent;
}

.journal-card img,
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.journal-cat,
.mx-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.journal-body h3,
.blog-card h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.final-cta-garden {
  background: var(--footer);
  color: var(--bg);
  text-align: center;
  padding: 120px 24px;
}

.final-cta-garden h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 48px);
  font-style: italic;
  color: var(--bg);
  margin-bottom: 32px;
  line-height: 1.3;
}

.site-footer {
  background: var(--footer);
  color: var(--bg);
  padding: 80px 24px 40px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-grid h4 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(250, 247, 240, 0.7);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(250, 247, 240, 0.85);
  font-size: 14px;
}

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

.brand-col p {
  color: rgba(250, 247, 240, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.copyright {
  max-width: 1100px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(250, 247, 240, 0.5);
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 43, 34, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.popup-overlay.active {
  display: flex;
}

.popup-modal-cream {
  background: var(--bg);
  border: 1px solid var(--accent);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  border-radius: 2px;
}

.popup-lead {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.popup-title {
  font-family: "Fraunces", serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.popup-old {
  color: var(--muted);
  text-decoration: line-through;
}

.popup-price {
  font-family: "Fraunces", serif;
  font-size: 32px;
  margin: 8px 0 16px;
}

.popup-countdown {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.popup-close {
  background: none;
  border: none;
  color: var(--muted);
  margin-top: 16px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.contact-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.reseller-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reseller-plan {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.panel-card {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-bottom: 40px;
}

.check-list {
  list-style: none;
  margin: 20px 0;
}

.check-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.rating-breakdown {
  max-width: 480px;
  margin: 0 auto 48px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
  font-size: 14px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent);
}

.stat-value {
  font-family: "Fraunces", serif;
  font-size: 48px;
  color: var(--accent);
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.blog-article h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 16px 0 24px;
}

.blog-article p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.blog-cta {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 40px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.legal-content h1 {
  margin-bottom: 24px;
}

.legal-content h2 {
  margin: 32px 0 12px;
  font-size: 22px;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .grid,
  .cards,
  [class*="grid"],
  [class*="cards"],
  [class*="bento"],
  [class*="row"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .grid > *,
  .cards > *,
  [class*="grid"] > *,
  [class*="row"] > *,
  [class*="bento"] > * {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    flex: none !important;
  }

  [class*="review"] > *,
  [class*="bewertung"] > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  h1 {
    font-size: 36px !important;
    line-height: 1.3 !important;
  }

  h2 {
    font-size: 28px !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  footer .brand-col,
  footer [class*="logo"] {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  footer .copyright {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  .mobile-cta-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #C17A52 !important;
    color: white !important;
    text-align: center !important;
    padding: 16px !important;
    z-index: 9999 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    display: block !important;
    text-decoration: none !important;
    font-family: "Inter", sans-serif !important;
  }

  body {
    padding-bottom: 60px !important;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .header-inner .btn-primary {
    display: none;
  }

  .section {
    padding: 80px 20px;
  }

  .intro-grid,
  .split-section,
  .editorial-pricing,
  .pricing-grid,
  .journal-grid,
  .blog-grid,
  .contact-grid,
  .reseller-plans {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .split-content {
    padding: 48px 24px;
  }

  .ed-item {
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none !important;
  }
}
