@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,760&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #100c0d;
  --ink: #fff8ec;
  --cream: #fff0d3;
  --muted: #d3c1aa;
  --gold: #f6bd3f;
  --saffron: #ff9f2e;
  --chilli: #ef4936;
  --line: rgba(255, 222, 171, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 7%, rgba(239, 73, 54, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 2%, rgba(246, 189, 63, 0.14), transparent 26rem),
    linear-gradient(145deg, #0d0a0a 0%, #170d12 42%, #110d0a 100%);
  background-attachment: fixed;
  font-family: Manrope, sans-serif;
  line-height: 1.75;
}

a { color: var(--gold); }

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 12, 13, 0.9);
  backdrop-filter: blur(18px);
}

.top-bar .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.top-bar .brand img { width: 44px; height: 44px; object-fit: contain; }
.top-bar .brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.top-bar .call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: #160c05;
  background: linear-gradient(135deg, #ffd36a, #ff9f2e);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) 20px 60px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Fraunces, serif;
  line-height: 1.12;
  color: var(--cream);
}

h1 { font-size: clamp(2rem, 5.4vw, 3.1rem); margin: 0 0 14px; text-wrap: balance; }
h2 { font-size: clamp(1.45rem, 3.4vw, 1.9rem); margin: 40px 0 12px; }
h3 { font-size: 1.2rem; margin: 28px 0 8px; }

p, li { color: var(--muted); font-size: 1.02rem; }
strong { color: var(--cream); }

.post-meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }

.lede { font-size: 1.14rem; color: var(--ink); }

blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(246, 189, 63, 0.07);
  color: var(--cream);
  font-style: italic;
}

.cta {
  margin: 44px 0 0;
  padding: 26px;
  border: 1px solid rgba(246, 189, 63, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(239, 73, 54, 0.18), rgba(246, 189, 63, 0.1));
}

.cta h2 { margin-top: 0; }

.cta .call {
  display: inline-block;
  margin-top: 10px;
  padding: 13px 20px;
  border-radius: var(--radius);
  color: #160c05;
  background: linear-gradient(135deg, #ffd36a, #ff9f2e);
  text-decoration: none;
  font-weight: 800;
}

.post-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }

.post-list a {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.post-list a:hover { transform: translateY(-3px); border-color: rgba(246, 189, 63, 0.46); }
.post-list strong { display: block; font-family: Fraunces, serif; font-size: 1.24rem; color: var(--cream); margin-bottom: 6px; }
.post-list span { color: var(--muted); font-size: 0.94rem; }

.related { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); }
.related p { margin: 6px 0; }

footer {
  padding: 26px 20px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}
footer a { font-weight: 700; }
