@font-face {
    font-family: "Inter";
    src: url("/font/Inter-VariableFont_slnt,wght.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --green: #008b55;
    --green-dark: #207252;
    --green-deep: #15533c;
    --green-light: #e9f1ef;
    --grey-light: #e8e8e8;
    --ink: #191919;
    --text: #4a4a49;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 18px 55px rgba(20, 55, 43, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 80px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 4px solid var(--green);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: min(1440px, 92%);
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    width: min(300px, 30vw);
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
}

.main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.main-navigation a {
    padding: 10px 13px;
    color: var(--ink);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
    color: var(--green-dark);
    background: var(--green-light);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 27px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
}

.menu-toggle-icon {
    position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    position: absolute;
    left: 0;
    content: "";
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.document-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(195, 216, 208, 0.24), transparent 28%),
        linear-gradient(125deg, var(--green-deep), var(--green) 68%, #00a56a);
}

.document-hero::after {
    position: absolute;
    right: -130px;
    bottom: -240px;
    width: 560px;
    height: 560px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: clamp(70px, 9vw, 125px) 0 clamp(72px, 9vw, 120px);
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 20px;
    padding: 7px 12px;
    color: var(--green-deep);
    background: #cce9dc;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.document-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.document-hero h1 span {
    color: #bce6d3;
}

.hero-copy {
    max-width: 760px;
    margin: 28px 0 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.45;
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    font-weight: 600;
}

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

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--green-deep);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(10, 57, 40, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #eaf8f1;
}

.button-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.15);
}

.button-page-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.42);
}

.button-page-link:hover,
.button-page-link:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.72);
}

.content-width {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.intro-section {
    padding: 60px 0;
    background: var(--green-light);
}

.official-intro {
    max-width: 980px;
    margin-bottom: 42px;
}

.official-intro h2,
.library-heading h2 {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.official-intro p:not(.eyebrow) {
    margin: 0 0 16px;
    color: #363b39;
    font-size: 18px;
    line-height: 1.7;
}

.official-intro p:last-child {
    margin-bottom: 0;
}

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

.info-card {
    position: relative;
    min-height: 220px;
    padding: 34px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(32, 114, 82, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 10px 35px rgba(20, 55, 43, 0.07);
}

.card-number {
    position: absolute;
    top: 16px;
    right: 24px;
    color: rgba(0, 139, 85, 0.09);
    font-size: 82px;
    font-weight: 850;
    line-height: 1;
}

.info-card h2 {
    position: relative;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 25px;
    letter-spacing: -0.02em;
}

.info-card h2::before {
    display: block;
    width: 42px;
    height: 4px;
    margin-bottom: 18px;
    background: var(--green);
    border-radius: 3px;
    content: "";
}

.info-card p {
    position: relative;
    max-width: 520px;
    margin: 0;
}

.document-library {
    padding: clamp(60px, 8vw, 95px) 0;
    background: var(--white);
}

.library-heading {
    max-width: 850px;
    margin-bottom: 34px;
}

.library-heading > p:last-child {
    margin: 0;
}

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

.document-card {
    display: flex;
    min-height: 300px;
    padding: 34px;
    flex-direction: column;
    background: #f5f7f6;
    border: 1px solid rgba(32, 114, 82, 0.18);
    border-radius: var(--radius);
}

.document-card-highlight {
    background: var(--green-light);
    border-color: rgba(0, 139, 85, 0.28);
}

.document-type {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.document-card h3 {
    max-width: 520px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.document-card-meta {
    margin: 14px 0 30px;
    color: #666b69;
    font-size: 15px;
    font-weight: 650;
}

.document-card-actions {
    display: flex;
    margin-top: auto;
    align-items: center;
    gap: 22px;
}

.viewer-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #f5f6f6;
}

.viewer-section-alternate {
    padding-top: 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.eyebrow-dark {
    margin-bottom: 12px;
    color: var(--green-dark);
    background: transparent;
    padding: 0;
}

.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.text-link {
    flex: 0 0 auto;
    color: var(--green-dark);
    font-weight: 750;
    text-underline-offset: 5px;
}

.pdf-frame {
    padding: 18px;
    background: #3d3e3f;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.pdf-frame object {
    display: block;
    width: 100%;
    height: min(80vh, 1050px);
    min-height: 700px;
    background: var(--white);
    border: 0;
    border-radius: 8px;
}

.pdf-fallback {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 30px;
    text-align: center;
}

.button-green {
    color: var(--white);
    background: var(--green);
}

.viewer-note {
    margin: 18px 0 0;
    color: #6a6a68;
    font-size: 14px;
}

.site-footer {
    color: var(--white);
    background: var(--green-dark);
}

.footer-inner {
    width: min(1140px, 92%);
    margin: 0 auto;
    padding: 75px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 70px;
}

.footer-brand {
    display: block;
    width: min(300px, 100%);
}

.footer-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-column h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 19px;
}

.footer-column p,
.footer-column a {
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 14px;
}

.footer-column a {
    text-underline-offset: 4px;
    text-decoration-color: transparent;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--white);
    text-decoration-color: currentColor;
}

.copyright {
    padding: 16px 4%;
    color: rgba(255, 255, 255, 0.78);
    background: #222;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 1120px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-navigation {
        position: absolute;
        top: 76px;
        right: 0;
        width: min(420px, 88vw);
        max-height: calc(100vh - 76px);
        padding: 12px;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--white);
        box-shadow: 0 16px 24px rgba(0, 0, 0, 0.16);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 180ms ease, visibility 180ms ease;
    }

    .main-navigation.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-navigation a {
        padding: 14px 16px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .site-header,
    .header-inner {
        min-height: 64px;
    }

    .header-inner {
        width: 90%;
    }

    .brand {
        width: min(235px, 60vw);
    }

    .main-navigation {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .menu-toggle-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .hero-inner,
    .content-width {
        width: 90%;
    }

    .document-hero h1 {
        font-size: clamp(38px, 12vw, 55px);
    }

    .hero-copy {
        margin-top: 22px;
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

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

    .official-intro {
        margin-bottom: 32px;
    }

    .official-intro p:not(.eyebrow) {
        font-size: 16px;
    }

    .info-card {
        min-height: 0;
        padding: 28px;
    }

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

    .document-card {
        min-height: 0;
        padding: 28px;
    }

    .document-card-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .document-card-actions .text-link {
        text-align: center;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .pdf-frame {
        width: calc(100% + 6%);
        margin-left: -3%;
        padding: 8px;
        border-radius: 12px;
    }

    .pdf-frame object,
    .pdf-fallback {
        height: 72vh;
        min-height: 520px;
    }

    .footer-inner {
        width: 90%;
        padding: 55px 0;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .footer-column {
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
