/* ===========================================================
   DÖRNBACHER · Website Styles
   Edition 01 · Mai 2026
   -----------------------------------------------------------
   Brand: Schwarz · Creme · Gold · Olivgrün
   Fonts: Lora (Serif, Headlines) + Poppins (Sans, Body)
   -----------------------------------------------------------
   Zum Editieren mit Claude Code:
   - Brand-Farben sind in :root (CSS Custom Properties)
   - Mobile-first responsive (min-width Media Queries)
   - Kommentare markieren jede Section
   =========================================================== */

/* ===========================================================
   01 · BRAND VARIABLES
   =========================================================== */
:root {
  /* Brand Colors */
  --schwarz: #1A1A1A;
  --schwarz-90: #2A2A2A;
  --creme: #F5F1EB;
  --creme-2: #FBF7F0;
  --creme-tief: #EBE4D7;
  --gold: #C6A96B;
  --gold-d: #A88947;
  --oliv: #3C5A4A;
  --oliv-hell: #5A7868;
  --rot: #8A4034;

  /* Lines & Borders */
  --linie: rgba(26, 26, 26, 0.18);
  --linie-c: rgba(245, 241, 235, 0.20);

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;

  /* Container */
  --container-narrow: 760px;
  --container: 1100px;
  --container-wide: 1300px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-mid: 0.3s ease;
  --t-slow: 0.6s ease;
}

/* ===========================================================
   02 · RESET & BASE
   =========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--schwarz);
  background: var(--creme);
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===========================================================
   03 · TYPOGRAFIE
   =========================================================== */
.serif {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
}
.italic {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-d);
}

.eyebrow.on-dark {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--schwarz);
}

.hero-title {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--creme);
}

.section-title {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-sub {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--schwarz-90);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
p.lead {
  font-family: "Lora", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.tagline {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  color: var(--gold);
}

.divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================================
   04 · LAYOUT · CONTAINERS
   =========================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  section { padding: var(--space-xl) 0; }
  .container, .container-narrow, .container-wide { padding: 0 2rem; }
}

/* ===========================================================
   05 · NAV / HEADER
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--creme);
  border-bottom: 1px solid var(--linie);
  transition: background var(--t-mid);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand img {
  height: 32px;
  width: auto;
}

.nav-brand-text {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--schwarz);
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--schwarz);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--t-fast);
}

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

.nav-menu a.active {
  color: var(--gold-d);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

/* Nav-CTA: höhere Spezifität (.nav-menu a.nav-cta), damit Textfarbe nicht von .nav-menu a überschrieben wird. */
.nav-menu a.nav-cta,
.nav-cta {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--schwarz);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav-menu a.nav-cta:hover,
.nav-cta:hover {
  background: var(--schwarz);
  color: var(--creme);
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--schwarz);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu (visible when active) */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--creme);
  border-bottom: 1px solid var(--linie);
  padding: 1.5rem;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  color: var(--schwarz);
  padding: 0.5rem 0;
}

@media (min-width: 880px) {
  .nav-menu { display: flex; }
  .nav-toggle, .nav-mobile { display: none !important; }
}

/* ===========================================================
   06 · HERO
   =========================================================== */
.hero {
  background-color: var(--schwarz);
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  color: var(--creme);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero { padding: 8rem 0 10rem; }
}

.hero-mono {
  width: 60px;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-tagline {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--creme);
  margin-top: 1.5rem;
  opacity: 0.95;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

/* ===========================================================
   07 · BUTTONS
   =========================================================== */
.btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--creme);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
}

.btn:hover {
  background: var(--creme);
  color: var(--schwarz);
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--schwarz);
}

.btn-primary:hover {
  background: var(--creme-2);
  border-color: var(--creme-2);
  color: var(--schwarz);
}

.btn-dark {
  background: var(--schwarz);
  border-color: var(--schwarz);
  color: var(--creme);
}

.btn-dark:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
  color: var(--creme);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--schwarz);
  color: var(--schwarz);
}

.btn-outline-dark:hover {
  background: var(--schwarz);
  color: var(--creme);
}

/* ===========================================================
   08 · SECTIONS · BACKGROUNDS
   =========================================================== */
.section-creme { background: var(--creme); color: var(--schwarz); }
.section-creme-tief { background: var(--creme-tief); color: var(--schwarz); }
.section-dark { background: var(--schwarz); color: var(--creme); }
.section-oliv { background: var(--oliv); color: var(--creme); }
.section-gold { background: var(--gold); color: var(--schwarz); }

.section-dark .section-title,
.section-oliv .section-title { color: var(--creme); }
.section-dark .section-sub,
.section-oliv .section-sub { color: var(--creme); opacity: 0.9; }

/* ===========================================================
   09 · GRIDS
   =========================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ===========================================================
   10 · PAKET CARDS
   =========================================================== */
.paket-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--linie);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid);
}

.paket-card:hover {
  transform: translateY(-4px);
}

.paket-card.featured {
  background: var(--schwarz);
  color: var(--creme);
  border-color: var(--schwarz);
  position: relative;
}

.paket-card.featured::before {
  content: "Empfehlung";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--schwarz);
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
}

.paket-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.paket-card.featured .paket-tag { color: var(--gold); }

.paket-title {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0.3rem 0 1rem;
}

.paket-meta {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 1rem;
}
.paket-card.featured .paket-meta { color: var(--gold); }

.paket-price {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.paket-price .ab {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  vertical-align: top;
  margin-right: 0.4rem;
  font-weight: 500;
  opacity: 0.7;
}

.paket-features {
  list-style: none;
  border-top: 1px solid var(--linie);
  padding-top: 1.25rem;
  margin-top: auto;
}

.paket-card.featured .paket-features {
  border-top-color: rgba(245, 241, 235, 0.2);
}

.paket-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

.paket-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-d);
  font-weight: 500;
}

.paket-card.featured .paket-features li::before { color: var(--gold); }

/* ===========================================================
   11 · STORY BLOCK
   =========================================================== */
.story-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 0;
}

.story-quote {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.3;
  color: var(--schwarz);
  margin-bottom: 1.5rem;
}

.section-dark .story-quote,
.section-oliv .story-quote { color: var(--creme); }

.story-attribution {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-d);
}

/* ===========================================================
   12 · FEATURE CARDS (3 Säulen)
   =========================================================== */
.feature-card {
  text-align: left;
}

.feature-num {
  font-family: "Lora", Georgia, serif;
  font-size: 0.85rem;
  color: var(--gold-d);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  border-top: 2px solid var(--gold);
  padding-top: 0.75rem;
}

.feature-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--schwarz);
  opacity: 0.85;
}

.section-dark .feature-text,
.section-oliv .feature-text { color: var(--creme); opacity: 0.85; }

/* ===========================================================
   13 · CTA BANNER
   =========================================================== */
.cta-banner {
  background: var(--schwarz);
  color: var(--creme);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner.gold {
  background: var(--gold);
  color: var(--schwarz);
}
.cta-banner.gold .cta-text { color: var(--schwarz); }
.cta-banner.gold .cta-sub { color: var(--schwarz); opacity: 0.8; }

.cta-text {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.cta-sub {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* ===========================================================
   14 · FORMS
   =========================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-grid .full { grid-column: 1 / -1; }
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--linie);
  background: var(--creme-2);
  color: var(--schwarz);
  transition: border-color var(--t-fast);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--gold-d);
}

/* ===========================================================
   15 · FAQ / ACCORDION
   =========================================================== */
.faq-cluster {
  margin-bottom: 2.5rem;
}

.faq-cluster-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-d);
  border-top: 2px solid var(--gold);
  padding-top: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--schwarz);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--t-fast);
}

.faq-question:hover {
  color: var(--gold-d);
}

.faq-question::after {
  content: "+";
  font-family: "Lora", serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-mid);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--schwarz-90);
}

/* ===========================================================
   16 · DOWNLOAD CARDS
   =========================================================== */
.download-card {
  background: var(--creme-2);
  border: 1px solid var(--linie);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: border-color var(--t-fast), transform var(--t-mid);
}

.download-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.download-card .label {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.download-card .title {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.download-card .desc {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: var(--schwarz-90);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex: 1;
}

.download-card .download-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-d);
  border-top: 1px solid var(--linie);
  padding-top: 1rem;
}

.download-card .download-link::after {
  content: " ↓";
}

/* ===========================================================
   17 · PRICE TABLE (Fahrtkosten etc.)
   =========================================================== */
.price-table {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.price-table .row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted var(--linie);
  padding: 0.75rem 0;
}

.price-table .row:last-child {
  border-bottom: 0;
}

.price-table .row .val {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  color: var(--gold-d);
  font-variant-numeric: tabular-nums;
}

/* ===========================================================
   18 · BOHNEN-KARTEN
   =========================================================== */
.bohne-card {
  background: rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--gold);
  padding: 2rem;
}

.bohne-card.dark {
  background: var(--schwarz);
  color: var(--creme);
  border-left-color: var(--gold);
}

.bohne-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.bohne-card.dark .bohne-eyebrow { color: var(--gold); }

.bohne-origin {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--schwarz-90);
  margin-bottom: 0.25rem;
}

.bohne-card.dark .bohne-origin { color: var(--creme); opacity: 0.8; }

.bohne-name {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.bohne-character {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.bohne-card.dark .bohne-character { color: var(--gold); }

.bohne-notes {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-d);
  margin-bottom: 1rem;
}

.bohne-card.dark .bohne-notes { color: var(--creme); }

/* ===========================================================
   19 · FOOTER
   =========================================================== */
.site-footer {
  background: var(--schwarz);
  color: var(--creme);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand img {
  width: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand .name {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.32em;
  margin-bottom: 0.5rem;
}

.footer-brand .desc {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand .tagline {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--creme);
  opacity: 0.85;
}

.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--creme);
  opacity: 0.8;
  transition: opacity var(--t-fast), color var(--t-fast);
}

.footer-col a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--linie-c);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--creme);
  opacity: 0.6;
}

/* ===========================================================
   20 · SUB-PAGE HEADER (für Sub-Pages außer Home)
   =========================================================== */
.page-header-block {
  background: var(--creme-tief);
  color: var(--schwarz);
  padding: 4rem 0 5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .page-header-block { padding: 6rem 0 7rem; }
}

.page-header-block .eyebrow {
  margin-bottom: 1rem;
}

.page-header-block h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}

.page-header-block .lead {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 600px;
  line-height: 1.5;
  color: var(--schwarz-90);
}

/* Bild-Variante: gleicher Look wie Home-Hero — Bild + 60% schwarzes Overlay */
.page-header-block.with-image {
  background-color: var(--schwarz);
  background-size: cover;
  background-position: center;
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.page-header-block.with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 0;
}
.page-header-block.with-image > .container {
  position: relative;
  z-index: 1;
}
.page-header-block.with-image .eyebrow {
  color: var(--gold);
}
.page-header-block.with-image h1 {
  color: var(--creme);
}
.page-header-block.with-image .lead {
  color: var(--creme);
  opacity: 0.92;
}

/* ===========================================================
   21 · CALLOUT BOXES
   =========================================================== */
.callout {
  background: var(--schwarz);
  color: var(--creme);
  padding: 2rem;
  margin: 3rem 0;
}

.callout h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.callout p {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--creme);
  line-height: 1.5;
  margin: 0;
}

.callout.light {
  background: var(--creme-2);
  color: var(--schwarz);
  border-left: 3px solid var(--gold);
}

.callout.light h3 { color: var(--gold-d); }
.callout.light p { color: var(--schwarz); }

/* ===========================================================
   22 · LONG-FORM CONTENT (Impressum, Datenschutz)
   =========================================================== */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.prose h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.prose p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.prose ul, .prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.prose strong { font-weight: 500; }

.prose .placeholder {
  background: rgba(198, 169, 107, 0.18);
  color: var(--gold-d);
  font-style: italic;
  padding: 0 4px;
}

/* ===========================================================
   23 · UTILITIES
   =========================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 3rem; }
.mt-xl { margin-top: 4rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 3rem; }

.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: initial; }
  .hide-desktop { display: none !important; }
}

/* ===========================================================
   24 · MOBILE EXTRA FIXES (≤ 600px / Touch)
   =========================================================== */

/* Kein horizontaler Scroll auf schmalen Screens */
html, body {
  overflow-x: hidden;
}

/* Touch-Delay iOS entfernen (300ms tap-delay) */
a, button, .btn, .faq-question, .nav-toggle, .download-card {
  touch-action: manipulation;
}

/* Nav-Brand-Text auf sehr schmalen Screens (≤ 380px) */
@media (max-width: 380px) {
  .nav-brand-text {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }
  .nav {
    padding: 1rem;
  }
}

/* Bohnen-Karten: Name-Schrift auf Mobile reduzieren */
@media (max-width: 600px) {
  .bohne-name {
    font-size: 1.85rem;
  }
  .hero {
    padding: 4rem 0 5rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

/* Formular Submit-Button: Full-Width auf Mobile */
@media (max-width: 600px) {
  .anfrage-form .text-center .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Paket-Cards: etwas kompakter auf Mobile */
@media (max-width: 480px) {
  .paket-card {
    padding: 1.5rem;
  }
  .paket-price {
    font-size: 2rem;
  }
  .download-card {
    padding: 1.25rem;
  }
}

/* Footer auf Mobile: besserer Abstand */
@media (max-width: 480px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-grid {
    gap: 2rem;
  }
}

/* CTA-Banner: Padding auf Mobile reduzieren */
@media (max-width: 480px) {
  .cta-banner {
    padding: 3rem 0;
  }
}

/* Callout-Box: Text-Größe auf Mobile */
@media (max-width: 480px) {
  .callout p {
    font-size: 1rem;
  }
}
