/* =============================================================================
   Laksh — Blog stylesheet (premium editorial pass).

   Design language:
     - Playfair Display headings (like the landing) — larger, more air
     - Body 18px / line-height 1.85 for effortless long-form reading
     - Max reading column 720px, ~66 characters/line
     - Drop cap on the first paragraph, elegant pull-quotes
     - Uniform Lucide 1.5-stroke gold icons everywhere
     - Featured article on the /blog index (magazine-style)
   ============================================================================= */

:root {
  --bg: #0A0A0A;
  --bg-soft: #131313;
  --bg-elev: #171310;
  --gold: #C9A96E;
  --gold-light: #D4AF37;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --platinum: #E8E5DF;
  --ivory: #F1EBDD;
  --muted: #B8B4AD;
  --dim: #7D7770;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.28);
  --filet-gold: linear-gradient(90deg, transparent, rgba(212,175,55,0.55), transparent);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--platinum);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Lucide icons ----------
   Belt-and-suspenders: also declare the presentation attributes via `svg.li`
   AND `svg[class*="li"] use` so the styling still applies when the browser's
   stylesheet chain is broken or the `.li` class is stripped. Hard-cap at 24px
   to guarantee icons can NEVER blow up to their default 300x150 size even if
   the CSS fails to load. */
svg.li,
svg[class*="li"] {
  display: inline-block;
  vertical-align: middle;
  width: 16px !important;
  height: 16px !important;
  max-width: 24px;
  max-height: 24px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  color: var(--gold);
}
svg.li use,
svg[class*="li"] use {
  fill: none;
  stroke: currentColor;
}
.li-lg { width: 20px !important; height: 20px !important; }
.li-xl { width: 24px !important; height: 24px !important; }

/* Ambient orbs — same visual DNA as the landing */
.orb { position: fixed; border-radius: 50%; filter: blur(90px); opacity: 0.30; z-index: -1; pointer-events: none; }
.orb-1 { top: -110px; left: -110px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(212,175,55,0.32), transparent); }
.orb-2 { bottom: -110px; right: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(201,169,110,0.24), transparent); }

/* ---------- Navigation ---------- */
.blog-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 26px;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.blog-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800; color: var(--platinum);
  text-decoration: none; letter-spacing: 1px;
}
.blog-nav-logo span { color: var(--gold-light); }
.blog-nav-links { display: flex; align-items: center; gap: 26px; }
.blog-nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.blog-nav-links a:hover, .blog-nav-links a.active { color: var(--gold-light); }
.blog-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A; font-size: 13px; font-weight: 700;
  border-radius: 999px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--gold-glow); }
.blog-nav-right { display: inline-flex; align-items: center; }

/* ---------- Burger + drawer ---------- */
.blog-nav-burger {
  display: none;
  width: 44px; height: 44px;                 /* iOS min-touch-target 44x44 */
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 12px;
  color: var(--gold-light);                  /* lighter gold for stronger contrast */
  cursor: pointer;
  transition: background .2s, border-color .2s;
  margin-left: 10px;
  padding: 0;
}
.blog-nav-burger .burger-icon {
  width: 24px; height: 24px;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2;
  stroke-linecap: round;
  display: block;
}
.blog-nav-burger:hover { background: rgba(201,169,110,0.14); border-color: rgba(201,169,110,0.6); color: #F0D77E; }
.blog-nav-burger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.nav-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
  z-index: 1500;
}
.nav-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 84vw);
  background: linear-gradient(180deg, #131313, #0a0a0a);
  border-left: 1px solid var(--border-gold);
  padding: 22px 22px 32px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22,.61,.36,1);
  z-index: 1501;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.nav-drawer-head .brand { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: var(--platinum); letter-spacing: 1px; }
.nav-drawer-head .brand span { color: var(--gold-light); }
.nav-drawer-close {
  width: 40px; height: 40px;
  background: transparent; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; color: var(--platinum);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
  padding: 0;
}
.nav-drawer-close .burger-icon {
  width: 20px; height: 20px;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2;
  stroke-linecap: round;
  display: block;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.06); }
.nav-drawer-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 2px; }
.nav-drawer-links a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 12px;
  color: var(--platinum); text-decoration: none;
  font-size: 15px; font-weight: 500;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.nav-drawer-links a .li { color: var(--gold); }
.nav-drawer-links a:hover, .nav-drawer-links a:focus, .nav-drawer-links a.active { background: rgba(201,169,110,0.08); color: var(--gold-light); }
.nav-drawer-cta {
  margin-top: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A;
  border-radius: 14px;
  font-size: 14px; font-weight: 800; text-decoration: none;
  box-shadow: 0 8px 24px rgba(201,169,110,0.22);
}
.nav-drawer-footer { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--border); font-size: 11px; color: var(--dim); text-align: center; }

@media (max-width: 640px) {
  .blog-nav-links a:not(.blog-nav-cta) { display: none; }
  .blog-nav-burger { display: inline-flex; }
}

/* ==================== INDEX PAGE ==================== */
.blog-hero {
  max-width: 900px; margin: 0 auto; padding: 76px 24px 28px; text-align: center;
}
.blog-hero .kicker {
  display: inline-block; padding: 6px 16px;
  background: rgba(212, 175, 55, 0.10); border: 1px solid var(--border-gold);
  border-radius: 999px; margin-bottom: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold-light);
}
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6.5vw, 68px); font-weight: 700; line-height: 1.08;
  color: var(--platinum); margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.blog-hero h1 em { color: var(--gold-light); font-style: italic; }
.blog-hero p {
  font-size: 18px; color: var(--muted); line-height: 1.65;
  max-width: 620px; margin: 0 auto;
}

/* Category tabs */
.blog-categories {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin: 42px auto 8px; max-width: 900px; padding: 0 24px;
}
.blog-cat-tab {
  padding: 9px 20px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.3px;
}
.blog-cat-tab:hover { color: var(--gold-light); border-color: var(--border-gold); }
.blog-cat-tab.active {
  background: rgba(212, 175, 55, 0.10);
  border-color: var(--border-gold); color: var(--gold-light);
}

/* Featured article (first article, wide) */
.blog-featured {
  max-width: 1080px; margin: 48px auto 0; padding: 0 24px;
}
.blog-featured-card {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid var(--border); border-radius: 22px;
  text-decoration: none; color: inherit;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  align-items: center;
}
.blog-featured-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}
.blog-featured-cover {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #1a1610, #0f0d0a);
  border: 1px solid var(--border);
}
.blog-featured-cover img,
.blog-featured-cover svg {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-featured-cover::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.72) 100%),
    linear-gradient(180deg, rgba(212,175,55,0.06) 0%, rgba(212,175,55,0) 40%);
  pointer-events: none;
}
.blog-featured-cover::before {
  content: "";
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  height: 1px;
  background: var(--filet-gold);
  z-index: 1;
  pointer-events: none;
}
.blog-featured-card:hover .blog-featured-cover img,
.blog-featured-card:hover .blog-featured-cover svg { transform: scale(1.04); }
.blog-featured-body { display: flex; flex-direction: column; gap: 14px; }
.blog-featured-badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 4px 12px; background: rgba(212,175,55,0.10); border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold-light);
}
.blog-featured-cat { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold-light); text-transform: uppercase; }
.blog-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; line-height: 1.15;
  color: var(--platinum); letter-spacing: -0.2px;
}
.blog-featured-excerpt { font-size: 15px; color: var(--muted); line-height: 1.7; }
.blog-featured-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--dim); padding-top: 12px; border-top: 1px solid var(--border); }
.blog-featured-meta .li { color: var(--gold); }
@media (max-width: 768px) {
  .blog-featured-card { grid-template-columns: 1fr; padding: 20px; gap: 22px; }
}

/* Grid of remaining articles */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px; max-width: 1080px; margin: 40px auto 80px; padding: 0 24px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 22px 50px rgba(0,0,0,0.55);
}
.blog-card-cover {
  position: relative;
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, #1a1610, #0f0d0a);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.blog-card-cover img,
.blog-card-cover svg {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.65) 100%);
  pointer-events: none;
}
.blog-card-cover::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--filet-gold);
  z-index: 1;
  pointer-events: none;
}
.blog-card:hover .blog-card-cover img,
.blog-card:hover .blog-card-cover svg { transform: scale(1.05); }
.blog-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold-light); text-transform: uppercase; }
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 23px; font-weight: 700; line-height: 1.22;
  color: var(--platinum); letter-spacing: -0.1px;
}
.blog-card-excerpt { font-size: 14.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--dim);
  padding-top: 14px; border-top: 1px solid var(--border);
}
.blog-card-meta .li { color: var(--gold); }

/* ==================== ARTICLE PAGE ==================== */
.article-wrap { max-width: 720px; margin: 0 auto; padding: 48px 22px 90px; }

/* Breadcrumb */
.article-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--dim); margin-bottom: 26px;
  letter-spacing: 0.3px;
}
.article-crumb a { color: var(--muted); text-decoration: none; }
.article-crumb a:hover { color: var(--gold-light); }
.article-crumb .li { width: 12px; height: 12px; color: var(--dim); }

/* Category pill */
.article-cat {
  display: inline-block; padding: 5px 14px;
  background: rgba(212, 175, 55, 0.10); border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold-light);
  margin-bottom: 20px;
}

/* Article title & metadata */
.article-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5.6vw, 54px); font-weight: 700; line-height: 1.1;
  color: var(--platinum); margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.article-h1 em { color: var(--gold-light); font-style: italic; }
.article-meta {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 18px 0 28px; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.article-meta > span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta .dot { width: 4px; height: 4px; background: var(--dim); border-radius: 50%; }
.article-meta .li { color: var(--gold); }

/* Cover image */
.article-cover {
  width: 100%; aspect-ratio: 16/9;
  margin: 32px 0;
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(135deg, #1a1610, #0f0d0a);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.article-cover svg { width: 100%; height: 100%; display: block; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Article body — the reading experience */
.article-body {
  font-size: 18px; line-height: 1.85; color: var(--ivory);
  font-weight: 400;
}
.article-body > p { margin: 0 0 24px; }

/* Elegant drop cap on the first paragraph */
.article-body > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.6em;
  font-weight: 700;
  float: left;
  line-height: 0.88;
  padding: 6px 12px 0 0;
  color: var(--gold-light);
  text-shadow: 0 2px 20px rgba(212,175,55,0.25);
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; line-height: 1.22;
  color: var(--platinum); margin: 52px 0 18px;
  letter-spacing: -0.2px;
  position: relative; padding-top: 30px;
}
/* Gold hairline separator above every H2 for editorial rhythm */
.article-body h2::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; line-height: 1.3;
  color: var(--platinum); margin: 34px 0 12px;
  letter-spacing: -0.1px;
}
.article-body a {
  color: var(--gold-light); text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.article-body a:hover { color: var(--gold); text-decoration-color: var(--gold); }
.article-body strong { color: var(--platinum); font-weight: 700; }
.article-body em { color: var(--muted); font-style: italic; }
.article-body ul, .article-body ol { margin: 0 0 26px; padding-left: 26px; }
.article-body li { margin-bottom: 10px; line-height: 1.75; }
.article-body li::marker { color: var(--gold); }

/* Pull-quote — refined editorial */
.article-body blockquote {
  margin: 40px 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-style: italic; line-height: 1.45;
  color: var(--ivory);
  letter-spacing: -0.2px;
}
.article-body blockquote cite {
  display: block; margin-top: 16px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-style: normal;
  color: var(--dim); letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}

/* Info card (Pro tip, Try it in Laksh callouts) */
.article-tip {
  margin: 36px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
}
.article-tip .tip-title {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}
.article-tip .tip-title .li { color: var(--gold-light); }
.article-tip p { font-size: 15.5px; color: var(--ivory); margin: 0; line-height: 1.7; }

/* Gift/product cards (Amazon affiliate) */
.gift-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 26px 0; }
.gift-card {
  padding: 20px 20px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .25s, transform .25s;
}
.gift-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.gift-card-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--platinum); line-height: 1.3; }
.gift-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.gift-card-price { font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: 2px; }
.gift-card-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 14px;
  background: transparent; border: 1px solid var(--border-gold);
  border-radius: 999px; color: var(--gold-light); font-size: 12px; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.gift-card-btn .li { width: 13px; height: 13px; }
.gift-card-btn:hover { background: rgba(212,175,55,0.1); }

.amazon-disclosure {
  margin: 26px 0; padding: 14px 18px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12.5px; color: var(--dim); line-height: 1.6;
}
.amazon-disclosure strong { color: var(--muted); }

/* Article gold filet between long-form and CTA */
.article-filet {
  height: 1px; margin: 60px auto 0; max-width: 240px;
  background: var(--filet-gold);
}

/* Download CTA */
.article-cta {
  margin: 24px 0;
  padding: 42px 30px;
  background: linear-gradient(180deg, rgba(212,175,55,0.14), rgba(212,175,55,0.02));
  border: 1px solid var(--border-gold);
  border-radius: 26px;
  text-align: center;
  position: relative; overflow: hidden;
}
.article-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% -20%, rgba(212,175,55,0.15), transparent 60%);
}
.article-cta .cta-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(212,175,55,0.10); border: 1px solid var(--border-gold);
  border-radius: 999px; margin-bottom: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold-light);
}
.article-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; line-height: 1.2;
  color: var(--platinum); margin-bottom: 14px; letter-spacing: -0.2px;
}
.article-cta p { color: var(--muted); font-size: 15.5px; line-height: 1.7; max-width: 540px; margin: 0 auto 26px; }

.cta-appstore-wrap { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; position: relative; }
.cta-appstore-badge img { display: block; height: 56px; width: auto; transition: transform 0.2s, filter 0.2s; }
.cta-appstore-badge:hover img { transform: translateY(-2px); filter: brightness(1.05); }
.cta-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 13px; background: #fff; border-radius: 14px; border: 1px solid var(--border-gold); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.cta-qr svg { width: 108px; height: 108px; display: block; }
.cta-qr-label { font-size: 10px; font-weight: 700; color: #0A0A0A; letter-spacing: 1.5px; text-align: center; line-height: 1.35; }
.cta-qr-label strong { color: #C9A96E; }
@media (max-width: 640px) { .cta-qr { display: none; } }

/* Related articles */
.related-wrap { max-width: 900px; margin: 46px auto 0; padding: 0 22px; }
.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--platinum); margin-bottom: 22px;
  letter-spacing: -0.2px;
}
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

/* Footer */
.blog-footer {
  max-width: 900px; margin: 70px auto 0; padding: 36px 22px 44px;
  border-top: 1px solid var(--border); text-align: center;
}
.blog-footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.blog-footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.blog-footer-links a:hover { color: var(--gold-light); }
.blog-footer .copy { font-size: 12px; color: var(--dim); }

/* Small responsive polish */
@media (max-width: 768px) {
  .article-wrap { padding: 32px 20px 60px; }
  .article-body { font-size: 17px; line-height: 1.8; }
  .article-body > p:first-of-type::first-letter { font-size: 4em; }
  .article-body h2 { font-size: 26px; margin-top: 42px; }
  .article-body blockquote { font-size: 20px; padding-left: 22px; }
}
