/* ════════ JUMPSTART NEWSROOM — shared styles ════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #C8621A;
  --orange-light: #E8823A;
  --orange-glow: #FF9D4D;
  --orange-pale: #F5E6D8;
  --orange-dark: #7A3A0A;
  --cream: #FAF7F3;
  --charcoal: #1A1714;
  --charcoal-mid: #2D2926;
  --charcoal-deep: #110F0D;
  --warm-gray: #7A746E;
  --ink: #3A3531;
  --border: rgba(200,98,26,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--orange); color: white; }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 4rem;
  background: rgba(17,15,13,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,98,26,0.22);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--cream);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,247,243,0.6); text-decoration: none;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--orange-light);
  transition: width 0.3s cubic-bezier(.22,.61,.36,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--orange-light); text-decoration: none; transition: color 0.2s;
}
.nav-phone svg { width: 13px; height: 13px; }
.nav-phone:hover { color: var(--orange-glow); }
.nav-cta {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.65rem 1.6rem;
  background: var(--orange); color: white; text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s;
}
.nav-cta:hover { background: var(--orange-light); box-shadow: 0 0 24px rgba(232,130,58,0.45); }

/* ─── PAGE HERO (dark band) ─── */
.news-hero {
  background: radial-gradient(ellipse at 50% 0%, #261a10 0%, var(--charcoal-deep) 60%);
  color: var(--cream);
  padding: 11rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.news-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--orange-glow);
  border: 1px solid rgba(200,98,26,0.35); padding: 0.5rem 1.1rem;
  border-radius: 100px; background: rgba(200,98,26,0.08); margin-bottom: 1.8rem;
}
.news-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-glow); box-shadow: 0 0 8px var(--orange-glow); }
.news-hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.05;
  letter-spacing: -0.01em; max-width: 16ch; margin: 0 auto;
}
.news-hero h1 em { font-style: italic; color: var(--orange-light); }
.news-hero .lead {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem); color: rgba(250,247,243,0.65);
  margin: 1.5rem auto 0; max-width: 60ch;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(250,247,243,0.45);
  margin-bottom: 1.5rem; display: flex; gap: 0.6rem; justify-content: center;
}
.breadcrumb a { color: var(--orange-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-glow); }
.breadcrumb span { opacity: 0.5; }

/* ─── ARTICLE LISTING ─── */
.news-wrap { max-width: 1140px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.section-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 2.5rem;
}

.featured-article {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--border); margin-bottom: 4rem;
  background: white; overflow: hidden; text-decoration: none;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.featured-article:hover { box-shadow: 0 36px 70px -38px rgba(200,98,26,0.45); transform: translateY(-4px); border-color: rgba(232,130,58,0.5); }
.featured-visual {
  background: linear-gradient(150deg, var(--charcoal-mid) 0%, var(--charcoal-deep) 90%);
  position: relative; min-height: 340px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 2.5rem;
}
.featured-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.featured-visual .tag {
  position: relative; z-index: 1; font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--orange-glow);
}
.featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-body .meta { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 1rem; font-weight: 600; }
.featured-body h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; color: var(--charcoal); margin-bottom: 1rem; }
.featured-body p { font-size: 0.92rem; line-height: 1.8; color: var(--ink); margin-bottom: 1.5rem; }
.read-more { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 0.5rem; }
.read-more svg { width: 14px; height: 14px; transition: transform 0.25s; }
.featured-article:hover .read-more svg { transform: translateX(4px); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.article-card {
  background: white; border: 1px solid var(--border);
  text-decoration: none; display: flex; flex-direction: column;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.article-card:hover { box-shadow: 0 30px 60px -36px rgba(200,98,26,0.4); transform: translateY(-5px); border-color: rgba(232,130,58,0.5); }
.card-visual {
  background: linear-gradient(150deg, var(--charcoal-mid) 0%, var(--charcoal-deep) 90%);
  height: 170px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.card-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.card-visual .tag { position: relative; z-index: 1; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange-glow); }
.card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.card-body .meta { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.8rem; font-weight: 600; }
.card-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; line-height: 1.2; color: var(--charcoal); margin-bottom: 0.8rem; }
.card-body p { font-size: 0.84rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.25rem; flex: 1; }
.card-body .read-more { margin-top: auto; }

/* ─── ARTICLE PAGE ─── */
.article-meta-bar {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,247,243,0.55); font-weight: 600; margin-top: 2rem;
}
.article-meta-bar strong { color: var(--orange-light); font-weight: 600; }

.article-body { max-width: 720px; margin: 0 auto; padding: 4.5rem 2rem 5rem; }
.article-body p { font-size: 1.06rem; line-height: 1.9; color: var(--ink); margin-bottom: 1.6rem; }
.article-body p.standfirst { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; font-weight: 300; line-height: 1.6; color: var(--charcoal); margin-bottom: 2.5rem; }
.article-body h2 { font-family: var(--font-display); font-weight: 500; font-size: 2.1rem; line-height: 1.15; color: var(--charcoal); margin: 3rem 0 1.2rem; }
.article-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: var(--charcoal); margin: 2.2rem 0 0.9rem; }
.article-body ul, .article-body ol { margin: 0 0 1.6rem 1.3rem; }
.article-body li { font-size: 1.04rem; line-height: 1.8; color: var(--ink); margin-bottom: 0.7rem; }
.article-body li::marker { color: var(--orange); }
.article-body a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--orange); }
.article-body strong { color: var(--charcoal); font-weight: 600; }

.pull-quote {
  border-left: 3px solid var(--orange); padding: 0.5rem 0 0.5rem 2rem;
  margin: 2.5rem 0; font-family: var(--font-display); font-style: italic;
  font-weight: 300; font-size: 1.7rem; line-height: 1.45; color: var(--charcoal);
}

.stat-callout {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  margin: 2.75rem 0;
}
.stat-callout .stat { background: var(--cream); padding: 1.75rem 1.25rem; text-align: center; }
.stat-callout .stat .n { font-family: var(--font-display); font-weight: 300; font-size: 2.6rem; line-height: 1; color: var(--orange); }
.stat-callout .stat .l { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-gray); margin-top: 0.6rem; }

.key-takeaways {
  background: var(--charcoal); color: var(--cream); padding: 2.5rem;
  margin: 3rem 0; position: relative;
}
.key-takeaways::before { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--orange); }
.key-takeaways h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--orange-light); margin: 0 0 1.25rem; }
.key-takeaways ul { margin: 0; list-style: none; }
.key-takeaways li { position: relative; padding-left: 1.6rem; margin-bottom: 0.9rem; font-size: 0.95rem; line-height: 1.7; color: rgba(250,247,243,0.8); }
.key-takeaways li::before { content: '✦'; position: absolute; left: 0; color: var(--orange-light); font-size: 0.7rem; top: 0.3rem; }

/* ─── ARTICLE CTA ─── */
.article-cta {
  background: radial-gradient(ellipse at center, #261a10 0%, var(--charcoal-deep) 70%);
  color: var(--cream); text-align: center; padding: 5rem 2rem;
}
.article-cta h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 1rem; }
.article-cta h2 em { font-style: italic; color: var(--orange-light); }
.article-cta p { font-size: 0.9rem; color: rgba(250,247,243,0.55); margin-bottom: 2.25rem; letter-spacing: 0.04em; }
.cta-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.05rem 2.6rem; background: var(--orange); color: white; text-decoration: none;
  transition: background 0.25s, box-shadow 0.3s; display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-primary:hover { background: var(--orange-light); box-shadow: 0 0 36px rgba(232,130,58,0.5); }
.btn-primary svg { width: 14px; height: 14px; }
.btn-ghost {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.05rem 2.6rem; border: 1px solid rgba(250,247,243,0.35); color: var(--cream);
  text-decoration: none; transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--orange-light); color: var(--orange-light); }

/* ─── RELATED ─── */
.related { max-width: 1140px; margin: 0 auto; padding: 4.5rem 2rem 2rem; }
.related h2 { font-family: var(--font-display); font-weight: 300; font-size: 2rem; color: var(--charcoal); margin-bottom: 2rem; }
.related h2 em { font-style: italic; color: var(--orange); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal-deep); border-top: 1px solid rgba(200,98,26,0.15);
  padding: 2.5rem 4rem; display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.2em; color: rgba(250,247,243,0.4); }
.footer-copy { font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(250,247,243,0.25); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links, .nav-phone span { display: none; }
  .featured-article { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .stat-callout { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .news-wrap { padding: 3.5rem 1.5rem 4rem; }
}
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }
