:root {
    --ink: #161514;
    --ink-soft: #393632;
    --muted: #6b625a;
    --line: #ded8d1;
    --paper: #f7f4ef;
    --paper-strong: #fffaf2;
    --charcoal: #111111;
    --charcoal-2: #24211f;
    --rust: #c74725;
    --rust-dark: #923018;
    --steel: #6e7b83;
    --moss: #4b684f;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(22, 21, 20, .14);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    color: var(--rust-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 10;
    padding: 10px 14px;
    background: var(--white);
    color: var(--ink);
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

.container {
    width: min(100% - 36px, var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(17, 17, 17, .97);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.top-strip {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}

.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 36px;
}

.top-strip a,
.site-header a {
    color: var(--white);
}

.nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--white);
}

.brand-logo-wrap,
.footer-logo-wrap {
    display: inline-block;
    background: linear-gradient(90deg, var(--white) 0 68px, transparent 68px);
    border-radius: 5px;
}

.brand img {
    width: 250px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    font-weight: 700;
}

.site-nav a {
    padding: 10px 9px;
    border-radius: 6px;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, .1);
    text-decoration: none;
}

.site-nav .nav-cta {
    margin-left: 8px;
    background: var(--rust);
    color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
    background: #df5631;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 6px;
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(17, 17, 17, .92), rgba(17, 17, 17, .72) 52%, rgba(17, 17, 17, .22)),
        url("/assets/img/rust-texture.jpg") center / cover no-repeat;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 44px;
    align-items: center;
    min-height: 620px;
    padding: 78px 0 70px;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    max-width: 880px;
}

.hero p {
    max-width: 690px;
    margin: 24px 0 0;
    font-size: 20px;
    color: rgba(255, 255, 255, .88);
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--rust);
    color: var(--white);
}

.btn-primary:hover {
    background: #df5631;
}

.btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .08);
}

.btn-light {
    color: var(--ink);
    background: var(--white);
}

.hero-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(17, 17, 17, .62);
    box-shadow: var(--shadow);
}

.hero-panel h2 {
    margin: 0 0 18px;
    font-size: 24px;
}

.hero-list,
.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-list li,
.check-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
}

.hero-list li::before,
.check-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--rust);
    box-shadow: 0 0 0 6px rgba(199, 71, 37, .16);
}

.section {
    padding: 82px 0;
}

.section.tight {
    padding: 56px 0;
}

.section.dark {
    color: var(--white);
    background: var(--charcoal);
}

.section.band {
    background: var(--paper-strong);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head h2,
.content h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.section-head p,
.lead {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.dark .section-head p,
.dark .lead {
    color: rgba(255, 255, 255, .76);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.seo-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(22, 21, 20, .06);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.card a.more {
    display: inline-block;
    margin-top: 16px;
    font-weight: 800;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--line);
}

.proof-item {
    padding: 24px;
    background: var(--white);
}

.proof-item strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
}

.proof-item span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: start;
}

.media-stack {
    display: grid;
    gap: 16px;
}

.media-frame {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--charcoal);
}

.media-frame img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.page-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(17, 17, 17, .9), rgba(17, 17, 17, .68)),
        url("/assets/img/rust-texture.jpg") center / cover no-repeat;
}

.page-hero .container {
    min-height: 340px;
    display: grid;
    align-content: center;
    padding: 70px 0;
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 19px;
}

.content {
    max-width: 860px;
}

.content h2 {
    margin-top: 42px;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    margin: 30px 0 8px;
    font-size: 24px;
}

.content p {
    color: var(--ink-soft);
}

.timeline {
    display: grid;
    gap: 16px;
    counter-reset: step;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.timeline-item::before {
    counter-increment: step;
    content: counter(step);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: var(--rust);
    font-weight: 900;
}

.timeline-item h3 {
    margin: 0 0 6px;
    font-size: 22px;
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.service-areas li {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink-soft);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 800;
}

.faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
}

.contact-box {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(22, 21, 20, .06);
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list strong {
    display: block;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
}

.hours {
    width: 100%;
    border-collapse: collapse;
}

.hours th,
.hours td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.final-cta {
    color: var(--white);
    background: var(--rust);
}

.final-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    padding: 38px 0;
}

.final-cta h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
}

.final-cta p {
    margin: 8px 0 0;
    max-width: 760px;
}

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: var(--charcoal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .72fr .78fr .86fr .64fr;
    gap: 42px;
    padding: 54px 0 34px;
}

.footer-logo {
    width: 230px;
    height: auto;
}

.footer-logo-wrap {
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--white) 0 63px, transparent 63px);
}

.site-footer h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 18px;
}

.aside-subhead {
    margin-top: 26px;
}

.footer-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a,
.site-footer a {
    color: var(--white);
}

.dark-links a {
    color: var(--rust-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: var(--radius);
        background: var(--charcoal);
        box-shadow: var(--shadow);
    }

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

    .site-nav .nav-cta {
        margin-left: 0;
    }

    .hero-inner,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        min-height: auto;
        padding: 58px 0;
    }

    .cards,
    .proof-grid,
    .seo-card-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .top-strip-inner,
    .final-cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand img {
        width: 196px;
    }

    .brand-logo-wrap {
        background: linear-gradient(90deg, var(--white) 0 54px, transparent 54px);
    }

    .hero h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .cards,
    .proof-grid,
    .mini-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        padding: 18px;
    }

    .section {
        padding: 62px 0;
    }
}
