/* ─── Landing Page & Blog Styles ─── */

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --cream: #f5f0eb;
  --cream-deep: #ece3d8;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #666;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-width: 900px;
  --max-width-wide: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ─── Disclaimer Banner ─── */
.lp-disclaimer-banner {
  background: #2a1a0a;
  color: var(--cream-deep);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-family: var(--font-sans);
  border-bottom: 1px solid #5a3a1a;
  letter-spacing: 0.02em;
}

/* ─── Header ─── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.lp-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
}
.lp-logo span { color: var(--gold); }

.lp-nav {
  display: flex;
  gap: 32px;
}
.lp-nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-deep);
  transition: color 0.2s;
}
.lp-nav a:hover { color: var(--gold); }

/* ─── Hero ─── */
.lp-hero {
  padding: 100px 40px 80px;
  text-align: center;
  background: linear-gradient(180deg, #111 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.lp-hero--slim { padding: 70px 40px 60px; }

.lp-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.lp-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.lp-intro {
  font-size: 18px;
  color: var(--cream-deep);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── Buttons ─── */
.lp-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.lp-btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.lp-btn--primary:hover {
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
}
.lp-btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.lp-btn--secondary:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-light);
}

/* ─── Content Sections ─── */
.lp-content {
  padding: 80px 40px;
}
.lp-content-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.lp-section { }
.lp-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.lp-section p {
  color: var(--cream-deep);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
}

/* ─── Internal Links Grid ─── */
.lp-internal-links {
  padding: 60px 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.lp-internal-links h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.lp-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}
.lp-link-card {
  display: block;
  padding: 18px 24px;
  background: #111;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--cream-deep);
  font-size: 14px;
  text-align: center;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
}
.lp-link-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: #161616;
}

/* ─── Blog Index ─── */
.lp-blog-grid { padding: 60px 40px; }
.lp-blog-grid-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.lp-blog-card {
  background: #111;
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 32px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.lp-blog-card:hover { border-color: rgba(201, 169, 110, 0.4); }
.lp-blog-card h2 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; }
.lp-blog-card h2 a { color: var(--cream); text-decoration: none; }
.lp-blog-card h2 a:hover { color: var(--gold); }
.lp-blog-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.lp-read-more { color: var(--gold); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: auto; }

/* ─── Blog Post ─── */
.lp-blog-post .lp-main { padding: 0; }
.lp-article {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
}
.lp-article-header { margin-bottom: 48px; border-bottom: 1px solid rgba(201, 169, 110, 0.15); padding-bottom: 32px; }
.lp-article-category {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.lp-article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}
.lp-article-date { color: var(--text-muted); font-size: 13px; }
.lp-article-body {
  color: var(--cream-deep);
  font-size: 17px;
  line-height: 1.9;
}
.lp-article-body p { margin-bottom: 24px; }
.lp-article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin: 40px 0 16px;
  font-weight: 400;
}
.lp-article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 28px 0 12px;
  font-weight: 400;
}
.lp-article-body ul, .lp-article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.lp-article-body li { margin-bottom: 8px; }
.lp-article-cta { margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(201, 169, 110, 0.15); }

/* ─── Footer ─── */
.lp-footer {
  padding: 60px 40px 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  background: #080808;
}
.lp-footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.lp-footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.lp-footer-links {
  font-size: 13px;
  color: var(--text-muted);
}
.lp-footer-links a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: var(--gold-light); }
.lp-footer-legal {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
}
.lp-footer-legal a { color: #777; }
.lp-footer-disclaimer {
  font-size: 11px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}
.lp-footer-entity {
  font-size: 12px;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .lp-header { padding: 16px 20px; }
  .lp-nav { gap: 20px; }
  .lp-nav a { font-size: 11px; letter-spacing: 0.08em; }
  .lp-hero { padding: 70px 20px 60px; }
  .lp-content { padding: 60px 20px; }
  .lp-internal-links { padding: 40px 20px; }
  .lp-blog-grid { padding: 40px 20px; }
  .lp-article { padding: 60px 20px; }
  .lp-footer { padding: 40px 20px; }
  .lp-ctas { flex-direction: column; align-items: center; }
  .lp-btn { width: 100%; max-width: 320px; text-align: center; }
  .lp-blog-grid-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lp-nav { display: none; }
}
