/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --navy:      #0D2137;
  --navy-mid:  #162E48;
  --gold:      #D4840A;
  --gold-lt:   #F0A030;
  --cream:     #F6F4EF;
  --white:     #FFFFFF;
  --rule:      #D8D3CA;
  --text:      #1A1A1A;
  --muted:     #565656;
  --asphalt:   #3A3F47;
  --lead-bg:   #0D2137;
  --lead-w:    300px;
  --mobile-bar: 56px; /* height of the bottom lead bar on mobile */
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.6;
  /* room for fixed mobile lead bar */
  padding-bottom: var(--mobile-bar);
}
@media (min-width: 901px) { body { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img { display: block; width: 100%; height: auto; object-fit: cover; }

/* ── Breaking ticker ─────────────────────────────────────── */
.breaking-banner {
  background: var(--asphalt);
  color: var(--white);
  padding: 7px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.breaking-inner {
  display: flex;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}
.breaking-tag {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  flex-shrink: 0;
  margin-right: 18px;
  white-space: nowrap;
}
.breaking-scroll {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
}
.breaking-scroll span { display: inline-block; animation: scrollNews 60s linear infinite; }
.breaking-scroll a { color: rgba(255,255,255,0.88); }
.breaking-scroll a:hover { color: var(--gold-lt); text-decoration: underline; }
@keyframes scrollNews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Masthead ────────────────────────────────────────────── */
.masthead {
  background: var(--cream);
  border-bottom: 3px solid var(--navy);
  padding: 20px 0 14px;
}
.masthead-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.masthead-rule-top    { border: none; border-top: 1px solid var(--navy); margin-bottom: 10px; }
.masthead-rule-bottom { border: none; border-top: 1px solid var(--rule); margin-top: 4px; }
.masthead-rig { font-size: 28px; margin-bottom: 4px; display: block; }
.masthead h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 5px;
}
.masthead h1 a { color: inherit; }
.masthead h1 a:hover { color: var(--navy); }
.masthead h1 span { color: var(--gold); }
.masthead-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ── Primary Navigation ──────────────────────────────────── */
.primary-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.primary-nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-item:hover, .nav-item.active {
  color: var(--gold-lt);
  border-bottom-color: var(--gold);
}
.nav-caret { font-size: 9px; opacity: 0.7; }

/* ── Dropdown ────────────────────────────────────────────── */
.nav-dropdown-wrap { position: relative; display: flex; align-items: stretch; }
.dropdown-panel {
  display: none;
  position: fixed;
  background: var(--navy-mid);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 300;
  max-height: 70vh;
  overflow-y: auto;
  min-width: 320px;
}
.news-panel { width: min(480px, 90vw); }
.nav-dropdown-wrap:hover .dropdown-panel,
.nav-dropdown-wrap:focus-within .dropdown-panel { display: block; }
.dropdown-columns { display: flex; flex-wrap: wrap; gap: 0; padding: 16px; }
.dropdown-group {
  min-width: 160px; flex: 1 1 160px; padding: 8px 12px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.dropdown-group:last-child { border-right: none; }
.dropdown-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(212,132,10,0.25);
}
.dropdown-item {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.75); padding: 5px 2px;
  transition: color 0.15s; white-space: nowrap;
}
.dropdown-item:hover, .dropdown-item.active { color: var(--gold-lt); }
.dropdown-panel::-webkit-scrollbar { width: 6px; }
.dropdown-panel::-webkit-scrollbar-track { background: var(--navy); }
.dropdown-panel::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════
   PAGE LAYOUT — content left, lead panel right
   ═══════════════════════════════════════════════════════════ */
.page-layout {
  max-width: 1380px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr var(--lead-w);
  gap: 36px;
  align-items: start;
}

/* ── Main content column ─────────────────────────────────── */
.main-content { min-width: 0; }

/* ── Lead panel (desktop right rail) ─────────────────────── */
.lead-panel {
  position: sticky;
  top: 72px;
}

/* ── Page header ─────────────────────────────────────────── */
.page-header {
  border-top: 3px solid var(--navy);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  margin-bottom: 28px;
}
.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700; color: var(--navy);
}
.page-header p { font-size: 15px; color: var(--muted); margin-top: 6px; }
.page-header-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.page-header-eyebrow a { color: inherit; }
.page-header-eyebrow a:hover { color: var(--navy); }

/* ── Topic pills ─────────────────────────────────────────── */
.topic-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.topic-pill {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--navy); background: var(--white);
  border: 1px solid var(--rule); padding: 6px 14px;
  border-radius: 3px; transition: all 0.2s;
}
.topic-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Section grid ────────────────────────────────────────── */
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.section-grid.wide { grid-template-columns: 1.6fr 1fr; }

/* ── Featured article ────────────────────────────────────── */
.article-img-wrap {
  display: block; overflow: hidden;
  margin-bottom: 12px; aspect-ratio: 16/10;
  background: #B0B8C2;
}
.article-img-wrap img { height: 100%; transition: transform 0.4s ease; }
.featured-article:hover .article-img-wrap img { transform: scale(1.03); }
.featured-article .category-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px; display: block;
}
.featured-article h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2.2vw, 25px); font-weight: 700;
  line-height: 1.22; color: var(--navy); margin-bottom: 9px;
}
.featured-article h2 a:hover { color: var(--gold); }
.featured-article .deck { font-size: 14px; line-height: 1.55; color: var(--muted); margin-bottom: 10px; }
.featured-article .byline { font-family: 'Inter', sans-serif; font-size: 11px; color: #888; }
.featured-article .byline strong { color: var(--navy); font-weight: 600; }

/* ── Side articles ───────────────────────────────────────── */
.side-articles {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid var(--rule); padding-left: 22px;
}
.side-article { padding: 12px 0; border-bottom: 1px solid var(--rule); cursor: pointer; }
.side-article:first-child { padding-top: 0; }
.side-article:last-child { border-bottom: none; }
.side-article .category-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.side-article h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15.5px; font-weight: 600;
  line-height: 1.3; color: var(--navy); margin-bottom: 4px;
}
.side-article:hover h3 { color: var(--gold); }
.side-article .byline { font-family: 'Inter', sans-serif; font-size: 10.5px; color: #999; }

/* ── Image placeholders ──────────────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2C3E50 0%, #3A4F66 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.img-placeholder-label { text-align: center; }
.img-placeholder-icon { font-size: 36px; display: block; margin-bottom: 8px; opacity: 0.7; }

/* ── Layout divider ──────────────────────────────────────── */
.layout-divider { border: none; border-top: 1px solid var(--rule); margin: 32px 0; }

/* ── Layout B: Full-width hero ───────────────────────────── */
.layout-hero-full { margin-bottom: 36px; }
.layout-hero-full .hero-img-wrap {
  position: relative; display: block;
  aspect-ratio: 21/9; overflow: hidden;
  background: #B0B8C2; border-radius: 2px;
}
.layout-hero-full .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.layout-hero-full:hover .hero-img-wrap img { transform: scale(1.03); }
.layout-hero-full .hero-caption { margin-top: 14px; }
.layout-hero-full .hero-caption .category-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.layout-hero-full .hero-caption h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 3vw, 32px); font-weight: 700;
  line-height: 1.2; color: var(--navy); margin-bottom: 8px;
}
.layout-hero-full .hero-caption h2 a { color: inherit; }
.layout-hero-full .hero-caption h2 a:hover { color: var(--gold); }
.layout-hero-full .hero-caption .deck { font-size: 15px; line-height: 1.55; color: var(--muted); margin-bottom: 8px; }
.layout-hero-full .hero-caption .byline { font-family: 'Inter', sans-serif; font-size: 11px; color: #888; }

/* ── Layout C: 4-article grid ────────────────────────────── */
.layout-grid-4 { margin-bottom: 36px; }
.layout-grid-4 .grid-4-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-article { display: flex; flex-direction: column; }
.grid-article .grid-img-wrap {
  display: block; aspect-ratio: 4/3;
  overflow: hidden; background: #B0B8C2; margin-bottom: 10px;
}
.grid-article .grid-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.grid-article:hover .grid-img-wrap img { transform: scale(1.05); }
.grid-article .category-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px; display: block;
}
.grid-article h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px; font-weight: 700;
  line-height: 1.3; color: var(--navy); margin-bottom: 5px; flex: 1;
}
.grid-article h3 a { color: inherit; }
.grid-article h3 a:hover { color: var(--gold); }
.grid-article .byline { font-family: 'Inter', sans-serif; font-size: 10.5px; color: #999; margin-top: auto; padding-top: 6px; }

/* ── Layout D: 3-article image row ──────────────────────── */
.layout-row-3 { margin-bottom: 36px; }
.layout-row-3 .row-3-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.row-article { display: flex; flex-direction: column; }
.row-article .row-img-wrap {
  display: block; aspect-ratio: 16/10;
  overflow: hidden; background: #B0B8C2; margin-bottom: 10px;
}
.row-article .row-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.row-article:hover .row-img-wrap img { transform: scale(1.04); }
.row-article .category-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px; display: block;
}
.row-article h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px; font-weight: 700;
  line-height: 1.28; color: var(--navy); margin-bottom: 6px;
}
.row-article h3 a { color: inherit; }
.row-article h3 a:hover { color: var(--gold); }
.row-article .deck { font-size: 13px; line-height: 1.5; color: var(--muted); margin-bottom: 6px; }
.row-article .byline { font-family: 'Inter', sans-serif; font-size: 10.5px; color: #999; margin-top: auto; }

/* ── Article page ────────────────────────────────────────── */
.article-page { max-width: 800px; padding: 0; }
.breadcrumb { font-family: 'Inter', sans-serif; font-size: 12px; color: #999; margin-bottom: 20px; }
.breadcrumb a { color: #999; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: #555; }
.article-header { margin-bottom: 24px; }
.article-section-tag {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.article-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 4vw, 40px); font-weight: 700;
  line-height: 1.15; color: var(--navy); margin-bottom: 14px;
}
.article-deck { font-size: 18px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; font-style: italic; }
.article-meta {
  font-family: 'Inter', sans-serif; font-size: 12px; color: #888;
  padding: 12px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.article-meta strong { color: var(--navy); }
.article-hero { margin-bottom: 28px; aspect-ratio: 16/9; overflow: hidden; background: #B0B8C2; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 17px; line-height: 1.78; color: var(--text); }
.article-body p { margin-bottom: 20px; }
.article-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; font-weight: 700; color: var(--navy); margin: 36px 0 14px;
}
.article-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 600; color: var(--navy); margin: 28px 0 10px;
}
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 4px solid var(--gold); padding: 12px 20px;
  margin: 24px 0; color: var(--muted); font-style: italic;
}

/* ── Author bio ──────────────────────────────────────────── */
.author-bio { margin-top: 36px; padding: 20px; background: #ECEEF1; border-left: 4px solid var(--gold); }
.author-bio-inner { display: flex; gap: 16px; align-items: flex-start; }
.author-bio-avatar { font-size: 32px; flex-shrink: 0; }
.author-bio-name { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.author-bio-text { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ── Related articles ────────────────────────────────────── */
.related-articles { margin-top: 36px; border-top: 3px solid var(--navy); padding-top: 20px; }
.related-articles h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--navy); margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.related-item { border-bottom: 1px solid var(--rule); padding-bottom: 12px; }
.related-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.related-title { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.3; display: block; }
.related-title:hover { color: var(--gold); }
.related-date { font-family: 'Inter', sans-serif; font-size: 11px; color: #999; margin-top: 4px; }

/* ── Browse section ──────────────────────────────────────── */
.browse-section { margin-top: 40px; border-top: 3px solid var(--navy); padding-top: 20px; }
.browse-section h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; color: var(--navy); margin-bottom: 20px; }
.browse-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.browse-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 20px 12px;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 3px; transition: all 0.2s; text-align: center;
}
.browse-card:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.browse-icon { font-size: 28px; }
.browse-label { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--navy); }
.browse-card:hover .browse-label { color: var(--white); }

/* ── Empty state ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 64px 24px; color: #888; font-family: 'Inter', sans-serif; }
.empty-icon { font-size: 48px; margin-bottom: 16px; }

/* ── Contact page ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; align-items: start; }
.contact-info { font-family: 'Inter', sans-serif; font-size: 14px; color: #555; line-height: 1.7; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 16px; }
.contact-info p { margin-bottom: 20px; }
.contact-info-row { border-top: 1px solid var(--rule); padding-top: 14px; margin-bottom: 14px; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }

/* ── Forms (contact page) ────────────────────────────────── */
.required { color: #c0392b; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=tel],
.form-row select,
.form-row textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid #D0D5DD; border-radius: 4px;
  font-size: 14px; font-family: inherit;
  color: var(--text); background: var(--white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,132,10,0.15);
}
.form-row textarea { min-height: 120px; resize: vertical; }

.btn {
  display: inline-block; padding: 10px 22px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); color: var(--white); }

.alert { padding: 12px 16px; border-radius: 4px; margin-bottom: 18px; font-size: 13px; font-family: 'Inter', sans-serif; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── Category tag (shared) ───────────────────────────────── */
.category-tag {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   LEAD FORM — desktop right panel + mobile bottom sheet
   ═══════════════════════════════════════════════════════════ */

/* ── Shared card wrapper ─────────────────────────────────── */
.lead-card {
  background: var(--lead-bg);
  color: var(--white);
  border-radius: 4px;
  overflow: hidden;
}
.lead-card-header {
  background: var(--gold);
  padding: 16px 20px;
}
.lead-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy); line-height: 1.25;
  margin-bottom: 4px;
}
.lead-card-header p {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--navy);
  opacity: 0.8; line-height: 1.4;
}
.lead-card-body { padding: 20px; }

/* ── Lead form fields ────────────────────────────────────── */
.lead-form .lead-field { margin-bottom: 14px; }
.lead-form .lead-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 5px;
}
.lead-form .lead-field input,
.lead-form .lead-field textarea {
  width: 100%; padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.lead-form .lead-field input::placeholder,
.lead-form .lead-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.lead-form .lead-field input:focus,
.lead-form .lead-field textarea:focus {
  outline: none;
  border-color: var(--gold-lt);
  background: rgba(255,255,255,0.12);
}
.lead-form .lead-field textarea { min-height: 80px; resize: vertical; }

.lead-submit {
  width: 100%; padding: 13px;
  background: var(--gold); color: var(--navy);
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.lead-submit:hover { background: var(--gold-lt); }

.lead-success {
  text-align: center; padding: 20px 10px;
  font-family: 'Inter', sans-serif;
}
.lead-success-icon { font-size: 40px; margin-bottom: 10px; }
.lead-success h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold-lt); margin-bottom: 8px; }
.lead-success p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.lead-note {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: rgba(255,255,255,0.35); text-align: center;
  margin-top: 12px; line-height: 1.5;
}

/* ── Desktop: right rail ─────────────────────────────────── */
.lead-panel { display: none; }
@media (min-width: 901px) {
  .lead-panel { display: block; }
}

/* ── Mobile: fixed bottom bar + full-screen sheet ────────── */
.lead-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
}
@media (max-width: 900px) {
  .lead-mobile { display: block; }
}

/* Collapsed bar */
.lead-mobile-bar {
  background: var(--gold);
  color: var(--navy);
  height: var(--mobile-bar);
  display: flex; align-items: center;
  padding: 0 20px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.25);
}
.lead-mobile-bar-text {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
}
.lead-mobile-bar-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  color: var(--navy); opacity: 0.75;
  margin-top: 1px;
}
.lead-mobile-arrow {
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  transition: transform 0.3s ease;
  flex-shrink: 0; margin-left: 12px;
}

/* Full-screen sheet (hidden by default) */
.lead-mobile-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 100dvh;
  background: var(--lead-bg);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  z-index: 501;
  display: flex; flex-direction: column;
}
.lead-mobile-sheet.is-open {
  transform: translateY(0);
}
.lead-mobile-sheet-header {
  background: var(--gold);
  padding: 18px 20px 16px;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-shrink: 0;
}
.lead-mobile-sheet-header-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.lead-mobile-sheet-header-text p {
  font-family: 'Inter', sans-serif; font-size: 12px; color: var(--navy); opacity: 0.8;
}
.lead-mobile-close {
  background: rgba(0,0,0,0.15); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 18px; cursor: pointer; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 12px;
}
.lead-mobile-sheet-body { padding: 24px 20px; flex: 1; }

/* Arrow rotation when open */
.lead-mobile.is-open .lead-mobile-arrow { transform: rotate(180deg); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  margin-top: 48px; padding: 48px 0 24px;
  font-family: 'Inter', sans-serif; font-size: 13px;
}
.footer-inner { max-width: 1380px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; color: var(--white); }
.footer-brand h2 span { color: var(--gold); }
.footer-brand p { font-size: 12.5px; line-height: 1.65; margin-top: 12px; color: rgba(255,255,255,0.45); }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 12.5px; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 11.5px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-lt); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  :root { --lead-w: 260px; }
  .page-layout { gap: 24px; }
}

@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .lead-panel { display: none; }
  .section-grid.wide, .section-grid { grid-template-columns: 1fr; }
  .side-articles { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .dropdown-panel { max-height: 50vh; }
}

@media (max-width: 860px) {
  .layout-grid-4 .grid-4-inner { display: flex; flex-direction: column; gap: 0; }
  .grid-article:first-child { flex-direction: column; border-bottom: 1px solid var(--rule); padding-bottom: 14px; }
  .grid-article:first-child .grid-img-wrap { width: 100%; aspect-ratio: 16/10; margin-bottom: 10px; }
  .grid-article:not(:first-child) .grid-img-wrap { display: none; }
  .grid-article:not(:first-child) { flex-direction: column; padding: 10px 0; border-bottom: 1px solid var(--rule); }
  .grid-article:last-child { border-bottom: none; }
  .grid-article:not(:first-child) h3 { font-size: 15.5px; font-weight: 600; }

  .layout-row-3 .row-3-inner { display: flex; flex-direction: column; gap: 0; }
  .row-article:first-child { flex-direction: column; border-bottom: 1px solid var(--rule); padding-bottom: 14px; }
  .row-article:first-child .row-img-wrap { width: 100%; aspect-ratio: 16/10; margin-bottom: 10px; }
  .row-article:not(:first-child) .row-img-wrap { display: none; }
  .row-article:not(:first-child) .deck { display: none; }
  .row-article:not(:first-child) { flex-direction: column; padding: 10px 0; border-bottom: 1px solid var(--rule); }
  .row-article:last-child { border-bottom: none; }
  .row-article:not(:first-child) h3 { font-size: 15.5px; font-weight: 600; }
  .section-grid.wide { display: flex; flex-direction: column; gap: 0; }
  .side-articles { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 4px; }
  .layout-hero-full .hero-img-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  .masthead h1 { font-size: 38px; }
  .primary-nav-inner { overflow-x: auto; justify-content: flex-start; }
  .nav-item { padding: 12px 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .dropdown-columns { flex-direction: column; }
  .dropdown-group { min-width: unset; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}

/* ── Mobile nav dropdown ─────────────────────────────────── */
@media (hover: none), (max-width: 900px) {
  .nav-dropdown-wrap:hover .dropdown-panel { display: none; }
  .nav-dropdown-wrap.is-open .dropdown-panel { display: block; }
  .dropdown-panel {
    position: fixed;
    top: var(--nav-bottom, 100px);
    left: 0 !important; right: 0;
    width: 100% !important; max-width: 100vw;
    max-height: 70vh; border-radius: 0; overflow-y: auto;
  }
  .nav-caret { transition: transform 0.2s; display: inline-block; }
  .nav-dropdown-wrap.is-open .nav-caret { transform: rotate(180deg); }
}

@media (min-width: 901px) {
  .dropdown-group-title a { color: var(--gold); text-decoration: none; transition: color 0.15s; display: block; }
  .dropdown-group-title a:hover { color: var(--gold-lt); }
}
