/* ── Blog Design System ── */
:root {
  --black: #0D0D0D; --s1: #0b0b0d; --cream: #F5F0E8; --gold: #C9A84C;
  --gold2: #E4CB7E; --slate: #3A3A4A; --line: rgba(201,168,76,.16);
  --b1: rgba(201,168,76,.12); --hair: rgba(245,240,232,.07);
  --ink-70: rgba(245,240,232,.7); --ink-55: rgba(245,240,232,.55);
  --ink-40: rgba(245,240,232,.4); --ink-25: rgba(245,240,232,.25);
  --ink-15: rgba(245,240,232,.15); --ink-08: rgba(245,240,232,.08);
  --fd: 'Cormorant Garamond', serif; --fb: 'Montserrat', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--cream); font-family: var(--fb);
  overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--black); }
:: -webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,.4); }

/* Grain */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.content { position: relative; z-index: 2; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 6vw; border-bottom: 1px solid transparent;
  background: rgba(13,13,13,.0); backdrop-filter: blur(0px);
  transition: all .45s var(--ease);
}
nav.scrolled {
  background: rgba(13,13,13,.82); backdrop-filter: blur(18px);
  border-bottom-color: var(--hair); padding: 14px 6vw;
}
.nav-logo { font-family: var(--fd); font-size: 22px; font-weight: 500; letter-spacing: .02em; }
.nav-logo b { color: var(--gold); font-weight: 600; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-55); position: relative;
  padding: 4px 0; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-40); font-weight: 500; transition: color .3s;
}
.nav-back:hover { color: var(--gold); }
.nav-back svg { transition: transform .3s; }
.nav-back:hover svg { transform: translateX(-4px); }

/* Sections */
section { padding: 0; position: relative; }
.wrap { max-width: 1200px; margin: 0 auto; }

/* ── Hero ── */
.blog-hero {
  padding: 180px 6vw 100px; text-align: center;
  border-bottom: 1px solid var(--hair);
}
.blog-hero .eyebrow { justify-content: center; margin-bottom: 28px; }
.blog-hero .eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: .7; }
.blog-hero h1 {
  font-family: var(--fd); font-weight: 300; line-height: .98;
  letter-spacing: -.015em; font-size: clamp(42px, 6vw, 82px);
  max-width: 900px; margin: 0 auto 24px;
}
.blog-hero h1 em { font-style: italic; color: var(--gold); }
.blog-hero .lead {
  font-size: 16px; color: var(--ink-55); font-weight: 300;
  line-height: 1.9; max-width: 580px; margin: 0 auto;
}
.blog-hero .meta {
  display: flex; justify-content: center; gap: 32px; margin-top: 36px;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-40); font-weight: 500;
}
.blog-hero .meta span { display: flex; align-items: center; gap: 8px; }
.blog-hero .meta .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .6;
}

/* ── Article Body ── */
.article-body {
  max-width: 720px; margin: 0 auto;
  padding: 80px 6vw 120px;
}
.article-body h2 {
  font-family: var(--fd); font-weight: 400; font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1; letter-spacing: -.01em; margin: 72px 0 28px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h2 em { font-style: italic; color: var(--gold); }
.article-body h3 {
  font-family: var(--fd); font-weight: 500; font-size: 22px;
  margin: 48px 0 16px; color: var(--cream);
}
.article-body p {
  font-size: 15.5px; line-height: 1.95; color: var(--ink-70);
  margin-bottom: 22px; font-weight: 300;
}
.article-body strong { color: var(--cream); font-weight: 600; }
.article-body a {
  color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,.3);
  transition: border-color .3s;
}
.article-body a:hover { border-color: var(--gold); }
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px; color: var(--ink-70);
  font-size: 15px; line-height: 2; font-weight: 300;
}
.article-body li { margin-bottom: 6px; }
.article-body li::marker { color: var(--gold); }

/* Blockquote */
.article-body blockquote {
  border-left: 2px solid var(--gold); padding: 20px 28px;
  margin: 36px 0; background: rgba(201,168,76,.04);
  font-family: var(--fd); font-size: 20px; font-style: italic;
  line-height: 1.6; color: var(--cream);
}

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.02));
  border: 1px solid var(--line); padding: 48px;
  margin: 56px 0; text-align: center;
}
.cta-box h3 {
  font-family: var(--fd); font-size: 28px; font-weight: 400;
  margin-bottom: 12px; letter-spacing: -.01em;
}
.cta-box p { font-size: 14px; color: var(--ink-55); margin-bottom: 24px; font-weight: 300; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black); font-family: var(--fb);
  font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  transition: all .35s var(--ease); text-decoration: none;
}
.cta-btn:hover {
  background: var(--gold2); transform: translateY(-2px);
  box-shadow: 0 20px 50px -15px rgba(201,168,76,.4);
}

/* Divider */
.rule { width: 100%; height: 1px; background: var(--hair); margin: 80px 0; }

/* ── Blog Index (listing) ── */
.blog-index-hero {
  padding: 180px 6vw 80px; text-align: center;
  border-bottom: 1px solid var(--hair);
}
.blog-index-hero h1 {
  font-family: var(--fd); font-weight: 300; line-height: .98;
  letter-spacing: -.015em; font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 20px;
}
.blog-index-hero h1 em { font-style: italic; color: var(--gold); }
.blog-index-hero .lead {
  font-size: 16px; color: var(--ink-55); font-weight: 300;
  line-height: 1.9; max-width: 560px; margin: 0 auto;
}

.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px; padding: 0; max-width: 1200px; margin: 0 auto;
}
.blog-card {
  background: var(--s1); padding: 48px 44px;
  border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  transition: background .4s; position: relative; cursor: pointer;
  display: block;
}
.blog-card:hover { background: var(--s2); }
.blog-card .cat {
  font-size: 8px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.blog-card h3 {
  font-family: var(--fd); font-size: 26px; font-weight: 400;
  line-height: 1.15; letter-spacing: -.01em; margin-bottom: 14px;
}
.blog-card h3 em { font-style: italic; color: var(--gold); }
.blog-card p {
  font-size: 13.5px; color: var(--ink-55); line-height: 1.8;
  font-weight: 300; margin-bottom: 20px;
}
.blog-card .card-meta {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-25); font-weight: 500;
}

/* ── Related Articles ── */
.related-section {
  padding: 80px 6vw 120px; border-top: 1px solid var(--hair);
}
.related-section .eyebrow { margin-bottom: 40px; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px; max-width: 1200px; margin: 0 auto;
}
.related-card {
  background: var(--s1); padding: 36px 32px;
  border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  transition: background .4s; display: block; cursor: pointer;
}
.related-card:hover { background: var(--s2); }
.related-card .cat {
  font-size: 8px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.related-card h4 {
  font-family: var(--fd); font-size: 20px; font-weight: 400;
  line-height: 1.2; margin-bottom: 10px;
}
.related-card h4 em { font-style: italic; color: var(--gold); }

/* ── Footer ── */
.blog-footer {
  padding: 60px 6vw; border-top: 1px solid var(--hair);
  text-align: center;
}
.blog-footer p { font-size: 10px; letter-spacing: .15em; color: var(--ink-25); text-transform: uppercase; }
.blog-footer a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.2); transition: border-color .3s; }
.blog-footer a:hover { border-color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 140px 6vw 80px; }
  .article-body { padding: 56px 6vw 80px; }
  .blog-card { padding: 32px 28px; }
  .blog-index-hero { padding: 140px 6vw 60px; }
}
