/* ============================================================
   HORNWATCH — MAIN STYLESHEET v1.0
   ============================================================ */

/* ---- Google Fonts loaded via wp_enqueue_style in functions.php ---- */

/* ---- Design Tokens ---- */
:root {
  --navy:       #0B1826;
  --navy-2:     #101F30;
  --slate:      #16232F;
  --paper:      #F3F2ED;
  --paper-2:    #EAE8E0;
  --ink:        #1A222B;
  --mist:       #818B96;
  --mist-light: #B7BEC7;
  --gold:       #B08D3E;
  --gold-light: #D9BC79;
  --teal:       #2E6B65;
  --teal-light: #5C9994;
  --high:       #8A5A32;
  --line:       #D9D6CC;
  --line-dark:  rgba(255,255,255,0.11);

  --serif: 'Source Serif 4', Georgia, serif;
  --sans:  'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'IBM Plex Mono', 'Courier New', monospace;

  --radius: 2px;
  --shadow: 0 2px 12px rgba(11,24,38,0.10);
  --shadow-lg: 0 8px 32px rgba(11,24,38,0.16);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--gold-light); color: var(--navy); }

/* ---- Layout Utilities ---- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 32px; }
section { padding: 88px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: 32px; }
.section-head .view-all {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--mist);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  white-space: nowrap;
}
.section-head .view-all:hover { color: var(--ink); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: inherit;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow.on-dark::before { background: var(--gold-light); }

/* ---- Buttons ---- */
.btn {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s ease;
  text-decoration: none;
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover  { background: var(--gold-light); }
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover  { background: var(--navy); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Status Badges ---- */
.status-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius);
  display: inline-block;
}
.status-stable   { background: rgba(46,107,101,.12); color: var(--teal); }
.status-elevated { background: rgba(176,141,62,.14);  color: var(--gold); }
.status-high     { background: rgba(138,90,50,.14);   color: var(--high); }
.status-critical { background: rgba(120,30,30,.15);   color: #8B2020; }

/* ---- Pulse dot (brand animation) ---- */
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: hw-pulse 2.4s ease-out infinite;
}
@keyframes hw-pulse {
  0%   { transform: scale(0.6); opacity: .9; }
  100% { transform: scale(2.1); opacity: 0; }
}

/* ==================================================
   HEADER
   ================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11,24,38,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  color: #fff;
  letter-spacing: .01em;
  flex-shrink: 0;
  text-decoration: none;
}
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-size: 13.5px;
  color: var(--mist-light);
  letter-spacing: .01em;
  transition: color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.primary-nav a:hover,
.primary-nav a.current-menu-item { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: var(--radius);
}
@media (max-width: 1020px) {
  .primary-nav { display: none; }
  .nav-toggle  { display: block; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 24px 32px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--line-dark);
    z-index: 199;
  }
}

/* ==================================================
   TICKER BAR
   ================================================== */
.ticker-bar {
  background: var(--slate);
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-bar::before { left: 0;  background: linear-gradient(90deg, var(--slate), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(-90deg, var(--slate), transparent); }
.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  padding: 13px 0;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--mist-light);
  animation: hw-scroll 44s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-tag { color: var(--gold-light); margin-right: 8px; }
@keyframes hw-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================================================
   HERO
   ================================================== */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-content { max-width: 720px; position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero .sub {
  font-size: 17px;
  color: var(--mist-light);
  max-width: 600px;
  margin-bottom: 38px;
  line-height: 1.65;
}
.hero .cta-row { margin-bottom: 76px; }
.hero-signal {
  position: absolute;
  right: -20px;
  top: 60px;
  width: 55%;
  max-width: 620px;
  opacity: .45;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) { .hero-signal { display: none; } }

/* ==================================================
   REGIONAL DASHBOARD
   ================================================== */
.country-dash-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.country-card {
  background: var(--paper);
  padding: 26px 22px;
  transition: background .2s;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.country-card:hover { background: #fff; }
.country-card .cname {
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 6px;
}
.country-card .status-badge { margin-bottom: 18px; }
.spark { width: 100%; height: 38px; margin-bottom: 16px; overflow: visible; }
.country-card .headline {
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 38px;
}
.country-card .go {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist);
  letter-spacing: .03em;
}
.country-card:hover .go { color: var(--gold); }
@media (max-width: 1000px) {
  .country-dash-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .country-dash-grid { grid-template-columns: 1fr; }
}

/* ==================================================
   MONITORING GRID (dark)
   ================================================== */
.monitor-section { background: var(--navy); color: #fff; }
.monitor-section h2 { font-size: 32px; color: #fff; margin-bottom: 48px; }
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.mon-item { background: var(--navy-2); padding: 32px 28px; }
.mon-item svg { margin-bottom: 18px; display: block; }
.mon-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: .01em;
  color: #fff;
}
.mon-item p { font-size: 13px; color: var(--mist-light); line-height: 1.65; }
@media (max-width: 900px) {
  .monitor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .monitor-grid { grid-template-columns: 1fr; }
}

/* ==================================================
   ASSESSMENTS
   ================================================== */
.assess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.assess-card { display: flex; flex-direction: column; }
.assess-card .thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 140%);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.assess-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
}
.assess-card .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.assess-card h3 { font-size: 19px; line-height: 1.35; margin-bottom: 12px; }
.assess-card p  { font-size: 13.5px; color: var(--mist); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.assess-card .rd {
  font-family: var(--mono);
  font-size: 11.5px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  display: inline-block;
}
.assess-card:hover .rd { border-color: var(--gold); color: var(--gold); }
@media (max-width: 900px) { .assess-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .assess-grid { grid-template-columns: 1fr; } }

/* ==================================================
   PUBLICATION CARDS (archive)
   ================================================== */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 900px) { .pub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pub-grid { grid-template-columns: 1fr; } }

.pub-card {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.pub-card:hover { box-shadow: var(--shadow); }
.pub-card .pub-thumb {
  height: 140px;
  background: var(--navy);
  overflow: hidden;
}
.pub-card .pub-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.pub-card .pub-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pub-card .pub-type {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pub-card h3 { font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
.pub-card .pub-excerpt { font-size: 13px; color: var(--mist); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.pub-card .pub-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.pub-card .pub-foot .read-link { color: var(--ink); }
.pub-card .pub-foot .read-link:hover { color: var(--gold); }

/* ==================================================
   BRIEFING PAPERS LIST
   ================================================== */
.brief-list { border-top: 1px solid var(--line); }
.brief-row {
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.brief-row .date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mist);
  padding-top: 4px;
}
.brief-row h3 { font-size: 18px; margin-bottom: 8px; }
.brief-row .excerpt { font-size: 13.5px; color: var(--mist); line-height: 1.6; max-width: 560px; }
.brief-row .author {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  margin-top: 8px;
  letter-spacing: .02em;
}
.brief-row .dl {
  font-family: var(--mono);
  font-size: 11.5px;
  text-align: right;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  display: inline-block;
  justify-self: end;
  align-self: start;
  white-space: nowrap;
}
.brief-row .dl:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 760px) {
  .brief-row { grid-template-columns: 1fr; gap: 8px; }
  .brief-row .dl { justify-self: start; }
}

/* ==================================================
   GEOPOLITICS WATCH (dark)
   ================================================== */
.geo-section { background: var(--slate); color: #fff; }
.geo-section h2 { font-size: 32px; color: #fff; max-width: 640px; margin-bottom: 56px; }
.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
}
.geo-item .geo-icon { color: var(--gold-light); margin-bottom: 16px; }
.geo-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #fff;
}
.geo-item p { font-size: 12.5px; color: var(--mist-light); line-height: 1.65; }
@media (max-width: 900px) {
  .geo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================
   FEATURED ANALYSIS
   ================================================== */
.featured-section { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.featured-art {
  height: 380px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.featured-art img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.featured-content h2 { font-size: 28px; line-height: 1.3; margin-bottom: 18px; }
.featured-content p  { font-size: 14.5px; color: var(--mist); line-height: 1.7; margin-bottom: 26px; }
@media (max-width: 900px) {
  .featured-inner { grid-template-columns: 1fr; }
  .featured-art { height: 260px; }
}

/* ==================================================
   SINGLE PUBLICATION
   ================================================== */
.pub-header {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 64px;
}
.pub-header .pub-type-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.pub-header h1 { font-size: clamp(26px, 4vw, 44px); max-width: 760px; margin-bottom: 18px; }
.pub-header .pub-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mist-light);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.pub-exec-summary {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.pub-exec-summary h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pub-exec-summary p { font-size: 15px; line-height: 1.7; color: var(--ink); }
.pub-body-content h2, .pub-body-content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}
.pub-body-content p  { margin-bottom: 20px; line-height: 1.75; }
.pub-body-content ul { margin-bottom: 20px; padding-left: 20px; }
.pub-body-content ul li { margin-bottom: 8px; list-style: disc; }

/* ---- Related publications ---- */
.related-pubs { border-top: 1px solid var(--line); padding-top: 48px; margin-top: 64px; }
.related-pubs h3 { font-size: 24px; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

/* ==================================================
   COUNTRY WATCH PAGES
   ================================================== */
.country-hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--line-dark);
}
.country-hero h1 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 14px; }
.country-hero .country-desc { font-size: 16px; color: var(--mist-light); max-width: 660px; margin-bottom: 30px; }
.country-status-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.country-stat { text-align: left; }
.country-stat .label { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--mist-light); margin-bottom: 4px; }
.country-stat .val   { font-family: var(--serif); font-size: 20px; color: #fff; }
.country-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.country-tabs a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 16px 22px;
  color: var(--mist);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.country-tabs a:hover { color: var(--ink); }
.country-tabs a.active { color: var(--ink); border-bottom-color: var(--gold); }
.country-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .country-grid { grid-template-columns: 1fr; } }
.country-sidebar { border: 1px solid var(--line); background: #fff; }
.sidebar-block { padding: 24px; border-bottom: 1px solid var(--line); }
.sidebar-block:last-child { border-bottom: none; }
.sidebar-block h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--mist); margin-bottom: 16px; }
.sidebar-link { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link .arrow { color: var(--mist); }
.sidebar-link:hover .arrow { color: var(--gold); }

/* ---- Timeline ---- */
.timeline { padding-left: 24px; border-left: 2px solid var(--line); }
.timeline-item { position: relative; padding-bottom: 28px; padding-left: 20px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper);
}
.timeline-item .t-date { font-family: var(--mono); font-size: 11px; color: var(--mist); margin-bottom: 6px; }
.timeline-item h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-item p  { font-size: 13px; color: var(--mist); line-height: 1.6; }

/* ==================================================
   CONFLICT TRACKER
   ================================================== */
.tracker-section { background: var(--navy); color: #fff; padding: 64px 0; }
.tracker-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}
.filter-select {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  color: var(--mist-light);
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.filter-select:hover { border-color: var(--gold-light); }
.tracker-list { border-top: 1px solid var(--line-dark); }
.tracker-event {
  display: grid;
  grid-template-columns: 110px auto 130px 130px;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
  font-size: 13.5px;
}
.tracker-event .t-date { font-family: var(--mono); font-size: 11px; color: var(--mist-light); padding-top: 2px; }
.tracker-event .t-title { color: #fff; font-family: var(--serif); font-size: 16px; line-height: 1.35; }
.tracker-event .t-country { font-family: var(--mono); font-size: 11px; color: var(--mist-light); padding-top: 2px; }
.tracker-event .t-type { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 760px) {
  .tracker-event { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ==================================================
   NEWSLETTER
   ================================================== */
.newsletter-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}
.nl-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.nl-inner .prog {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.nl-inner h2 { font-size: 26px; margin-bottom: 10px; }
.nl-inner p  { color: var(--mist); font-size: 13.5px; margin-bottom: 30px; }
.nl-form { display: flex; border: 1px solid var(--ink); }
.nl-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.nl-form button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .02em;
  flex-shrink: 0;
  transition: background .15s;
}
.nl-form button:hover { background: var(--navy); }

/* ==================================================
   FOOTER
   ================================================== */
.site-footer { background: var(--navy); color: var(--mist-light); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand { margin-bottom: 16px; }
.footer-desc { font-size: 13px; line-height: 1.7; color: var(--mist); max-width: 280px; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 13px; color: var(--mist-light); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 12px;
  color: var(--mist);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
}

/* ==================================================
   SIDEBAR / SEARCH WIDGET
   ================================================== */
.widget-search form { display: flex; border: 1px solid var(--line); }
.widget-search input {
  flex: 1;
  border: none;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 13.5px;
  outline: none;
  background: #fff;
  min-width: 0;
}
.widget-search button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-size: 13px;
}
.widget { margin-bottom: 32px; }
.widget h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

/* ==================================================
   UTILITY
   ================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.on-dark { color: #fff; }
