.skip-link {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    position: static;
    display: inline-block;
    padding: 0.5rem 1rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-brand-gold);
    background: linear-gradient(135deg, #2f7548, #073413);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 76px;
    padding: 0 2rem;
}

.header-brand {
    display: inline-flex;
    flex: 0 1 auto;
    min-width: 0;
}

.header-brand img {
    display: block;
    width: auto;
    height: 30px;
    filter: brightness(0) invert(1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.875rem;
    flex: 1 0 auto;
}

.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 9.75rem;
    min-height: 3.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        filter 0.15s,
        transform 0.12s,
        box-shadow 0.15s;
}

.header-action svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.header-action-tel {
    gap: 0.5625rem;
    min-width: 13.25rem;
    border: 0;
    background: var(--color-cta-on-green-tel-bg);
    color: var(--color-cta-on-green-tel-fg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 7px 20px var(--color-cta-on-green-shadow);
}

.header-action-tel svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.header-action-tel-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.header-action-tel-text b {
    font-family: var(--font-family-accent);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.header-action-tel-text i {
    color: var(--color-cta-on-green-tel-note);
    font-size: 0.59375rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.header-action-primary {
    border: 1.5px solid var(--color-cta-on-green-doc-border);
    background: var(--color-cta-on-green-doc-bg);
    color: var(--color-cta-on-green-doc-fg);
    font-size: 1rem;
    box-shadow: 0 7px 20px rgba(14, 74, 46, 0.22);
}

.header-action:hover,
.header-action:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.header-action:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.34);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .header {
        position: relative;
        top: auto;
        z-index: 20;
    }

    .header-inner {
        align-items: center;
        min-height: 0;
        padding: 1rem;
    }

    .header-actions {
        display: none;
    }

    .header-brand img {
        height: 22px;
    }
}
