*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #14284b;
  --navy-light: #1e3a66;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --cream: #f7f5f0;
  --paper: #ffffff;
  --ink: #1c1c1c;
  --muted: #5c6470;
  --line: #e2ddd3;
  --max: 1180px;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; border: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
main { display: block; width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}
.content-narrow {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}

.utility {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: .75rem;
  padding: 7px 0;
}
.utility__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.utility__links { display: flex; gap: 18px; flex-wrap: wrap; }
.utility__links a:hover { color: var(--gold-soft); }

.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 14px;
  text-align: center;
}
.masthead__logo {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--navy);
}
.masthead__logo em { color: var(--gold); font-style: normal; }
.masthead__sub {
  margin-top: 4px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.masthead__domain { color: var(--gold); font-weight: 600; }

.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 48px;
}
.navbar__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.navbar__menu a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 3px solid transparent;
}
.navbar__menu a:hover,
.navbar__menu a.is-active {
  background: var(--navy-light);
  border-color: var(--gold);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: auto;
}

.ticker {
  background: var(--gold);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 0;
}
.ticker__inner {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ticker__label {
  flex-shrink: 0;
  background: var(--navy);
  color: #fff;
  padding: 3px 10px;
  font-size: .72rem;
  letter-spacing: .08em;
}
.ticker a { text-decoration: underline; text-underline-offset: 2px; }

.hero-split {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 20px;
  padding: 24px 0;
  align-items: start;
}
a.hero-main,
.hero-main {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  min-height: 360px;
}
.hero-main > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: .92;
}
.hero-main__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(20,40,75,.96) 0%, rgba(20,40,75,.4) 70%, transparent 100%);
}
.chip {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 10px;
}
.hero-main__cap h1 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  line-height: 1.25;
  margin: 0 0 8px;
  font-weight: 700;
  color: #fff;
}
.hero-main__cap p { font-size: .9rem; opacity: .92; max-width: 52ch; margin: 0; }
.meta { font-size: .78rem; color: rgba(255,255,255,.75); margin-top: 10px; }

.hero-stack { display: flex; flex-direction: column; gap: 14px; }
a.mini-card,
.mini-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s;
  color: inherit;
  min-height: 96px;
}
.mini-card:hover { box-shadow: 0 8px 24px rgba(20,40,75,.1); }
.mini-card > img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
}
.mini-card__body { padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; }
.mini-card__cat { font-size: .65rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; }
.mini-card__title { font-size: .86rem; font-weight: 700; line-height: 1.35; margin-top: 4px; color: var(--ink); }
.mini-card__time { font-size: .72rem; color: var(--muted); margin-top: 6px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 3px solid var(--navy);
  padding-top: 12px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0;
}
.section-head span { font-size: .78rem; color: var(--muted); }

.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
  align-items: stretch;
}
a.h-card,
.h-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  color: inherit;
  height: 100%;
  min-height: 170px;
}
.h-card:hover { box-shadow: 0 6px 20px rgba(20,40,75,.08); }
.h-card > img {
  flex: 0 0 38%;
  width: 38%;
  max-width: 200px;
  min-height: 170px;
  object-fit: cover;
}
.h-card__body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.h-card__cat { font-size: .68rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; }
.h-card__title {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.35;
  margin: 8px 0;
  color: var(--ink);
}
.h-card__excerpt { font-size: .86rem; color: var(--muted); margin: 0; }
.h-card__meta { font-size: .74rem; color: var(--muted); margin-top: 10px; }

.layout-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  padding-bottom: 40px;
  align-items: start;
}

.widget {
  background: var(--navy);
  color: #fff;
  padding: 18px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.widget h3 {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold-soft);
}
.widget li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .86rem; }
.widget li:last-child { border: none; }
.widget li a:hover { color: var(--gold-soft); }
.widget--light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
.widget--light h3 { color: var(--navy); }

.newsletter input {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 3px;
  margin-bottom: 8px;
  font-size: .88rem;
  box-sizing: border-box;
}
.newsletter button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}
.newsletter button:hover { background: var(--gold-soft); }

.quote-box {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--navy);
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 36px 0 20px;
  margin-top: 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer__brand { font-family: var(--display); font-size: 1.5rem; margin-bottom: 10px; }
.footer__brand em { color: var(--gold); font-style: normal; }
.footer p, .footer li { font-size: .86rem; line-height: 1.55; }
.footer h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.footer li { margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 16px;
  font-size: .78rem;
  text-align: center;
  opacity: .75;
}

.article-wrap { padding: 28px 0 48px; background: var(--cream); }
.article-kicker { font-size: .75rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; }
.article-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.2;
  margin: 12px 0;
  color: var(--navy);
}
.article-meta {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.article-photo { margin: 0 0 24px; border-radius: 4px; overflow: hidden; background: var(--line); }
.article-photo img { width: 100%; height: auto; }
.article-body p { margin-bottom: 1.1em; font-size: 1.02rem; color: var(--ink); }
.article-body h2 { font-family: var(--display); font-size: 1.2rem; color: var(--navy); margin: 1.6em 0 .6em; }
.article-back { display: inline-block; margin-top: 28px; font-weight: 700; color: var(--navy); }
.article-back:hover { color: var(--gold); }

.legal-page { padding: 32px 0 48px; background: var(--cream); }
.legal-page h1 { font-family: var(--display); font-size: 2rem; color: var(--navy); margin-bottom: 8px; }
.legal-page h2 { font-size: 1.1rem; margin: 1.4em 0 .5em; color: var(--navy); }
.legal-page p { margin-bottom: 1em; color: var(--muted); }

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .layout-3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  a.h-card, .h-card { flex-direction: column; min-height: 0; }
  .h-card > img {
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 180px;
    height: 180px;
  }
  .mini-card { grid-template-columns: 90px 1fr; }
}

@media (max-width: 640px) {
  .menu-toggle { display: block; }
  .navbar__menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    background: var(--navy-light);
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
  }
  .navbar__menu.is-open { display: flex; }
  .navbar__menu a { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-main, .hero-main > img { min-height: 280px; }
}
