/* style.css - OnlineHealthIns.com
   Design tokens are injected as CSS custom properties via site_tokens_css(). */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: var(--header-height, 108px);
    background: var(--color-bg, #fff);
    color: var(--color-text, #16283c);
    font-family: var(--font-body, system-ui, sans-serif);
    font-size: 1rem;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: var(--font-display, system-ui, sans-serif);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-navy, #1b3a5f);
}

a {
    color: var(--color-accent, #1f8a3b);
    text-decoration: underline;
}

a:hover {
    color: var(--color-accent-strong, #176b2d);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Header ────────────────────────────────────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg, #fff);
    border-bottom: 1px solid var(--color-border, #e2e8ee);
    z-index: 100;
}

.site-header__utility {
    background: var(--color-panel, #eef3f7);
    border-bottom: 1px solid var(--color-border, #e2e8ee);
}

.site-header__utility-inner {
    max-width: var(--content-width, 1200px);
    margin: 0 auto;
    padding: 0.4rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted, #5b6b7c);
}

.site-header__utility-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.25rem;
}

.site-header__utility-links a {
    color: var(--color-text-muted, #5b6b7c);
    text-decoration: none;
}

.site-header__utility-links a:hover {
    color: var(--color-accent, #1f8a3b);
}

.site-header__inner {
    max-width: var(--content-width, 1200px);
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-logo__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.site-logo__mark {
    flex-shrink: 0;
}

.site-logo__text {
    font-family: var(--font-display, system-ui, sans-serif);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--color-navy, #1b3a5f);
}

.site-logo__tld {
    color: var(--color-accent, #1f8a3b);
}

/* ── Navigation ────────────────────────────────────────────────────────────── */

.site-nav {
    margin-left: auto;
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-nav__list > .site-nav__item > a {
    color: var(--color-text, #16283c);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
    color: var(--color-accent, #1f8a3b);
}

.site-nav__item--has-dropdown {
    position: relative;
    /* Padding-bottom (not margin/gap) keeps the hover/focus zone continuous
       between the trigger link and the dropdown below it -- no dead zone
       for the mouse to cross, which is what caused dropdowns to close
       before a user could reach them in earlier builds. */
    padding-bottom: 0.75rem;
    margin-bottom: -0.75rem;
}

.nav-chevron::after {
    content: ' \25BE';
    font-size: 0.75em;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--color-border, #e2e8ee);
    border-radius: var(--radius-small, 6px);
    padding: 0.5rem 0;
    min-width: 230px;
    list-style: none;
    margin: 0;
    box-shadow: var(--shadow-card);
    z-index: 200;
}

.site-nav__item--has-dropdown:hover .nav-dropdown,
.site-nav__item--has-dropdown:focus-within .nav-dropdown {
    display: block;
}

.nav-dropdown li a {
    display: block;
    padding: 0.55rem 1.1rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-text, #16283c);
}

.nav-dropdown li a:hover {
    color: var(--color-accent, #1f8a3b);
    background: var(--color-panel-soft, #f9fafb);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: 1px solid transparent;
    border-radius: var(--radius-small, 6px);
    cursor: pointer;
    padding: 0.35rem 0.6rem;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-navy, #1b3a5f);
    border-radius: 2px;
}

.nav-hamburger__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-navy, #1b3a5f);
    margin-top: 2px;
}

.nav-hamburger:hover {
    border-color: var(--color-border, #e2e8ee);
    background: var(--color-panel, #eef3f7);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-small, 6px);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.btn--primary {
    background: var(--color-accent, #1f8a3b);
    color: #fff;
}

.btn--primary:hover {
    background: var(--color-accent-strong, #176b2d);
    color: #fff;
}

.btn--outline {
    border: 1px solid var(--color-navy, #1b3a5f);
    color: var(--color-navy, #1b3a5f);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-panel, #eef3f7);
    color: var(--color-navy, #1b3a5f);
}

.btn--nav-cta {
    white-space: nowrap;
}

.btn--block {
    display: block;
    width: 100%;
}

/* ── Layout ─────────────────────────────────────────────────────────────────── */

.page-wrapper {
    max-width: var(--content-width, 1200px);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.content-layout--single {
    grid-template-columns: 1fr;
    max-width: 780px;
}

.content-layout--full {
    grid-template-columns: 1fr;
    max-width: none;
}

.content-main {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: calc(var(--header-height, 108px) + 1.5rem);
}

/* ── Breadcrumbs ─────────────────────────────────────────────────────────────── */

.breadcrumbs {
    margin-bottom: 1.5rem;
}

.breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--color-text-muted, #5b6b7c);
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: '/';
    margin-right: 0.5rem;
}

.breadcrumbs__item.is-current {
    color: var(--color-text, #16283c);
}

/* ── Sidebar blocks ───────────────────────────────────────────────────────── */

.sidebar-block {
    background: var(--color-surface, #f7f9fb);
    border: 1px solid var(--color-border, #e2e8ee);
    border-radius: var(--radius-medium, 10px);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.sidebar-block__title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-navy, #1b3a5f);
}

.sidebar-block__links {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-block__links a {
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.55rem 1.1rem;
    background: var(--color-accent, #1f8a3b);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-small, 6px);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */

.site-footer {
    border-top: 1px solid var(--color-border, #e2e8ee);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    background: var(--color-surface-strong, #0f2a44);
    color: #d7e2ec;
}

.site-footer a {
    color: #d7e2ec;
}

.site-footer__inner {
    max-width: var(--content-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-footer__top {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.site-footer__brand {
    flex: 1 1 260px;
}

.site-footer__brand-name {
    font-family: var(--font-display, system-ui, sans-serif);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    color: #fff;
}

.site-footer__tagline {
    margin: 0 0 0.5rem;
    color: #a9bccb;
    font-size: 0.875rem;
}

.site-footer__contact a {
    color: #a9bccb;
    font-size: 0.875rem;
}

.site-footer__compliance {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #90a5b7;
    max-width: 42ch;
}

.site-footer__nav {
    flex: 1 1 180px;
}

.site-footer__col-heading {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a9bccb;
    margin-bottom: 0.75rem;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__links a {
    text-decoration: none;
    font-size: 0.875rem;
}

.site-footer__links a:hover {
    color: #fff;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1rem;
    font-size: 0.8rem;
    color: #90a5b7;
}

/* ── Utility ─────────────────────────────────────────────────────────────────── */

.text-muted {
    color: var(--color-text-muted, #5b6b7c);
}

.error-page {
    text-align: center;
    padding: 5rem 1rem;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 200;
    margin: 0 0 0.5rem;
    color: var(--color-text-muted, #5b6b7c);
}

.error-page p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ── Compliance disclaimer box ─────────────────────────────────────────────── */

.disclaimer-box {
    background: var(--color-panel, #eef3f7);
    border: 1px solid var(--color-border, #e2e8ee);
    border-radius: var(--radius-medium, 10px);
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: var(--color-text-muted, #5b6b7c);
    margin: 2rem 0;
}

/* ── Form status banner ───────────────────────────────────────────────────── */

.form-banner {
    border-radius: var(--radius-medium, 10px);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-banner--success {
    background: #e6f4ea;
    color: #176b2d;
    border: 1px solid #b9e2c5;
}

.form-banner--error {
    background: #fdecea;
    color: #a02622;
    border: 1px solid #f3c2be;
}

/* ── Lead / contact form ───────────────────────────────────────────────────── */

.lead-form__field {
    margin-bottom: 0.9rem;
}

.lead-form__field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--color-navy, #1b3a5f);
}

.lead-form__field input,
.lead-form__field select,
.lead-form__field textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border, #e2e8ee);
    border-radius: var(--radius-small, 6px);
    font-size: 0.9rem;
    font-family: inherit;
    background: #fff;
    color: var(--color-text, #16283c);
}

.lead-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-form__note {
    font-size: 0.75rem;
    color: var(--color-text-muted, #5b6b7c);
    margin-top: 0.6rem;
    text-align: center;
}

/* ── Homepage: hero ───────────────────────────────────────────────────────── */

.hero {
    background: linear-gradient(180deg, var(--color-panel, #eef3f7) 0%, #fff 100%);
    margin: -2rem calc(50% - 50vw) 0;
    padding: 3rem calc(50vw - 50% + 1.5rem) 3rem;
}

.hero__inner {
    max-width: var(--content-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero__headline {
    font-size: 2.6rem;
    margin: 0 0 1rem;
}

.hero__subcopy {
    font-size: 1.1rem;
    color: var(--color-text-muted, #5b6b7c);
    margin-bottom: 1.5rem;
    max-width: 46ch;
}

.hero__checklist {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.hero__checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero__checklist li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-accent, #1f8a3b);
    color: #fff;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.hero__ctas {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.hero__disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-muted, #5b6b7c);
}

.hero__media {
    position: relative;
}

.hero__photo {
    border-radius: var(--radius-large, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero__lead-card {
    background: #fff;
    border-radius: var(--radius-large, 16px);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
    margin-top: -3rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 5;
}

.hero__lead-card h2 {
    font-size: 1.2rem;
    margin: 0 0 0.2rem;
}

.hero__lead-card > p {
    font-size: 0.85rem;
    color: var(--color-text-muted, #5b6b7c);
    margin: 0 0 1rem;
}

/* ── Trust strip ──────────────────────────────────────────────────────────── */

.trust-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-border, #e2e8ee);
}

.trust-strip__item {
    text-align: center;
}

.trust-strip__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-panel, #eef3f7);
    color: var(--color-accent, #1f8a3b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    font-size: 1.3rem;
}

.trust-strip__item h3 {
    font-size: 0.95rem;
    margin: 0 0 0.3rem;
}

.trust-strip__item p {
    font-size: 0.8rem;
    color: var(--color-text-muted, #5b6b7c);
    margin: 0;
}

/* ── Guidance cards grid ──────────────────────────────────────────────────── */

.guidance-section {
    padding: 3rem 0;
    text-align: center;
}

.guidance-section > p {
    color: var(--color-text-muted, #5b6b7c);
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.guidance-card {
    background: #fff;
    border: 1px solid var(--color-border, #e2e8ee);
    border-radius: var(--radius-medium, 10px);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.guidance-card__media {
    aspect-ratio: 4 / 3;
    background: var(--color-panel, #eef3f7);
}

.guidance-card__body {
    padding: 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guidance-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.guidance-card h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}

.guidance-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted, #5b6b7c);
    margin: 0 0 0.8rem;
    flex: 1;
}

.guidance-card a.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

/* ── Trust statement strip ────────────────────────────────────────────────── */

.trust-statement {
    background: var(--color-panel, #eef3f7);
    margin: 0 calc(50% - 50vw);
    padding: 1.5rem calc(50vw - 50% + 1.5rem);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted, #5b6b7c);
}

/* ── Directory ─────────────────────────────────────────────────────────────── */

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.9rem;
}

.directory-card {
    display: block;
    background: #fff;
    border: 1px solid var(--color-border, #e2e8ee);
    border-radius: var(--radius-medium, 10px);
    padding: 1rem;
    text-decoration: none;
    color: var(--color-text, #16283c);
}

.directory-card:hover {
    border-color: var(--color-accent, #1f8a3b);
}

.directory-card__state {
    font-weight: 700;
    color: var(--color-navy, #1b3a5f);
    display: block;
    margin-bottom: 0.3rem;
}

.directory-card__meta {
    font-size: 0.78rem;
    color: var(--color-text-muted, #5b6b7c);
}

.fact-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.fact-table th, .fact-table td {
    text-align: left;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--color-border, #e2e8ee);
}

.fact-table th {
    color: var(--color-text-muted, #5b6b7c);
    font-weight: 600;
    width: 40%;
}

/* ── Glossary ──────────────────────────────────────────────────────────────── */

.glossary-jumplist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1.5rem 0;
}

.glossary-jumplist a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-panel, #eef3f7);
    color: var(--color-navy, #1b3a5f);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.glossary-letter-heading {
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border, #e2e8ee);
    padding-bottom: 0.4rem;
    margin-top: 2rem;
}

.glossary-term-row {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border, #e2e8ee);
}

.glossary-term-row a {
    font-weight: 700;
    text-decoration: none;
    font-size: 1.02rem;
}

.glossary-term-row p {
    margin: 0.3rem 0 0;
    color: var(--color-text-muted, #5b6b7c);
    font-size: 0.9rem;
}

.term-callout {
    background: var(--color-panel, #eef3f7);
    border-left: 4px solid var(--color-accent, #1f8a3b);
    border-radius: var(--radius-small, 6px);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    font-size: 1.05rem;
}

/* ── Library / FAQ ─────────────────────────────────────────────────────────── */

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.library-card {
    border: 1px solid var(--color-border, #e2e8ee);
    border-radius: var(--radius-medium, 10px);
    padding: 1.25rem;
    background: #fff;
}

.library-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
}

.library-card h3 a {
    text-decoration: none;
}

.library-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted, #5b6b7c);
}

.faq-item {
    border-bottom: 1px solid var(--color-border, #e2e8ee);
    padding: 1.1rem 0;
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    font-size: 1.02rem;
    color: var(--color-navy, #1b3a5f);
}

.faq-item p {
    margin: 0.6rem 0 0;
    color: var(--color-text, #16283c);
}

/* ── Acquisition page ─────────────────────────────────────────────────────── */

.acquisition-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent, #1f8a3b);
}

.acquisition-facts {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.acquisition-facts li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--color-border, #e2e8ee);
}

/* ── Mobile ─────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
    }

    .guidance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header__utility-tagline {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .site-header__actions .btn--nav-cta {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .site-nav {
        display: none;
        position: fixed;
        top: var(--header-height, 108px);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: 1rem 1.5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .site-nav__item--has-dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0.5rem 1rem;
        display: none;
    }

    .site-nav__item--has-dropdown:hover .nav-dropdown {
        display: none;
    }

    .site-nav.is-open .nav-dropdown,
    .site-nav__item--dropdown-open .nav-dropdown {
        display: block;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero__lead-card {
        margin-left: 0;
        margin-right: 0;
        margin-top: 1.5rem;
    }

    .guidance-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr;
    }

    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer: single column, ~2x text size, per StartHere.md mobile spec */
    .site-footer__top {
        flex-direction: column;
        gap: 2rem;
    }

    .site-footer__brand-name {
        font-size: 1.7rem;
    }

    .site-footer__tagline,
    .site-footer__contact a,
    .site-footer__compliance {
        font-size: 1.15rem;
    }

    .site-footer__col-heading {
        font-size: 1.1rem;
    }

    .site-footer__links {
        gap: 0.85rem;
    }

    .site-footer__links a {
        font-size: 1.15rem;
    }

    .site-footer__bottom {
        font-size: 1rem;
    }
}
