/* ============================================================
   The NOLA Tribune — style.css v2
   Palette: Deep Burgundy · Gold · Off-White
   ============================================================ */
:root {
  --burgundy:  #3a1760;
  --wine:      #4a1f7a;
  --wine-lt:   #6b3aaa;
  --gold:      #c9a227;
  --gold-lt:   #e5c050;
  --bg:        #f9f7f5;
  --paper:     #ffffff;
  --card:      #ffffff;
  --border:    #ddd5cc;
  --text:      #1a1210;
  --text-2:    #4a3f3a;
  --text-3:    #7a6f6a;
  --util-bg:   #2d0e15;
  --nav-h:     46px;
  --r:         4px;
  --shadow:    0 1px 4px rgba(74,16,32,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', Georgia, serif;
  font-size: 17px; line-height: 1.65;
  color: var(--text); background: var(--bg);
}
a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--wine-lt); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Utility Bar ---- */
.util-bar {
  background: var(--util-bg);
  color: rgba(255,255,255,.65);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem; letter-spacing: .03em;
}
.util-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 6px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.util-left { display: flex; align-items: center; gap: 16px; }
.util-nav { display: flex; gap: 16px; }
.util-nav a { color: rgba(255,255,255,.65); }
.util-nav a:hover { color: var(--gold-lt); text-decoration: none; }

/* ---- Weather Mini (utility bar) ---- */
.weather-mini {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 600;
  padding: 2px 8px; border-radius: 3px;
  border: 1px solid rgba(201,162,39,.3);
  transition: background .15s;
}
.weather-mini:hover { background: rgba(201,162,39,.15); text-decoration: none; color: var(--gold-lt); }
.weather-mini-icon { font-size: .9rem; }
.weather-mini-temp { font-weight: 700; }
.weather-mini-city { color: rgba(255,255,255,.5); font-size: .72rem; }

/* ---- Masthead ---- */
.masthead {
  background: var(--burgundy);
  border-bottom: 3px solid var(--gold);
  padding: 22px 20px 18px;
  text-align: center;
}
.masthead-inner { max-width: 1280px; margin: 0 auto; }
.masthead-logo { display: inline-block; text-decoration: none; }
.logo-the {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .95rem; font-weight: 400;
  color: var(--gold-lt); letter-spacing: .25em;
  text-transform: uppercase; margin-bottom: 2px;
}
.logo-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900; color: #fff;
  letter-spacing: -.01em; line-height: 1;
}
.masthead-logo:hover .logo-name { color: var(--gold-lt); }
.masthead-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem; color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase; margin-top: 8px;
}

/* ---- Nav ---- */
.site-nav {
  background: var(--wine);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 6px rgba(74,16,32,.25);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center;
}
.nav-list {
  display: flex; list-style: none; flex: 1;
  overflow-x: auto; scrollbar-width: none; height: 100%;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-link {
  display: flex; align-items: center;
  padding: 0 16px; height: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .88rem; font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-bottom-color .15s;
}
.nav-link:hover { color: #fff; border-bottom-color: var(--section-color, var(--gold)); text-decoration: none; }
.nav-search-btn, .hamburger {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.75); padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-search-btn:hover, .hamburger:hover { color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 1px; }

/* ---- Search Bar ---- */
.search-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  display: none; padding: 10px 20px;
}
.search-bar.open { display: block; }
.search-form { max-width: 640px; margin: 0 auto; display: flex; gap: 8px; }
.search-input {
  flex: 1; padding: 9px 14px;
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: 1rem; font-family: inherit; outline: none;
}
.search-input:focus { border-color: var(--wine); }
.search-submit {
  background: var(--wine); color: #fff;
  border: none; border-radius: var(--r);
  padding: 9px 18px; font-size: .9rem; font-weight: 600; cursor: pointer;
}
.search-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-3); font-size: 1.4rem; padding: 0 4px;
}

/* ---- Mobile Overlay ---- */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(74,16,32,.6);
}
.mobile-overlay.open { display: block; }
.mobile-nav {
  position: absolute; top: 0; right: 0;
  width: min(320px,85vw); height: 100%;
  background: var(--burgundy); overflow-y: auto; padding: 20px;
}
.mobile-close {
  display: block; margin-left: auto; margin-bottom: 24px;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 1.8rem;
}
.mobile-nav-list { list-style: none; }
.mobile-nav-list li a {
  display: block; padding: 13px 16px;
  color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-list li a:hover { color: var(--gold-lt); text-decoration: none; }

/* ---- Layout ---- */
.container {
  max-width: 1280px; margin: 0 auto;
  padding: 32px 20px 64px;
}
.main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .main-grid { grid-template-columns: 1fr; } }

/* ---- Sticky Sidebar ---- */
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  max-height: calc(100vh - var(--nav-h) - 32px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ---- Hero ---- */
.hero {
  background: var(--paper); border-radius: var(--r);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 40px;
}
.hero-img-wrap { overflow: hidden; border-radius: var(--r) var(--r) 0 0; background: transparent; }
.hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: none; }
.hero-img.loaded { display: block; }
.hero-text { padding: 24px 28px 28px; border-top: 5px solid var(--wine); }
.hero-kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--wine); margin-bottom: 10px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900; line-height: 1.2; margin-bottom: 12px;
}
.hero-headline a { color: var(--text); }
.hero-headline a:hover { color: var(--wine); text-decoration: none; }
.hero-desc { font-size: 1rem; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .82rem; color: var(--text-3);
  font-family: 'Source Sans 3', sans-serif;
  flex-wrap: wrap;
}
.hero-source { font-weight: 600; color: var(--text-2); }
.hero-read {
  display: inline-block; background: var(--wine); color: #fff;
  padding: 8px 18px; border-radius: var(--r);
  font-size: .85rem; font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase; letter-spacing: .05em;
}
.hero-read:hover { background: var(--wine-lt); text-decoration: none; color: #fff; }

/* ---- Story Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 24px; margin-bottom: 48px;
}
.story-card {
  background: var(--card); border-radius: var(--r);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .15s;
}
.story-card:hover { box-shadow: 0 4px 16px rgba(74,16,32,.12); }
.story-card.no-img {
  border-top: 4px solid var(--wine);
  border-radius: 0 0 var(--r) var(--r);
}
.card-img-link { display: block; overflow: hidden; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .3s; }
.card-img-link:hover .card-img { transform: scale(1.03); }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-badge {
  display: inline-block; color: #fff;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 8px; border-radius: 2px; margin-bottom: 10px;
  font-family: 'Source Sans 3', sans-serif;
}
.card-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 8px; flex: 1;
}
.card-headline a { color: var(--text); }
.card-headline a:hover { color: var(--wine); text-decoration: none; }
.card-desc { font-size: .88rem; color: var(--text-2); line-height: 1.5; margin-bottom: 10px; }
.card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--text-3);
  font-family: 'Source Sans 3', sans-serif;
  padding-top: 10px; border-top: 1px solid var(--border);
  margin-bottom: 10px;
}
.card-source { font-weight: 600; color: var(--text-2); }

/* ---- Engagement ---- */
.card-engagement {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .75rem; color: var(--text-3);
  padding-top: 8px; border-top: 1px solid var(--border);
}
.eng-views, .eng-shares { white-space: nowrap; }

/* ---- Share Buttons ---- */
.share-row { display: flex; gap: 5px; margin-left: auto; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 3px;
  font-size: .72rem; font-weight: 900; text-decoration: none;
  border: none; cursor: pointer; transition: opacity .15s;
  font-family: 'Source Sans 3', sans-serif;
}
.share-btn:hover { opacity: .8; text-decoration: none; }
.share-tw { background: #000; color: #fff; }
.share-fb { background: #1877f2; color: #fff; }
.share-li { background: #0a66c2; color: #fff; }
.share-copy { background: var(--border); color: var(--text-2); font-size: .8rem; }
.share-copy.copied { background: #1a5c2a; color: #fff; }

/* ---- Headlines Sidebar ---- */
.sidebar-widget {
  background: var(--paper); border-radius: var(--r);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 32px;
}
.sidebar-title {
  background: var(--burgundy); color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 10px 16px; position: sticky; top: 0; z-index: 1;
}
.hl-list { list-style: none; }
.hl-item { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.hl-item:last-child { border-bottom: none; }
.hl-label {
  display: inline-block; color: #fff;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 2px 6px; border-radius: 2px; margin-bottom: 5px;
  font-family: 'Source Sans 3', sans-serif;
}
.hl-link {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .9rem; font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: 3px;
}
.hl-link:hover { color: var(--wine); text-decoration: none; }
.hl-time { display: block; font-size: .73rem; color: var(--text-3); font-family: 'Source Sans 3', sans-serif; }

/* ---- Weather widget (sidebar) ---- */
.sidebar-weather {
  background: var(--paper); border-radius: var(--r);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 24px;
}
.sidebar-weather-head {
  background: var(--burgundy); color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; padding: 10px 16px;
}
.sidebar-weather-body { padding: 16px; text-align: center; }
.sidebar-wx-icon { font-size: 2.5rem; margin-bottom: 4px; }
.sidebar-wx-temp {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1;
}
.sidebar-wx-label { font-size: .88rem; color: var(--text-2); margin: 6px 0 12px; }
.sidebar-wx-row {
  display: flex; justify-content: space-between;
  font-size: .8rem; color: var(--text-3);
  padding: 5px 0; border-top: 1px solid var(--border);
}
.sidebar-wx-row:first-of-type { border-top: none; }
.sidebar-wx-key { font-weight: 600; color: var(--text-2); }
.sidebar-wx-link {
  display: block; margin-top: 12px;
  background: var(--wine); color: #fff;
  text-align: center; padding: 8px;
  border-radius: var(--r); font-size: .82rem; font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
}
.sidebar-wx-link:hover { background: var(--wine-lt); text-decoration: none; color: #fff; }

/* ---- Section Heads ---- */
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid var(--wine);
  padding-bottom: 10px; margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 900;
}
.section-more {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem; font-weight: 700;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .05em;
}
.section-more:hover { color: var(--wine); text-decoration: none; }

/* ---- Category Page ---- */
.cat-header { padding: 28px 0 24px; border-bottom: 3px solid var(--wine); margin-bottom: 32px; }
.cat-title { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 900; }
.cat-desc { color: var(--text-2); margin-top: 6px; font-size: .95rem; }

/* ---- Legal Pages ---- */
.legal-banner { background: var(--paper); border-bottom: 1px solid var(--border); border-top: 5px solid var(--burgundy); }
.legal-banner-inner { max-width: 860px; margin: 0 auto; padding: 36px 24px 28px; }
.legal-banner-inner h1 { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 900; }
.legal-date { color: var(--text-3); font-size: .88rem; margin-top: 6px; }
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 36px 24px 72px; }
.legal-wrap h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.legal-wrap p { color: var(--text-2); margin-bottom: 12px; line-height: 1.7; }
.legal-wrap ul { margin: 8px 0 16px 24px; }
.legal-wrap li { color: var(--text-2); margin-bottom: 6px; line-height: 1.65; }
.legal-wrap a { color: var(--wine); }
.legal-toc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; margin-bottom: 28px; }
.legal-toc h3 { font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.legal-toc ol { margin-left: 20px; }
.legal-toc li { font-size: .88rem; margin-bottom: 4px; }

/* ---- About Page ---- */
.about-hero { background: var(--burgundy); color: #fff; padding: 56px 24px; text-align: center; }
.about-hero-inner { max-width: 720px; margin: 0 auto; }
.about-hero h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 14px; }
.about-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; line-height: 1.65; }
.about-body { max-width: 860px; margin: 0 auto; padding: 48px 24px 72px; }
.about-body h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 900; border-bottom: 2px solid var(--border); padding-bottom: 10px; margin: 36px 0 18px; }
.about-body p { color: var(--text-2); margin-bottom: 14px; line-height: 1.7; }
.about-values { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; margin: 24px 0 32px; }
.about-value { background: var(--paper); border-radius: var(--r); border-top: 4px solid var(--wine); padding: 20px; box-shadow: var(--shadow); }
.about-value h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-value p { font-size: .88rem; color: var(--text-2); margin: 0; line-height: 1.55; }

/* ---- Contact Page ---- */
.contact-wrap { max-width: 640px; margin: 0 auto; padding: 40px 24px 80px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 6px; font-size: .88rem; font-weight: 700; font-family: 'Source Sans 3', sans-serif; }
.form-input { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r); font-size: 1rem; font-family: inherit; background: var(--paper); outline: none; transition: border-color .15s; }
.form-input:focus { border-color: var(--wine); }
textarea.form-input { resize: vertical; }
.form-submit { background: var(--wine); color: #fff; border: none; border-radius: var(--r); padding: 12px 28px; font-size: 1rem; font-weight: 700; font-family: 'Source Sans 3', sans-serif; cursor: pointer; }
.form-submit:hover { background: var(--wine-lt); }
.form-success { background: #f0faf4; border: 1px solid #a3d9b7; border-radius: var(--r); padding: 16px 20px; color: #1a5c2a; font-weight: 600; }

/* ---- Weather Page ---- */
.weather-page-wrap { max-width: 960px; margin: 0 auto; padding: 32px 20px 72px; }
.wx-current {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow);
  padding: 32px; margin-bottom: 40px;
  border-top: 5px solid var(--wine);
}
@media (max-width: 600px) { .wx-current { grid-template-columns: 1fr; } }
.wx-current-main { text-align: center; }
.wx-icon-lg { font-size: 4rem; margin-bottom: 8px; }
.wx-temp-lg { font-family: 'Playfair Display', Georgia, serif; font-size: 4rem; font-weight: 900; line-height: 1; }
.wx-unit { font-size: 2rem; }
.wx-condition { font-size: 1.1rem; font-weight: 600; color: var(--text-2); margin: 8px 0 4px; }
.wx-location { font-size: .9rem; color: var(--text-3); }
.wx-updated { font-size: .78rem; color: var(--text-3); margin-top: 6px; }
.wx-detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.wx-detail-row:last-child { border-bottom: none; }
.wx-detail-label { color: var(--text-3); font-weight: 600; }
.wx-detail-val { color: var(--text); font-weight: 700; }
.wx-section-head { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; font-weight: 900; border-bottom: 3px solid var(--wine); padding-bottom: 8px; margin-bottom: 20px; color: var(--wine); }
.wx-hourly-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 36px; scrollbar-width: thin; }
.wx-hour-card { flex: 0 0 80px; background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow); padding: 12px 8px; text-align: center; }
.wx-hour-time { font-size: .75rem; font-weight: 700; color: var(--text-3); margin-bottom: 6px; }
.wx-hour-icon { font-size: 1.4rem; margin-bottom: 6px; }
.wx-hour-temp { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; }
.wx-hour-precip { font-size: .72rem; color: #1b3a6b; margin-top: 4px; }
.wx-daily-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 14px; margin-bottom: 40px; }
.wx-day-card { background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow); padding: 16px 12px; text-align: center; }
.wx-day-name { font-family: 'Source Sans 3', sans-serif; font-size: .8rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.wx-day-icon { font-size: 1.8rem; margin-bottom: 6px; }
.wx-day-label { font-size: .75rem; color: var(--text-2); margin-bottom: 10px; line-height: 1.3; }
.wx-day-temps { display: flex; justify-content: center; gap: 10px; margin-bottom: 6px; }
.wx-day-hi { font-weight: 900; font-size: 1.05rem; color: var(--wine); font-family: 'Playfair Display', Georgia, serif; }
.wx-day-lo { font-size: 1.05rem; color: var(--text-3); font-family: 'Playfair Display', Georgia, serif; }
.wx-day-precip, .wx-day-wind { font-size: .72rem; color: var(--text-3); margin-top: 4px; }
.wx-local-note { background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow); padding: 24px 28px; border-left: 4px solid var(--gold); }
.wx-local-note h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.wx-local-note p { color: var(--text-2); line-height: 1.7; margin: 0; }
.weather-error { padding: 40px 0; color: var(--text-3); }

/* ---- Footer ---- */
.site-footer { background: var(--burgundy); color: rgba(255,255,255,.7); margin-top: 40px; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
}
@media (max-width: 680px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; font-weight: 900; color: #fff; display: block; margin-bottom: 10px; }
.footer-logo:hover { color: var(--gold-lt); text-decoration: none; }
.footer-tagline { font-size: .85rem; line-height: 1.5; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-family: 'Source Sans 3', sans-serif; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-lt); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-col a:hover { color: var(--gold-lt); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner { max-width: 1280px; margin: 0 auto; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ---- Utilities ---- */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--burgundy); color: #fff; padding: 8px 16px; z-index: 9999; transition: top .15s; }
.skip-link:focus { top: 0; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-list { display: none; }
  .hero-text { padding: 18px; }
  .card-grid { grid-template-columns: 1fr; }
  .share-row { margin-left: 0; }
}
@media (max-width: 480px) {
  .masthead { padding: 16px 16px 14px; }
  .logo-name { font-size: 1.8rem; }
  .container { padding: 20px 14px 48px; }
  .util-left { gap: 8px; }
  .weather-mini-city { display: none; }
}
