﻿:root {
    --navy: #0B1C35;
    --navy-mid: #112444;
    --navy-light: #1a3560;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F9F0DC;
    --white: #FFFFFF;
    --off-white: #F7F5F0;
    --text-dark: #0B1C35;
    --text-mid: #3D5277;
    --text-muted: #7A8FAD;
    --border: rgba(201,168,76,0.2);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; font-size: 16px; line-height: 1.6; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(11,28,53,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 100px;
  }
  .nav-logo { display: flex; flex-direction: column; text-decoration: none; }
  .nav-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: 0.02em; line-height: 1.2; }
  .nav-logo-name img { width: 200px; }
  .nav-logo-title { font-size: 10px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta { background: var(--gold); color: var(--navy) !important; padding: 9px 22px; border-radius: 2px; font-weight: 500; }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

  /* PAGE HERO */
  .page-hero {
    background: var(--navy);
    padding: 188px 5% 80px;
    position: relative; overflow: hidden;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px);
  }
  .page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
  .page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .page-hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
  .page-hero-eyebrow-text { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
  .page-hero-title { font-family: var(--font-display); font-size: clamp(40px,5vw,60px); font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
  .page-hero-title em { font-style: italic; color: var(--gold-light); }
  .page-hero-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 540px; }

  /* FILTER BAR */
  .filter-bar {
    background: var(--off-white);
    border-bottom: 1px solid rgba(11,28,53,0.08);
    padding: 20px 5%;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  }
  .filter-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-right: 4px; }
  .filter-btn {
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 7px 18px; border-radius: 2px; border: 1px solid rgba(11,28,53,0.15);
    background: var(--white); color: var(--text-mid); cursor: pointer;
    transition: all 0.2s; font-family: var(--font-body);
  }
  .filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

  /* BLOG GRID */
  .blog-section { padding: 80px 5%; }
  .blog-featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-bottom: 64px; }
  .blog-featured-card {
    background: var(--white); border: 1px solid rgba(11,28,53,0.08); border-radius: 4px;
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
  }
  .blog-featured-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(11,28,53,0.1); }
  .blog-featured-thumb {
    height: 280px; background: linear-gradient(135deg, var(--navy-light), var(--navy));
    position: relative; display: flex; align-items: flex-end; padding: 28px;
  }
  .blog-thumb-sm { height: 180px; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); position: relative; display: flex; align-items: flex-end; padding: 20px; }
  .blog-cat-badge {
    background: var(--gold); color: var(--navy);
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 2px; font-weight: 500;
  }
  .blog-cat-badge.blue { background: rgba(201,168,76,0.15); color: var(--gold-light); }
  .blog-card-body { padding: 28px; }
  .blog-card-body-sm { padding: 20px; }
  .blog-card-title {
    font-family: var(--font-display); font-size: 24px; font-weight: 600;
    color: var(--navy); line-height: 1.25; margin-bottom: 12px;
  }
  .blog-card-title-sm { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
  .blog-card-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
  .blog-meta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .blog-meta-author { font-size: 12px; font-weight: 500; color: var(--text-dark); }
  .blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
  .blog-meta-info { font-size: 12px; color: var(--text-muted); }
  .blog-read-link {
    margin-left: auto; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .blog-read-link:hover { gap: 10px; }

  .blog-secondary { display: flex; flex-direction: column; gap: 2px; }
  .blog-secondary .blog-featured-card { display: grid; grid-template-columns: 200px 1fr; }
  .blog-secondary .blog-featured-card .blog-thumb-sm { height: 100%; min-height: 160px; }

  /* BLOG GRID MAIN */
  .blog-grid-section-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 32px; }
  .blog-grid-section-title em { font-style: italic; color: var(--gold); }
  .blog-main-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .blog-standard-card {
    background: var(--white); border: 1px solid rgba(11,28,53,0.08); border-radius: 4px;
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
  }
  .blog-standard-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,28,53,0.08); }
  .blog-standard-thumb {
    height: 160px; position: relative;
    display: flex; align-items: flex-end; padding: 16px;
  }
  .blog-standard-thumb.t1 { background: linear-gradient(135deg, #1a3560, #0B1C35); }
  .blog-standard-thumb.t2 { background: linear-gradient(135deg, #0d2040, #1a3560); }
  .blog-standard-thumb.t3 { background: linear-gradient(135deg, #112444, #0d2040); }
  .blog-standard-thumb.t4 { background: linear-gradient(135deg, #0B1C35, #1a3560); }
  .blog-standard-thumb.t5 { background: linear-gradient(135deg, #1a3560, #112444); }
  .blog-standard-thumb.t6 { background: linear-gradient(135deg, #0d2040, #0B1C35); }
  .blog-standard-body { padding: 22px; }
  .blog-standard-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
  .blog-standard-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
  .blog-standard-meta { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
  .blog-standard-date { font-size: 11px; color: var(--text-muted); }
  .blog-standard-read { font-size: 11px; color: var(--text-muted); margin-left: auto; }
  .blog-standard-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; margin-left: auto;
    transition: gap 0.2s;
  }
  .blog-standard-link:hover { gap: 10px; }

  /* PAGINATION */
  .pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 60px; }
  .page-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(11,28,53,0.15); border-radius: 2px; font-size: 13px;
    color: var(--text-mid); cursor: pointer; transition: all 0.2s; background: var(--white);
    font-family: var(--font-body);
  }
  .page-btn:hover, .page-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
  .page-btn-arrow { font-size: 16px; }

  /* SIDEBAR NEWSLETTER */
  .blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; margin-top: 60px; }
  .blog-sidebar {}
  .sidebar-card { background: var(--navy); border-radius: 4px; padding: 32px; margin-bottom: 24px; }
  .sidebar-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
  .sidebar-card-title em { font-style: italic; color: var(--gold-light); }
  .sidebar-card-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
  .sidebar-input { width: 100%; padding: 10px 14px; border: 1px solid rgba(201,168,76,0.25); border-radius: 2px; background: rgba(255,255,255,0.05); color: var(--white); font-size: 13px; font-family: var(--font-body); margin-bottom: 10px; }
  .sidebar-input::placeholder { color: rgba(255,255,255,0.3); }
  .sidebar-btn { width: 100%; padding: 11px; background: var(--gold); color: var(--navy); border: none; border-radius: 2px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; cursor: pointer; font-family: var(--font-body); transition: background 0.2s; }
  .sidebar-btn:hover { background: var(--gold-light); }

  .sidebar-topics { background: var(--off-white); border-radius: 4px; padding: 28px; }
  .sidebar-topics-title { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
  .topic-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(11,28,53,0.06); }
  .topic-item:last-child { border-bottom: none; }
  .topic-name { font-size: 13px; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .topic-name:hover { color: var(--gold); }
  .topic-count { font-size: 11px; color: var(--text-muted); background: var(--white); padding: 2px 8px; border-radius: 10px; }

  /* FOOTER */
  footer {
    background: #070F1E;
    padding: 60px 5% 32px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .footer-brand-tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .footer-brand-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 8px; line-height: 1.5; }
  .footer-col-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,0.25); }
  .footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); }

  @media (max-width: 900px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-secondary { display: grid; grid-template-columns: 1fr 1fr; }
    .blog-secondary .blog-featured-card { grid-template-columns: 1fr; }
    .blog-main-grid { grid-template-columns: 1fr 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 600px) {
    .blog-main-grid { grid-template-columns: 1fr; }
    .blog-secondary { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }
:root {
    --navy: #0B1C35; --navy-mid: #112444; --navy-light: #1a3560;
    --gold: #C9A84C; --gold-light: #E8C97A; --gold-pale: #F9F0DC;
    --white: #FFFFFF; --off-white: #F7F5F0;
    --text-dark: #0B1C35; --text-mid: #3D5277; --text-muted: #7A8FAD;
    --border: rgba(201,168,76,0.2);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; font-size: 16px; line-height: 1.6; }

  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(11,28,53,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 100px; }
  .nav-logo { display: flex; flex-direction: column; text-decoration: none; }
  .nav-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: 0.02em; line-height: 1.2; }
  .nav-logo-name img { width: 200px; }
  .nav-logo-title { font-size: 10px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { background: var(--gold); color: var(--navy) !important; padding: 9px 22px; border-radius: 2px; font-weight: 500; }
  .nav-cta:hover { background: var(--gold-light) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

  /* ARTICLE HERO */
  .article-hero {
    background: var(--navy); padding: 140px 5% 72px;
    position: relative; overflow: hidden;
  }
  .article-hero-bg {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(201,168,76,0.03) 60px,rgba(201,168,76,0.03) 61px), repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(201,168,76,0.03) 60px,rgba(201,168,76,0.03) 61px);
  }
  .article-hero-inner { position: relative; z-index: 2; max-width: 800px; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
  .breadcrumb a { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb-sep { font-size: 12px; color: rgba(255,255,255,0.2); }
  .breadcrumb-current { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
  .article-cat-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; font-weight: 500; margin-bottom: 20px; }
  .article-title { font-family: var(--font-display); font-size: clamp(32px,4.5vw,56px); font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
  .article-title em { font-style: italic; color: var(--gold-light); }
  .article-meta-bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
  .article-author-info { display: flex; align-items: center; gap: 12px; }
  .article-author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--navy); flex-shrink: 0; }
  .article-author-name { font-size: 13px; font-weight: 500; color: var(--white); }
  .article-author-cred { font-size: 11px; color: var(--gold); }
  .article-meta-dots { display: flex; align-items: center; gap: 16px; }
  .article-meta-item { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; }
  .article-share { margin-left: auto; display: flex; align-items: center; gap: 10px; }
  .share-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
  .share-btn { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 13px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
  .share-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* ARTICLE BODY */
  .article-body-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 60px; padding: 72px 5%; max-width: 1400px; margin: 0 auto; }
  .article-content {}

  /* PROSE */
  .prose { max-width: 680px; }
  .prose p { font-size: 16px; line-height: 1.85; color: var(--text-mid); margin-bottom: 24px; }
  .prose h2 { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--navy); margin: 48px 0 20px; line-height: 1.2; }
  .prose h2 em { font-style: italic; color: var(--gold); }
  .prose h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }
  .prose ul, .prose ol { margin: 0 0 24px 24px; }
  .prose li { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 8px; }
  .prose strong { color: var(--text-dark); font-weight: 500; }

  .callout-box { background: var(--gold-pale); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; padding: 20px 24px; margin: 32px 0; }
  .callout-box p { margin: 0; font-size: 15px; color: var(--text-dark); }
  .callout-box strong { color: var(--navy); }

  .key-points { background: var(--off-white); border-radius: 4px; padding: 28px 32px; margin: 36px 0; }
  .key-points-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
  .key-point-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
  .key-point-item:last-child { margin-bottom: 0; }
  .kp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
  .kp-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

  .article-image-placeholder { height: 320px; background: linear-gradient(135deg, var(--navy-light), var(--navy)); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin: 36px 0; flex-direction: column; gap: 12px; }
  .article-image-placeholder .img-icon { font-size: 32px; opacity: 0.4; }
  .article-img-caption { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: -28px; margin-bottom: 36px; font-style: italic; }

  /* AUTHOR BIO */
  .author-bio { background: var(--navy); border-radius: 4px; padding: 32px; margin-top: 56px; display: flex; gap: 24px; }
  .author-bio-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 600; color: var(--navy); flex-shrink: 0; }
  .author-bio-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .author-bio-cred { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .author-bio-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* CTA IN ARTICLE */
  .article-cta { background: var(--gold-pale); border: 1px solid var(--border); border-radius: 4px; padding: 36px; margin-top: 48px; text-align: center; }
  .article-cta-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
  .article-cta-title em { font-style: italic; color: var(--gold); }
  .article-cta-desc { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; }
  .btn-primary { background: var(--gold); color: var(--navy); padding: 13px 30px; border-radius: 2px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; display: inline-block; transition: background 0.2s; }
  .btn-primary:hover { background: var(--gold-light); }

  /* SIDEBAR */
  .article-sidebar {}
  .toc-card { background: var(--off-white); border-radius: 4px; padding: 24px; margin-bottom: 24px; position: sticky; top: 96px; }
  .toc-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
  .toc-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(11,28,53,0.06); }
  .toc-item:last-child { border-bottom: none; }
  .toc-num { font-family: var(--font-display); font-size: 14px; color: var(--gold); flex-shrink: 0; font-weight: 600; }
  .toc-link { font-size: 13px; color: var(--text-mid); text-decoration: none; line-height: 1.4; transition: color 0.2s; }
  .toc-link:hover { color: var(--navy); }

  .related-card { background: var(--white); border: 1px solid rgba(11,28,53,0.08); border-radius: 4px; overflow: hidden; margin-bottom: 12px; transition: transform 0.2s; }
  .related-card:hover { transform: translateY(-2px); }
  .related-thumb { height: 80px; background: linear-gradient(135deg, var(--navy-light), var(--navy)); display: flex; align-items: flex-end; padding: 10px 12px; }
  .related-body { padding: 14px 16px; }
  .related-cat { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .related-title { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
  .related-meta { font-size: 11px; color: var(--text-muted); }
  .related-section-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin: 28px 0 16px; }

  /* FOOTER */
  footer {
    background: #070F1E;
    padding: 60px 5% 32px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .footer-brand-tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
  .footer-brand-desc { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 8px; line-height: 1.5; }
  .footer-col-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,0.25); }
  .footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); }

  
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .author-bio { flex-direction: column; }
  }

