/* ─── Blog Shared Styles ─── */
/* Inherits design tokens from :root in main styles.css */

/* ─── Sticky Waitlist CTA Bar ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.8);
  font-weight: 400;
}

.sticky-cta-text strong {
  color: #c9a84c;
  font-weight: 600;
}

.sticky-cta-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #c9a84c;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.sticky-cta-btn:hover {
  background: #d4b55a;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .sticky-cta {
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }
  .sticky-cta-text {
    font-size: 0.8rem;
  }
}

/* ─── Blog Layout ─── */
.blog-page {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.blog-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}

.blog-nav-logo .dot {
  color: #c9a84c;
}

.blog-nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

.blog-nav-links a {
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-nav-links a:hover {
  color: #c9a84c;
}

.blog-nav-cta {
  background: #c9a84c !important;
  color: #0a0a0a !important;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

/* ─── Blog Index ─── */
.blog-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.blog-hero p {
  font-size: 1.05rem;
  color: rgba(224, 224, 224, 0.6);
}

.blog-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.blog-card-meta {
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.4);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}

.blog-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.6);
  line-height: 1.6;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  margin-top: 0.75rem;
}

/* ─── Blog Article ─── */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
}

.blog-article-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.blog-article-header .breadcrumb {
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.4);
  margin-bottom: 1.5rem;
}

.blog-article-header .breadcrumb a {
  color: #c9a84c;
  text-decoration: none;
}

.blog-article-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-article-header .article-meta {
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.45);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ─── Article Content ─── */
.blog-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 1.25rem;
}

.blog-content strong {
  color: #fff;
  font-weight: 500;
}

.blog-content ul, .blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: rgba(224, 224, 224, 0.8);
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.blog-content blockquote {
  border-left: 3px solid #c9a84c;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 0 8px 8px 0;
  color: rgba(224, 224, 224, 0.7);
  font-style: italic;
}

.blog-content a {
  color: #c9a84c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content a:hover {
  color: #d4b55a;
}

/* ─── Inline CTA Box ─── */
.inline-cta {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  text-align: center;
}

.inline-cta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.inline-cta p {
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.6);
  margin-bottom: 1rem;
}

.inline-cta-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #c9a84c;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.inline-cta-btn:hover {
  background: #d4b55a;
  transform: translateY(-1px);
}

/* ─── Blog Footer ─── */
.blog-footer {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.35);
}

.blog-footer a {
  color: #c9a84c;
  text-decoration: none;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .blog-hero h1 { font-size: 1.8rem; }
  .blog-article-header h1 { font-size: 1.7rem; }
  .blog-article { padding: 6rem 1.25rem 3rem; }
  .blog-nav-links { display: none; }
}
