:root {
    color-scheme: light;
    --ink: #13201d;
    --muted: #64736d;
    --line: rgba(19, 32, 29, .12);
    --paper: #f3f6f3;
    --panel: #ffffff;
    --green: #176d4b;
    --green-dark: #0f4f36;
    --blue: #2867c7;
    --gold: #b97a13;
    --red: #b4233d;
    --shadow: 0 24px 70px rgba(19, 32, 29, .12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 16px clamp(18px, 4vw, 54px);
    border-bottom: 1px solid var(--line);
    background: rgba(243, 246, 243, .82);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand span,
.service-grid span,
.seal {
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    font-weight: 950;
}

.brand span {
    width: 42px;
    aspect-ratio: 1;
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(23, 109, 75, .25);
}

.brand strong,
.brand small {
    display: block;
}

.brand small,
.eyebrow,
.hero-copy,
.hero-details,
.section p,
.service-grid p,
.list-panel span,
.list-panel small,
.verify-grid p,
.official-grid span,
footer span {
    color: var(--muted);
}

nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

nav a {
    padding: 9px 12px;
    border-radius: var(--radius);
    color: #41534d;
    font-size: 14px;
    font-weight: 800;
}

nav a:hover,
.admin-link {
    background: #fff;
    box-shadow: 0 10px 26px rgba(19, 32, 29, .08);
}

.hero {
    position: relative;
    display: grid;
    min-height: 650px;
    align-items: end;
    overflow: hidden;
    background: #14221f;
}

.hero-slides,
.hero-scrim {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity .7s ease, transform 5.8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-scrim {
    background:
        linear-gradient(90deg, rgba(13, 28, 31, .96), rgba(13, 28, 31, .72) 42%, rgba(13, 28, 31, .18)),
        linear-gradient(180deg, rgba(13, 28, 31, .18), rgba(13, 28, 31, .46));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(960px, calc(100% - 36px));
    margin: 0 auto;
    padding: 88px 0 134px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(44px, 8vw, 88px);
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 710px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-actions a,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--green);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
}

.hero-actions a + a {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
}

.hero-controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.hero-controls button {
    min-height: 36px;
    width: 36px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.hero-dots {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-dots button {
    min-height: 10px;
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
    transition: width .18s ease, background .18s ease;
}

.hero-dots button.active {
    width: 28px;
    background: #fff;
}

.hero-progress {
    width: min(320px, 100%);
    height: 3px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
}

.hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #9be0bb;
}

.hero-details {
    position: absolute;
    right: clamp(18px, 4vw, 54px);
    bottom: 26px;
    z-index: 2;
    display: grid;
    gap: 5px;
    width: min(360px, calc(100% - 36px));
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
}

.hero-details strong {
    color: #fff;
}

.notice,
.section,
.stat-band,
footer {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.notice {
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: var(--radius);
    font-weight: 850;
}

.notice.success {
    color: #17613d;
    background: #e6f6ee;
}

.notice.error {
    color: #8d2323;
    background: #fdecec;
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: -54px;
    position: relative;
    z-index: 4;
}

.stat-band article,
.service-grid article,
.request-card,
.list-panel,
.verify-grid article,
.official-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 16px 44px rgba(19, 32, 29, .08);
}

.stat-band article {
    padding: 18px;
}

.stat-band strong {
    display: block;
    font-size: clamp(26px, 4vw, 38px);
}

.stat-band span {
    color: var(--muted);
    font-weight: 800;
}

.section {
    padding: 74px 0 0;
}

.section-head {
    max-width: 720px;
    margin-bottom: 22px;
}

.section-head h2,
.split h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-head.compact h2 {
    font-size: 24px;
}

.service-grid,
.verify-grid,
.official-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-grid article,
.verify-grid article,
.official-grid article {
    padding: 18px;
}

.service-grid span {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: var(--radius);
}

.service-grid strong,
.verify-grid strong,
.official-grid strong,
.list-panel strong {
    display: block;
}

.service-grid p,
.verify-grid p {
    margin: 9px 0 0;
    font-size: 14px;
    line-height: 1.55;
}

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

.request-card {
    display: grid;
    gap: 13px;
    padding: 20px;
}

label span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

input {
    width: 100%;
    height: 42px;
    border: 1px solid #d6e0db;
    border-radius: var(--radius);
    padding: 0 12px;
    color: var(--ink);
    background: #fff;
    outline: none;
}

input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(23, 109, 75, .12);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr);
}

.split p {
    line-height: 1.65;
}

.list-panel {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.list-panel article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 12px;
    padding: 14px;
    border-radius: var(--radius);
    background: #f8fbf9;
}

.list-panel span {
    grid-column: 1;
}

.list-panel small {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-weight: 900;
}

.verify-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.verify-grid span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #17613d;
    background: #e6f6ee;
    font-size: 12px;
    font-weight: 950;
}

.official-grid article {
    min-height: 108px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 46px 0;
    color: var(--muted);
}

footer strong {
    color: var(--ink);
}

@media (max-width: 980px) {
    .site-header,
    footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .stat-band,
    .service-grid,
    .verify-grid,
    .official-grid,
    .request-grid,
    .split,
    .split.reverse {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-bottom: 210px;
    }

    .hero-details {
        left: 18px;
        right: 18px;
    }

    .stat-band,
    .service-grid,
    .verify-grid,
    .official-grid,
    .request-grid,
    .split,
    .split.reverse {
        grid-template-columns: 1fr;
    }
}
