/* Sagar Numero — modern rebuild */
:root {
  --bg: #faf8f1;
  --bg-soft: #f3ecdb;
  --ink: #211a11;
  --muted: #6f6355;
  --gold: #c09534;
  --gold-deep: #8a651c;
  --gold-soft: #f6ead0;
  --line: #e6dabd;
  --card: #fffdf7;
  --dark: #1c1610;
  --dark-2: #2a2117;
  --radius: 18px;
  --shadow: 0 18px 44px -18px rgba(60, 42, 12, 0.28);
  --shadow-sm: 0 8px 24px -12px rgba(60, 42, 12, 0.25);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; letter-spacing: -0.01em; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
a { color: var(--gold-deep); }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
main { display: block; }

/* ---------- Nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 241, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; max-width: 1140px; margin: 0 auto; }
.brand { font-family: var(--font-display); font-size: 25px; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: 0.2px; }
.brand span { color: var(--gold-deep); }
nav.links { display: flex; align-items: center; gap: 30px; }
nav.links a { text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 500; position: relative; padding: 4px 0; }
nav.links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width 0.25s; }
nav.links a:hover::after, nav.links a.active::after { width: 100%; }
nav.links a.active { color: var(--gold-deep); }
nav.links a.nav-cta { background: var(--ink); color: #fff; padding: 10px 22px; border-radius: 999px; font-weight: 600; }
nav.links a.nav-cta::after { display: none; }
nav.links a.nav-cta:hover { background: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.25s; }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  nav.links { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 28px 20px; border-bottom: 1px solid var(--line); display: none; }
  nav.links.open { display: flex; }
  nav.links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  nav.links a::after { display: none; }
  nav.links a.nav-cta { text-align: center; margin-top: 12px; border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 104px 28px 88px; text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(560px 340px at 15% 10%, rgba(192, 149, 52, 0.22), transparent 60%),
    radial-gradient(640px 400px at 88% 18%, rgba(192, 149, 52, 0.16), transparent 60%),
    radial-gradient(720px 480px at 50% 115%, var(--bg-soft), transparent 65%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero .kicker, .kicker { color: var(--gold-deep); text-transform: uppercase; letter-spacing: 3.5px; font-size: 12.5px; font-weight: 700; margin-bottom: 20px; }
.hero h1 { font-size: clamp(42px, 6.4vw, 72px); max-width: 840px; margin: 0 auto 18px; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero p.lead, p.lead { max-width: 640px; margin: 0 auto; color: var(--muted); font-size: 19px; }
.hero .cta-row { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero.hero-split { text-align: left; }
.hero-split .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-split h1 { margin: 0 0 18px; }
.hero-split p.lead { margin: 0; }
.hero-split .cta-row { justify-content: flex-start; }
.hero-img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 860px) { .hero-split .wrap { grid-template-columns: 1fr; } .hero { padding: 72px 24px 64px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 36px; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff; text-decoration: none; font-weight: 600; font-size: 16px; font-family: var(--font-body);
  border-radius: 999px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }
.btn.ghost { background: transparent; color: var(--gold-deep); border: 2px solid var(--gold); box-shadow: none; }
.btn.ghost:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn.light { background: #fff; color: var(--ink); }
.btn.light:hover { color: var(--gold-deep); }
.btn.small { padding: 10px 24px; font-size: 14.5px; }

/* ---------- Sections ---------- */
section.block { padding: 88px 0; }
section.block.tight { padding: 56px 0; }
section.block.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow { color: var(--gold-deep); text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; font-weight: 700; margin-bottom: 14px; }
h2.title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.flip > div:first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.flip > div:first-child { order: 0; } section.block { padding: 64px 0; } }
.split h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.split p { color: var(--muted); }
.split p + p { margin-top: 14px; }
.split .btn { margin-top: 26px; }
.rounded-img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card img { border-radius: 0; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card .pad { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 23px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; flex: 1; }
.card .pad .btn { margin-top: 20px; align-self: flex-start; }
.card ul.tick { list-style: none; margin: 16px 0 4px; }
.card ul.tick li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 15px; color: var(--muted); }
.card ul.tick li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }

/* ---------- Feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }
.feature { text-align: center; padding: 12px 8px; }
.feature .icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); border-radius: calc(var(--radius) + 6px); padding: 72px 48px; text-align: center; color: #f4ecdc; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 50% 0%, rgba(192,149,52,0.35), transparent 65%); pointer-events: none; }
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 14px; color: #fff; }
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { color: #cbbfa5; max-width: 560px; margin: 0 auto 30px; font-size: 18px; }
@media (max-width: 640px) { .cta-banner { padding: 52px 28px; } }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 30px; }
.post { display: grid; grid-template-columns: 320px 1fr; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
@media (max-width: 760px) { .post { grid-template-columns: 1fr; } }
.post img { border-radius: 0; height: 100%; min-height: 220px; object-fit: cover; }
.post .pad { padding: 34px 36px; }
.post .meta { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 10px; font-weight: 600; }
.post h3 { font-size: 27px; margin-bottom: 12px; }
.post h3 a { color: var(--ink); text-decoration: none; }
.post h3 a:hover { color: var(--gold-deep); }
.post p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.post .read-more { font-weight: 600; text-decoration: none; font-size: 15.5px; }
.post .read-more:hover { text-decoration: underline; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article .meta { color: var(--muted); font-size: 13.5px; text-transform: uppercase; letter-spacing: 1.8px; font-weight: 600; margin: 14px 0 30px; }
.article > img { margin: 0 0 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article h2 { font-size: 30px; margin: 38px 0 14px; }
.article h3 { font-size: 22px; margin: 30px 0 10px; }
.article p { color: #3d342a; margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 20px 24px; color: #3d342a; }
.article li { margin-bottom: 8px; }
.article .article-cta { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; text-align: center; margin: 44px 0 8px; }
.article .article-cta h3 { margin-bottom: 10px; }
.article .article-cta p { color: var(--muted); margin-bottom: 22px; }
.back-link { display: inline-block; margin-bottom: 28px; text-decoration: none; font-weight: 600; font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-lines { display: grid; gap: 14px; margin-top: 26px; }
.contact-lines a {
  display: block; font-size: 19px; font-weight: 600; color: var(--ink); text-decoration: none;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 24px; transition: 0.2s;
}
.contact-lines a:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-lines small { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 28px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 26px; font-size: 16px; }
.form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-card .row { grid-template-columns: 1fr; } .form-card { padding: 28px 22px; } }
.form-card label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--ink); }
.form-card input, .form-card textarea { display: block; width: 100%; margin-top: 6px; padding: 13px 15px; font-size: 16px; font-family: var(--font-body); border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--ink); transition: border-color 0.2s; }
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.form-card textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; margin-top: 10px; }

/* ---------- Footer ---------- */
footer.site { background: var(--dark); color: #b9ac93; margin-top: 0; padding: 72px 0 0; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
footer.site .brand { color: #fff; font-size: 24px; }
footer.site .brand span { color: var(--gold); }
.foot-grid p { margin-top: 14px; max-width: 340px; }
footer.site h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
footer.site nav { display: grid; gap: 10px; }
footer.site nav a, .foot-contact a { color: #b9ac93; text-decoration: none; }
footer.site nav a:hover, .foot-contact a:hover { color: var(--gold); }
.foot-contact { display: grid; gap: 10px; }
.foot-contact .btn { margin-top: 12px; justify-self: start; }
.foot-base { border-top: 1px solid rgba(255,255,255,0.09); padding: 22px 28px; text-align: center; font-size: 13.5px; color: #8a7d66; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr; } }
.gallery img { aspect-ratio: 4/5; object-fit: cover; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Thank you ---------- */
.thanks { text-align: center; padding: 40px 0 20px; }
.check { width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%; background: var(--gold-soft); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 34px; color: var(--gold-deep); }

/* ---------- Motion & polish ---------- */
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* Number marquee band */
.marquee { overflow: hidden; background: var(--dark); border-top: 1px solid rgba(192,149,52,0.35); border-bottom: 1px solid rgba(192,149,52,0.35); padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-half { display: flex; gap: 64px; padding-right: 64px; }
.marquee-half span { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: 3px; color: #d9c79a; white-space: nowrap; }
.marquee-half span b { color: var(--gold); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Floating hero image */
.hero-img { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Card image zoom */
.card img, .post img { transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1); }
.card:hover img, .post:hover img { transform: scale(1.06); }

/* Steps */
.steps { display: grid; gap: 26px; margin-top: 6px; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: start; }
.step .n { width: 60px; height: 60px; border-radius: 50%; background: var(--gold-soft); border: 1.5px solid var(--gold); color: var(--gold-deep); font-family: var(--font-display); font-size: 25px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.step h3 { font-size: 21px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 16px; }
.step p + p { margin-top: 0; }

/* FAQ accordion */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 20px 24px; font-family: var(--font-display); font-size: 18.5px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-q::after { content: "+"; font-size: 28px; line-height: 1; color: var(--gold-deep); transition: transform 0.25s; flex-shrink: 0; font-family: var(--font-body); font-weight: 400; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 24px; color: var(--muted); font-size: 16px; margin: 0; }

/* Mini tick list */
ul.mini-tick { list-style: none; margin: 20px 0 0; display: grid; gap: 10px; }
ul.mini-tick li { position: relative; padding-left: 30px; color: var(--muted); font-size: 16px; }
ul.mini-tick li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }

/* Number reference grid */
.num-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.num-card { display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; text-decoration: none; color: inherit; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.num-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.num-card .num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--gold-deep); letter-spacing: 2px; margin-bottom: 12px; }
.num-card p { color: var(--muted); font-size: 15.5px; margin: 0; }
.num-card .read-more { display: inline-block; margin-top: 10px; }

/* Calculator pages */
.wrap.narrow { max-width: 760px; }
.calc-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; text-align: center; box-shadow: var(--shadow-md); margin-bottom: 48px; }
.calc-label { display: block; font-weight: 600; margin-bottom: 12px; }
.calc-input { width: 100%; max-width: 340px; padding: 14px 16px; font-size: 17px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 18px; font-family: var(--font-body); background: #fff; }
.calc-input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.calc-result { margin-top: 26px; }
.calc-result p { color: var(--muted); }
.calc-number { font-family: var(--font-display); font-size: 84px; font-weight: 700; color: var(--gold-deep); line-height: 1; margin-bottom: 8px; }
.calc-result h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }

/* Share row */
.share-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 34px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }
.share-row span { font-size: 14px; font-weight: 600; color: var(--muted); margin-right: 6px; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.15s; text-decoration: none; font-family: var(--font-body); }
.share-btn:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .hero-img { animation: none; }
  html { scroll-behavior: auto; }
}

/* Related readings */
.related-readings { background: var(--gold-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; margin: 44px 0 8px; }
.related-readings h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 12px; }
.related-readings ul { list-style: none; padding: 0; margin: 0; }
.related-readings li { margin-bottom: 8px; }
.related-readings a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.related-readings a:hover { text-decoration: underline; }

.share-btn.copied { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Subscribe box */
.subscribe-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; margin: 44px 0 8px; text-align: center; }
.subscribe-box h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.subscribe-box p { color: var(--muted); margin-bottom: 18px; }
.subscribe-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.subscribe-form input[type="email"] { flex: 1; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; font-size: 16px; font-family: var(--font-body); }
@media (max-width: 560px) { .subscribe-form { flex-direction: column; } }

/* About page */
.about-quote { text-align: center; padding: 56px 20px; max-width: 720px; margin: 0 auto; }
.about-quote p { font-family: var(--font-display); font-size: clamp(24px, 4vw, 34px); line-height: 1.4; color: var(--ink); margin-bottom: 14px; }
.about-quote span { color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; }
.note-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 34px; box-shadow: var(--shadow-sm); }
.note-card h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.note-card p { color: var(--muted); }
.btn.ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn.ghost-light:hover { background: rgba(255,255,255,0.12); color: #fff; }
