/* ============================================================
   home.css — Startseite v4: Warm-Editorial Authority-Hub
   Lädt NACH style.css (nutzt dessen Consent-/Form-Plumbing),
   überschreibt Basis-Look und definiert eigene e-* Komponenten.
   Schrift bleibt DM Sans (+ Shadows-Wordmark).
   ============================================================ */

:root {
  --paper: #FBF8F2;
  --cream: #F3EDE2;
  --cream-deep: #EDE5D7;
  --ink: #1C1B18;
  --ink-soft: #5E574C;
  --line: rgba(28, 27, 24, 0.11);
  --lime: #D0F03F;
  --lime-deep: #AFC927;
  --lime-text: #55620F; /* dunkles Lime, AA-tauglich als kleine Schrift auf hellem Grund */
  --photo-filter: saturate(0.88) brightness(1.04) contrast(0.97);
  --r-s: 12px;
  --r-m: 18px;
  --r-l: 26px;
  --r-pill: 999px;
  --shadow-s: 0 2px 8px rgba(60, 48, 24, 0.05), 0 8px 24px rgba(60, 48, 24, 0.05);
  --shadow-m: 0 6px 18px rgba(60, 48, 24, 0.07), 0 22px 50px rgba(60, 48, 24, 0.08);
  --shadow-l: 0 30px 70px rgba(60, 48, 24, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1200px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.002em;
}
.container { max-width: var(--maxw); }

/* Editorial eyebrow (small caps, Lime-Punkt) */
.e-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 1rem;
}
.e-eyebrow::before { content: ''; width: 1.6rem; height: 2px; background: var(--lime); }

/* Lime-Unterstrich-Akzent unter Headlines */
.e-rule { width: 56px; height: 3px; background: var(--lime); border-radius: 2px; margin: 1.25rem 0; }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  background: rgba(251, 248, 242, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.wordmark { font-family: var(--font-mark); font-size: 2.2rem; color: var(--ink); }
.nav { display: flex; gap: 1.9rem; align-items: center; font-size: 1.02rem; font-weight: 500; }
.nav a { color: var(--ink); padding: 0.3rem 0; position: relative; }
.nav a:not(.nav-contact)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--lime);
  transition: right 0.3s var(--ease);
}
.nav a:not(.nav-contact):hover::after { right: 0; }
.nav-contact {
  border: 1.5px solid var(--ink); border-radius: var(--r-pill); padding: 0.5rem 1.2rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav a.nav-contact:hover { background: var(--ink); color: var(--paper); }
.nav-contact::after { display: none; }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.e-hero { position: relative; overflow: hidden; padding: 0 0 clamp(2.5rem, 6vw, 5rem); }
.e-hero-inner { position: relative; z-index: 2; min-height: clamp(440px, 60vh, 620px); display: flex; flex-direction: column; justify-content: center; padding-top: clamp(1.8rem, 4vw, 3rem); }
@media (min-width: 900px) { .e-hero-text { max-width: 54%; } }

.e-hero-title {
  font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 700; line-height: 1.02; letter-spacing: -0.04em; margin: 0;
  overflow-wrap: break-word;
}
/* Mobile: langer Slogan-Begriff darf nicht über den Rand laufen */
@media (max-width: 560px) {
  .e-hero-title.slogan { font-size: clamp(2rem, 8.2vw, 2.6rem); }
}
.e-hero-title em { font-style: italic; font-weight: 500; }
.e-hero-title .x-lime { color: var(--lime); font-style: normal; font-weight: 700; display: inline-block; margin: 0 0.05em; }
.marker { background: linear-gradient(180deg, transparent 55%, var(--lime) 55%, var(--lime) 92%, transparent 92%); padding: 0 0.05em; display: inline; }

/* ---- Signature-Annotation: handgezeichnete Lime-Markierungen ---- */
.anno-u { position: relative; white-space: nowrap; font-style: normal; }
.anno-u-svg { position: absolute; left: -1%; bottom: -0.2em; width: 102%; height: 0.36em; overflow: visible; pointer-events: none; }
.anno-c { position: relative; display: inline-block; isolation: isolate; margin-left: 0.5em; }
.anno-c-svg { position: absolute; left: -17%; top: -38%; width: 134%; height: 178%; overflow: visible; pointer-events: none; z-index: -1; }

/* ---- Manifesto: grosser Editorial-Moment (bricht die Monotonie) ---- */
.e-manifest-sec { text-align: center; }
.e-manifest-sec .e-eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.e-manifest-h { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; margin: 0 auto; max-width: 22ch; }
.e-manifest-body { display: flex; flex-direction: column; gap: 1.2rem; max-width: 600px; margin: clamp(2rem, 3.5vw, 2.8rem) auto 0; text-align: center; }
.e-manifest-body p { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.62; margin: 0; }
.e-manifest-h .anno-u-svg { bottom: -0.16em; height: 0.3em; }

@media (min-width: 900px) { .e-hero-title.slogan { font-size: clamp(2.4rem, 4.4vw, 3.7rem); white-space: nowrap; } }
.e-hero-sub {
  font-size: clamp(1.12rem, 1.5vw, 1.32rem); color: var(--ink-soft); max-width: 44ch; margin: 0 0 1.8rem; line-height: 1.55;
}
.e-hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* Vollbild rechts, das nach außen in den Hintergrund ausläuft */
.e-hero-media { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; z-index: 0; }
.e-hero-media picture { display: block; width: 100%; height: 100%; }
.e-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; display: block; }
.e-hero.hero-flat .e-hero-inner { min-height: clamp(400px, 48vh, 520px); }
.hero-flat .e-hero-media img { object-position: 100% 50%; }
.e-hero-media img.hero-ueber-photo { object-position: 50% 26%; }
/* Filter NUR auf Stock-/Workspace-Bilder, niemals auf Fotos von Svenja */
.ph-stock { filter: var(--photo-filter); }
.e-hero-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, var(--paper) 0%, rgba(251,248,242,0.86) 16%, rgba(251,248,242,0) 50%),
    linear-gradient(to bottom, var(--paper) 0%, rgba(251,248,242,0) 16%, rgba(251,248,242,0) 76%, var(--paper) 100%);
}
.e-hero-pills { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.e-hero-pills .e-pill {
  position: absolute; display: inline-flex; align-items: center; gap: 0.55rem;
  background: #fff; color: var(--ink); border-radius: var(--r-pill);
  padding: 0.6rem 1rem 0.6rem 0.7rem; font-size: 0.92rem; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow-m); animation: floaty 5s ease-in-out infinite;
}
.e-hero-pills .e-pill .chk { display: inline-flex; align-items: center; justify-content: center; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 0.72rem; font-weight: 800; flex-shrink: 0; }
.e-hero-pills .e-pill:nth-child(1) { top: 15%; right: 7%; animation-delay: 0s; }
.e-hero-pills .e-pill:nth-child(2) { top: 41%; right: 7%; animation-delay: 1.3s; }
.e-hero-pills .e-pill:nth-child(3) { top: 67%; right: 7%; bottom: auto; animation-delay: 2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Text-only Hero (z. B. Blog) */
.e-hero.hero-plain { overflow: visible; }
.e-hero.hero-plain .e-hero-inner { min-height: auto; }
@media (min-width: 900px) { .e-hero.hero-plain .e-hero-text { max-width: 820px; } }

/* Hero mit freistehendem Objekt (z. B. Produkt-Mockup) */
.e-hero.hero-object { overflow: visible; }
.e-hero.hero-object .e-hero-inner { min-height: auto; display: block; }
.e-hero-object-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .e-hero-object-grid { grid-template-columns: 1.05fr 0.95fr; } }
.hero-object .e-hero-title { font-size: clamp(2.1rem, 3.8vw, 3.4rem); overflow-wrap: normal; word-break: keep-all; hyphens: none; }
.e-hero-object-media { display: flex; justify-content: center; align-items: center; padding: clamp(1.8rem, 4vw, 3.2rem); background: linear-gradient(155deg, var(--cream) 0%, var(--cream-deep) 100%); border-radius: var(--r-l); }
.e-hero-object-media img { width: 100%; max-width: 540px; height: auto; display: block; filter: drop-shadow(0 22px 40px rgba(28, 27, 24, 0.22)); }

@media (max-width: 899px) {
  .e-hero { padding-bottom: 0; }
  .e-hero-inner { min-height: auto; }
  .e-hero-text { max-width: 100%; min-width: 0; }
  .e-hero.hero-flat .e-hero-inner { min-height: auto; }
  .e-hero-media { position: relative; width: 100%; height: 320px; margin-top: 1.5rem; }
  .e-hero-media img { object-position: 50% 18%; }
  .e-hero-media img.hero-ueber-photo { object-position: 50% 12%; }
  .e-hero-media::after { background: linear-gradient(to bottom, var(--paper) 0%, rgba(251,248,242,0) 13%, rgba(251,248,242,0) 60%, var(--paper) 100%); }
  .e-hero-pills { display: none; }
  .e-hero.hero-object { padding-bottom: clamp(2.5rem, 6vw, 5rem); }
  .e-hero-object-media { margin-top: 1.5rem; }
  .e-hero-object-media img { max-width: 360px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; font-size: 1.02rem;
  border-radius: var(--r-pill); padding: 0.85rem 1.6rem; transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-s); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 2px 0 var(--lime-deep), var(--shadow-s); }
.btn-lime:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--ink); color: var(--paper); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--ink);
  background-image: linear-gradient(var(--ink), var(--ink)); background-size: 100% 1.5px; background-position: 0 100%; background-repeat: no-repeat;
  padding-bottom: 0.2rem; transition: gap 0.2s var(--ease);
}
.link-arrow:hover { gap: 0.85rem; }
.btn .arrow, .link-arrow .arrow { width: 1.3rem; height: 0.85rem; }
.btn .arrow path, .link-arrow .arrow path { stroke: currentColor; }

/* ------------------------------------------------------------
   Stats-Zeile
   ------------------------------------------------------------ */
.e-stats { padding: clamp(0.5rem, 2vw, 1.5rem) 0 clamp(3.5rem, 7.5vw, 6.5rem); }
.e-stats-lead { max-width: none; color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 1.6rem; }
.e-stats-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem 2.5rem; padding: clamp(1rem, 2vw, 1.5rem) 0 0;
}
@media (min-width: 700px) { .e-stats-grid { grid-template-columns: repeat(3, 1fr); } }
.e-stat { display: flex; flex-direction: column; gap: 0.25rem; border-top: 2px solid var(--lime); padding-top: 1.15rem; }
.e-stat-num { font-size: clamp(1.45rem, 2.5vw, 1.9rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--ink); white-space: nowrap; }
.e-stat-num span { color: var(--ink); }
.e-stat-lbl { font-size: 0.85rem; color: var(--ink-soft); }

/* ------------------------------------------------------------
   Sektionen allgemein
   ------------------------------------------------------------ */
.e-section { padding: clamp(4rem, 8.5vw, 7.5rem) 0; }
.e-about-prose { max-width: 760px; margin: 0 auto; }
.e-about-prose p { font-size: clamp(1.08rem, 1.5vw, 1.2rem); line-height: 1.65; color: var(--ink-soft); margin: 0 0 1.25rem; }
.e-about-prose p:last-child { margin-bottom: 0; }
.e-section-alt { background: var(--cream); }
.e-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; margin: 0; }

/* ------------------------------------------------------------
   Meine Haltung
   ------------------------------------------------------------ */
.e-stmt-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 860px) { .e-stmt-grid { grid-template-columns: 1.1fr 0.9fr; } }
.e-stmt-h { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin: 0; }
.e-stmt-h em { font-style: italic; font-weight: 500; }
.e-stmt-body p { color: var(--ink-soft); font-size: 1.12rem; line-height: 1.6; margin: 0 0 1rem; }
.e-stmt-body p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   Blog-Grid
   ------------------------------------------------------------ */
.e-blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.e-blog-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (min-width: 760px) { .e-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.e-article {
  display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  overflow: hidden; box-shadow: var(--shadow-s); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.e-section-alt .e-article { background: #fff; }
.e-article:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.e-article-top { height: 7px; background: var(--lime); }
.e-article-body { padding: clamp(1.3rem, 2.2vw, 1.7rem); display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.e-article-meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.e-article h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 0; }
.e-article p { color: var(--ink-soft); font-size: 1rem; line-height: 1.5; margin: 0; flex-grow: 1; }
.e-article .e-read { margin-top: 0.4rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.45rem; }
.e-article .e-read .arrow { width: 1.2rem; height: 0.8rem; }
.e-article .e-read .arrow path { stroke: currentColor; }

/* ------------------------------------------------------------
   Über mich
   ------------------------------------------------------------ */
.e-about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 860px) { .e-about-grid { grid-template-columns: 0.85fr 1.15fr; } }
.e-about-photo { margin: 0; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 4 / 4.6; }
.e-about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; display: block; }
.e-about-body p { color: var(--ink-soft); font-size: 1.12rem; line-height: 1.65; margin: 0 0 1rem; max-width: 52ch; }

/* ------------------------------------------------------------
   Zwei Wege (Lernen / Zusammenarbeiten)
   ------------------------------------------------------------ */
.e-paths { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 760px) { .e-paths { grid-template-columns: 1fr 1fr; } }
.e-path {
  display: flex; flex-direction: column; gap: 0.7rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-l); padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: var(--shadow-s);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.e-path:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.e-path.is-lime { background: linear-gradient(160deg, #F1F8CE 0%, #E4F1A6 100%); border-color: #D2E08A; }
.e-path.is-lime .e-path-ico { background: var(--ink); }
.e-path.is-lime .e-path-ico svg { stroke: var(--lime); }
.e-path-ico { width: 52px; height: 52px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; margin-bottom: 0.4rem; }
.e-path-ico svg { width: 26px; height: 26px; stroke: var(--ink); }
.e-path h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.e-path p { color: var(--ink-soft); margin: 0; flex-grow: 1; line-height: 1.55; }

/* ------------------------------------------------------------
   Newsletter / Guide
   ------------------------------------------------------------ */
.e-news {
  display: grid; grid-template-columns: 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
#guide.e-section { padding-top: clamp(2rem, 4vw, 3.25rem); padding-bottom: clamp(2rem, 4vw, 3.25rem); }
@media (min-width: 820px) { .e-news { grid-template-columns: 1.45fr 1fr; align-items: center; } }
.e-news-media { margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; }
.e-news-media img { width: 100%; max-width: none; height: auto; transform: rotate(-1.5deg); }
.e-news-body { padding: 0; }
.e-news-body h2 { font-size: clamp(1.8rem, 2.8vw, 2.3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin: 0.4rem 0 0.8rem; text-wrap: balance; }
.e-news-body > p { color: var(--ink-soft); margin: 0 0 1.6rem; max-width: 46ch; line-height: 1.55; }

/* Formular (überschreibt style.css fürs warme Theme) */
.freebie-form { margin-top: 0; }
.freebie-form-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.freebie-form input[type="email"] { flex: 1 1 220px; border: 1.5px solid rgba(28,27,24,0.25); border-radius: var(--r-pill); background: rgba(255,255,255,0.9); padding: 0.85rem 1.2rem; font-family: inherit; font-size: 1rem; }
.freebie-form button { background: var(--lime); color: var(--ink); border: none; border-radius: var(--r-pill); padding: 0.85rem 1.6rem; font-weight: 600; font-family: inherit; font-size: 1rem; cursor: pointer; box-shadow: 0 2px 0 var(--lime-deep); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.freebie-form button:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); box-shadow: 0 2px 0 var(--lime-deep), var(--shadow-m); }
/* Mobile: Formular sauber stapeln, Feld nicht stretchen */
@media (max-width: 600px) {
  .freebie-form-row { flex-direction: column; }
  .freebie-form input[type="email"], .freebie-form button { flex: 0 0 auto; width: 100%; }
}

/* Kontaktformular */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-intro h2 { margin: 0.4rem 0 0.8rem; }
.contact-intro > p { color: var(--ink-soft); line-height: 1.6; margin: 0; max-width: 40ch; }
.contact-alt { margin-top: 1.4rem !important; font-size: 0.95rem; }
.contact-alt a { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.cf-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 520px) { .cf-row { grid-template-columns: 1fr 1fr; } }
.contact-form > label, .cf-row label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); }
.contact-form input, .contact-form textarea { border: 1.5px solid rgba(28, 27, 24, 0.18); border-radius: var(--r-m); background: #fff; padding: 0.8rem 1rem; font-family: inherit; font-size: 1rem; color: var(--ink); width: 100%; box-sizing: border-box; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--lime-deep); box-shadow: 0 0 0 3px rgba(208, 240, 63, 0.25); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.cf-topics { border: none; margin: 0; padding: 0; min-width: 0; }
.cf-topics legend { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); padding: 0; margin-bottom: 0.6rem; }
.cf-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cf-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.cf-chip span { display: inline-block; padding: 0.5rem 0.95rem; border: 1.5px solid rgba(28, 27, 24, 0.18); border-radius: 999px; background: #fff; font-size: 0.9rem; font-weight: 500; color: var(--ink); cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.cf-chip span:hover { border-color: rgba(28, 27, 24, 0.4); }
.cf-chip input:checked + span { background: var(--lime); border-color: var(--ink); }
.cf-chip input:focus-visible + span { outline: none; box-shadow: 0 0 0 3px rgba(208, 240, 63, 0.35); }
.cf-consent { flex-direction: row !important; align-items: flex-start; gap: 0.6rem; font-weight: 400 !important; font-size: 0.85rem !important; color: var(--ink-soft) !important; letter-spacing: 0 !important; }
.cf-consent input { width: auto !important; margin-top: 0.15rem; }
.cf-consent a { text-decoration: underline; }
.contact-form .btn { align-self: flex-start; border: none; cursor: pointer; margin-top: 0.3rem; }
.hp { position: absolute; left: -9999px; }
.freebie-consent { display: flex; gap: 0.5rem; align-items: flex-start; margin-top: 0.9rem; font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }
.freebie-consent input { margin-top: 0.15rem; accent-color: var(--ink); }
.freebie-consent a { color: var(--ink); text-decoration: underline; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer { background: #1A1A18; color: var(--paper); padding: clamp(3rem, 6vw, 4.5rem) 0 1.8rem; margin-top: clamp(3.5rem, 7vw, 6rem); border-radius: 0; border-top: 2px solid var(--lime); }
.site-footer .container { display: block; background: none; border-radius: 0; padding-top: 0; padding-bottom: 0; }
.site-footer .foot-top { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(251,248,242,0.14); }
@media (min-width: 760px) { .site-footer .foot-top { grid-template-columns: 1.4fr 1fr; gap: 3rem; } }
.e-foot-brand .signature { font-family: var(--font-mark); font-size: 2rem; color: var(--paper); margin: 0 0 0.5rem; }
.e-foot-brand span { display: block; color: rgba(251,248,242,0.72); font-size: 0.97rem; line-height: 1.55; max-width: 40ch; }
.foot-li { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem; color: var(--paper); font-weight: 500; font-size: 0.95rem; }
.foot-li svg { color: var(--lime); flex: none; }
.foot-li:hover { color: var(--lime); }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.foot-col { display: flex; flex-direction: column; gap: 0.7rem; }
.foot-h { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(251,248,242,0.5); margin: 0 0 0.2rem; }
.foot-col a { color: rgba(251,248,242,0.85); font-size: 0.97rem; }
.foot-col a:hover { color: var(--lime); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 1.5rem; color: rgba(251,248,242,0.5); font-size: 0.88rem; }

/* Variante B: helles Footer */
.site-footer.is-light { background: var(--cream-deep); color: var(--ink); border-top: 1px solid rgba(28, 27, 24, 0.08); }
.site-footer.is-light .container, .site-footer.is-light .container a, .site-footer.is-light .container p { color: var(--ink-soft); }
.site-footer.is-light .e-foot-brand .signature { color: var(--ink); }
.site-footer.is-light .e-foot-brand span { color: var(--ink-soft); }
.site-footer.is-light .foot-li { color: var(--ink); }
.site-footer.is-light .foot-li svg { color: var(--lime-deep); }
.site-footer.is-light .foot-li:hover, .site-footer.is-light .foot-col a:hover { color: var(--lime-deep); }
.site-footer.is-light .foot-h { color: var(--ink-soft); }
.site-footer.is-light .foot-col a { color: var(--ink-soft); }
.site-footer.is-light .foot-top { border-bottom-color: rgba(28, 27, 24, 0.14); }
.site-footer.is-light .foot-bottom { color: var(--ink-soft); }

/* ------------------------------------------------------------
   Entrance
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .e-hero-text > *, .e-hero-media { opacity: 0; transform: translateY(16px); animation: erise 0.8s var(--ease) forwards; }
  .e-hero-text > *:nth-child(1) { animation-delay: 0.05s; }
  .e-hero-text > *:nth-child(2) { animation-delay: 0.13s; }
  .e-hero-text > *:nth-child(3) { animation-delay: 0.21s; }
  .e-hero-text > *:nth-child(4) { animation-delay: 0.29s; }
  .e-hero-media { animation-delay: 0.2s; }
  @keyframes erise { to { opacity: 1; transform: none; } }
}

/* ------------------------------------------------------------
   Mobile
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  .wordmark { font-size: 1.9rem; }
  .e-hero-media::before { display: none; }
  .e-blog-head { align-items: flex-start; }
}

/* Mobile-Nav (überschreibt style.css-Logik fürs warme Theme) */
.nav-toggle { display: none; border: 1.5px solid var(--ink); border-radius: 10px; }
.nav-toggle-bar { background: var(--ink); }
@media (max-width: 820px) {
  .site-header .container { position: relative; }
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem; gap: 0; box-shadow: var(--shadow-m); z-index: 49;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.95rem 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none !important; }
  .nav-contact { border: none; border-radius: 0; padding: 0.95rem 0; text-align: left; }
  .nav a.nav-contact:hover { background: transparent; color: var(--ink); }
}

/* ============================================================
   Blog-Übersicht + Artikel-Seiten
   ============================================================ */
.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-head .e-eyebrow { margin-bottom: 1rem; }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; margin: 0 0 1rem; }
.page-head p { font-size: 1.2rem; color: var(--ink-soft); max-width: 56ch; margin: 0; }

.blog-list { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
@media (min-width: 760px) { .blog-list { grid-template-columns: repeat(3, 1fr); } }
.blog-list .e-article.soon { opacity: 0.6; }
.blog-list .e-article.soon .e-read { color: var(--ink-soft); }

/* Artikel-Lesespalte */
.article-wrap { padding: clamp(1.5rem, 4vw, 3rem) 0 0; }
.article-col { max-width: 720px; margin: 0 auto; }
.article-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; margin-top: 1.5rem; }
@media (min-width: 980px) { .article-grid { grid-template-columns: minmax(0, 1fr) 280px; }
  .article-grid .article-col { margin: 0; max-width: 760px; } }
.article-side { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 980px) { .article-side { position: sticky; top: 96px; margin-top: clamp(3rem, 6vw, 6.5rem); } }
.toc { border-left: 2px solid var(--line); padding-left: 1.1rem; }
.toc-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; text-transform: none; color: var(--ink); margin: 0 0 0.8rem; }
#toc-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.toc-link { font-size: 0.95rem; line-height: 1.35; color: var(--ink-soft); transition: color 0.2s; }
.toc-link:hover, .toc-link.active { color: var(--ink); font-weight: 600; }
.side-guide { background: linear-gradient(160deg, #FBFCEF, #F3F6DA); border: 1px solid var(--lime); border-radius: var(--r-m); padding: 1.4rem; }
.side-guide-k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime-text); margin: 0 0 0.4rem; }
.side-guide h3 { font-size: 1.2rem; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
.side-guide p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; margin: 0 0 1rem; }
.side-guide .btn { padding: 0.6rem 1.1rem; font-size: 0.92rem; }
.article-hero-img { margin: 0.5rem 0 2.2rem; border-radius: var(--r-l); overflow: hidden; }
.article-hero-img img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 8.4; object-fit: cover; filter: var(--photo-filter); }
.article-back { font-size: 0.95rem; color: var(--ink-soft); display: inline-flex; gap: 0.4rem; align-items: center; margin-bottom: 2rem; }
.article-back:hover { color: var(--ink); }
.article-back .arrow { width: 1.1rem; height: 0.8rem; transform: rotate(180deg); }
.article-back .arrow path { stroke: currentColor; }
.article-meta-top { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1rem; }
.article-h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 700; letter-spacing: -0.038em; line-height: 1.08; margin: 0 0 1.2rem; }
.article-lead { font-size: clamp(1.18rem, 1.8vw, 1.35rem); color: var(--ink-soft); line-height: 1.55; margin: 0 0 1.6rem; }
.article-byline { display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 2.5rem; font-size: 0.95rem; }
.article-byline img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.article-byline .reading { color: var(--ink-soft); margin-left: auto; }

.prose p { font-size: 1.13rem; line-height: 1.72; margin: 0 0 1.3rem; }
.prose h2 { font-size: clamp(1.5rem, 2.7vw, 1.95rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; margin: 2.6rem 0 0.9rem; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 1.8rem 0 0.6rem; }
.prose ul { margin: 0 0 1.3rem; padding: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.8rem; margin-bottom: 0.6rem; font-size: 1.1rem; line-height: 1.55; }
.prose ul li::before { content: ''; position: absolute; left: 0.1rem; top: 0.58em; width: 0.65rem; height: 0.65rem; border-radius: 50%; background: var(--lime); border: 1px solid var(--lime-deep); }
.prose blockquote { position: relative; margin: clamp(2.4rem, 5vw, 3.6rem) 0; padding: clamp(1.4rem, 3vw, 2.1rem) 0; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: clamp(1.55rem, 3.1vw, 2.25rem); line-height: 1.3; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.prose blockquote::before { content: '\201C'; font-family: inherit; font-weight: 700; color: var(--lime-deep); font-size: 3em; line-height: 1; position: absolute; top: 0.34em; left: -0.02em; }
.prose blockquote { padding-left: 3.5rem; }
.prompt-box { background: #1C1B18; color: #F3EDE2; border-radius: var(--r-m); padding: 1.4rem 1.5rem; margin: 1.6rem 0; }
.prompt-box .lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 0.7rem; }
.prompt-box p { font-size: 1.02rem; line-height: 1.6; margin: 0; color: #F3EDE2; }
.article-cta { background: linear-gradient(135deg, #EAF6B6, #F1F8CF); border-radius: var(--r-l); padding: clamp(1.5rem, 3vw, 2.25rem); margin: 3rem 0; }
.article-cta h3 { font-size: 1.4rem; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
.article-cta p { margin: 0 0 1.2rem; }
.article-author { display: flex; gap: 1.2rem; align-items: flex-start; margin: 3rem 0 1rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--r-l); background: #fff; }
.article-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.article-author h4 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.article-author p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   Produkt- & Zusammenarbeit-Seiten (v4)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr; background: none; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
@media (min-width: 820px) { .feature:not(.solo) { grid-template-columns: 0.82fr 1.18fr; } }
.feature.solo { display: block; max-width: 760px; margin: 0 auto; }
.feature.solo .feature-body { padding: 0; }
.feature-media { display: flex; align-items: center; justify-content: center; padding: 0; background: none; border-radius: 0; }
.feature-media img { width: 100%; max-width: none; height: auto; border-radius: 0; box-shadow: none; transform: rotate(-1.5deg); filter: drop-shadow(0 16px 32px rgba(28, 27, 24, 0.16)); }
.feature-body { padding: clamp(1.75rem, 3.5vw, 3rem); display: flex; flex-direction: column; gap: 0.7rem; justify-content: center; }
.feature-body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.03em; line-height: 1.1; margin: 0; }
.feature-body > p { color: var(--ink-soft); margin: 0; line-height: 1.6; }

.price-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.price-row .price { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.price-row .price small { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.25rem; }
.price-row .price s { color: var(--ink-soft); font-weight: 600; font-size: 0.5em; margin-right: 0.2em; }

.module-grid2 { display: grid; grid-template-columns: 1fr; gap: clamp(0.9rem, 2vw, 1.4rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 760px) { .module-grid2 { grid-template-columns: 1fr 1fr; } }
.module2 { background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: clamp(1.3rem, 2.2vw, 1.7rem); }
.e-section-alt .module2 { background: var(--paper); }
.module2 .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime-deep); }
.module2 h3 { font-size: 1.15rem; margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.module2 p { color: var(--ink-soft); margin: 0; font-size: 1rem; line-height: 1.5; }

.steps3 { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 820px) { .steps3 { grid-template-columns: repeat(3, 1fr); } }
.step3 .num { width: 44px; height: 44px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 0.8rem; }
.step3 h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }
.step3 p { color: var(--ink-soft); margin: 0; line-height: 1.55; }
.step3 .out { font-size: 0.92rem; font-weight: 600; margin-top: 0.6rem; }
.step3 .out span { background: var(--lime); padding: 0.1em 0.4em; border-radius: 5px; }

.faq2 { max-width: 760px; margin: clamp(1.5rem, 3vw, 2rem) auto 0; }
.faq2 details { border-top: 1px solid var(--line); }
.faq2 details:last-child { border-bottom: 1px solid var(--line); }
.faq2 summary { cursor: pointer; padding: 1.1rem 0; font-weight: 600; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq2 summary::-webkit-details-marker { display: none; }
.faq2 summary::after { content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--ink-soft); }
.faq2 details[open] summary::after { content: '\2212'; }
.faq2 details p { margin: 0 0 1.1rem; color: var(--ink-soft); line-height: 1.6; }

.prereq { display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin: 1.5rem 0; padding: 0.8rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r-m); background: rgba(255,255,255,0.6); font-size: 1rem; }
.prereq b { background: var(--lime); padding: 0.15rem 0.55rem; border-radius: var(--r-pill); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }
.prereq-inline { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 1.1rem; }

/* DFY-Stufen */
.tier-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: clamp(1.75rem, 3vw, 2.75rem); align-items: stretch; }
@media (max-width: 760px) { .tier-grid { gap: 2.4rem; } }
@media (min-width: 860px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier { display: flex; flex-direction: column; gap: 0.5rem; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: clamp(1.7rem, 2.8vw, 2.4rem); box-shadow: var(--shadow-s); }
.tier.featured { border-color: var(--lime); box-shadow: var(--shadow-m); position: relative; background: linear-gradient(180deg, #FBFCEF 0%, #F3F6DA 100%); }
.tier.featured::before { content: 'Empfohlen'; position: absolute; top: -0.85rem; left: clamp(1.7rem, 2.8vw, 2.4rem); background: var(--lime); color: var(--ink); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: var(--r-pill); box-shadow: 0 2px 0 var(--lime-deep); }
.tier .t-name { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.tier .t-tag { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.4; }
.tier .t-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.7rem; }
.tier .t-price { font-size: clamp(2.2rem, 3.6vw, 2.8rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.tier .t-once { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
.tier .t-div { border: 0; border-top: 1px solid var(--line); margin: 1.1rem 0 0.4rem; }
.tier.featured .t-div { border-top-color: rgba(175, 201, 39, 0.4); }
.tier .t-cta { margin-top: auto; align-self: flex-start; }
.tier ul { list-style: none; padding: 0; margin: 0.5rem 0 1.5rem; display: grid; gap: 0.62rem; }
.tier ul li { position: relative; padding-left: 1.7rem; font-size: 1rem; line-height: 1.45; }
.tier ul li::before { content: ''; position: absolute; left: 0; top: 0.12em; width: 1.2rem; height: 1.2rem; border-radius: 50%; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='%231A1A1A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.75rem no-repeat; }
.placeholder-img { background: repeating-linear-gradient(45deg, #EDE5D7, #EDE5D7 12px, #F3EDE2 12px, #F3EDE2 24px); border: 1px dashed var(--ink-soft); border-radius: var(--r-l); display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; color: var(--ink-soft); font-size: 0.92rem; min-height: 200px; }

/* Fix: Kontakt-Button-Rahmen (Spezifität gegen .nav a) */
@media (min-width: 821px) { .nav a.nav-contact { padding: 0.55rem 1.35rem; } }
/* 2-Stufen-Variante der Tier-Leiste */
.tier-grid.two { grid-template-columns: 1fr; }
@media (min-width: 760px) { .tier-grid.two { grid-template-columns: 1fr 1fr; } }
.t-fine { margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.95rem; }
.t-fine a { text-decoration: underline; }

/* Prozess-Raster mit grossen Ziffern */
.proc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.2rem); margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 560px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .proc-grid { grid-template-columns: repeat(5, 1fr); gap: 1.6rem; } }
@media (min-width: 720px) { .proc-grid.proc-3 { grid-template-columns: repeat(3, 1fr); } }
.proc-step { border-top: 2px solid var(--lime); padding-top: 0.9rem; }
.proc-num { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.proc-step h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; margin: 0.45rem 0 0.4rem; }
.proc-step p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; margin: 0; }

/* Prompt-Box: stilvoller statt flachem Schwarz (warmer Ton + Lime-Akzent + Tiefe) */
.prompt-box {
  background: linear-gradient(135deg, rgba(46,40,33,0.96), rgba(30,26,21,0.96));
  color: #ECE5D8;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--lime);
  border-radius: var(--r-m);
  box-shadow: 0 10px 30px rgba(40,32,18,0.16), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 1.5rem 1.6rem;
}
.prompt-box .lbl { color: var(--lime); }
.prompt-box p { color: #ECE5D8; }

/* Prompt-Box final: helle, elegante Lime-Karte (kein dunkler Block) */
.prompt-box {
  background: linear-gradient(135deg, #FBFCEF, #F3F6DA);
  color: var(--ink);
  border: 1px solid rgba(175,201,39,0.35);
  border-left: 3px solid var(--lime);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-s);
  padding: 1.4rem 1.6rem;
}
.prompt-box .lbl { color: var(--lime-text); }
.prompt-box p { color: var(--ink); }

/* ============================================================
   Blog-Karten mit Bild + Featured-Artikel (hochwertiger)
   ============================================================ */
.e-article-img { aspect-ratio: 760 / 532; overflow: hidden; background: var(--cream-deep); }
.e-article-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); filter: var(--photo-filter); }
.e-article:hover .e-article-img img { transform: scale(1.05); }

.blog-featured {
  display: grid; grid-template-columns: 1fr; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-s);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.blog-featured:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }
@media (min-width: 760px) { .blog-featured { grid-template-columns: 1.12fr 1fr; } }
.blog-featured .feat-img { overflow: hidden; min-height: 240px; background: var(--cream-deep); }
.blog-featured .feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); filter: var(--photo-filter); }
.blog-featured:hover .feat-img img { transform: scale(1.04); }
.blog-featured .feat-body { padding: clamp(1.75rem, 3.5vw, 2.75rem); display: flex; flex-direction: column; justify-content: center; gap: 0.7rem; }
.blog-featured .feat-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.blog-featured .feat-body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.03em; line-height: 1.12; margin: 0; }
.blog-featured .feat-body > p { color: var(--ink-soft); margin: 0; line-height: 1.55; }
.blog-featured .e-read { margin-top: 0.3rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.45rem; }
.blog-featured .e-read .arrow { width: 1.2rem; height: 0.8rem; }
.blog-featured .e-read .arrow path { stroke: currentColor; }

.blog-list.cols2 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .blog-list.cols2 { grid-template-columns: repeat(2, 1fr); } }
