/* ============================================================
   CLECA — California Large Energy Consumers Association
   Design system · dark editorial · EB Garamond + DM Sans
   ============================================================ */

:root {
  --bg-primary:    #09111f;
  --bg-secondary:  #0d1829;
  --bg-card:       #111e30;
  --bg-card-hover: #162338;
  --bg-footer:     #060e1a;
  --accent:        #9b2335;
  --accent-light:  #b8293e;
  --accent-bright: #d64054;
  --accent-dim:    rgba(155,35,53,0.12);
  --gold:          #e8a13d;
  --text-primary:  #e8eef5;
  --text-secondary:#7a9ab8;
  --text-muted:    #4d7090;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(155,35,53,0.30);
  --max-width:     1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: rgba(155,35,53,0.55); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #24364f; border-radius: 6px; border: 2px solid var(--bg-primary); }
::-webkit-scrollbar-thumb:hover { background: #2e4a66; }
a { color: var(--accent-bright); text-decoration: none; }
a:hover { color: var(--text-primary); }

h1, h2, h3, h4 { font-family: 'EB Garamond', Georgia, serif; font-weight: 400; color: var(--text-primary); line-height: 1.15; }
h1 { font-size: clamp(38px, 4.2vw, 64px); letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent-bright); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 52px; }
.section-pad { padding: 96px 0; }
section { border-bottom: 1px solid var(--border); }
.bg-alt { background: var(--bg-secondary); }

/* ---- Eyebrow ---- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-bright);
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--accent); flex: none; }

/* ---- Buttons ---- */
.btn, .btn-ghost, .btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer;
  transition: all 0.25s ease;
}
.btn {
  background: var(--accent); color: #f0e8e8;
  padding: 14px 30px; border: none;
}
.btn:hover { background: var(--accent-light); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(155,35,53,0.35); }
.btn-ghost { background: transparent; color: var(--accent-bright); border: none; padding: 14px 0; }
.btn-ghost::after { content: '→'; transition: transform 0.25s ease; }
.btn-ghost:hover { color: var(--text-primary); }
.btn-ghost:hover::after { transform: translateX(5px); }
.btn-outline {
  background: transparent; color: var(--accent-bright);
  border: 1px solid var(--border-accent); padding: 10px 22px;
}
.btn-outline:hover { background: var(--accent-dim); color: var(--text-primary); }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 70px; display: flex; align-items: center;
  background: rgba(9,17,31,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active { color: var(--accent-bright); }
.nav-cta {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-bright); border: 1px solid var(--border-accent);
  padding: 9px 18px; transition: all 0.25s;
}
.nav-cta:hover { background: var(--accent-dim); color: var(--text-primary); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); margin: 5px 0; transition: 0.3s; }
.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: rgba(9,17,31,0.97); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border); padding: 18px 24px 26px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 13px 4px; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary); border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--text-primary); }

/* ---- Hero (home) ---- */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr;
  align-items: center; position: relative; padding-top: 70px; overflow: hidden;
}
.hero-left { position: relative; z-index: 2; padding: 80px 0 80px max(52px, calc((100vw - var(--max-width)) / 2 + 52px)); }
.hero-left .grid-texture {
  position: absolute; inset: 0; z-index: -1;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 56px);
}
.hero h1 { margin: 0 0 28px; }
.hero-sub { max-width: 560px; margin-bottom: 36px; font-size: 17.5px; }
.hero-ctas { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-tagline {
  border-left: 2px solid var(--accent); padding: 6px 0 6px 24px;
  font-family: 'EB Garamond', serif; font-size: 19px; font-style: italic;
  color: var(--text-secondary); max-width: 540px; margin-bottom: 52px;
}
.hero-tagline em { color: var(--text-primary); font-style: italic; }
.hero-stats { display: flex; gap: 56px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'EB Garamond', serif; font-size: 42px; color: var(--accent-bright); line-height: 1; text-shadow: 0 0 30px rgba(214,64,84,0.35); }
.hero-stat .lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }
.hero-right { position: relative; height: 100%; min-height: 560px; }
.hero-right img, .hero-right svg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, rgba(9,17,31,0.55) 28%, rgba(9,17,31,0.12) 65%, rgba(9,17,31,0.35) 100%);
}
.hero-watermark {
  position: absolute; bottom: 28px; right: 40px; width: 340px; opacity: 0.05;
  filter: grayscale(1) brightness(2); z-index: 0; pointer-events: none;
}

/* Page hero (interior pages) */
.page-hero { padding: 170px 0 76px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 46% 88% at 86% 4%, rgba(155,35,53,0.13), transparent 65%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 56px);
}
.page-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,35,53,0.55), transparent);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 880px; margin-bottom: 22px; }
.page-hero .lede { font-size: 19px; max-width: 760px; }
.breadcrumbs { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 30px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--text-primary); }
.breadcrumbs span.sep { margin: 0 8px; color: var(--accent); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Rate chart ---- */
.rate-chart { margin: 48px 0 36px; }
.rate-row { display: grid; grid-template-columns: 130px 1fr 110px; align-items: center; gap: 18px; margin-bottom: 18px; }
.rate-state { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); text-align: right; }
.rate-track { height: 30px; background: rgba(255,255,255,0.035); position: relative; }
.rate-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, #2b4462, #3d5a7a); transition: width 1.2s cubic-bezier(.16,1,.3,1); position: relative; }
.rate-bar-fill::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(255,255,255,0.09), transparent 55%); }
.rate-row.is-ca .rate-bar-fill { background: linear-gradient(90deg, var(--accent), var(--accent-bright)); box-shadow: 0 0 26px rgba(184,41,62,0.4); }
.rate-row.is-us .rate-bar-fill { background: linear-gradient(90deg, #4d7090, #7a9ab8); }
.rate-row.is-us .rate-state, .rate-row.is-us .rate-value { color: var(--text-secondary); font-style: italic; }
.rate-row.is-ca .rate-state, .rate-row.is-ca .rate-value { color: var(--text-primary); }
.rate-value { font-family: 'EB Garamond', serif; font-size: 20px; color: var(--text-secondary); }
.chart-note { font-size: 13px; color: var(--text-muted); }
.chart-note a { color: var(--text-muted); text-decoration: underline; }
.chart-note a:hover { color: var(--text-primary); }

.pullquote {
  position: relative; border-left: 2px solid var(--accent); padding: 10px 0 10px 34px;
  font-family: 'EB Garamond', serif; font-size: 22px; font-style: italic;
  color: var(--text-secondary); max-width: 720px; margin: 44px 0 0;
}
.pullquote::before {
  content: '\201C'; position: absolute; left: 26px; top: -34px;
  font-family: 'EB Garamond', serif; font-size: 110px; line-height: 1;
  color: rgba(155,35,53,0.28); font-style: normal; pointer-events: none;
}

/* ---- Cards ---- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 52px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg-card); padding: 40px 34px; position: relative;
  transition: background 0.3s ease; display: flex; flex-direction: column;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover { background: var(--bg-card-hover); box-shadow: 0 18px 44px rgba(0,0,0,0.35); z-index: 1; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 52px; height: 52px; padding: 12px; color: var(--accent-bright); margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(155,35,53,0.16), rgba(155,35,53,0.05));
  border: 1px solid var(--border-accent);
}
.card h3 { margin-bottom: 16px; }
.card p { font-size: 15px; line-height: 1.75; flex: 1; }
.card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--border); padding: 5px 10px;
}
a.card { color: inherit; }
a.card .card-link { margin-top: 24px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-bright); }
a.card:hover .card-link { color: var(--text-primary); }

/* ---- Sector grid ---- */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 52px; }
.sector-panel { position: relative; height: 300px; overflow: hidden; background: var(--bg-card); display: block; }
.sector-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.sector-panel:hover img { transform: scale(1.04); filter: brightness(1.18); }
.sector-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,17,31,0.96) 0%, rgba(9,17,31,0.72) 26%, rgba(9,17,31,0.18) 52%, transparent 68%);
  pointer-events: none;
}
.sector-caption { position: absolute; left: 24px; right: 24px; top: 22px; z-index: 2; transition: transform 0.35s ease; }
.sector-panel:hover .sector-caption { transform: translateY(4px); }
.sector-caption .eyebrow { margin-bottom: 8px; }
.sector-caption p { font-family: 'EB Garamond', serif; font-size: 15.5px; color: var(--text-secondary); line-height: 1.5; }

/* ---- Member industries grid ---- */
.member-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 52px; }
.member-cell { background: var(--bg-card); padding: 34px 30px; transition: background 0.3s; }
.member-cell:hover { background: var(--bg-card-hover); }
.member-cell h4 { font-size: 21px; margin-bottom: 10px; }
.member-cell p { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); line-height: 1.7; }

.stat-band { display: flex; gap: 72px; margin-top: 56px; flex-wrap: wrap; }
.stat-band .num { font-family: 'EB Garamond', serif; font-size: 52px; color: var(--accent-bright); line-height: 1; text-shadow: 0 0 34px rgba(214,64,84,0.35); }
.stat-band .lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; margin-top: 60px; }
.team-card { text-align: left; }
.team-card .avatar {
  width: 128px; height: 128px; border-radius: 50%; overflow: hidden;
  border: 1px solid var(--border-accent); margin-bottom: 22px; position: relative;
  box-shadow: 0 0 0 7px rgba(155,35,53,0.07), 0 14px 34px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover .avatar { transform: translateY(-4px); box-shadow: 0 0 0 7px rgba(155,35,53,0.14), 0 20px 44px rgba(0,0,0,0.5); }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card h3 { font-size: 23px; margin-bottom: 6px; }
.team-card .role { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 16px; line-height: 1.7; }
.team-card p { font-size: 14px; line-height: 1.75; margin-bottom: 14px; }
.team-card .plink { font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent-bright); }
.team-card .plink:hover { color: var(--text-primary); }

/* ---- Filings ---- */
.filings-container { border: 1px solid var(--border); margin-top: 52px; }
.filing-row {
  display: grid; grid-template-columns: 210px 1fr 48px; gap: 28px; align-items: center;
  padding: 30px 34px; border-bottom: 1px solid var(--border); color: inherit;
  transition: background 0.25s ease;
}
.filing-row:last-child { border-bottom: none; }
.filing-row { border-left: 2px solid transparent; }
.filing-row:hover { background: var(--bg-card); border-left-color: var(--accent); }
.filing-jurisdiction { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright); }
.filing-docket { font-family: 'EB Garamond', serif; font-size: 19px; color: var(--text-primary); margin: 4px 0 2px; }
.filing-year { font-size: 12px; color: var(--text-muted); }
.filing-content h4 { font-size: 19px; margin-bottom: 8px; font-family: 'EB Garamond', serif; }
.filing-content p { font-size: 14px; line-height: 1.7; }
.filing-arrow { color: var(--text-muted); transition: transform 0.25s, color 0.25s; }
.filing-row:hover .filing-arrow { transform: translateX(4px); color: var(--accent-bright); }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.filter-btn {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); background: transparent;
  border: 1px solid var(--border); padding: 8px 16px; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { color: var(--text-primary); border-color: var(--border-accent); }
.filter-btn.active { color: var(--accent-bright); border-color: var(--border-accent); background: var(--accent-dim); }

/* ---- News ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 52px; }
.news-card { background: var(--bg-card); padding: 36px 32px; display: flex; flex-direction: column; color: inherit; position: relative; transition: background 0.3s; }
.news-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.news-card:hover { background: var(--bg-card-hover); box-shadow: 0 18px 44px rgba(0,0,0,0.35); z-index: 1; }
.news-card:hover::before { transform: scaleX(1); }
.news-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.news-type {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-bright); border: 1px solid var(--border-accent); padding: 4px 10px;
}
.news-date { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
.news-card h3 { font-size: 22px; margin-bottom: 14px; }
.news-card p { font-size: 14.5px; line-height: 1.7; flex: 1; }
.news-card .card-link { margin-top: 22px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-bright); }

/* ---- Article ---- */
.article-body { max-width: 760px; }
.article-body p { margin-bottom: 24px; }
.article-body h2 { font-size: clamp(24px, 2.6vw, 34px); margin: 52px 0 20px; }
.article-body h3 { margin: 40px 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 24px 22px; }
.article-body li { margin-bottom: 10px; font-size: 16px; }
.article-body blockquote {
  border-left: 2px solid var(--accent); padding: 8px 0 8px 26px; margin: 36px 0;
  font-family: 'EB Garamond', serif; font-size: 20px; font-style: italic;
}
.article-body a { text-decoration: underline; text-decoration-color: var(--border-accent); text-underline-offset: 3px; }

/* ---- Issue layout ---- */
.issue-layout { display: grid; grid-template-columns: 1fr 300px; gap: 72px; align-items: start; }
.issue-sidebar { position: sticky; top: 100px; }
.sidebar-block { border: 1px solid var(--border); padding: 28px 26px; margin-bottom: 24px; background: var(--bg-card); }
.sidebar-block h4 { font-size: 12px; font-weight: 500; font-family: 'DM Sans', sans-serif; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 18px; }
.sidebar-block ul { list-style: none; }
.sidebar-block li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; line-height: 1.6; }
.sidebar-block li:last-child { border-bottom: none; }
.sidebar-block .docket { font-family: 'EB Garamond', serif; font-size: 16px; color: var(--text-primary); display: block; }
.sidebar-block a { color: var(--text-secondary); }
.sidebar-block a:hover { color: var(--text-primary); }
.key-stats { display: grid; gap: 20px; }
.key-stats .num { font-family: 'EB Garamond', serif; font-size: 34px; color: var(--accent-bright); line-height: 1.1; }
.key-stats .lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 5px; line-height: 1.6; }

/* ---- About / prose sections ---- */
.divider-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-bright); border-bottom: 1px solid var(--border);
  padding-bottom: 14px; margin: 56px 0 24px;
}
.divider-label:first-child { margin-top: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.sidebar-col { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }

/* ---- Timeline ---- */
.timeline { border-left: 1px solid var(--border); margin: 52px 0 0 8px; padding-left: 40px; }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item::before {
  content: ''; position: absolute; left: -45px; top: 7px; width: 9px; height: 9px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(155,35,53,0.15);
}
.timeline-item .year { font-family: 'EB Garamond', serif; font-size: 24px; color: var(--accent-bright); margin-bottom: 8px; }
.timeline-item h4 { font-size: 20px; margin-bottom: 8px; }
.timeline-item p { font-size: 15px; max-width: 640px; }

/* ---- Forms ---- */
.form-grid { display: grid; gap: 18px; }
.form-grid label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 8px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-size: 15px;
  padding: 14px 16px; transition: border-color 0.2s; border-radius: 0; appearance: none;
}
.form-grid select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234d7090'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; border-color: var(--border-accent); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---- Callout links ---- */
.callout-links { display: grid; gap: 16px; margin-top: 32px; }
.callout-link {
  border: 1px solid var(--border-accent); background: var(--bg-card);
  padding: 22px 26px; color: var(--text-primary); font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background 0.25s, transform 0.25s;
}
.callout-link { border-left: 3px solid var(--accent); }
.callout-link:hover { background: var(--bg-card-hover); transform: translateX(4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.callout-link .sub { display: block; font-size: 12px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ---- CTA band ---- */
.cta-band { text-align: center; padding: 110px 0; position: relative; overflow: hidden; }
.cta-band h2 { max-width: 720px; margin: 0 auto 24px; }
.cta-band p { max-width: 580px; margin: 0 auto 40px; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 75% at 50% 112%, rgba(155,35,53,0.2), transparent 70%),
    radial-gradient(ellipse 30% 40% at 12% -10%, rgba(77,112,144,0.12), transparent);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }

/* ---- Footer ---- */
footer { background: var(--bg-footer); border-top: 1px solid var(--border); padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: start; }
.footer-left img { height: 128px; width: auto; opacity: 0.95; margin-bottom: 14px; max-width: 100%; object-fit: contain; }
.footer-left p { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); max-width: 260px; line-height: 1.9; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 44px; }
.footer-nav a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 4px 0; }
.footer-nav a:hover { color: var(--text-primary); }
.footer-right { text-align: right; font-size: 12.5px; color: var(--text-muted); line-height: 2; }
.footer-right a { color: var(--text-muted); }
.footer-right a:hover { color: var(--text-primary); }
.footer-social { display: inline-flex; gap: 14px; margin-top: 10px; }
.footer-social a { color: var(--text-muted); }
.footer-social a:hover { color: var(--accent-bright); }

/* ---- Utility ---- */
.mt-0 { margin-top: 0; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; } .mb-52 { margin-bottom: 52px; }
.max-720 { max-width: 720px; } .max-760 { max-width: 760px; } .max-860 { max-width: 860px; }
.center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---- Responsive ---- */
@media (max-width: 1120px) {
  .issue-layout { grid-template-columns: 1fr 260px; gap: 48px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 64px 0; }
  .nav-links, .nav .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 90px 24px 64px; }
  .hero-right { display: none; }
  .card-grid, .card-grid.cols-2, .team-grid, .news-grid { grid-template-columns: 1fr; }
  .two-col, .form-row-2, .sidebar-col, .issue-layout { grid-template-columns: 1fr; }
  .issue-sidebar { position: static; }
  .filing-row { grid-template-columns: 1fr; gap: 12px; }
  .filing-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-right { text-align: left; }
  .stat-band { gap: 40px; }
  .page-hero { padding: 130px 0 56px; }
  .rate-row { grid-template-columns: 90px 1fr 84px; gap: 10px; }
  .rate-state { font-size: 11px; }
  .rate-value { font-size: 16px; }
}
@media (max-width: 560px) {
  .sector-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr; }
}


/* ---- Legislation spotlight ---- */
.bill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.bill-card {
  position: relative; background: linear-gradient(160deg, var(--bg-card), #0e1a2e);
  border: 1px solid var(--border); border-top: 2px solid var(--accent);
  padding: 44px 40px; overflow: hidden;
}
.bill-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 100% 0%, rgba(155,35,53,0.1), transparent 70%);
}
.bill-num { font-family: 'EB Garamond', serif; font-size: 44px; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.bill-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(232,161,61,0.35); padding: 5px 12px;
}
.bill-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.bill-card h3 { margin-bottom: 14px; }
.bill-card p { font-size: 15px; line-height: 1.75; position: relative; z-index: 1; }
.bill-status { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.04em; }
.bill-status strong { color: var(--text-secondary); font-weight: 500; }
@media (max-width: 960px) { .bill-grid { grid-template-columns: 1fr; } }
