:root {
  --navy: #122B4D;
  --navy-deep: #0B1F3A;
  --navy-light: #1B3A66;
  --gold: #C9A14A;
  --gold-light: #DDB870;
  --gold-pale: #F2E8D0;
  --cream: #FBF7EE;
  --ink: #1A1A1A;
  --muted: #5B6470;
  --line: #E5DFCF;
  --white: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink); background: var(--cream);
  line-height: 1.7; font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; line-height: 1.2;
  color: var(--navy-deep); letter-spacing: -0.01em;
}
p { margin-bottom: 1.1rem; }
a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(201,161,74,.4); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 12px 20px; z-index: 1000; }
.skip-link:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,238,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-wrap img, .brand-logo { width: 64px; height: 64px; border-radius: 6px; display: block; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--navy-deep); letter-spacing: 0.02em; line-height: 1; }
.logo-text small { display: block; font-family: 'Inter', sans-serif; font-size: .68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { list-style: none; display: flex; gap: 26px; }
.main-nav a { font-size: .92rem; font-weight: 500; color: var(--navy-deep); text-decoration: none; }
.cta-mini { background: var(--navy); color: #fff !important; padding: 10px 20px; border-radius: 4px; font-size: .88rem; font-weight: 600; text-decoration: none !important; }
.cta-mini:hover { background: var(--navy-deep); }
.phone-link { font-weight: 600; color: var(--navy-deep) !important; text-decoration: none !important; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--navy-deep); cursor: pointer; }

/* Page header */
.page-header {
  background: linear-gradient(135deg, rgba(11,31,58,.92) 0%, rgba(18,43,77,.88) 100%),
              radial-gradient(circle at 20% 30%, rgba(201,161,74,.15), transparent 40%);
  color: var(--white); padding: 64px 0 56px;
}
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.page-header .eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); font-weight: 500;
  margin-bottom: 16px; padding-bottom: 6px;
  border-bottom: 1px solid rgba(201,161,74,.4);
}
.page-header p.intro { color: rgba(255,255,255,.82); max-width: 780px; font-size: 1.08rem; line-height: 1.7; }
.breadcrumbs { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.breadcrumbs a { color: var(--gold-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }

/* Article body */
.article-section { padding: 70px 0; background: var(--cream); }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: flex-start; }
.article-body { background: var(--white); padding: 50px 56px; border-radius: 8px; box-shadow: 0 8px 28px rgba(11,31,58,.06); }
.article-body h2 { font-size: 1.85rem; margin: 2.4rem 0 1rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.35rem; margin: 1.8rem 0 .8rem; color: var(--navy); }
.article-body p { font-size: 1.04rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem 1.4rem; }
.article-body li { margin-bottom: .5rem; }
.article-body strong { color: var(--navy-deep); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  padding: 18px 22px; margin: 1.6rem 0;
  border-radius: 0 6px 6px 0; font-style: italic;
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body .key-takeaway {
  background: var(--navy-deep); color: var(--white);
  padding: 22px 26px; border-radius: 8px;
  border-left: 4px solid var(--gold);
  margin: 2rem 0;
}
.article-body .key-takeaway strong { color: var(--gold-light); display: block; margin-bottom: 6px; font-size: .82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.article-body .key-takeaway p { color: rgba(255,255,255,.92); margin: 0; }

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--navy-deep); color: var(--white); padding: 32px 28px; border-radius: 8px; }
.sidebar-card h3 { color: var(--white); font-size: 1.45rem; margin-bottom: 10px; }
.sidebar-card p { font-size: .94rem; color: rgba(255,255,255,.82); margin-bottom: 18px; line-height: 1.6; }
.sidebar-card .price { font-size: 1.6rem; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-weight: 600; margin-bottom: 18px; }
.sidebar-card .btn-gold {
  display: block; text-align: center; background: var(--gold); color: var(--navy-deep) !important;
  padding: 12px 18px; border-radius: 4px; font-weight: 600; text-decoration: none !important;
  margin-bottom: 10px;
}
.sidebar-card .btn-gold:hover { background: var(--gold-light); }
.sidebar-card .phone {
  display: block; text-align: center; color: rgba(255,255,255,.85) !important;
  font-size: .92rem; text-decoration: none !important; padding: 10px;
}
.sidebar-related { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 24px; margin-top: 20px; }
.sidebar-related h4 { font-family: 'Inter', sans-serif; font-size: .82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.sidebar-related ul { list-style: none; padding: 0; }
.sidebar-related li { padding: 9px 0; border-top: 1px solid var(--line); }
.sidebar-related li:first-child { border-top: none; }
.sidebar-related a { font-size: .92rem; color: var(--navy-deep); text-decoration: none; }
.sidebar-related a:hover { color: var(--gold); }

/* CTA strip */
.cta-strip { background: var(--navy); color: var(--white); padding: 56px 0; text-align: center; }
.cta-strip h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 24px; }
.cta-strip .btn { display: inline-block; background: var(--gold); color: var(--navy-deep) !important; padding: 14px 30px; border-radius: 4px; font-weight: 600; text-decoration: none !important; }
.cta-strip .btn:hover { background: var(--gold-light); }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding: 60px 0 30px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { width: 64px; height: 64px; border-radius: 6px; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; line-height: 1.7; max-width: 320px; }
.site-footer h5 { font-family: 'Inter', sans-serif; font-size: .82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.lda-disclosure { border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0 20px; font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.lda-disclosure strong { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.7); margin: 0 6px; text-decoration: none; }

@media (max-width: 920px) {
  .article-grid { grid-template-columns: 1fr; gap: 36px; }
  .sidebar { position: static; }
  .article-body { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-toggle { display: block; }
  .main-nav ul { display: none; }
  .main-nav.open ul { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 20px 24px; gap: 16px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .logo-text small { font-size: .6rem; }
  .phone-link { display: none; }
}
