:root {
  --navy-900: #051628;
  --navy-800: #0a2540;
  --navy-700: #103157;
  --navy-600: #1a4377;
  --sand-50: #faf7f2;
  --sand-100: #f0eae0;
  --sand-200: #e0d4bf;
  --bronze-400: #c19a6b;
  --bronze-500: #a17e52;
  --bronze-600: #8a673e;
  --bronze-700: #6b4f2f;
  --ink-900: #0c1a2b;
  --ink-700: #2c3e54;
  --ink-500: #5a6d82;
  --ink-300: #94a3b8;
  --ink-200: #cbd5e1;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.16);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--bronze-400); color: var(--white); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze-500);
  margin-bottom: 16px;
}

/* === HEADER (shared) === */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--bronze-400);
}
.logo-mark svg { width: 22px; height: 22px; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.header-nav-link:hover { border-bottom-color: var(--bronze-500); }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--navy-800);
}
.header-phone svg { width: 18px; height: 18px; color: var(--bronze-500); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  border: none; cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: var(--bronze-500); color: var(--white);
  box-shadow: 0 4px 14px rgba(161, 126, 82, 0.35);
}
.btn-primary:hover { background: var(--bronze-600); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover { border-color: var(--navy-800); background: var(--sand-50); }

@media (max-width: 600px) {
  .header-inner { padding: 14px 20px; }
  .logo { font-size: 18px; }
  .logo-mark { width: 32px; height: 32px; }
  .header-phone span.phone-text { display: none; }
  .header-nav-link { display: none; }
}

/* === BLOG HERO === */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero .container { position: relative; }
.blog-hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 18px;
}
.blog-hero h1 em { font-style: italic; color: var(--bronze-400); font-weight: 400; }
.blog-hero-sub {
  font-size: 18px;
  color: rgba(240, 234, 224, 0.82);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === BLOG LIST === */
.blog-list-section { padding: 80px 0 100px; }
.blog-list {
  display: grid;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.blog-card {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--bronze-400); }
.blog-card-image {
  background: var(--navy-800);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.blog-card-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 12px; color: var(--ink-500);
  margin-bottom: 12px;
}
.blog-card-meta .dot { width: 3px; height: 3px; background: var(--ink-300); border-radius: 50%; }
.blog-card-meta .tag {
  font-weight: 600;
  color: var(--bronze-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.blog-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.blog-card h2 a { color: var(--navy-800); transition: color 0.15s ease; }
.blog-card:hover h2 a { color: var(--bronze-600); }
.blog-card-excerpt {
  color: var(--ink-500);
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-body { padding: 22px 24px; }
  .blog-card h2 { font-size: 22px; }
}

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 72px 24px;
  background: var(--sand-50);
  border-radius: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.blog-empty h2 { font-size: 26px; margin-bottom: 14px; }
.blog-empty p { color: var(--ink-500); font-size: 16px; line-height: 1.65; }
.blog-empty a { color: var(--bronze-600); font-weight: 600; }

/* === ARTICLE PAGE === */
.article {
  padding: 60px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}
.article .container { padding: 0 24px; }
.article-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 13px; color: var(--ink-500);
  margin-bottom: 18px;
}
.article-meta .tag {
  font-weight: 600;
  color: var(--bronze-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
}
.article-meta .dot { width: 3px; height: 3px; background: var(--ink-300); border-radius: 50%; }
.article h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.12;
  margin-bottom: 18px;
  color: var(--navy-800);
}
.article-deck {
  font-size: 20px;
  color: var(--ink-500);
  line-height: 1.55;
  margin-bottom: 36px;
  font-weight: 400;
}
.article-feature-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}
.article-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-700);
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  font-size: 30px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--navy-800);
}
.article-body h3 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--navy-800);
}
.article-body ul, .article-body ol {
  margin-bottom: 22px;
  padding-left: 22px;
}
.article-body li { margin-bottom: 8px; }
.article-body a {
  color: var(--bronze-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.article-body a:hover { color: var(--bronze-700); }
.article-body strong { color: var(--navy-800); font-weight: 600; }
.article-body blockquote {
  border-left: 4px solid var(--bronze-500);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--navy-800);
  line-height: 1.4;
}
.article-body img {
  width: 100%;
  border-radius: 10px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.article-body .callout {
  background: var(--sand-50);
  border-left: 4px solid var(--bronze-500);
  padding: 20px 24px;
  border-radius: 6px;
  margin: 28px 0;
  font-size: 16.5px;
}
.article-body .callout strong { display: block; margin-bottom: 6px; color: var(--bronze-700); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* Article footer CTA */
.article-cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 48px 40px;
  border-radius: 14px;
  margin-top: 56px;
  text-align: center;
}
.article-cta h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
}
.article-cta h3 em { color: var(--bronze-400); font-style: italic; font-weight: 400; }
.article-cta p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  font-size: 16px;
}
.article-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.article-cta .btn-primary { background: var(--bronze-500); }
.article-cta .btn-primary:hover { background: var(--bronze-400); color: var(--navy-800); }
.article-cta .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }
.article-cta .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 500;
  margin-top: 32px;
}
.back-to-blog:hover { color: var(--bronze-600); }

/* === FOOTER === */
footer { background: var(--navy-900); color: rgba(255,255,255,0.65); padding: 72px 0 32px; }
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-block .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand-block p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-bottom: 16px; max-width: 360px; }
.footer-parent {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--bronze-400);
  padding: 6px 12px;
  background: rgba(193, 154, 107, 0.12);
  border-radius: 100px;
  border: 1px solid rgba(193, 154, 107, 0.25);
}
.footer-parent a { color: var(--bronze-400); text-decoration: underline; font-weight: 600; }
footer h4 { font-family: var(--sans); color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 18px; letter-spacing: 1.5px; text-transform: uppercase; }
footer ul { list-style: none; }
footer ul li { padding: 4px 0; font-size: 14px; }
footer ul li a { color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
footer ul li a:hover { color: var(--bronze-400); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
