/* Cohen Business Law Group, apc — 2026 refresh
   Single stylesheet, no framework dependencies.
   Brand palette pulled from legacy cohenblg.css / style-library-1.css. */

:root {
    /* Logo-led palette: blue is the brand color (matches the COHEN logo),
       orange is reserved for CTAs and conversion-driving accents only.   */
    --brand-blue: #2155a0;       /* deeper than logo for stronger contrast */
    --brand-blue-dark: #163e7a;
    --brand-blue-soft: rgba(33,85,160,.08);
    --brand-orange: #cb6418;     /* CTA accent only */
    --brand-orange-dark: #a4501a;
    --brand-deep: #193441;       /* primary headings, dark sections */
    --brand-deep-soft: #2a4a5b;
    --brand-rust: #BF4E19;
    --ink: #1a1a1a;
    --ink-soft: #4a4a4a;
    --ink-muted: #6e6e6e;
    --line: #e4e4e4;
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --bg-deep: var(--brand-deep);

    --container: 1200px;
    --radius: 6px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 14px rgba(0,0,0,.08);

    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", Roboto, sans-serif;
    --font-display: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-orange); text-decoration: underline; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin: 0 0 .5em;
    color: var(--brand-deep);
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--soft { background: var(--bg-soft); }
.section--deep { background: var(--bg-deep); color: #fff; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .35em; }
.section-head .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: .75rem;
}
.section-head .lede {
    color: var(--ink-muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ===== Header / Nav ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 1.25rem;
    max-width: var(--container);
    margin: 0 auto;
}
.brand img { height: 52px; width: auto; }
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: .5rem;
    cursor: pointer;
    color: var(--brand-deep);
}
.nav-toggle svg { width: 28px; height: 28px; }
.primary-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.primary-nav a {
    color: var(--brand-deep);
    font-weight: 600;
    font-size: .95rem;
    padding: .35rem 0;
    position: relative;
}
.primary-nav a:hover { color: var(--brand-blue); text-decoration: none; }
.primary-nav .has-sub { position: relative; }
.primary-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: .5rem 0;
    list-style: none;
    margin: .5rem 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.primary-nav .has-sub:hover .submenu,
.primary-nav .has-sub:focus-within .submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .submenu a {
    display: block;
    padding: .55rem 1rem;
    font-weight: 500;
}
.primary-nav .submenu a:hover { background: var(--bg-soft); }
.nav-cta {
    background: var(--brand-orange);
    color: #fff !important;
    padding: .55rem 1.1rem !important;
    border-radius: var(--radius);
    font-weight: 700;
}
.nav-cta:hover { background: var(--brand-orange-dark); color: #fff !important; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--brand-deep);
}
.hero__bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(135deg, rgba(25,52,65,.78) 0%, rgba(25,52,65,.55) 100%),
        url("../images/westwood_sky_hero.jpg");
    background-size: cover;
    background-position: center;
}
.hero__inner {
    position: relative;
    padding: 5rem 1.25rem;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}
.hero h1 {
    color: #fff;
    margin-bottom: .35em;
    white-space: nowrap;
}
@media (max-width: 540px) {
    .hero h1 { white-space: normal; }
}
.hero .tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #f0e5dc;
    max-width: 56ch;
    margin-bottom: 1.25rem;
}
.hero .meta {
    display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
    font-size: .95rem; opacity: .85; margin-bottom: 2rem;
}
.hero .meta strong { color: var(--brand-orange); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
    text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); }
.btn--primary:hover { background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--ghost:hover { background: #fff; color: var(--brand-deep); border-color: #fff; }
.btn--outline { background: transparent; color: var(--brand-orange); border-color: var(--brand-orange); }
.btn--outline:hover { background: var(--brand-orange); color: #fff; }

/* ===== Trust strip ===== */
.trust {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1.75rem 0;
}
.trust-row {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: center; gap: 2rem 3rem;
}
.trust-row img {
    max-height: 70px; width: auto; opacity: .85;
    filter: grayscale(.15);
    transition: opacity .15s ease, filter .15s ease;
}
.trust-row a:hover img { opacity: 1; filter: none; }
.trust-row .years-badge { max-height: 90px; }

/* ===== Intro / About ===== */
.intro-body {
    max-width: 820px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}
.intro-body p { margin-bottom: 1.1em; }
.intro-body strong { color: var(--brand-deep); font-weight: 700; }

/* ===== Practice areas ===== */
.practice-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.practice-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.practice-card.is-link { cursor: pointer; }
.practice-card:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.practice-card__icon {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: var(--radius);
    margin-bottom: .25rem;
}
.practice-card__icon svg { width: 24px; height: 24px; }
.practice-card h3 { color: var(--brand-deep); margin: 0 0 .25em; font-size: 1.15rem; }
.practice-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; line-height: 1.55; }
.practice-card a { color: inherit; text-decoration: none; }
.practice-card a:hover { color: inherit; text-decoration: none; }

/* ===== Attorneys ===== */
.team-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 1080px; margin: 0 auto;
}
.attorney {
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .15s ease, transform .15s ease;
}
.attorney:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.attorney a { color: inherit; text-decoration: none; display: block; }
.attorney a:hover { text-decoration: none; }
.attorney__photo {
    aspect-ratio: 1 / 1.1;
    background: var(--bg-soft);
    overflow: hidden;
}
.attorney__photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform .3s ease;
}
.attorney:hover .attorney__photo img { transform: scale(1.04); }
.attorney__body { padding: 1.1rem .75rem 1.4rem; }
.attorney__name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-deep);
    margin: 0 0 .15em;
    font-size: 1.05rem;
}
.attorney__role {
    color: var(--ink-muted);
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Offices ===== */
.office-grid {
    display: grid; gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 980px; margin: 0 auto;
}
.office {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.office__photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-soft);
}
.office__photo img { width: 100%; height: 100%; object-fit: cover; }
.office__body { padding: 1.5rem; }
.office h3 { color: var(--brand-blue); margin-bottom: .35em; }
.office address { font-style: normal; line-height: 1.7; color: var(--ink-soft); }
.office address strong { color: var(--brand-deep); }
.office__contact {
    margin-top: 1rem;
    display: flex; flex-wrap: wrap; gap: .35rem 1.25rem;
    font-size: .95rem;
}
.office__contact a { font-weight: 600; }

/* ===== Affiliations ===== */
.affiliations {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: center; gap: 2rem;
}
.affiliations img {
    max-height: 70px; width: auto;
    opacity: .8;
    filter: grayscale(.2);
    transition: opacity .15s ease, filter .15s ease;
}
.affiliations a:hover img,
.affiliations img:hover { opacity: 1; filter: none; }

/* ===== Closing CTA ===== */
.cta-band {
    background: var(--brand-deep);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: .25em; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.cta-band .btn { margin: .25rem; }

/* ===== Footer ===== */
.site-footer {
    background: #0f1f28;
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    padding: 2.5rem 0 1.5rem;
}
.site-footer .container > * { margin-bottom: 1rem; }
.site-footer a { color: #fff; }
.site-footer .disclaimer {
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    line-height: 1.55;
    text-align: justify;
}
.footer-links {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: .25rem 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1rem;
    text-align: center;
}
.footer-links a { font-weight: 500; }
.footer-copy { text-align: center; }

/* ===== Responsive nav (mobile) ===== */
@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        background: #fff;
        padding: 1.25rem 1.5rem 2rem;
        border-top: 1px solid var(--line);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform .25s ease;
        box-shadow: var(--shadow-md);
    }
    .primary-nav.is-open { transform: translateX(0); }
    .primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .primary-nav li { border-bottom: 1px solid var(--line); }
    .primary-nav a {
        display: block;
        padding: .9rem .25rem;
        font-size: 1.05rem;
    }
    .primary-nav .submenu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; padding: 0 0 .5rem 1rem;
        margin: 0;
    }
    .primary-nav .submenu a { padding: .5rem .25rem; font-size: .95rem; color: var(--ink-soft); }
    .nav-cta {
        margin-top: .5rem;
        text-align: center;
        display: block;
    }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 600px) {
    .section { padding: 3.5rem 0; }
    .hero { min-height: 520px; }
    .hero__inner { padding: 3.5rem 1.25rem; }
    .trust-row { gap: 1.5rem 2rem; }
    .trust-row img { max-height: 55px; }
    .trust-row .years-badge { max-height: 75px; }
    .brand img { height: 42px; }
    .primary-nav { top: 66px; }
}

/* ===== Attorney bio pages ===== */
.bio-hero {
    background: var(--brand-deep);
    color: #fff;
    padding: 4rem 0 3.5rem;
}
.bio-hero .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: center;
}
.bio-hero h1 {
    color: #fff;
    margin: 0 0 .25em;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
}
.bio-hero .role {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.25rem;
}
.bio-hero__photo {
    width: 280px;
    height: 340px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--brand-deep-soft);
    box-shadow: var(--shadow-md);
}
.bio-hero__photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.bio-contact {
    display: flex; flex-wrap: wrap; gap: .5rem 1.25rem;
    font-size: 1rem;
    margin-top: .5rem;
}
.bio-contact a, .bio-contact span {
    color: rgba(255,255,255,.92);
    display: inline-flex; align-items: center; gap: .35rem;
}
.bio-contact a:hover { color: var(--brand-orange); text-decoration: none; }
.bio-contact svg { width: 16px; height: 16px; opacity: .85; }
.bio-vcard {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: 1rem;
    padding: .55rem 1rem;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: var(--radius);
    color: #fff !important;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
}
.bio-vcard:hover { background: rgba(255,255,255,.1); text-decoration: none; }

.bio-body {
    padding: 3.5rem 0;
}
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.bio-grid--reverse { grid-template-columns: 320px 1fr; }
.bio-profile h2 {
    font-size: 1.5rem;
    color: var(--brand-deep);
    margin-bottom: .5em;
    padding-bottom: .35em;
    border-bottom: 2px solid var(--brand-blue);
}
.bio-profile p {
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 1.1em;
    text-align: left;
}
.bio-aside {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--line);
}
.bio-aside h3 {
    color: var(--brand-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 .6em;
    font-weight: 700;
}
.bio-aside h3:not(:first-child) { margin-top: 1.5em; }
.bio-aside ul {
    list-style: none;
    padding: 0;
    margin: 0 0 .25em;
}
.bio-aside li {
    color: var(--ink-soft);
    font-size: .94rem;
    line-height: 1.5;
    padding: .25rem 0;
    border-bottom: 1px dashed rgba(0,0,0,.06);
}
.bio-aside li:last-child { border-bottom: 0; }
.bio-awards {
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
    margin-top: .6em;
}
.bio-awards img { max-height: 80px; width: auto; }
.bio-awards .sl-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem .75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: .82rem;
    color: var(--ink-soft);
}
.bio-back {
    display: inline-flex; align-items: center; gap: .35rem;
    color: var(--brand-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.bio-back:hover { color: var(--brand-orange); text-decoration: none; }

@media (max-width: 800px) {
    .bio-hero .container { grid-template-columns: 1fr; gap: 1.75rem; }
    .bio-hero__photo { width: min(260px, 80vw); height: auto; aspect-ratio: 1 / 1.2; margin: 0 auto; }
    .bio-hero { text-align: center; padding: 3rem 0 2.5rem; }
    .bio-contact { justify-content: center; }
    .bio-grid, .bio-grid--reverse { grid-template-columns: 1fr; gap: 2rem; }
    .bio-aside { order: 2; }
    .bio-profile { order: 1; }
}

/* ===== Practice-area / inner pages ===== */
.page-hero {
    background: var(--brand-deep);
    color: #fff;
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(135deg, rgba(25,52,65,.85) 0%, rgba(25,52,65,.7) 100%),
        url("../images/westwood_sky_hero.jpg");
    background-size: cover;
    background-position: center;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: .75rem;
}
.page-hero h1 {
    color: #fff;
    margin: 0 0 .5em;
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 22ch;
}
.page-hero .lede {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,.92);
    max-width: 60ch;
    margin: 0;
}

.page-section {
    padding: 4.5rem 0;
}
.page-section + .page-section { padding-top: 0; }

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__media img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.feature-row__copy h2 {
    color: var(--brand-deep);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: .5em;
}
.feature-row__copy .lede {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature-point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    align-items: start;
}
.feature-point__icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: var(--radius);
    flex-shrink: 0;
}
.feature-point__icon svg { width: 26px; height: 26px; }
.feature-point h3 {
    color: var(--brand-deep);
    font-size: 1.2rem;
    margin: 0 0 .35em;
}
.feature-point p {
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.6;
}

.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.pricing-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 1rem;
}
.pricing-list li:last-child { border-bottom: 0; }
.pricing-list li > span:last-child {
    font-weight: 700;
    color: var(--brand-deep);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.pricing-list li .incl {
    font-weight: 600;
    color: var(--brand-blue);
    font-style: italic;
}
.pricing-list li.total {
    background: var(--brand-deep);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.pricing-list li.total > span:last-child { color: var(--brand-orange); font-size: 1.25rem; }
.pricing-cta {
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    background: var(--bg-soft);
}

.callout-band {
    background: var(--bg-soft);
    padding: 4rem 0;
    text-align: center;
}
.callout-band h2 {
    color: var(--brand-deep);
    margin-bottom: .35em;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}
.callout-band p {
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

@media (max-width: 800px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-row--reverse { direction: ltr; }
    .feature-row__media { order: -1; }
    .page-section { padding: 3rem 0; }
}

/* Print */
@media print {
    .site-header, .nav-toggle, .cta-band, .hero-cta { display: none; }
    .hero { color: #000; min-height: 0; }
    .hero__bg { display: none; }
}
