:root {
    --green-950: #0b3527;
    --green-900: #104735;
    --green-800: #175c45;
    --green-700: #1f7154;
    --green-100: #e8f3ed;
    --green-50: #f4f8f5;
    --cream: #f7f4ec;
    --white: #ffffff;
    --text: #1c2a22;
    --muted: #65736b;
    --border: #dce5df;
    --warning: #a13d2d;
    --warning-bg: #fff0ec;
    --shadow: 0 22px 60px rgba(20, 57, 43, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(31, 113, 84, 0.14), transparent 34rem),
        linear-gradient(180deg, var(--green-50) 0%, var(--cream) 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--green-800);
    text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
    color: var(--green-950);
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(44px, 8vw, 88px);
    border-radius: 30px;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(7, 47, 33, 0.98), rgba(29, 106, 78, 0.86)),
        var(--green-900);
    box-shadow: var(--shadow);
}

.hero::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -145px;
    top: -190px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 58px rgba(255, 255, 255, 0.035),
        0 0 0 120px rgba(255, 255, 255, 0.025);
}

.hero__mark {
    position: absolute;
    right: clamp(24px, 6vw, 70px);
    bottom: clamp(20px, 5vw, 58px);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 700;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.07);
    user-select: none;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero__intro {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
}

.status {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 0;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.status span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7ef0aa;
    box-shadow: 0 0 0 5px rgba(126, 240, 170, 0.14);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0;
}

.action {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 90px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(20, 57, 43, 0.07);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.action:hover,
.action:focus-visible {
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(20, 57, 43, 0.12);
}

.action--primary {
    border-color: var(--green-800);
    background: var(--green-800);
    color: var(--white);
}

.action--primary:hover,
.action--primary:focus-visible {
    color: var(--white);
}

.action__icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-900);
    font-size: 1.35rem;
}

.action--primary .action__icon {
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
}

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

.action small {
    margin-top: 3px;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.action--primary small {
    color: rgba(255, 255, 255, 0.82);
}

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

.card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 14px 38px rgba(20, 57, 43, 0.07);
}

.card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 16px;
    background: var(--green-100);
    color: var(--green-900);
    font-size: 1.4rem;
    font-weight: 800;
}

.card h2,
.card h3 {
    margin-top: 0;
    color: var(--green-950);
}

.card h2 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.card p,
.card address {
    margin: 0 0 17px;
}

.card address {
    font-style: normal;
}

.card hr {
    height: 1px;
    margin: 22px 0;
    border: 0;
    background: var(--border);
}

.card--urgent {
    border-color: #efc1b6;
    background: linear-gradient(180deg, var(--white), var(--warning-bg));
}

.card--urgent .card__icon {
    background: #f8d7cf;
    color: var(--warning);
}

.phone-number {
    display: inline-block;
    margin: 4px 0 13px;
    color: var(--warning);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.note {
    padding-top: 16px;
    border-top: 1px solid #efc1b6;
    color: #7e3328;
    font-size: 0.9rem;
}

.board-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 22px;
    padding: 30px;
    border-radius: 24px;
    background: var(--green-100);
}

.board-contact h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--green-950);
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.board-contact p:last-child {
    margin-bottom: 0;
}

.board-contact__button {
    flex: 0 0 auto;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--green-900);
    color: var(--white);
    font-weight: 750;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.board-contact__button:hover,
.board-contact__button:focus-visible {
    background: var(--green-950);
    color: var(--white);
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 6px 4px;
    color: var(--muted);
    font-size: 0.88rem;
}

footer p {
    margin: 0;
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card--urgent {
        grid-column: 1 / -1;
    }

    .board-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
        margin: 10px auto 20px;
    }

    .hero {
        padding: 40px 25px;
        border-radius: 22px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    .status {
        align-items: flex-start;
        border-radius: 16px;
    }

    .status span {
        margin-top: 7px;
        flex: 0 0 auto;
    }

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

    .card--urgent {
        grid-column: auto;
    }

    .action,
    .card,
    .board-contact {
        border-radius: 18px;
    }

    .action {
        padding: 18px;
    }

    .card {
        padding: 24px;
    }

    .board-contact {
        padding: 24px;
    }

    .board-contact__button {
        width: 100%;
        text-align: center;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
