/* ===== Dein Shopglück – Brand Styles ===== */
:root {
  --terra: #C1694F;
  --terra-dark: #A5543D;
  --terra-light: #E8CFC4;
  --cream: #F7F1EA;
  --ink: #3E3833;
  --sage: #8A9A8B;
  --grey: #8C8479;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.6em; }
h3 { font-size: 1.35rem; margin-bottom: 0.4em; }
h1 em, h2 em { font-style: italic; color: var(--terra); }

a { color: var(--terra-dark); }
img { max-width: 100%; display: block; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ---- Header ---- */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--terra-light);
  position: sticky; top: 0; z-index: 10;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; flex-wrap: wrap; gap: 12px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--ink);
  text-decoration: none; letter-spacing: 0.02em;
}
.logo span { color: var(--terra); }
nav ul { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
nav a {
  text-decoration: none; color: var(--ink);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav a:hover, nav a.active { color: var(--terra); }

/* ---- Hero ---- */
.hero { background: var(--cream); padding: 90px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 14px;
}
.hero p.lead { font-size: 1.15rem; margin: 22px 0 32px; max-width: 46ch; }

/* Audit-card motif (signature element) */
.audit-card {
  background: var(--white); border: 1px solid var(--terra-light);
  border-radius: 14px; padding: 28px; box-shadow: 0 14px 40px rgba(62,56,51,0.09);
  transform: rotate(1.5deg);
}
.audit-card h3 { font-size: 1.05rem; font-family: 'Raleway', sans-serif; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px;}
.audit-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--terra-light); font-size: 0.95rem; }
.audit-row:last-of-type { border-bottom: none; }
.tick {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 0.8rem; color: var(--white); font-weight: 700;
}
.tick.ok { background: var(--sage); }
.tick.warn { background: var(--terra); }
.tick.open { background: var(--white); border: 2px solid var(--terra-light); }
.score-line { margin-top: 18px; font-weight: 600; color: var(--terra-dark); font-size: 0.95rem; }
.score-bar { height: 8px; border-radius: 99px; background: var(--terra-light); margin-top: 8px; overflow: hidden; }
.score-bar i { display: block; height: 100%; width: 46%; background: var(--terra); border-radius: 99px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 99px;
  background: var(--terra); color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--terra-dark); }
.btn.ghost { background: transparent; color: var(--terra-dark); border: 2px solid var(--terra); }
.btn.ghost:hover { background: var(--terra-light); }

/* ---- Sections ---- */
section { padding: 80px 0; }
section.tint { background: var(--cream); }
.center { text-align: center; }
.sub { color: var(--grey); max-width: 60ch; }
.center .sub { margin: 0 auto 40px; }

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.card {
  background: var(--white); border: 1px solid var(--terra-light);
  border-radius: 14px; padding: 30px;
}
.tint .card { box-shadow: 0 10px 30px rgba(62,56,51,0.06); border: none; }
.card .step {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 2.2rem; color: var(--terra); line-height: 1;
}

/* checklist-style lists */
ul.checks { list-style: none; margin: 14px 0; }
ul.checks li { padding-left: 32px; position: relative; margin-bottom: 10px; }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 6px; background: var(--sage);
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  display: grid; place-items: center;
}

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--terra-light); border-radius: 16px;
  padding: 34px 30px; display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--terra); position: relative; }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: var(--white); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 99px; white-space: nowrap;
}
.price {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700;
  color: var(--ink); margin: 8px 0 2px;
}
.price small { font-size: 1rem; font-family: 'Raleway', sans-serif; font-weight: 500; color: var(--grey); }
.price-card .btn { margin-top: auto; text-align: center; }
.price-card ul.checks { flex-grow: 0; }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.portrait {
  aspect-ratio: 4/5; border-radius: 16px; background: var(--terra-light);
  display: grid; place-items: center; color: var(--terra-dark);
  font-size: 0.9rem; text-align: center; padding: 20px;
  border: 1px dashed var(--terra);
}

/* ---- Quote / trust ---- */
blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.5rem; line-height: 1.5; color: var(--ink);
  border-left: 3px solid var(--terra); padding-left: 24px; margin: 30px 0;
}

/* ---- Contact ---- */
.contact-box {
  background: var(--white); border: 1px solid var(--terra-light); border-radius: 16px;
  padding: 40px; max-width: 620px; margin: 40px auto 0;
}
.contact-line { display: flex; gap: 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--terra-light); }
.contact-line:last-child { border-bottom: none; }
.contact-line strong { min-width: 110px; display: inline-block; }

/* ---- CTA band ---- */
.cta-band { background: var(--terra); color: var(--white); text-align: center; padding: 70px 0; }
.cta-band h2 { color: var(--white); }
.cta-band .btn { background: var(--white); color: var(--terra-dark); margin-top: 18px; }
.cta-band .btn:hover { background: var(--cream); }

/* ---- Footer ---- */
footer { background: var(--ink); color: var(--cream); padding: 40px 0; font-size: 0.9rem; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer a { color: var(--terra-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ---- Legal pages ---- */
.legal { max-width: 760px; }
.legal h2 { margin-top: 1.6em; }
.placeholder { background: var(--terra-light); padding: 2px 8px; border-radius: 6px; font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .cols-3, .price-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  section { padding: 60px 0; }
  .audit-card { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.blog-card {
  background: var(--white); border: 1px solid var(--terra-light); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column; text-align: left;
}
.blog-card .thumb {
  aspect-ratio: 16/9; background: var(--terra-light);
  display: grid; place-items: center; color: var(--terra-dark);
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem;
}
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.blog-card h3 a { color: var(--ink); text-decoration: none; }
.blog-card h3 a:hover { color: var(--terra); }
.blog-card .more { margin-top: auto; padding-top: 14px; font-weight: 600; }

/* Artikel */
.article { max-width: 720px; margin: 0 auto; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 10px; }
.article h2 { margin-top: 1.8em; }
.article p { margin-bottom: 1em; }
.article .blog-meta { margin-bottom: 18px; }
.article-cta {
  background: var(--cream); border-left: 3px solid var(--terra);
  padding: 24px 28px; border-radius: 0 12px 12px 0; margin: 40px 0;
}
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
