*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --navy: #0d1b2e; --navy-mid: #1a3050; --red: #c8281e; --red-hover: #a81f16;
    --gold: #d4920a; --bg: #f2f3f5; --bg-white: #ffffff;
    --text: #111827; --text-mid: #374151; --text-muted: #6b7280; --border: #dde1e7;
}
html { scroll-behavior: smooth; }
body { font-family: 'Georgia', 'Times New Roman', serif; color: var(--text); background: var(--bg); line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* TOP BAR */
.top-bar { background: var(--navy); color: #9ca3af; font-family: 'Arial', sans-serif; font-size: 12px; padding: 7px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #9ca3af; margin-left: 16px; transition: color .2s; }
.top-bar a:hover { color: #fff; }

/* HEADER */
.site-header { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 999; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 42px; height: 42px; background: var(--navy); color: #fff; font-family: 'Georgia', serif; font-size: 20px; font-weight: bold; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.logo-name { font-family: 'Georgia', serif; font-size: 20px; font-weight: bold; color: var(--navy); line-height: 1; }
.logo-sub { font-family: 'Arial', sans-serif; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.main-nav ul { display: flex; gap: 28px; list-style: none; }
.main-nav a { font-family: 'Arial', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--text-mid); letter-spacing: .03em; transition: color .2s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--red); border-bottom-color: var(--red); }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); }

/* SECTION LABEL */
.section-label { font-family: 'Arial', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); border-left: 3px solid var(--red); padding-left: 10px; margin-bottom: 22px; display: block; }

/* FEATURED */
.featured-section { padding: 36px 0 0; }
.featured-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 36px; }
@media(max-width:860px){ .featured-grid { grid-template-columns: 1fr; } }
.featured-main { background: var(--bg-white); }
.featured-main-img { width: 100%; height: 340px; object-fit: cover; }
.featured-main-body { padding: 28px 32px 32px; }
.featured-tag { display: inline-block; background: var(--red); color: #fff; font-family: 'Arial', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 14px; }
.featured-title { font-family: 'Georgia', serif; font-size: clamp(22px, 3vw, 32px); font-weight: bold; line-height: 1.2; margin-bottom: 12px; color: var(--navy); }
.featured-title a { color: inherit; } .featured-title a:hover { color: var(--red); }
.featured-deck { font-size: 16px; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; }
.featured-meta { font-family: 'Arial', sans-serif; font-size: 12px; color: var(--text-muted); }
.featured-meta strong { color: var(--text-mid); }
.featured-sidebar { background: var(--bg-white); display: flex; flex-direction: column; }
.sidebar-story { padding: 20px 22px; border-bottom: 1px solid var(--border); flex: 1; }
.sidebar-story:last-child { border-bottom: none; }
.sidebar-story-tag { font-family: 'Arial', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.sidebar-story-title { font-family: 'Georgia', serif; font-size: 16px; font-weight: bold; line-height: 1.35; color: var(--navy); margin-bottom: 6px; }
.sidebar-story-title a { color: inherit; } .sidebar-story-title a:hover { color: var(--red); }
.sidebar-story-excerpt { font-family: 'Arial', sans-serif; font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ARTICLES GRID */
.articles-section { padding: 44px 0; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
@media(max-width:900px){ .articles-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .articles-grid { grid-template-columns: 1fr; } }
.article-card { background: var(--bg-white); display: flex; flex-direction: column; transition: background .2s; }
.article-card:hover { background: #fafbfc; }
.article-card-img { width: 100%; height: 190px; object-fit: cover; }
.article-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-card-tag { font-family: 'Arial', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.article-card-title { font-family: 'Georgia', serif; font-size: 18px; font-weight: bold; line-height: 1.3; color: var(--navy); margin-bottom: 10px; }
.article-card-title a { color: inherit; } .article-card-title a:hover { color: var(--red); }
.article-card-excerpt { font-family: 'Arial', sans-serif; font-size: 13.5px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.article-card-meta { font-family: 'Arial', sans-serif; font-size: 11.5px; color: var(--text-muted); display: flex; gap: 12px; }

/* TWO COL */
.two-col-section { padding: 0 0 44px; }
.two-col-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }
@media(max-width:860px){ .two-col-grid { grid-template-columns: 1fr; } }
.article-card-wide { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
.article-card-wide img { width: 100%; height: 240px; object-fit: cover; }
.article-card-wide-body { padding: 24px 28px 28px; flex: 1; }
.article-card-wide-tag { font-family: 'Arial', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.article-card-wide-title { font-family: 'Georgia', serif; font-size: 22px; font-weight: bold; line-height: 1.25; color: var(--navy); margin-bottom: 10px; }
.article-card-wide-title a { color: inherit; } .article-card-wide-title a:hover { color: var(--red); }
.article-card-wide-excerpt { font-family: 'Arial', sans-serif; font-size: 14.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.article-card-wide-meta { font-family: 'Arial', sans-serif; font-size: 12px; color: var(--text-muted); }
.narrow-stack { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.narrow-card { background: var(--bg-white); padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; transition: background .2s; }
.narrow-card:hover { background: #fafbfc; }
.narrow-card-img { width: 84px; height: 66px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.narrow-card-tag { font-family: 'Arial', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.narrow-card-title { font-family: 'Georgia', serif; font-size: 15px; font-weight: bold; line-height: 1.3; color: var(--navy); }
.narrow-card-title a { color: inherit; } .narrow-card-title a:hover { color: var(--red); }
.narrow-card-meta { font-family: 'Arial', sans-serif; font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* NEWSLETTER */
.newsletter-bar { background: var(--navy); color: #fff; padding: 52px 0; text-align: center; }
.newsletter-bar h2 { font-family: 'Georgia', serif; font-size: 30px; margin-bottom: 10px; }
.newsletter-bar p { font-family: 'Arial', sans-serif; font-size: 16px; opacity: .82; margin-bottom: 26px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border: none; font-size: 14.5px; font-family: 'Arial', sans-serif; border-radius: 4px 0 0 4px; }
.newsletter-form button { padding: 13px 26px; background: var(--red); color: #fff; border: none; font-family: 'Arial', sans-serif; font-size: 13.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border-radius: 0 4px 4px 0; transition: background .2s; }
.newsletter-form button:hover { background: var(--red-hover); }

/* FOOTER */
.site-footer { background: #0a1525; color: #9ca3af; padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-family: 'Arial', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col p { font-family: 'Arial', sans-serif; font-size: 13px; line-height: 1.75; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #9ca3af; font-family: 'Arial', sans-serif; font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #1e2e44; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-family: 'Arial', sans-serif; font-size: 12px; color: #6b7280; }
.footer-disclaimer { font-size: 11.5px; color: #4b5563; max-width: 580px; line-height: 1.6; font-family: 'Arial', sans-serif; }

/* ARTICLE PAGE */
.article-hero-bar { background: var(--navy); padding: 44px 0 36px; }
.article-tag { display: inline-block; background: var(--red); color: #fff; font-family: 'Arial', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 16px; }
.article-hero-bar h1 { font-family: 'Georgia', serif; font-size: clamp(24px, 3.5vw, 40px); font-weight: bold; line-height: 1.2; color: #fff; max-width: 840px; margin-bottom: 18px; }
.article-byline-bar { font-family: 'Arial', sans-serif; font-size: 13px; color: #9ca3af; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.article-byline-bar strong { color: #d1d5db; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 44px 0 60px; align-items: start; }
@media(max-width:900px){ .article-layout { grid-template-columns: 1fr; } }
.article-main img.hero-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 4px; margin-bottom: 32px; }
.article-main .lead { font-size: 18px; line-height: 1.8; color: var(--text-mid); margin-bottom: 26px; border-left: 4px solid var(--gold); padding-left: 18px; }
.article-main p { font-size: 16.5px; line-height: 1.82; margin-bottom: 22px; color: var(--text); }
.article-main h2 { font-family: 'Georgia', serif; font-size: 24px; font-weight: bold; color: var(--navy); margin: 38px 0 16px; padding-top: 18px; border-top: 2px solid var(--border); }
.article-main h3 { font-family: 'Georgia', serif; font-size: 20px; color: var(--navy-mid); margin: 28px 0 12px; }
.article-main ul, .article-main ol { margin: 0 0 22px 26px; font-size: 16.5px; line-height: 1.8; }
.article-main li { margin-bottom: 10px; }
.article-main strong { font-weight: 700; }
.article-main img.inline-img { width: 100%; border-radius: 4px; margin: 26px 0 8px; }
.img-caption { font-family: 'Arial', sans-serif; font-size: 12.5px; color: var(--text-muted); font-style: italic; margin-bottom: 26px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.pull-quote { background: var(--navy); color: #fff; padding: 24px 28px; border-radius: 4px; margin: 32px 0; font-family: 'Georgia', serif; font-size: 19px; font-style: italic; line-height: 1.5; }
.pull-quote .source { font-size: 13px; font-style: normal; opacity: .65; margin-top: 10px; display: block; font-family: 'Arial', sans-serif; }
.info-box { background: #eff6ff; border: 1px solid #bfdbfe; border-left: 4px solid var(--navy); border-radius: 4px; padding: 22px 26px; margin: 30px 0; }
.info-box h4 { font-family: 'Georgia', serif; font-size: 16px; font-weight: bold; color: var(--navy); margin-bottom: 12px; }
.info-box ul { margin-left: 20px; }
.info-box li { font-family: 'Arial', sans-serif; font-size: 14.5px; margin-bottom: 8px; color: var(--text-mid); }

/* CTA BOX */
.cta-box { background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%); color: #fff; border-radius: 8px; padding: 36px 32px; margin: 40px 0; text-align: center; }
.cta-box h3 { font-family: 'Georgia', serif; font-size: 24px; margin-bottom: 12px; }
.cta-box p { font-family: 'Arial', sans-serif; font-size: 15px; opacity: .88; margin-bottom: 24px; line-height: 1.65; }
.cta-btn { display: inline-block; background: var(--red); color: #fff; font-family: 'Arial', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 15px 36px; border-radius: 4px; transition: background .2s; }
.cta-btn:hover { background: var(--red-hover); color: #fff; }
.cta-disclaimer { font-family: 'Arial', sans-serif; font-size: 11.5px; opacity: .55; margin-top: 14px; }

/* SIDEBAR */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 26px; }
.sidebar-widget-title { background: var(--navy); color: #fff; font-family: 'Arial', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 10px 16px; }
.sidebar-item { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item-tag { font-family: 'Arial', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.sidebar-item-title { font-family: 'Georgia', serif; font-size: 14.5px; font-weight: bold; line-height: 1.35; color: var(--navy); }
.sidebar-item-title a { color: inherit; } .sidebar-item-title a:hover { color: var(--red); }
.sidebar-item-date { font-family: 'Arial', sans-serif; font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* STATIC PAGES */
.page-header { background: var(--navy); color: #fff; padding: 60px 0; text-align: center; }
.page-header h1 { font-family: 'Georgia', serif; font-size: 40px; margin-bottom: 10px; }
.page-header p { font-family: 'Arial', sans-serif; font-size: 16px; opacity: .8; }
.page-section { padding: 60px 0; }
.page-content { max-width: 840px; margin: 0 auto; }
.page-content h2 { font-family: 'Georgia', serif; font-size: 26px; color: var(--navy); margin: 34px 0 14px; }
.page-content p { font-family: 'Arial', sans-serif; font-size: 15.5px; line-height: 1.82; margin-bottom: 18px; color: var(--text-mid); }
.page-content ul { margin: 0 0 18px 24px; font-family: 'Arial', sans-serif; font-size: 15.5px; line-height: 1.8; color: var(--text-mid); }
.page-content li { margin-bottom: 9px; }
.legal-content { padding: 56px 0; max-width: 840px; margin: 0 auto; }
.legal-content h1 { font-family: 'Georgia', serif; font-size: 36px; margin-bottom: 8px; color: var(--navy); }
.legal-content .last-updated { font-family: 'Arial', sans-serif; font-style: italic; color: var(--text-muted); margin-bottom: 28px; font-size: 13.5px; }
.legal-content h2 { font-family: 'Georgia', serif; font-size: 22px; color: var(--navy); margin: 32px 0 14px; }
.legal-content p { font-family: 'Arial', sans-serif; font-size: 15px; line-height: 1.8; margin-bottom: 16px; color: var(--text-mid); }
.legal-content ul { margin: 0 0 16px 22px; font-family: 'Arial', sans-serif; font-size: 15px; line-height: 1.8; color: var(--text-mid); }
.legal-content li { margin-bottom: 8px; }
.contact-form { max-width: 580px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 7px; font-family: 'Arial', sans-serif; font-weight: 600; font-size: 14px; color: var(--text); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid var(--border); border-radius: 5px; font-size: 14.5px; font-family: 'Arial', sans-serif; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { min-height: 130px; resize: vertical; }
.submit-btn { padding: 13px 34px; background: var(--navy); color: #fff; border: none; border-radius: 5px; font-size: 15px; font-family: 'Arial', sans-serif; font-weight: 700; cursor: pointer; transition: background .2s; }
.submit-btn:hover { background: var(--navy-mid); }
.form-message { display: none; padding: 13px 16px; border-radius: 5px; margin-bottom: 18px; font-family: 'Arial', sans-serif; font-size: 14px; }
@media(max-width:768px){
    .mobile-menu-toggle { display: flex; }
    .main-nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 6px 24px rgba(0,0,0,.1); gap: 18px; z-index: 999; }
    .main-nav.active ul { display: flex; }
    .articles-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-radius: 4px; }
    .newsletter-form button { border-radius: 4px; }
    .top-bar-inner nav { display: none; }
}
