@font-face {
    font-family: "All Round Gothic";
    src: url("/fonts/AllRoundGothic-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "All Round Gothic";
    src: url("/fonts/AllRoundGothic-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --color-accent: #9fc131;
    --color-accent-dark: #718d18;
    --color-text: #444;
    --color-muted: #707070;
    --color-border: #707070;
    --color-surface: #fff;
    --color-soft: #f7f9f1;
    --shadow-nav: 1px 1px 6px -2px rgb(0 0 0 / 55%);
    --content-width: 1120px;
    color-scheme: light;
    font-family: Arial, Helvetica, sans-serif;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--color-text);
    background: var(--color-surface);
    font-size: 1rem;
    line-height: 1.65;
}

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

a {
    color: var(--color-accent-dark);
}

a:hover {
    color: #536a0f;
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: #000;
    background: #fff;
    border: 2px solid var(--color-accent);
    transform: translateY(-200%);
}

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

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    width: 100%;
    min-height: 100px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-nav);
}

.site-navigation {
    display: flex;
    width: min(100%, 1380px);
    min-height: 100px;
    margin: 0 auto;
    align-items: stretch;
}

.site-logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 1rem;
}

.site-logo img {
    width: auto;
    height: 40px;
}

.desktop-navigation,
.mobile-navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.desktop-navigation {
    display: flex;
    flex: 1;
    align-items: stretch;
}

.desktop-navigation li {
    display: flex;
    flex: 1;
    min-width: 0;
    align-items: center;
    border-left: 1px solid rgb(112 112 112 / 55%);
}

.desktop-navigation a {
    display: flex;
    width: calc(100% - 1rem);
    min-height: 42px;
    padding: 0.55rem 0.7rem;
    margin: 0 0.5rem;
    align-items: center;
    justify-content: center;
    color: #000;
    border-radius: 10px;
    font-family: "All Round Gothic", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease;
}

.desktop-navigation a:hover {
    color: #000;
    background: var(--color-accent);
}

.mobile-navigation {
    display: none;
}

.page-section,
.site-footer__inner {
    width: min(var(--content-width), calc(100% - 3rem));
    margin-inline: auto;
}

.page-section {
    padding: 4.25rem 0 3.5rem;
}

.hero-section {
    padding-top: 5rem;
}

.section-divider,
.card-divider {
    height: 1px;
    background: var(--color-border);
}

.section-divider {
    width: min(90%, 1280px);
    margin: 0 auto;
}

.card-divider {
    width: 90%;
    margin: 0.3rem auto 0.7rem;
}

.headline {
    margin: 0;
    color: var(--color-muted);
    font-family: "All Round Gothic", Arial, sans-serif;
    font-size: clamp(2.5rem, 5.2vw, 3.75rem);
    font-weight: 700;
    line-height: 1.14;
}

.highlighted {
    color: var(--color-accent);
}

.parenthesis {
    font-family: system-ui, sans-serif;
}

.subline {
    margin: 1.25rem 0 1.8rem;
    color: var(--color-muted);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

.main-text {
    margin-top: 0;
    color: var(--color-muted);
    font-size: clamp(1.3rem, 2.4vw, 1.58rem);
    line-height: 1.55;
}

.button {
    display: inline-flex;
    min-height: 40px;
    padding: 0.35rem 0.95rem;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    background: #fff;
    border: 1px solid var(--color-border);
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button:hover {
    color: var(--color-accent-dark);
    border-color: var(--color-accent);
    box-shadow: 1px 1px 4px -2px rgb(0 0 0 / 75%);
}

.centered,
.feature-card,
.offer-card {
    text-align: center;
}

.centered-button {
    display: flex;
    width: fit-content;
    margin: 2rem auto 0;
}

.feature-grid,
.offer-grid {
    display: grid;
    margin-top: 3rem;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.offer-card {
    padding: 1.5rem;
}

.feature-card img,
.offer-card img {
    width: 100px;
    height: 100px;
    margin: 1rem auto 1.5rem;
    object-fit: contain;
}

.feature-card h3,
.offer-card h3 {
    margin: 0.5rem 0;
    color: var(--color-muted);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.25;
}

.feature-card p,
.offer-card p {
    margin: 0.8rem 0;
}

.about-grid {
    display: grid;
    margin-top: 2rem;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
}

.portrait {
    width: min(100%, 430px);
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.about-copy {
    text-align: center;
}

.about-copy p {
    margin: 0 0 1.25rem;
}

.about-details summary {
    width: fit-content;
    margin: 1rem auto 0;
    list-style: none;
}

.about-details summary::-webkit-details-marker {
    display: none;
}

.about-details__content {
    margin-top: 1.5rem;
}

.read-less,
.about-details[open] .read-more {
    display: none;
}

.about-details[open] .read-less {
    display: inline;
}

.offer-card {
    border: 1px solid var(--color-border);
}

.offer-card--primary {
    padding-block: 3rem;
    background: var(--color-soft);
}

.price {
    color: var(--color-muted);
    font-size: 1.05rem;
    font-weight: 700;
}

.price del {
    display: block;
    margin-top: 0.35rem;
    font-weight: 400;
}

.fine-print {
    font-size: 0.9rem;
}

.contact-form {
    width: min(100%, 720px);
    margin-top: 2rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-muted);
    font-weight: 700;
}

.required-marker {
    color: #a51d1d;
}

.form-control {
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    color: var(--color-text);
    background: #fff;
    border: 1px solid #8b8b8b;
    border-radius: 2px;
    font: inherit;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.form-control.invalid {
    border-color: #a51d1d;
}

.form-description {
    margin: 0.35rem 0 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.validation-message,
.validation-summary-errors {
    color: #8b1515;
}

.validation-message {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.validation-summary-errors {
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    background: #fff4f4;
    border-left: 4px solid #a51d1d;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 1.1rem;
}

.form-status {
    padding: 0.9rem 1rem;
    margin: 1rem 0;
    border-left: 4px solid;
}

.form-status--success {
    color: #34450b;
    background: #f3f8e6;
    border-color: var(--color-accent);
}

.form-status--error {
    color: #721c1c;
    background: #fff4f4;
    border-color: #a51d1d;
}

.captcha-field {
    width: min(100%, 420px);
    margin: 0 0 1.25rem;
}

.captcha-field noscript {
    display: block;
    color: #8b1515;
    font-size: 0.9rem;
}

.form-trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-footer {
    padding: 3.5rem 0 5rem;
}

.site-footer__inner {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer .subline {
    margin-top: 0;
    text-transform: none;
}

.contact-list {
    margin: 0;
}

.contact-list div {
    display: grid;
    padding: 0.3rem 0;
    gap: 1rem;
    grid-template-columns: 100px 1fr;
}

.contact-list dd {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: block;
    border-radius: 50%;
}

.social-links img {
    width: 50px;
    height: 50px;
    transition: filter 160ms ease;
}

.social-links a:hover img {
    filter: brightness(0.85);
}

.status-page {
    min-height: 45vh;
}

.status-page p {
    margin-bottom: 1.5rem;
}

.request-id {
    color: var(--color-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 90px;
    }

    .site-header,
    .site-navigation {
        min-height: 82px;
    }

    .site-navigation {
        position: relative;
        align-items: center;
        justify-content: space-between;
    }

    .site-logo {
        padding: 1rem 1.25rem;
    }

    .site-logo img {
        height: 36px;
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-navigation {
        display: block;
        margin-right: 1.25rem;
    }

    .mobile-navigation summary {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 9px 7px;
        flex-direction: column;
        justify-content: space-around;
        border: 1px solid transparent;
        border-radius: 4px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-navigation summary::-webkit-details-marker {
        display: none;
    }

    .mobile-navigation summary span {
        display: block;
        width: 100%;
        height: 3px;
        background: #4d4d4d;
        border-radius: 2px;
    }

    .mobile-navigation[open] summary {
        border-color: var(--color-accent);
    }

    .mobile-navigation ul {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 0.5rem 1rem 1rem;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 4px 8px rgb(0 0 0 / 14%);
    }

    .mobile-navigation a {
        display: block;
        padding: 0.65rem 1rem;
        color: #000;
        border-radius: 7px;
        font-family: "All Round Gothic", Arial, sans-serif;
        text-align: center;
        text-decoration: none;
    }

    .mobile-navigation a:hover {
        background: var(--color-accent);
    }

    .page-section,
    .site-footer__inner {
        width: min(100% - 2rem, var(--content-width));
    }

    .page-section {
        padding: 3rem 0 2.5rem;
    }

    .hero-section {
        padding-top: 3.5rem;
    }

    .feature-grid,
    .offer-grid,
    .about-grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .offer-grid {
        gap: 1rem;
    }

    .feature-card,
    .offer-card {
        padding: 1.5rem 1rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .portrait {
        width: min(85vw, 430px);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .button {
        min-height: 46px;
        padding-inline: 1.15rem;
    }

    .site-footer__inner {
        gap: 2rem;
    }
}

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

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