@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════
   WOHLSTANDSHELDIN.DE – Master Stylesheet
   Mut zu Geld. Freiheit als Ziel.
═══════════════════════════════════════════════════ */

:root {
  --rust:        #C04E2E;
  --rust-hover:  #A33D22;
  --rust-light:  #E07050;
  --rust-pale:   #F5E8E3;
  --night:       #1A1512;
  --night-mid:   #2E2219;
  --night-soft:  #4A3728;
  --sand:        #F5EFE4;
  --sand-dark:   #EBE3D5;
  --gold:        #D4A853;
  --gold-light:  #E8C978;
  --gold-pale:   #FBF4E4;
  --sage:        #7A9E87;
  --sage-light:  #A8C4B0;
  --sage-pale:   #EAF2EC;
  --white:       #FDFAF6;
  --mid:         #6B5A4E;
  --light-mid:   #9C8676;
  --border:      #E0D8CE;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 8px rgba(26,21,18,0.07);
  --shadow:      0 6px 24px rgba(26,21,18,0.10);
  --shadow-lg:   0 16px 56px rgba(26,21,18,0.14);
  --transition:  all 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--night);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* ── READING PROGRESS ───────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  z-index: 999; transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--night);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  letter-spacing: -0.01em; line-height: 1;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--rust);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-logo span { color: var(--rust-light); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  color: rgba(253,250,246,0.75);
  text-decoration: none; font-size: 0.875rem;
  font-weight: 500; padding: 0.45rem 0.85rem; border-radius: 6px;
  transition: var(--transition); letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-cta {
  background: var(--rust) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 0.45rem 1.1rem !important;
  border-radius: 30px !important;
}
.nav-cta:hover { background: var(--rust-hover) !important; transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background: var(--night);
  padding: 5.5rem 2rem 4.5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 15% 60%, rgba(192,78,46,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 30%, rgba(212,168,83,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(192,78,46,0.12) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; opacity: 0.025; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 120px;
}
.hero-content {
  position: relative; z-index: 1; max-width: 820px; margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(192,78,46,0.18);
  border: 1px solid rgba(192,78,46,0.4);
  color: var(--rust-light);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.4rem 1.1rem; border-radius: 30px;
  margin-bottom: 1.8rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.12;
  color: var(--white); margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--rust-light); font-style: italic; }
.hero h1 .line-gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(253,250,246,0.72);
  max-width: 580px; margin: 0 auto 2.5rem;
  line-height: 1.75; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.8rem; border-radius: 40px;
  text-decoration: none; border: 2px solid transparent;
  transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rust); color: var(--white);
  box-shadow: 0 4px 20px rgba(192,78,46,0.35);
}
.btn-primary:hover {
  background: var(--rust-hover); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,78,46,0.45);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-gold {
  background: var(--gold); color: var(--night);
  box-shadow: 0 4px 20px rgba(212,168,83,0.35);
}
.btn-gold:hover {
  background: var(--gold-light); color: var(--night);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--rust);
  border-color: var(--rust);
}
.btn-outline:hover { background: var(--rust); color: var(--white); }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 2rem; justify-content: center;
  align-items: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.84rem; color: var(--mid); font-weight: 500;
}
.trust-item .ti-icon { font-size: 1.05rem; }

/* ── CATEGORY PILLS ─────────────────────────── */
.cat-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  overflow-x: auto; white-space: nowrap;
}
.cat-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0.6rem; }
.pill {
  display: inline-block;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 30px; padding: 0.35rem 1rem;
  font-size: 0.82rem; font-weight: 600; color: var(--mid);
  text-decoration: none; transition: var(--transition);
}
.pill:hover, .pill.active {
  background: var(--night); color: var(--white); border-color: var(--night);
}
.pill.rust { background: var(--rust); color: var(--white); border-color: var(--rust); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: 4.5rem 2rem; }
.section-sand  { background: var(--sand); }
.section-white { background: var(--white); }
.section-night { background: var(--night); }
.section-rust  { background: var(--rust); }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 0.8rem;
}
.section-label.gold { color: var(--gold); }
.section-label.sage { color: var(--sage); }
.section-label.white { color: rgba(253,250,246,0.6); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  color: var(--night); margin-bottom: 0.8rem;
}
.section-night .section-title { color: var(--white); }
.section-rust .section-title  { color: var(--white); }
.section-desc {
  font-size: 1rem; color: var(--mid);
  max-width: 560px; margin: 0 auto;
  line-height: 1.75;
}
.section-night .section-desc { color: rgba(253,250,246,0.65); }
.section-rust .section-desc  { color: rgba(253,250,246,0.8); }

.inner { max-width: 1200px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   FEATURED ARTICLE
══════════════════════════════════════════════ */
.featured {
  max-width: 1100px; margin: 0 auto 1rem;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-visual {
  background: linear-gradient(145deg, var(--night-mid), var(--night));
  display: flex; align-items: center; justify-content: center;
  min-height: 380px; position: relative; overflow: hidden;
  font-size: 6rem;
}
.featured-visual::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 70%, rgba(192,78,46,0.35) 0%, transparent 60%);
}
.featured-body {
  background: var(--white);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem;
}
.featured-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 700; line-height: 1.25;
  color: var(--night); margin-bottom: 1rem;
}
.featured-body p { color: var(--mid); line-height: 1.75; margin-bottom: 1.8rem; font-size: 0.97rem; }

/* ══════════════════════════════════════════════
   CARD GRID
══════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-visual {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.card-body { padding: 1.4rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.6rem;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem; font-weight: 700; line-height: 1.35;
  color: var(--night); margin-bottom: 0.7rem; flex: 1;
}
.card-excerpt { font-size: 0.88rem; color: var(--mid); line-height: 1.6; margin-bottom: 1.2rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--rust); font-weight: 700; font-size: 0.88rem;
  text-decoration: none; transition: var(--transition);
}
.card-link:hover { gap: 0.6rem; color: var(--rust-hover); }
.card-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--rust); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

/* Card visual gradients by category */
.cv-mindset   { background: linear-gradient(145deg, #1A1512, #2E2219); }
.cv-basics    { background: linear-gradient(145deg, #1E3A2F, #2D5540); }
.cv-invest    { background: linear-gradient(145deg, #8B3318, #C04E2E); }
.cv-target    { background: linear-gradient(145deg, #3A2E1A, #6B5A4E); }
.cv-lifestyle { background: linear-gradient(145deg, #7A9E87, #4A7A5A); }
.cv-steps     { background: linear-gradient(145deg, #D4A853, #A07A30); }

/* ══════════════════════════════════════════════
   CTA BOXES
══════════════════════════════════════════════ */
.cta-inline {
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  display: flex; gap: 1.5rem; align-items: center;
}
.cta-inline-icon { font-size: 2.8rem; flex-shrink: 0; }
.cta-inline-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--night); margin-bottom: 0.4rem;
}
.cta-inline-text p { font-size: 0.92rem; color: var(--mid); margin-bottom: 1rem; line-height: 1.6; }

.cta-section {
  background: var(--night);
  padding: 5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(192,78,46,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(212,168,83,0.12) 0%, transparent 55%);
}
.cta-section-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.2;
}
.cta-section h2 em { color: var(--rust-light); font-style: italic; }
.cta-section p { color: rgba(253,250,246,0.72); font-size: 1rem; line-height: 1.75; margin-bottom: 2.2rem; }
.cta-checklist { list-style: none; text-align: left; max-width: 400px; margin: 0 auto 2.2rem; }
.cta-checklist li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  color: rgba(253,250,246,0.85); font-size: 0.92rem;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cta-checklist li:last-child { border-bottom: none; }
.cta-check { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   DOWNLOAD FORM
══════════════════════════════════════════════ */
.download-section {
  background: var(--sand);
  padding: 5rem 2rem;
}
.download-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3.5rem;
  max-width: 620px; margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
}
.download-icon { font-size: 3.5rem; margin-bottom: 1.2rem; }
.download-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--night); margin-bottom: 0.6rem;
}
.download-card p { color: var(--mid); font-size: 0.97rem; line-height: 1.7; margin-bottom: 1.8rem; }
.download-features { text-align: left; margin-bottom: 2rem; }
.download-feat {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--night-soft);
}
.download-feat:last-child { border-bottom: none; }
.df-icon { color: var(--sage); font-size: 1.1rem; }
.download-form { display: flex; flex-direction: column; gap: 0.8rem; max-width: 380px; margin: 0 auto; }
.form-input {
  width: 100%; padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--night); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--rust); box-shadow: 0 0 0 3px rgba(192,78,46,0.12); }
.form-note { font-size: 0.78rem; color: var(--light-mid); margin-top: 0.5rem; }

/* ══════════════════════════════════════════════
   NEWSLETTER STRIP
══════════════════════════════════════════════ */
.newsletter {
  background: var(--gold);
  padding: 3rem 2rem; text-align: center;
}
.newsletter h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--night); margin-bottom: 0.5rem;
}
.newsletter p { color: var(--night-soft); font-size: 0.95rem; margin-bottom: 1.5rem; opacity: 0.85; }
.nl-form { display: flex; gap: 0.6rem; justify-content: center; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.nl-input {
  flex: 1; min-width: 200px; padding: 0.75rem 1.2rem;
  border: none; border-radius: 30px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; color: var(--night);
}
.nl-btn {
  background: var(--night); color: var(--white);
  border: none; padding: 0.75rem 1.5rem;
  border-radius: 30px; font-weight: 700; font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: var(--transition);
}
.nl-btn:hover { background: var(--night-mid); }

/* ══════════════════════════════════════════════
   STEP BOXES (Schritt-für-Schritt Artikel)
══════════════════════════════════════════════ */
.step-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}
.step-box-header {
  background: var(--night); color: var(--white);
  padding: 1rem 1.8rem;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
}
.step {
  display: flex; gap: 1.3rem; align-items: flex-start;
  padding: 1.4rem 1.8rem; border-bottom: 1px solid var(--border);
  background: var(--white); transition: var(--transition);
}
.step:last-child { border-bottom: none; }
.step:hover { background: var(--sand); }
.step-num {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--rust); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; flex-shrink: 0; margin-top: 0.15rem;
}
.step-content h4 { font-weight: 700; color: var(--night); margin-bottom: 0.3rem; }
.step-content p { font-size: 0.93rem; color: var(--mid); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════
   INFO / HIGHLIGHT BOXES
══════════════════════════════════════════════ */
.info-box {
  background: var(--sage-pale); border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.6rem; margin: 2rem 0;
}
.info-box p { font-size: 0.95rem; margin: 0; }
.info-box strong { color: var(--sage); }

.highlight-box {
  background: var(--gold-pale); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 1.4rem 1.8rem; margin: 2rem 0;
}
.highlight-box p { font-size: 0.95rem; margin: 0; }

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.25rem;
  color: var(--night); line-height: 1.6;
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.8rem;
  margin: 2.5rem 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ══════════════════════════════════════════════
   ARTICLE LAYOUT
══════════════════════════════════════════════ */
.article-header {
  background: var(--night);
  padding: 4rem 2rem 0;
}
.article-header-inner { max-width: 820px; margin: 0 auto; }
.article-cat {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  line-height: 1.18; color: var(--white); margin-bottom: 1.2rem;
}
.article-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.84rem; color: rgba(253,250,246,0.6);
  padding-bottom: 2.5rem;
}
.article-meta span { display: flex; align-items: center; gap: 0.35rem; }
.article-hero-img {
  max-width: 820px; margin: 0 auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
}
.article-hero-placeholder {
  height: 340px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.article-body {
  max-width: 820px; margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
  background: var(--white);
}
.back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--rust); font-weight: 600; font-size: 0.88rem;
  text-decoration: none; margin-bottom: 2.5rem;
  transition: var(--transition);
}
.back-link:hover { gap: 0.6rem; }
.article-body p {
  font-size: 1.06rem; line-height: 1.85;
  margin-bottom: 1.5rem; color: #2A2018;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--night); margin: 3rem 0 1rem;
  padding-top: 0.5rem; border-top: 2px solid var(--gold);
}
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--night); margin: 2rem 0 0.7rem;
}
.article-body ul, .article-body ol {
  margin: 1.2rem 0 1.5rem 1.5rem; line-height: 1.85;
}
.article-body li { margin-bottom: 0.45rem; font-size: 1.03rem; }
.article-body strong { color: var(--night); font-weight: 700; }
.article-body a { color: var(--rust); font-weight: 500; }
.article-body a:hover { color: var(--rust-hover); }
.article-img-placeholder {
  height: 280px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; margin: 2.5rem 0;
}
.tag-list { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2.5rem 0 0; }
.tag {
  background: var(--sand); border: 1px solid var(--border);
  border-radius: 30px; padding: 0.28rem 0.9rem;
  font-size: 0.78rem; font-weight: 600; color: var(--mid);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--night);
  color: rgba(253,250,246,0.7);
  padding: 4rem 2rem 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-brand-name span { color: var(--rust-light); }
.footer-brand-icon {
  width: 30px; height: 30px; background: var(--rust);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-col h4 {
  color: var(--white); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: rgba(253,250,246,0.62); text-decoration: none;
  font-size: 0.88rem; transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.8rem; color: rgba(253,250,246,0.4);
}
.footer-bottom a { color: rgba(253,250,246,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .featured { grid-template-columns: 1fr; }
  .featured-visual { min-height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .section { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inline { flex-direction: column; text-align: center; }
  .download-card { padding: 2rem 1.5rem; }
  .article-hero-placeholder { height: 220px; font-size: 3rem; }
  .article-body h2 { font-size: 1.45rem; }
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer {
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light), var(--gold-pale));
  background-size: 200% auto;
  animation: shimmer 2.5s linear infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
