:root {
    --ink: #0b1720;
    --ink-soft: #172838;
    --paper: #fffaf1;
    --surface: #ffffff;
    --muted: #5a6470;
    --line: #dde4e7;
    --green: #32624a;
    --mint: #d8f1e5;
    --orange: #f47b20;
    --gold: #ffc94a;
    --red: #c81d25;
    --shadow: 0 18px 45px rgba(11, 23, 32, 0.12);
    --card-shadow: 0 14px 36px rgba(11, 23, 32, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 241, 0.94);
    border-bottom: 1px solid rgba(11, 23, 32, 0.08);
    backdrop-filter: blur(16px);
}

.nav,
.section,
.hero-inner,
.footer-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
}

.nav-links a {
    text-decoration: none;
}

.call-button,
.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 6px;
    font-weight: 900;
    text-decoration: none;
}

.call-button,
.cta-primary {
    padding: 0 20px;
    color: #ffffff;
    background: var(--red);
    box-shadow: 0 12px 24px rgba(200, 29, 37, 0.22);
}

.cta-secondary {
    padding: 0 20px;
    border: 1px solid rgba(11, 23, 32, 0.16);
    background: rgba(255, 255, 255, 0.82);
}

.hero {
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(11, 23, 32, 0.97), rgba(11, 23, 32, 0.86) 48%, rgba(50, 98, 74, 0.78)),
        url("logo-hero.webp") center right 12% / min(640px, 70vw) auto no-repeat,
        var(--ink);
}

.hero-inner {
    min-height: 520px;
    display: grid;
    align-items: center;
    padding: 82px 0 72px;
}

.hero-copy {
    max-width: 780px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--orange);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 5.4vw, 5rem);
    line-height: 0.98;
}

.hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions .cta-primary {
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 14px 28px rgba(255, 201, 74, 0.2);
}

.hero-actions .cta-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.section {
    padding: 76px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 28px;
}

h2 {
    margin-bottom: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.04;
}

.section-heading p,
.copy-card p,
.faq-card p,
.local-copy p {
    color: var(--muted);
    font-size: 1.04rem;
}

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

.two-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
    gap: 22px;
}

.card,
.copy-card,
.faq-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(221, 228, 231, 0.92);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
    box-shadow: var(--card-shadow);
}

.card::before,
.faq-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
}

.card:nth-child(2n)::before {
    background: linear-gradient(90deg, var(--green), var(--mint));
}

.card h3,
.faq-card h3 {
    color: var(--ink);
    font-size: 1.16rem;
    line-height: 1.2;
}

.chip {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 0 12px;
    border-radius: 999px;
    color: #7a3208;
    background: #fff1e5;
    border: 1px solid rgba(244, 123, 32, 0.28);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-panel {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 201, 74, 0.18) 0 1px, transparent 1px 100%) 0 0 / 18px 18px,
        linear-gradient(145deg, var(--green), #143428);
    border-color: rgba(255, 255, 255, 0.1);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.cta-panel h2,
.cta-panel h3 {
    color: #ffffff;
}

.cta-panel a:not(.cta-primary) {
    color: var(--gold);
    font-weight: 900;
    text-decoration: none;
}

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

.areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.areas span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(50, 98, 74, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
}

.band {
    background: var(--ink);
    color: #ffffff;
}

.band h2,
.band h3 {
    color: #ffffff;
}

.band p {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    padding: 48px 0 34px;
    color: rgba(255, 255, 255, 0.82);
    background: #071016;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.site-footer a {
    color: var(--gold);
    font-weight: 900;
    text-decoration: none;
}

.mobile-call {
    display: none;
}

@media (hover: hover) {
    .card,
    .faq-card,
    .copy-card {
        transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .card:hover,
    .faq-card:hover,
    .copy-card:hover {
        transform: translateY(-4px);
        border-color: rgba(244, 123, 32, 0.36);
        box-shadow: 0 24px 54px rgba(11, 23, 32, 0.14);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .section-heading,
    .two-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .call-button {
        display: none;
    }

    .hero {
        background:
            linear-gradient(145deg, rgba(11, 23, 32, 0.98), rgba(11, 23, 32, 0.84)),
            url("icon-512.png") top 28px right -120px / 330px auto no-repeat,
            var(--ink);
    }

    .hero-inner {
        min-height: 560px;
        padding: 66px 0;
    }

    .hero-actions a {
        width: 100%;
    }

    .section {
        padding: 58px 0;
    }

    .mobile-call {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 30;
        display: flex;
        min-height: 52px;
        border-radius: 8px;
        color: #ffffff;
        background: var(--red);
        align-items: center;
        justify-content: center;
        font-weight: 900;
        text-decoration: none;
        box-shadow: 0 16px 34px rgba(7, 16, 22, 0.3);
    }

    .site-footer {
        padding-bottom: 94px;
    }
}
