/* ==========================================================================
   MHVH – Ava Sterling | Stylesheet
   Helles, literarisches Design mit grünem Akzent (am Original orientiert)
   Variablennamen bleiben (--gold = grüner Akzent), damit Inline-Styles passen.
   ========================================================================== */

/* ---------- Lokale Schriften (DSGVO: kein Google-Fonts-CDN) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('fonts/cormorant.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 400 700; font-display: swap;
  src: url('fonts/cormorant-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('fonts/inter.woff2') format('woff2');
}

:root {
  --bg:        #ffffff;
  --bg-2:      #f7f8f7;   /* sehr helles Grau – fast weiß */
  --bg-3:      #ffffff;   /* Karten */
  --ink:       #1f2723;
  --ink-soft:  #5c655f;
  --gold:      #2f6b50;   /* Akzent = Waldgrün */
  --gold-soft: #357a5b;
  --line:      rgba(20, 30, 25, 0.12);
  --shadow:    0 16px 44px rgba(20, 45, 32, 0.12);
  --serif:     "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw:      1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-soft); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0 0 .4em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: .5px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-2); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all .25s ease;
}
.btn--primary { background: var(--gold); color: #ffffff; }
.btn--primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: #fff; }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: rgba(47, 107, 80, .08); color: var(--gold-soft); }
.btn--block { width: 100%; text-align: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 2px; color: var(--ink); display: inline-flex; align-items: center; }
.brand span { color: var(--gold); }
.brand-logo { height: 52px; width: auto; display: block; }
.footer .brand-logo { height: 72px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-size: .92rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.cart-link { color: var(--gold); font-weight: 600; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center;
  background:
    radial-gradient(1100px 560px at 80% 8%, rgba(47,107,80,.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f5 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 70px 0; }
.hero h1 { margin-top: .2em; }
.hero .author { font-family: var(--serif); font-size: 1.55rem; color: var(--gold); margin: 6px 0 22px; font-weight: 600; }
.hero blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.35rem;
  color: var(--ink); border-left: 3px solid var(--gold); padding-left: 18px; margin: 0 0 30px;
}

/* Buchcover */
.book-cover {
  aspect-ratio: 2 / 3;
  max-width: 340px; margin-left: auto;
  border-radius: 6px;
  background: linear-gradient(150deg, #f0f1ef, #e2e4e1);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px; position: relative;
  background-size: cover; background-position: center;
}
.book-cover .bc-title { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); }
.book-cover .bc-sub { letter-spacing: 3px; text-transform: uppercase; font-size: .7rem; color: var(--ink-soft); margin-top: 8px; }
.book-cover.has-img { background-color: transparent; border: none; }
.book-cover.has-img .bc-title, .book-cover.has-img .bc-sub { display: none; }

/* ---------- Feature pills ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 12px; }
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 24px;
  box-shadow: 0 6px 18px rgba(20,45,32,.05);
}
.feature h3 { color: var(--gold); font-size: 1.2rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---------- Product / Pricing cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px;
  padding: 34px 28px; display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(20,45,32,.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(20,45,32,.12); border-color: rgba(47,107,80,.4); }
.card--featured { border-color: var(--gold); box-shadow: 0 14px 40px rgba(47,107,80,.18); }
.card .tag { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.card h3 { margin-bottom: 6px; }
.card .desc { color: var(--ink-soft); font-size: .96rem; }
.card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.card ul li { padding: 7px 0 7px 26px; position: relative; color: var(--ink-soft); font-size: .95rem; border-top: 1px solid var(--line); }
.card ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.card .price { font-family: var(--serif); font-size: 2.4rem; color: var(--ink); margin: 22px 0 4px; }
.card .price small { font-size: .9rem; color: var(--ink-soft); font-family: var(--sans); }
.card .spacer { flex: 1; }
.card .note { font-size: .82rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 30px; }
.stars { color: #e6b84a; font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 12px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink); }
.quote .who { font-style: normal; font-family: var(--sans); font-size: .9rem; color: var(--ink-soft); margin-top: 14px; }
.quote .who strong { color: var(--ink); display: block; }
.verified { font-size: .75rem; color: var(--gold); letter-spacing: 1px; }

/* ---------- Author / Verlag ---------- */
.author-photo {
  aspect-ratio: 4/5; border-radius: 10px; border: 1px solid var(--line);
  background: linear-gradient(160deg, #f0f1ef, #e2e4e1);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
  font-family: var(--serif); font-size: 1.1rem; text-align: center; padding: 24px;
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.author-photo.has-img span { display: none; }

/* ---------- Mini product grid ---------- */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mini {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 8px 24px rgba(20,45,32,.06);
}
.mini .thumb {
  aspect-ratio: 1/1; background: linear-gradient(160deg, #f0f1ef, #e2e4e1);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
  font-family: var(--serif); font-size: 1rem; text-align: center; padding: 16px;
  background-size: cover; background-position: center;
}
.mini .body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.mini .body h4 { font-family: var(--serif); font-size: 1.1rem; margin: 0 0 6px; color: var(--ink); }
.mini .body .p { color: var(--gold); font-weight: 600; }
.mini .body .spacer { flex: 1; }
.mini .body .unavail { color: var(--ink-soft); font-style: italic; font-size: .9rem; }

/* ---------- Sponsoring ---------- */
.sponsor-list { list-style: none; padding: 0; margin: 18px 0 0; }
.sponsor-list li { padding: 10px 0 10px 28px; position: relative; color: var(--ink-soft); }
.sponsor-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Contact / Form ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.contact-info p { color: var(--ink-soft); }
.contact-info .big { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
form .field { margin-bottom: 16px; }
form label { display: block; font-size: .85rem; color: var(--ink-soft); margin-bottom: 6px; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  color: var(--ink); padding: 12px 14px; font-family: var(--sans); font-size: .95rem;
}
input:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(47,107,80,.12); }
textarea { min-height: 120px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); margin-bottom: 12px; }
.check input { width: auto; margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(47,107,80,.12), transparent 60%),
    var(--bg-2);
  text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

/* ---------- Footer (hell) ---------- */
.footer { background: #f7f8f7; padding: 56px 0 28px; color: var(--ink); border-top: 1px solid var(--line); }
.footer h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; color: var(--gold); margin-bottom: 16px; }
.footer .muted { color: var(--ink-soft); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: var(--ink-soft); font-size: .92rem; }
.footer ul li a:hover { color: var(--gold); }
.footer .brand { display: block; margin-bottom: 12px; color: var(--ink); }
.footer .brand span { color: var(--gold); }
.footer .legal {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--ink-soft);
}
.footer .legal a { color: var(--ink-soft); }
.footer .legal a:hover { color: var(--gold); }
.footer .legal nav { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero .book-cover { max-width: 280px; margin: 0 auto; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links, .nav-cta .cart-link { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px 24px 18px;
  }
  .nav-links.open li { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .section { padding: 64px 0; }
}
@media (max-width: 540px) {
  .features { grid-template-columns: 1fr; }
  .grid-products { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; }
}

/* Footer-Grid (Basis) */
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }

/* ---------- Buchcover & Team als echte Bilder ---------- */
.hero-cover { display: flex; justify-content: center; }
.hero-cover img {
  width: 100%; max-width: 430px; height: auto;
  border-radius: 4px; box-shadow: 0 28px 64px rgba(20, 45, 32, 0.20);
}
/* freigestelltes 3D-Buch (bringt eigenen Schatten mit) */
.book3d { display: flex; justify-content: center; }
.book3d img { width: 100%; max-width: 440px; height: auto; }
.team-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ---------- Mobiler Sticky-CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
    text-align: center; background: var(--gold); color: #fff;
    font-family: var(--sans); font-weight: 600; font-size: .98rem;
    padding: 15px 18px; border-radius: 6px; border: 1px solid var(--gold);
    box-shadow: 0 10px 28px rgba(20, 45, 32, 0.28);
  }
  .sticky-cta:hover { color: #fff; }
  /* Platz schaffen, damit der Button nichts verdeckt */
  body { padding-bottom: 76px; }
}

/* ---------- Die Reihe (Trilogie, Zweispalter) ---------- */
.reihe-grid { align-items: center; }
.reihe-visual { display: flex; justify-content: center; }
.reihe-visual img { width: 100%; max-width: 400px; height: auto;
  filter: drop-shadow(0 22px 40px rgba(20,45,32,.16)); }
.reihe-list { list-style: none; padding: 0; margin: 24px 0 20px; }
.reihe-list li { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.reihe-list li:last-of-type { border-bottom: 1px solid var(--line); }
.reihe-list .bandno { font-family: var(--serif); font-size: 1.7rem; line-height: 1; color: var(--gold); min-width: 30px; }
.reihe-list strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.reihe-list .status { display: inline-block; font-size: .74rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-top: 3px; }
.reihe-list p { margin: .45em 0 0; color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 900px) {
  .reihe-visual { order: -1; margin-bottom: 8px; }
  .reihe-visual img { max-width: 300px; }
}
