:root {
    --ink: #0f172a;
    --body: #334155;
    --muted: #64748b;
    --faint: #94a3b8;
    --line: #e5e7eb;
    --paper: #ffffff;
    --soft: #f6f8fb;
    --soft2: #eef3f7;
    --navy: #082b5c;
    --navy2: #061c3a;
    --green: #a7d129;
    --green2: #d8f579;
    --shadow: 0 28px 80px rgba(8, 43, 92, 0.1);
    --max: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}
.measure {
    max-width: 820px;
}
.center {
    text-align: center;
    margin-inline: auto;
}
.kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 850;
    color: var(--navy);
    margin: 0 0 18px;
}
.dark .kicker,
.hero .kicker,
.page-hero .kicker,
.cta .kicker {
    color: var(--green);
}
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(160%) blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition:
        background 0.2s,
        box-shadow 0.2s;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}
.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand img {
    display: block;
    width: 220px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 760;
    color: #1e293b;
}
.main-nav a {
    opacity: 0.78;
    white-space: nowrap;
    transition: 0.18s;
}
.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
    color: var(--navy);
}
.nav-social {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    background: #fff;
}
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
}
.hero {
    min-height: 100vh;
    padding: 150px 0 108px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 78% 26%, rgba(167, 209, 41, 0.22), transparent 24%),
        linear-gradient(135deg, #031a36 0%, #082b5c 58%, #123b72 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18), transparent);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: 90px;
    align-items: center;
}
.hero h1,
.page-hero h1,
.display-title {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.88;
    margin: 0;
}
.hero h1 {
    font-size: clamp(70px, 9.4vw, 150px);
    max-width: 760px;
}
.hero-subtitle {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 830;
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 760px;
    margin: 30px 0 18px;
}
.hero p:not(.kicker) {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 650px;
    margin: 0 0 36px;
}
.button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.button-row.center {
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    padding: 14px 21px;
    font-weight: 850;
    border: 1px solid transparent;
    transition: 0.18s;
}
.btn-primary {
    background: var(--green);
    color: #10213f;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(167, 209, 41, 0.22);
}
.btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}
.btn-light {
    background: #fff;
    color: var(--navy);
}
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
}
.btn-text {
    color: var(--navy);
    font-weight: 850;
}
.hero-visual {
    min-height: 520px;
    position: relative;
}
.dc-orbit {
    position: absolute;
    inset: 18px 0 18px 18px;
    border-radius: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}
.dc-orbit:before {
    content: "Douglas County";
    position: absolute;
    inset: auto 34px 30px auto;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 850;
    color: rgba(255, 255, 255, 0.45);
}
.dc-line {
    position: absolute;
    left: 50%;
    top: 12%;
    bottom: 14%;
    width: 1px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.28), transparent);
}
.visual-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 830;
}
.visual-point span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(167, 209, 41, 0.18);
    border: 1px solid rgba(167, 209, 41, 0.35);
    color: var(--green);
}
.visual-point:nth-child(2) {
    left: 40px;
    top: 80px;
}
.visual-point:nth-child(3) {
    right: 48px;
    top: 145px;
}
.visual-point:nth-child(4) {
    left: 72px;
    top: 250px;
}
.visual-point:nth-child(5) {
    right: 64px;
    top: 330px;
}
.visual-point:nth-child(6) {
    left: 58px;
    bottom: 76px;
}
.visual-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 132px;
    height: 132px;
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    font-family: Oswald, Inter, sans-serif;
    font-size: 40px;
    letter-spacing: -0.05em;
    color: #fff;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
}
.section {
    padding: 150px 0;
}
.section.light {
    background: var(--soft);
}
.section.dark {
    background: #031834;
    color: #fff;
}
.section.dark p {
    color: rgba(255, 255, 255, 0.72);
}
.section-head {
    max-width: 850px;
    margin: 0 0 70px;
}
.section-head.center {
    text-align: center;
    margin-inline: auto;
}
.section-head h2 {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.92;
    font-size: clamp(48px, 6.5vw, 92px);
    color: var(--navy);
    margin: 0 0 22px;
}
.section-head p {
    font-size: 20px;
    color: var(--muted);
    margin: 0;
}
.billboard {
    text-align: center;
    padding: 150px 0;
}
.billboard h2 {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    font-size: clamp(54px, 8.2vw, 122px);
    letter-spacing: -0.058em;
    line-height: 0.9;
    margin: 0;
}
.billboard .green {
    color: var(--green);
}
.billboard p {
    font-size: 21px;
    max-width: 760px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, 0.74);
}
.editorial-panels {
    display: grid;
    gap: 32px;
}
.issue-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
    align-items: center;
    padding: 58px 0;
    border-top: 1px solid var(--line);
}
.issue-panel:last-child {
    border-bottom: 1px solid var(--line);
}
.issue-label {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--navy);
    margin: 0;
}
.issue-panel p {
    font-size: 22px;
    line-height: 1.55;
    color: var(--body);
    margin: 0;
}
.issue-panel .arrow {
    display: inline-flex;
    margin-top: 22px;
    font-weight: 850;
    color: var(--navy);
}
.feature-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: stretch;
}
.feature-block {
    background: #fff;
    border-radius: 34px;
    padding: 54px;
    box-shadow: var(--shadow);
}
.feature-block.wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.feature-block h3 {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
    font-size: clamp(38px, 4.6vw, 70px);
    color: var(--navy);
    margin: 0 0 20px;
}
.feature-block p {
    font-size: 20px;
    color: var(--body);
    margin: 0;
}
.feature-metric {
    font-family: Oswald, Inter, sans-serif;
    font-size: clamp(82px, 11vw, 150px);
    line-height: 0.8;
    letter-spacing: -0.06em;
    color: var(--green);
    white-space: nowrap;
}
.quiet-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}
.quiet-item {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 18px;
    color: var(--body);
}
.page-hero {
    padding: 155px 0 94px;
    background: linear-gradient(135deg, #031a36, #082b5c);
    color: #fff;
}
.page-hero h1 {
    font-size: clamp(62px, 8vw, 126px);
    max-width: 930px;
}
.page-hero .hero-subtitle {
    margin-top: 26px;
    color: #fff;
}
.page-content {
    padding: 135px 0;
}
.article {
    display: grid;
    grid-template-columns: 320px minmax(0, 790px);
    gap: 96px;
    align-items: start;
}
.article-aside {
    position: sticky;
    top: 110px;
}
.article-aside .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 850;
    color: var(--faint);
    margin-bottom: 16px;
}
.article-nav {
    display: grid;
    gap: 12px;
}
.article-nav a {
    font-size: 15px;
    color: var(--muted);
    font-weight: 720;
}
.article-body h2 {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
    font-size: clamp(38px, 5vw, 72px);
    color: var(--navy);
    margin: 0 0 24px;
}
.article-body h2:not(:first-child) {
    margin-top: 86px;
}
.article-body p,
.article-body li {
    font-size: 20px;
    color: var(--body);
    line-height: 1.78;
}
.article-body ul {
    padding-left: 23px;
}
.callout {
    margin: 56px 0;
    padding: 42px 46px;
    border-radius: 30px;
    background: var(--soft);
    border-left: 6px solid var(--green);
}
.callout h3 {
    font-size: 23px;
    margin: 0 0 14px;
    color: var(--navy);
}
.callout p {
    margin: 0;
}
.questions {
    margin-top: 88px;
    padding: 54px;
    border-radius: 36px;
    background: #031834;
    color: #fff;
}
.questions h2 {
    color: #fff;
    margin-bottom: 28px;
}
.questions ul {
    margin: 0;
    padding-left: 23px;
}
.questions li {
    color: rgba(255, 255, 255, 0.82);
}
.flow {
    display: grid;
    gap: 16px;
    margin: 36px 0;
}
.flow-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 0;
    border-top: 1px solid var(--line);
    font-size: 26px;
    font-weight: 850;
    color: var(--navy);
}
.flow-item:after {
    content: "↓";
    color: var(--green);
    font-size: 26px;
}
.flow-item:last-child:after {
    content: "";
}
.association-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}
.association-list div {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-size: 19px;
    font-weight: 760;
    color: var(--navy);
}
.faq-list {
    max-width: 940px;
    margin: auto;
}
.faq-item {
    border-top: 1px solid var(--line);
}
.faq-item:last-child {
    border-bottom: 1px solid var(--line);
}
.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 32px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 850;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    gap: 26px;
    cursor: pointer;
}
.faq-q span {
    color: var(--green);
    font-size: 32px;
    line-height: 1;
}
.faq-a {
    display: none;
    padding: 0 0 34px;
    color: var(--body);
    font-size: 19px;
    max-width: 780px;
}
.faq-item.open .faq-a {
    display: block;
}
.faq-item.open .faq-q span {
    transform: rotate(45deg);
}
.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}
.research-card {
    padding: 38px 0;
    border-top: 1px solid var(--line);
}
.research-card h3 {
    font-size: 28px;
    line-height: 1.1;
    color: var(--navy);
    margin: 0 0 12px;
}
.research-card p {
    font-size: 18px;
    color: var(--body);
    margin: 0 0 18px;
}
.research-card a {
    font-weight: 850;
    color: var(--navy);
}
.cta {
    padding: 140px 0;
    background: radial-gradient(circle at 74% 20%, rgba(167, 209, 41, 0.2), transparent 30%),
        linear-gradient(135deg, #031a36, #082b5c 65%, #16412f);
    color: #fff;
    text-align: center;
}
.cta h2 {
    font-family: Oswald, Inter, sans-serif;
    text-transform: uppercase;
    font-size: clamp(54px, 8vw, 112px);
    letter-spacing: -0.055em;
    line-height: 0.9;
    margin: 0 0 24px;
}
.cta p {
    font-size: 20px;
    max-width: 780px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.78);
}
.site-footer {
    background: #031834;
    color: #fff;
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer-logo {
    width: 230px;
    margin-bottom: 18px;
}
.site-footer p {
    color: rgba(255, 255, 255, 0.64);
    max-width: 530px;
}
.site-footer h4 {
    margin: 0 0 16px;
    color: var(--green);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    margin: 10px 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 14px;
}
@media (max-width: 1100px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    }
    .main-nav.open {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-visual {
        min-height: 420px;
    }
    .article {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .article-aside {
        position: static;
    }
    .article-nav {
        display: flex;
        flex-wrap: wrap;
    }
    .feature-strip {
        grid-template-columns: 1fr;
    }
    .feature-block.wide {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
    .research-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, var(--max));
    }
    .brand img {
        width: 185px;
    }
    .hero {
        padding: 128px 0 78px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 66px;
    }
    .hero-subtitle {
        font-size: 25px;
    }
    .hero p:not(.kicker) {
        font-size: 17px;
    }
    .hero-visual {
        min-height: 360px;
    }
    .dc-orbit {
        inset: 0;
        border-radius: 32px;
    }
    .visual-core {
        width: 104px;
        height: 104px;
        border-radius: 32px;
        font-size: 32px;
    }
    .visual-point {
        font-size: 13px;
        gap: 8px;
    }
    .visual-point span {
        width: 34px;
        height: 34px;
    }
    .visual-point:nth-child(2) {
        left: 22px;
        top: 56px;
    }
    .visual-point:nth-child(3) {
        right: 20px;
        top: 100px;
    }
    .visual-point:nth-child(4) {
        left: 25px;
        top: 185px;
    }
    .visual-point:nth-child(5) {
        right: 22px;
        top: 245px;
    }
    .visual-point:nth-child(6) {
        left: 22px;
        bottom: 46px;
    }
    .section,
    .billboard {
        padding: 88px 0;
    }
    .section-head {
        margin-bottom: 44px;
    }
    .issue-panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 40px 0;
    }
    .issue-panel p {
        font-size: 18px;
    }
    .feature-block {
        padding: 34px;
        border-radius: 28px;
    }
    .feature-metric {
        font-size: 80px;
    }
    .page-hero {
        padding: 126px 0 72px;
    }
    .page-content {
        padding: 82px 0;
    }
    .article-body p,
    .article-body li {
        font-size: 18px;
    }
    .article-body h2:not(:first-child) {
        margin-top: 58px;
    }
    .callout,
    .questions {
        padding: 30px;
        border-radius: 26px;
    }
    .flow-item {
        font-size: 21px;
    }
    .faq-q {
        font-size: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .button-row {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

/* === FINAL FINAL PASS: editorial nav, county hero, billboard-as-hero === */
.site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #031a36, #082b5c) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    color: #fff !important;
}
.nav-wrap {
    min-height: 84px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px !important;
}
.brand img {
    width: 178px !important;
    height: auto !important;
    display: block !important;
}
.main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: 0 !important;
    position: static !important;
    flex-direction: row !important;
}
.main-nav a {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 14px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    opacity: 1 !important;
}
.main-nav a:hover,
.main-nav a.active {
    color: #fff !important;
}
.main-nav a.active {
    border-bottom: 2px solid var(--green) !important;
    padding-bottom: 7px !important;
}
.nav-social,
.main-nav a.nav-social {
    display: none !important;
}
.menu-toggle span {
    background: #fff !important;
}
.hero,
.page-hero {
    padding-top: 150px !important;
    background: radial-gradient(circle at 76% 18%, rgba(167, 209, 41, 0.17), transparent 31%),
        linear-gradient(135deg, #031a36, #082b5c) !important;
}
.hero {
    min-height: 860px !important;
    padding-bottom: 110px !important;
}
.hero h1 {
    font-size: clamp(72px, 8.5vw, 142px) !important;
    line-height: 0.88 !important;
    max-width: 760px !important;
}
.hero-subtitle {
    max-width: 750px !important;
    font-size: clamp(28px, 2.35vw, 44px) !important;
    line-height: 1.06 !important;
    font-weight: 900 !important;
    color: #fff !important;
}
.hero p:not(.kicker) {
    max-width: 760px !important;
}
.button-row .btn-secondary:empty {
    display: none !important;
}
.county-outline {
    width: 100%;
    max-width: 420px;
    height: auto;
}

.county-shape {
    fill: rgba(255,255,255,.03);
    stroke: rgba(255,255,255,.28);
    stroke-width: 2;
}

.county-marker circle {
    fill: #b6d72a;
    stroke: rgba(255,255,255,.75);
    stroke-width: 2;
}

.county-marker text {
    fill: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 600;
}

.county-inner,
.dcsd-box,
.county-framework {
    display: none;
}
.statement-hero {
    padding: 160px 0 120px !important;
    min-height: auto !important;
    color: #fff !important;
    text-align: left !important;
}
.statement-hero h1 {
    font-family: Oswald, Inter, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: -0.055em !important;
    line-height: 0.88 !important;
    font-size: clamp(64px, 8.8vw, 132px) !important;
    max-width: 1120px !important;
    margin: 0 !important;
    color: #fff !important;
}
.statement-hero .green {
    color: var(--green) !important;
}
.statement-hero .hero-dek {
    margin: 34px 0 0 !important;
    max-width: 760px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 22px !important;
    line-height: 1.55 !important;
    font-weight: 520 !important;
}
.statement-hero + .page-content {
    padding-top: 110px !important;
}
.section.dark.billboard {
    display: none !important;
}
@media (max-width: 1100px) {
    .menu-toggle {
        display: flex !important;
    }
    .main-nav {
        display: none !important;
        position: absolute !important;
        top: 84px !important;
        left: 0 !important;
        right: 0 !important;
        background: #031a36 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 24px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    .main-nav.open {
        display: flex !important;
    }
    .main-nav a {
        font-size: 16px !important;
        padding: 8px 0 !important;
    }
}
@media (max-width: 760px) {
    .nav-wrap {
        min-height: 76px !important;
    }
    .brand img {
        width: 150px !important;
    }
    .main-nav {
        top: 76px !important;
    }
    .hero {
        min-height: auto !important;
        padding-top: 120px !important;
        padding-bottom: 78px !important;
    }
    .hero h1 {
        font-size: 64px !important;
    }
    .hero-subtitle {
        font-size: 25px !important;
    }
    .county-visual {
        min-height: 360px !important;
    }
    .county-outline {
        width: 330px !important;
    }
    .county-marker text {
        font-size: 14px !important;
    }
    .statement-hero {
        padding: 124px 0 74px !important;
    }
    .statement-hero h1 {
        font-size: 58px !important;
    }
    .statement-hero .hero-dek {
        font-size: 18px !important;
    }
}
